:root {
    --ink: #101114;
    --muted: #666c7a;
    --paper: #fbfbff;
    --soft: rgba(255, 255, 255, 0.62);
    --soft-strong: rgba(255, 255, 255, 0.82);
    --line: rgba(24, 24, 30, 0.12);
    --line-strong: rgba(24, 24, 30, 0.2);
    --lavender: #acacff;
    --lavender-soft: #d9d8ff;
    --lavender-ghost: rgba(172, 172, 255, 0.14);
    --violet: #7772e8;
    --violet-dark: #3e3a92;
    --blue-ink: #071827;
    --radius: 18px;
    --blur: blur(24px) saturate(150%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(172, 172, 255, 0.34), transparent 34%),
        radial-gradient(circle at 90% 18%, rgba(255, 200, 226, 0.24), transparent 30%),
        linear-gradient(180deg, #ffffff, #f6f6ff 52%, #ffffff);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.landing-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(360px, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    padding: 12px max(18px, calc((100vw - 1160px) / 2));
    border-bottom: 1px solid rgba(16, 17, 20, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: var(--blur);
    transition: box-shadow 0.22s ease, background 0.22s ease;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 42px rgba(45, 44, 80, 0.1);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 148px;
}

.logo {
    width: 86px;
    height: auto;
}

.navigation,
.header-actions {
    display: flex;
    align-items: center;
}

.navigation {
    justify-content: flex-start;
    gap: clamp(16px, 2.2vw, 30px);
    min-width: 0;
    overflow: visible;
    overflow-y: visible;
    scrollbar-width: none;
}

.navigation::-webkit-scrollbar {
    display: none;
}

.nav-link,
.nav-link--button {
    color: rgba(16, 17, 20, 0.82);
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link--button:hover {
    color: var(--violet);
    transform: translateY(-1px);
}

.nav-menu {
    position: static;
}

.nav-popover {
    position: absolute;
    top: calc(100% - 1px);
    left: max(18px, calc((100vw - 1160px) / 2));
    right: max(18px, calc((100vw - 1160px) / 2));
    width: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 0 0 26px 26px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: var(--blur);
    box-shadow: 0 28px 80px rgba(38, 35, 70, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.99);
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-popover,
.nav-menu:focus-within .nav-popover,
.nav-menu.nav-menu--open .nav-popover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.nav-popover__intro {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 14px;
}

.nav-popover__intro span {
    color: var(--violet);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nav-popover__intro strong {
    max-width: 520px;
    color: rgba(16, 17, 20, .74);
    font-size: 14px;
    line-height: 1.45;
    text-align: right;
}

.nav-popover__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.nav-popover a {
    min-height: 112px;
    padding: 15px;
    border: 1px solid rgba(24, 24, 30, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-popover a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(119, 114, 232, 0.14);
}

.nav-popover strong,
.nav-popover span {
    display: block;
}

.nav-popover strong {
    font-weight: 900;
}

.nav-popover span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.header-actions {
    gap: 10px;
}

.auth-link {
    color: rgba(16, 17, 20, 0.72);
    font-weight: 800;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(120deg, #d8d7ff 0%, var(--lavender) 46%, var(--violet) 100%);
    box-shadow: 0 16px 36px rgba(119, 114, 232, 0.24);
}

.btn-secondary,
.btn-glass {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: var(--blur);
    box-shadow: 0 12px 34px rgba(45, 44, 80, .08);
}

.btn-signup {
    color: #ffffff;
    background: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 900;
    white-space: nowrap;
}

.hero-ios,
.domain-check-section,
.section,
.stats-section,
.contact-section,
.site-footer {
    width: min(100% - 32px, 1160px);
    margin-inline: auto;
}

.glass-surface {
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.54);
    backdrop-filter: var(--blur);
    box-shadow: 0 24px 70px rgba(45, 44, 80, 0.11);
}

.hero-ios {
    position: relative;
    display: grid;
    grid-template-columns: minmax(440px, 0.86fr) minmax(520px, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
    min-height: 640px;
    padding: 54px clamp(18px, 4vw, 46px) 48px;
}

.hero-ios__background {
    position: absolute;
    inset: 28px 0 20px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 12%, rgba(216, 215, 255, 0.42), transparent 28%),
        radial-gradient(circle at 78% 28%, rgba(172, 172, 255, 0.28), transparent 34%),
        radial-gradient(circle at 48% 86%, rgba(172, 172, 255, 0.28), transparent 30%),
        linear-gradient(135deg, #ffffff, #f1f0ff 48%, #f9f8ff);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 26px 90px rgba(28, 45, 72, 0.14);
}

.hero-ios__background span {
    position: absolute;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.68), rgba(255,255,255,.28));
    backdrop-filter: blur(18px);
    animation: floatPanel 8s ease-in-out infinite;
}

.hero-ios__background span:nth-child(1) {
    width: 34%;
    height: 70%;
    left: 4%;
    top: 9%;
}

.hero-ios__background span:nth-child(2) {
    width: 34%;
    height: 68%;
    right: 4%;
    bottom: 8%;
    animation-delay: -2s;
}

.hero-ios__background span:nth-child(3) {
    width: 26%;
    height: 45%;
    left: 39%;
    bottom: 12%;
    opacity: .38;
    animation-delay: -4s;
}

.hero-ios__content,
.hero-ios__stack {
    position: relative;
    z-index: 1;
}

.hero-ios__content {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.78), rgba(246,246,255,.58)),
        rgba(255, 255, 255, 0.62);
    backdrop-filter: var(--blur);
    box-shadow: 0 24px 80px rgba(18, 40, 58, 0.11);
    animation: riseIn .6s ease both;
    overflow: hidden;
}

.hero-ios__content::before {
    content: "";
    position: absolute;
    inset: auto -72px -88px auto;
    width: 260px;
    height: 260px;
    border-radius: 52px;
    background:
        linear-gradient(135deg, rgba(172,172,255,.2), rgba(255,255,255,.08));
    transform: rotate(18deg);
    pointer-events: none;
    z-index: 0;
}

.hero-ios__content::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 140px;
    height: 140px;
    border: 22px solid rgba(172,172,255,.13);
    border-top-color: rgba(119,114,232,.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-ios__content > * {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-label {
    color: var(--violet);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lavender);
    box-shadow: 0 0 0 6px rgba(172, 172, 255, 0.28);
}

.hero-ios h1,
.domain-check__copy h2,
.section-head h2,
.solution-column h2,
.process-head h2,
.faq-layout h2,
.contact-section h2,
.phone-modal h2 {
    font-family: "Unbounded", "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

.hero-ios h1 {
    position: relative;
    max-width: 760px;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.1;
    overflow-wrap: break-word;
    hyphens: manual;
}

.hero-ios__content p:not(.eyebrow) {
    position: relative;
    max-width: 660px;
    margin-top: 22px;
    color: rgba(16, 17, 20, 0.72);
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.68;
}

.hero-ios__points {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-ios__points span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid rgba(24, 24, 30, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .64);
    color: rgba(16, 17, 20, .74);
    font-size: 13px;
    font-weight: 900;
}

.hero-ios__signal {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 18px;
    background: rgba(255, 255, 255, .48);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.62);
}

.hero-ios__signal strong {
    color: rgba(16, 17, 20, .82);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.hero-ios__signal span {
    min-width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(172,172,255,.28), rgba(119,114,232,.58));
}

.hero-ios__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-ios__stack {
    display: grid;
    align-content: center;
    gap: 14px;
    min-height: 470px;
}

.glass-panel {
    position: relative;
    width: min(88%, 410px);
    min-height: 148px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: var(--blur);
    box-shadow: 0 28px 80px rgba(8, 22, 38, 0.18);
    animation: riseIn .7s ease both;
}

.glass-panel--idea {
    justify-self: start;
    z-index: 2;
}

.glass-panel--build {
    justify-self: end;
    z-index: 3;
    animation-delay: .08s;
}

.glass-panel--result {
    justify-self: center;
    z-index: 2;
    animation-delay: .16s;
}

.glass-panel span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #ffffff;
    background: var(--ink);
    font-weight: 900;
}

.glass-panel h2 {
    margin-top: 4px;
    font: 700 22px/1.15 "Unbounded", sans-serif;
}

.glass-panel p {
    grid-column: 2;
    margin-top: -4px;
    color: var(--muted);
    font-weight: 700;
}

.domain-check-section {
    width: 100%;
    margin-inline: 0;
    padding: 76px max(16px, calc((100vw - 1160px) / 2)) 42px;
    color: #ffffff;
    background:
        radial-gradient(circle at 76% 18%, rgba(172,172,255,.24), transparent 30%),
        radial-gradient(circle at 16% 0%, rgba(119,114,232,.18), transparent 32%),
        #101114;
}

.domain-check__inner {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(360px, 1fr);
    gap: 18px;
    align-items: stretch;
    width: min(100%, 1160px);
    margin-inline: auto;
}

.domain-check__copy,
.domain-widget {
    border-radius: 24px;
    padding: clamp(22px, 4vw, 34px);
}

.domain-check__copy {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.domain-check__copy h2 {
    margin-top: 14px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.domain-check__copy p:last-child {
    margin-top: 16px;
    color: rgba(255, 255, 255, .66);
    font-weight: 700;
    line-height: 1.7;
}

.domain-widget {
    border: 1px solid rgba(255, 255, 255, .12);
    background:
        radial-gradient(circle at 82% 24%, rgba(172,172,255,.16), transparent 28%),
        rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 28px 90px rgba(0, 0, 0, .18);
}

.domain-widget__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.domain-widget input {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    outline: none;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    font-weight: 800;
}

.domain-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.domain-zones button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.76);
    font-weight: 900;
    cursor: pointer;
}

.domain-zones button.is-active {
    color: #101114;
    background: var(--lavender);
}

.domain-result {
    display: grid;
    gap: 6px;
    min-height: 82px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .66);
    font-weight: 800;
}

.domain-result strong {
    color: #ffffff;
    font-size: 22px;
}

.domain-result--available {
    border-color: rgba(172, 172, 255, .36);
    background: rgba(172, 172, 255, .18);
}

.domain-result--taken {
    border-color: rgba(255, 255, 255, .16);
}

.domain-result--unknown,
.domain-result--loading {
    border-color: rgba(255, 255, 255, .18);
}

.domain-result--error {
    border-color: rgba(255, 132, 132, .34);
    background: rgba(255, 132, 132, .1);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    margin-inline: 0;
    padding: 0 max(16px, calc((100vw - 1160px) / 2)) 76px;
    color: #ffffff;
    background:
        radial-gradient(circle at 76% -18%, rgba(172,172,255,.18), transparent 30%),
        #101114;
}

.stat-item {
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    animation: riseIn .55s ease both;
}

.stat-number {
    display: block;
    font: 700 32px/1 "Unbounded", sans-serif;
}

.stat-description {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    font-weight: 800;
}

.section {
    padding: 80px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    margin-bottom: 34px;
}

.section-head h2,
.locations-copy h2,
.solution-column h2,
.process-head h2,
.faq-layout h2 {
    max-width: 920px;
    margin-top: 16px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.08;
}

.studio-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.studio-service {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 24px;
    background: rgba(255,255,255,.58);
    backdrop-filter: var(--blur);
    box-shadow: 0 18px 54px rgba(45, 44, 80, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.studio-service::after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -20px;
    width: 176px;
    height: 176px;
    background-color: rgba(172, 172, 255, .16);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .14;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
}

.studio-service:hover::after {
    opacity: .22;
    transform: translateY(-4px) scale(1.03);
}

.studio-service:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.82);
    box-shadow: 0 28px 70px rgba(45, 44, 80, 0.14);
}

.studio-service--featured {
    grid-column: span 2;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(119,114,232,.88), rgba(16,17,20,.92)),
        rgba(255,255,255,.52);
}

.studio-service--featured:hover {
    background:
        radial-gradient(circle at 82% 76%, rgba(216, 215, 255, .18), transparent 34%),
        linear-gradient(135deg, rgba(135,130,246,.94), rgba(16,17,20,.94)),
        rgba(255,255,255,.52);
    box-shadow: 0 30px 80px rgba(45, 44, 80, .22);
}

.studio-service--featured::after {
    background-color: rgba(255, 255, 255, .2);
    opacity: .18;
}

.studio-service span {
    position: relative;
    z-index: 1;
    color: var(--violet);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.studio-service--featured span,
.studio-service--featured p,
.studio-service--featured strong {
    color: rgba(255,255,255,.78);
}

.studio-service h3 {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    font: 700 clamp(24px, 2.6vw, 38px)/1.1 "Unbounded", sans-serif;
}

.studio-service p {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 700;
}

.studio-service small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(119, 114, 232, .16);
    border-radius: 14px;
    background: rgba(172, 172, 255, .12);
    color: rgba(16, 17, 20, .68);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.55;
}

.studio-service strong {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 24px;
    color: var(--violet-dark);
}

.studio-service--featured h3 {
    color: #ffffff;
}

.studio-service--featured p,
.studio-service--featured strong {
    color: rgba(255, 255, 255, .76);
}

.studio-service:nth-child(1)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='34' y='50' width='152' height='104' rx='18' stroke='black' stroke-width='12'/%3E%3Cpath d='M34 82H186' stroke='black' stroke-width='12'/%3E%3Ccircle cx='62' cy='66' r='6' fill='black'/%3E%3Ccircle cx='84' cy='66' r='6' fill='black'/%3E%3Cpath d='M64 178H156' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service:nth-child(2)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 158L64 96L136 42L178 84L124 156L62 166L54 158Z' stroke='black' stroke-width='12' stroke-linejoin='round'/%3E%3Cpath d='M134 45L175 86' stroke='black' stroke-width='12'/%3E%3Cpath d='M72 146L56 162' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3Ccircle cx='111' cy='109' r='17' stroke='black' stroke-width='12'/%3E%3C/svg%3E");
}

.studio-service:nth-child(3)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='46' y='54' width='128' height='38' rx='12' stroke='black' stroke-width='12'/%3E%3Crect x='46' y='118' width='128' height='38' rx='12' stroke='black' stroke-width='12'/%3E%3Ccircle cx='72' cy='73' r='6' fill='black'/%3E%3Ccircle cx='72' cy='137' r='6' fill='black'/%3E%3Cpath d='M104 73H148M104 137H148' stroke='black' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service:nth-child(4)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='110' cy='110' r='70' stroke='black' stroke-width='12'/%3E%3Cpath d='M42 110H178M110 40C130 62 140 86 140 110C140 134 130 158 110 180M110 40C90 62 80 86 80 110C80 134 90 158 110 180' stroke='black' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service:nth-child(5)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 34L172 58V104C172 142 148 172 110 188C72 172 48 142 48 104V58L110 34Z' stroke='black' stroke-width='12' stroke-linejoin='round'/%3E%3Crect x='82' y='98' width='56' height='46' rx='10' stroke='black' stroke-width='12'/%3E%3Cpath d='M94 98V82C94 72 101 65 110 65C119 65 126 72 126 82V98' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service:nth-child(6)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 160L86 116L118 140L178 72' stroke='black' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M142 72H178V108' stroke='black' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='52' y='164' width='24' height='30' rx='5' fill='black'/%3E%3Crect x='94' y='148' width='24' height='46' rx='5' fill='black'/%3E%3Crect x='136' y='124' width='24' height='70' rx='5' fill='black'/%3E%3C/svg%3E");
}

.studio-service:nth-child(7)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M82 177V146M138 177V146' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3Ccircle cx='110' cy='98' r='58' stroke='black' stroke-width='12'/%3E%3Cpath d='M76 106H144M86 66L134 144M134 66L86 144' stroke='black' stroke-width='10' stroke-linecap='round'/%3E%3Ccircle cx='76' cy='106' r='10' fill='black'/%3E%3Ccircle cx='144' cy='106' r='10' fill='black'/%3E%3Ccircle cx='110' cy='144' r='10' fill='black'/%3E%3C/svg%3E");
}

.studio-service:nth-child(8)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38 88L110 54L182 88L110 122L38 88Z' stroke='black' stroke-width='12' stroke-linejoin='round'/%3E%3Cpath d='M62 110V148C82 166 138 166 158 148V110' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3Cpath d='M182 88V140' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service:nth-child(9)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='92' cy='108' r='64' stroke='black' stroke-width='12'/%3E%3Cpath d='M92 44C112 66 122 88 122 108C122 128 112 150 92 172M92 44C72 66 62 88 62 108C62 128 72 150 92 172M30 108H154' stroke='black' stroke-width='10' stroke-linecap='round'/%3E%3Crect x='118' y='128' width='62' height='42' rx='10' stroke='black' stroke-width='12'/%3E%3Cpath d='M134 128V116C134 106 141 100 150 100C159 100 166 106 166 116V128' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service:nth-child(10)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 34L172 58V104C172 142 148 172 110 188C72 172 48 142 48 104V58L110 34Z' stroke='black' stroke-width='12' stroke-linejoin='round'/%3E%3Cpath d='M78 116C92 98 128 98 142 116M90 136C100 126 120 126 130 136M108 154H112' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
}

.studio-service.studio-service--featured::after {
    right: -8px;
    bottom: -18px;
    width: 210px;
    height: 210px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='240' height='240' viewBox='0 0 240 240' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='58' y='48' width='124' height='84' rx='16' stroke='white' stroke-width='12'/%3E%3Cpath d='M58 78H182' stroke='white' stroke-width='12'/%3E%3Ccircle cx='78' cy='63' r='5' fill='white'/%3E%3Ccircle cx='96' cy='63' r='5' fill='white'/%3E%3Crect x='36' y='108' width='124' height='84' rx='16' stroke='white' stroke-width='12'/%3E%3Cpath d='M36 138H160' stroke='white' stroke-width='12'/%3E%3Ccircle cx='56' cy='123' r='5' fill='white'/%3E%3Ccircle cx='74' cy='123' r='5' fill='white'/%3E%3C/svg%3E");
    opacity: .18;
}

.studio-service.studio-service--featured:hover::after {
    opacity: .26;
}

.locations-section {
    width: 100%;
    padding-inline: max(16px, calc((100vw - 1160px) / 2));
    color: #ffffff;
    background:
        radial-gradient(circle at 84% 14%, rgba(172,172,255,.24), transparent 30%),
        radial-gradient(circle at 18% 0%, rgba(119,114,232,.18), transparent 32%),
        #101114;
}

.locations-inner {
    display: grid;
    grid-template-columns: minmax(300px, .58fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    width: min(100%, 1160px);
}

.locations-copy h2 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.08;
}

.locations-copy > p:not(.section-label) {
    max-width: 560px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .66);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
}

.compliance-note {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.location-cards article {
    min-height: 146px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.location-cards span {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 28px;
    padding-inline: 9px;
    border-radius: 999px;
    color: #101114;
    background: var(--lavender);
    font-size: 12px;
    font-weight: 900;
}

.location-cards strong,
.location-cards p {
    display: block;
}

.location-cards strong {
    margin-top: 18px;
    font: 700 clamp(14px, 1.2vw, 16px)/1.28 "Unbounded", sans-serif;
    overflow-wrap: anywhere;
}

.location-cards p {
    margin-top: 7px;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    font-weight: 800;
}

.locations-map-panel {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background:
        radial-gradient(circle at 62% 46%, rgba(172, 172, 255, .2), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 28px 90px rgba(0, 0, 0, .24);
}

.location-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.location-map__grid {
    fill: none;
    stroke: rgba(255, 255, 255, .07);
    stroke-width: 1;
}

.location-map__land {
    fill: rgba(255, 255, 255, .075);
    stroke: rgba(172, 172, 255, .12);
    stroke-width: 1.4;
}

.location-map__ukraine {
    stroke: none;
}

.location-map__focus-country {
    fill: rgba(255, 255, 255, .075);
    stroke: rgba(172, 172, 255, .12);
    stroke-width: 1.4;
    transition: fill .2s ease, stroke .2s ease, filter .2s ease;
}

.location-map__russia {
    fill: rgba(255, 255, 255, .08);
}

.location-map__focus-country:hover {
    fill: rgba(172, 172, 255, .72);
    stroke: rgba(255, 255, 255, .62);
    filter: drop-shadow(0 8px 20px rgba(172, 172, 255, .2));
}

.location-marker {
    cursor: default;
    pointer-events: visiblePainted;
}

.location-marker__halo {
    fill: rgba(172, 172, 255, .18);
    opacity: .9;
}

.location-marker__dot {
    fill: var(--lavender);
    stroke: rgba(255, 255, 255, .94);
    stroke-width: 2.5;
    filter: drop-shadow(0 0 10px rgba(172, 172, 255, .72));
}

.location-marker__card {
    opacity: 0;
    pointer-events: none;
    transform-box: fill-box;
    transition: opacity .18s ease, transform .18s ease;
}

.location-marker:hover .location-marker__card {
    opacity: 1;
    transform: translateY(-2px);
}

.location-map__germany:hover ~ .location-marker--frankfurt .location-marker__card,
.location-map__finland:hover ~ .location-marker--helsinki .location-marker__card,
.location-map__russia:hover ~ .location-marker--moscow .location-marker__card {
    opacity: 1;
    transform: translateY(-2px);
}

.location-marker__card rect {
    fill: rgba(16, 17, 20, .84);
    stroke: rgba(255, 255, 255, .18);
    stroke-width: 1;
}

.location-marker__card text {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    pointer-events: none;
}

.location-marker__country {
    fill: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.location-marker__city {
    fill: rgba(255, 255, 255, .64);
    font-size: 12px;
    font-weight: 800;
}

.location-marker__code {
    fill: var(--lavender);
    font-size: 12px;
    font-weight: 900;
}

.solutions-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 14px;
}

.solutions-section .solution-column h2 {
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: 1.08;
}

.solution-column {
    padding: clamp(28px, 5vw, 56px);
    border-radius: 26px;
}

.solution-column--dark {
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.62);
    background:
        radial-gradient(circle at 12% 8%, rgba(172, 172, 255, .22), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(216, 215, 255, .2), transparent 30%),
        rgba(255,255,255,.62);
    backdrop-filter: var(--blur);
    box-shadow: 0 24px 70px rgba(45, 44, 80, 0.1);
}

.solution-column--light {
    border: 1px solid rgba(255,255,255,.58);
    background: rgba(255,255,255,.58);
    backdrop-filter: var(--blur);
}

.solution-column--dark .section-label-light {
    color: var(--violet);
}

.section-label-light {
    color: rgba(255, 255, 255, 0.6);
}

.package-list {
    display: grid;
    gap: 12px;
    margin-top: 36px;
}

.package-card {
    display: block;
    padding: 20px;
    border: 1px solid rgba(24, 24, 30, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 14px 38px rgba(22, 38, 58, .08);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.package-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 22px 54px rgba(22, 38, 58, .12);
}

.package-list span {
    color: var(--violet);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.package-list strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}

.package-list p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 700;
}

.solution-note {
    max-width: 560px;
    margin-top: 18px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.72;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 36px;
}

.component-grid a {
    min-height: 126px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.64);
    border-radius: 16px;
    background: rgba(255,255,255,.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.64);
    transition: transform .2s ease, background .2s ease;
}

.component-grid a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.78);
}

.component-grid strong {
    color: var(--ink);
    font: 700 18px/1.2 "Unbounded", sans-serif;
}

.component-grid span {
    color: rgba(16,17,20,.74);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--violet);
    font-weight: 900;
}

.process-section {
    width: 100%;
    padding-inline: max(16px, calc((100vw - 1160px) / 2));
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 0%, rgba(172,172,255,.24), transparent 32%),
        #101114;
}

.process-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    gap: clamp(28px, 7vw, 84px);
    align-items: end;
    width: min(100%, 1160px);
    margin-top: 22px;
}

.process-head p,
.contact-section p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    line-height: 1.75;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 1160px);
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.steps article {
    min-height: 250px;
    padding: 26px 24px 18px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.steps article + article {
    padding-left: 24px;
}

.steps span {
    color: var(--lavender);
    font-weight: 900;
}

.steps h3 {
    margin-top: 70px;
    font: 700 21px/1.2 "Unbounded", sans-serif;
}

.steps p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(28px, 7vw, 90px);
    align-items: start;
    margin-top: 22px;
}

.accordion details {
    border-top: 1px solid var(--line);
    padding: 24px 0;
}

.accordion details:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary span {
    flex: 0 0 auto;
    color: var(--violet);
    font-size: 24px;
    line-height: 1;
}

.accordion p {
    max-width: 760px;
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 700;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
    gap: clamp(30px, 7vw, 90px);
    align-items: start;
    padding: 68px clamp(18px, 5vw, 58px);
    border-radius: 28px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(16, 17, 20, 0.96), rgba(60, 56, 142, 0.94)),
        #101114;
}

.contact-section h2 {
    margin-top: 18px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.03;
}

.contact-section p {
    max-width: 650px;
    margin-top: 22px;
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.contact-form input {
    min-height: 48px;
    padding: 0 14px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
    padding: 12px 14px;
}

.form-message {
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--ink);
    background: var(--lavender);
    font-weight: 900;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(30px, 6vw, 86px);
    padding: 56px 0 46px;
    border-top: 1px solid var(--line);
}

.site-footer__brand img {
    width: 96px;
}

.site-footer__brand p {
    max-width: 320px;
    margin-top: 18px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.7;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.site-footer__columns div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer h3 {
    margin-bottom: 8px;
    font: 700 14px/1.2 "Unbounded", sans-serif;
}

.site-footer a,
.site-footer span,
.site-footer button {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    text-align: left;
}

.site-footer a:hover,
.site-footer button:hover {
    color: var(--violet);
}

.phone-modal[hidden],
.phone-modal__number[hidden] {
    display: none;
}

.phone-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 18px;
}

.phone-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 13, 20, 0.42);
    backdrop-filter: blur(14px);
}

.phone-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    padding: 28px;
    border-radius: 26px;
    animation: modalIn .2s ease both;
}

.phone-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.74);
    cursor: pointer;
    font-size: 24px;
}

.phone-modal h2 {
    margin-top: 14px;
    font-size: 30px;
    line-height: 1.12;
}

.phone-modal p:not(.section-label) {
    margin: 14px 0 18px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.65;
}

.phone-modal__number {
    display: block;
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: var(--ink);
    color: #ffffff;
    font: 700 26px/1 "Unbounded", sans-serif;
    text-align: center;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatPanel {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* Mounteam Education homepage. */
.education-site {
    background:
        radial-gradient(circle at 9% 3%, rgba(172, 172, 255, .34), transparent 28%),
        radial-gradient(circle at 92% 16%, rgba(171, 225, 255, .24), transparent 26%),
        linear-gradient(180deg, #fff, #f7f6ff 48%, #fff);
}

.education-brand {
    gap: 10px;
}

.education-brand__label,
.footer-brand > span {
    padding: 6px 9px;
    border: 1px solid rgba(119, 114, 232, .22);
    border-radius: 999px;
    color: var(--violet-dark);
    background: rgba(221, 220, 255, .68);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.education-navigation {
    justify-content: center;
}

.education-hero {
    background:
        radial-gradient(circle at var(--hero-x, 78%) var(--hero-y, 18%), rgba(151, 144, 255, .26), transparent 26%),
        radial-gradient(circle at 8% 92%, rgba(112, 210, 255, .14), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(240, 239, 255, .84));
}

.education-hero h1 {
    max-width: 640px;
    font-size: clamp(38px, 4.35vw, 62px);
}

.education-hero__visual .launch-board {
    background:
        linear-gradient(rgba(119, 114, 232, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 114, 232, .08) 1px, transparent 1px),
        rgba(255, 255, 255, .75);
    background-size: 26px 26px, 26px 26px, auto;
}

.education-stats {
    margin-top: 58px;
    padding-top: 72px;
}

.education-programs-section,
.education-benefits,
.education-audience {
    width: min(100% - 32px, 1160px);
    margin-inline: auto;
}

.education-programs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 42px;
}

.education-program {
    --program-bg: rgba(255, 255, 255, .78);
    --program-text: #171821;
    --program-muted: #6d6f7d;
    --program-accent: var(--violet);
    display: flex;
    min-height: 560px;
    flex-direction: column;
    padding: clamp(26px, 4vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 24px;
    color: var(--program-text);
    background: var(--program-bg);
    box-shadow: 0 24px 70px rgba(45, 44, 80, .1);
    transition: transform .24s ease, box-shadow .24s ease, outline-color .24s ease;
}

.education-program--laravel {
    --program-bg:
        radial-gradient(circle at 88% 8%, rgba(146, 137, 255, .35), transparent 28%),
        linear-gradient(145deg, #222337, #111219);
    --program-text: #fff;
    --program-muted: rgba(255, 255, 255, .64);
    --program-accent: #bdb9ff;
}

.education-program--ai {
    --program-bg:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, .62), transparent 28%),
        linear-gradient(145deg, #dcd9ff, #a9a4f4);
    --program-text: #24224d;
    --program-muted: rgba(36, 34, 77, .66);
    --program-accent: #48439d;
}

.education-program--security {
    --program-bg:
        radial-gradient(circle at 84% 8%, rgba(139, 224, 255, .3), transparent 26%),
        linear-gradient(145deg, #f4fbff, #dceefa);
    --program-text: #102230;
    --program-muted: rgba(16, 34, 48, .64);
    --program-accent: #14799c;
}

.education-program:hover,
.education-program.is-recommended {
    transform: translateY(-8px);
    box-shadow: 0 36px 90px rgba(45, 44, 80, .17);
}

.education-program.is-recommended {
    outline: 3px solid rgba(119, 114, 232, .28);
    animation: productRecommend .5s ease both;
}

.education-program__meta,
.education-program footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.education-program__meta span,
.education-program__label {
    color: var(--program-accent);
    font: 700 10px/1 "Unbounded", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.education-program__meta strong {
    font-size: 11px;
}

.education-program__label {
    margin-top: 62px;
}

.education-program h3 {
    max-width: 520px;
    margin-top: 16px;
    font: 700 clamp(28px, 3.3vw, 48px)/1.05 "Unbounded", sans-serif;
    letter-spacing: -.045em;
}

.education-program > p:not(.education-program__label) {
    max-width: 560px;
    margin-top: 20px;
    color: var(--program-muted);
    font-weight: 700;
    line-height: 1.65;
}

.education-program ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 36px;
    padding: 0;
    list-style: none;
}

.education-program li {
    position: relative;
    padding-left: 23px;
    color: var(--program-muted);
    font-size: 13px;
    font-weight: 800;
}

.education-program li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--program-accent);
}

.education-program footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid currentColor;
    font-size: 11px;
    font-weight: 900;
}

.education-program footer span {
    color: var(--program-muted);
}

.education-program footer a {
    color: var(--program-accent);
    white-space: nowrap;
}

.platform-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    gap: clamp(40px, 7vw, 88px);
    align-items: center;
    width: min(100% - 32px, 1280px);
    margin: 42px auto;
    padding: clamp(42px, 6vw, 76px);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(132, 123, 255, .28), transparent 29%),
        radial-gradient(circle at 2% 96%, rgba(91, 201, 255, .13), transparent 32%),
        #11121a;
}

.platform-section__copy h2 {
    margin-top: 18px;
    font: 700 clamp(34px, 4.5vw, 60px)/1.04 "Unbounded", sans-serif;
    letter-spacing: -.05em;
}

.platform-section__copy > p:not(.section-label) {
    margin-top: 24px;
    color: rgba(255, 255, 255, .65);
    font-weight: 700;
    line-height: 1.72;
}

.learning-dashboard {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .35);
    backdrop-filter: blur(20px);
    transform: rotate(1.2deg);
}

.learning-dashboard__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    font-weight: 900;
}

.learning-dashboard__top > div {
    display: flex;
    gap: 5px;
}

.learning-dashboard__top i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.learning-dashboard__top strong {
    justify-self: end;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    background: var(--violet);
}

.learning-dashboard__body {
    display: grid;
    grid-template-columns: 118px 1fr;
    min-height: 500px;
    overflow: hidden;
    border-radius: 17px;
    color: #20212a;
    background: #f8f8fe;
}

.learning-dashboard aside {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 22px 12px;
    color: #7a7b88;
    background: #ededf7;
    font-size: 9px;
    font-weight: 900;
}

.learning-dashboard aside > strong {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0 4px 24px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #928bf6, #4c479f);
    font: 700 11px/1 "Unbounded", sans-serif;
}

.learning-dashboard aside span {
    padding: 10px;
    border-radius: 9px;
}

.learning-dashboard aside span.is-active {
    color: #49449b;
    background: rgba(119, 114, 232, .13);
}

.learning-dashboard__content {
    padding: clamp(20px, 3vw, 34px);
}

.learning-dashboard__welcome {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.learning-dashboard__welcome div {
    display: grid;
    gap: 8px;
}

.learning-dashboard__welcome small {
    color: #888a97;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.learning-dashboard__welcome strong {
    font: 700 clamp(20px, 2.5vw, 30px)/1.1 "Unbounded", sans-serif;
}

.learning-dashboard__welcome > span {
    color: var(--violet);
    font: 700 20px/1 "Unbounded", sans-serif;
}

.learning-dashboard__progress {
    height: 7px;
    margin: 18px 0 24px;
    overflow: hidden;
    border-radius: 999px;
    background: #e3e3ee;
}

.learning-dashboard__progress i {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7772e8, #aaa5ff);
}

.learning-dashboard__lesson {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-top: 9px;
    padding: 14px;
    border: 1px solid rgba(31, 32, 42, .07);
    border-radius: 13px;
    background: #fff;
}

.learning-dashboard__lesson > span {
    color: #999ba7;
    font: 700 9px/1 "Unbounded", sans-serif;
}

.learning-dashboard__lesson > div {
    display: grid;
    gap: 4px;
}

.learning-dashboard__lesson strong {
    font-size: 11px;
}

.learning-dashboard__lesson small {
    color: #9698a5;
    font-size: 9px;
    font-weight: 800;
}

.learning-dashboard__lesson b {
    color: #a0a2ae;
}

.learning-dashboard__lesson.is-complete b {
    color: #46ae71;
}

.learning-dashboard__lesson.is-current {
    border-color: rgba(119, 114, 232, .3);
    box-shadow: 0 10px 30px rgba(66, 60, 154, .1);
}

.learning-dashboard__lesson.is-current b {
    color: var(--violet);
}

.learning-dashboard__feedback {
    margin-top: 20px;
    padding: 16px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #7973e7, #4d499e);
}

.learning-dashboard__feedback span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.learning-dashboard__feedback p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.education-benefits .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.education-benefits .why-grid article {
    min-height: 250px;
    padding: 26px;
    background:
        radial-gradient(circle at 90% 10%, rgba(172, 172, 255, .15), transparent 30%),
        rgba(255, 255, 255, .68);
}

.education-benefits .why-grid strong {
    margin-top: 78px;
}

.education-roadmap {
    margin-top: 36px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.audience-grid article {
    min-height: 290px;
    padding: 28px;
    border: 1px solid rgba(30, 30, 40, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 20px 54px rgba(45, 44, 80, .08);
}

.audience-grid article:nth-child(2) {
    background: #e6e4ff;
}

.audience-grid article:nth-child(3) {
    color: #fff;
    background: linear-gradient(145deg, #28293b, #15161e);
}

.audience-grid article:nth-child(4) {
    background: #e6f3fa;
}

.audience-grid span {
    color: var(--violet);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.audience-grid h3 {
    margin-top: 100px;
    font: 700 clamp(20px, 2vw, 28px)/1.2 "Unbounded", sans-serif;
}

.audience-grid p {
    margin-top: 14px;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    opacity: .66;
}

.education-contact {
    margin-top: 52px;
}

.footer-brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.footer-brand img {
    width: 86px;
}

@media (max-width: 1100px) {
    .education-brand__label {
        display: none;
    }
}

@media (max-width: 980px) {
    .education-programs,
    .platform-section {
        grid-template-columns: 1fr;
    }

    .platform-section {
        width: min(100% - 24px, 760px);
    }

    .education-benefits .why-grid,
    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .education-stats {
        margin-top: 28px;
        padding-top: 54px;
    }

    .education-programs,
    .education-benefits .why-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .education-program {
        min-height: 0;
    }

    .education-program__label {
        margin-top: 46px;
    }

    .education-program footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .platform-section {
        padding: 30px 18px;
        border-radius: 24px;
    }

    .learning-dashboard {
        padding: 7px;
        transform: none;
    }

    .learning-dashboard__body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .learning-dashboard aside {
        display: none;
    }

    .learning-dashboard__content {
        padding: 18px;
    }

    .education-benefits .why-grid article {
        min-height: 210px;
    }

    .audience-grid article {
        min-height: 230px;
    }

    .audience-grid h3 {
        margin-top: 70px;
    }

    .footer-brand > span {
        display: none;
    }
}

@media (max-width: 1180px) {
    .header {
        grid-template-columns: auto auto;
    }

    .header-actions {
        justify-self: end;
    }

    .brand {
        min-width: 96px;
    }

    .navigation {
        order: 3;
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-wrap: wrap;
        overflow: visible;
        padding: 4px 0;
    }

    .nav-popover__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-ios,
    .domain-check__inner,
    .locations-inner,
    .solutions-section,
    .contact-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero-ios__stack {
        min-height: 360px;
    }

    .stats-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .locations-map-panel {
        min-height: 390px;
    }

    .faq-layout,
    .process-head {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .header,
    .hero-ios,
    .section,
    .stats-section,
    .contact-section,
    .site-footer {
        width: min(100% - 24px, 1160px);
    }

    .header {
        min-height: 0;
        margin-top: 0;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.54);
        border-radius: 22px;
        grid-template-columns: auto auto;
    }

    .logo {
        width: 72px;
    }

    .auth-link {
        display: none;
    }

    .btn {
        min-height: 42px;
        padding-inline: 12px;
        font-size: 14px;
    }

    .navigation {
        gap: 16px;
    }

    .nav-link,
    .nav-link--button {
        font-size: 13px;
    }

    .nav-popover {
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        transform: translateY(-8px) scale(.98);
    }

    .nav-menu:hover .nav-popover,
    .nav-menu:focus-within .nav-popover,
    .nav-menu.nav-menu--open .nav-popover {
        transform: translateY(0) scale(1);
    }

    .nav-popover__intro {
        display: grid;
        gap: 6px;
        align-items: start;
    }

    .nav-popover__intro strong {
        max-width: none;
        text-align: left;
    }

    .nav-popover__grid {
        grid-template-columns: 1fr;
    }

    .hero-ios {
        min-height: 0;
        padding: 32px 0 28px;
    }

    .hero-ios__background {
        display: none;
    }

    .hero-ios__content {
        padding: 24px;
    }

    .hero-ios h1 {
        font-size: 34px;
        line-height: 1.07;
    }

    .hero-ios__actions,
    .domain-widget__form {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-ios__signal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-ios__signal span {
        display: none;
    }

    .hero-ios__actions .btn {
        width: 100%;
    }

    .hero-ios__stack {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .glass-panel {
        position: static;
        width: 100%;
        min-height: 0;
        padding: 16px;
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .glass-panel h2 {
        margin-top: 3px;
        font-size: 16px;
    }

    .glass-panel p {
        grid-column: 1 / -1;
        margin-top: 4px;
        font-size: 13px;
        line-height: 1.45;
    }

    .stats-section,
    .studio-services,
    .location-cards,
    .component-grid,
    .steps,
    .site-footer__columns {
        grid-template-columns: 1fr;
    }

    .studio-service--featured {
        grid-column: auto;
    }

    .section {
        padding: 62px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-section {
        padding-inline: 12px;
    }

    .domain-check-section {
        padding: 62px 12px;
    }

    .stats-section {
        width: 100%;
        padding: 0 12px 62px;
    }

    .locations-section {
        padding-inline: 12px;
    }

    .locations-map-panel {
        min-height: 320px;
        border-radius: 22px;
    }

    .steps article,
    .steps article + article {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .steps h3 {
        margin-top: 44px;
    }

    .contact-section {
        padding: 46px 16px;
    }
}

@media (max-width: 440px) {
    .hero-ios h1 {
        font-size: 30px;
    }

    .domain-check__copy h2,
    .locations-copy h2,
    .section-head h2,
    .solution-column h2,
    .process-head h2,
    .faq-layout h2,
    .contact-section h2 {
        font-size: 28px;
    }
}

/* 2026 design refresh: header, hero, projects, locations copy and footer. */
#top,
#services,
#cases,
#locations,
#process,
#faq,
#contact {
    scroll-margin-top: 104px;
}

.landing-page {
    padding-top: 90px;
    overflow-x: clip;
}

.header {
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 1000;
    width: min(calc(100% - 24px), 1180px);
    min-height: 68px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 40px);
    padding: 9px 10px 9px 18px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 42px rgba(30, 31, 45, .08);
    backdrop-filter: blur(22px) saturate(155%);
    -webkit-backdrop-filter: blur(22px) saturate(155%);
    transform: translateX(-50%);
}

.header--scrolled {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 54px rgba(30, 31, 45, .14);
}

.brand {
    min-width: 92px;
}

.navigation {
    justify-content: center;
}

.navigation .nav-link {
    position: relative;
}

.navigation .nav-link::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--violet);
    transition: right .2s ease;
}

.navigation .nav-link:hover::after,
.navigation .nav-link:focus-visible::after {
    right: 0;
}

.nav-popover {
    top: calc(100% - 1px);
    right: 0;
    left: 0;
}

.header-actions {
    justify-content: flex-end;
}

.header-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
}

.header-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .2s ease;
}

.header-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.header-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero-studio {
    --hero-x: 78%;
    --hero-y: 18%;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, .86fr);
    gap: clamp(36px, 6vw, 82px);
    align-items: center;
    width: min(calc(100% - 32px), 1160px);
    min-height: 700px;
    margin-inline: auto;
    padding: 64px clamp(28px, 5vw, 64px) 104px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 30px;
    background:
        radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(172, 172, 255, .46), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(255, 209, 230, .28), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 239, 255, .92));
    box-shadow: 0 30px 90px rgba(45, 44, 80, .14);
    transition: background .25s ease;
}

.hero-studio::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(119, 114, 232, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 114, 232, .055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.hero-studio__glow {
    position: absolute;
    top: -230px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(119, 114, 232, .14);
    filter: blur(12px);
}

.hero-studio__content,
.hero-studio__visual {
    position: relative;
    z-index: 2;
}

.hero-studio h1 {
    max-width: 720px;
    margin-top: 18px;
    font: 600 clamp(42px, 5vw, 68px)/1.03 "Unbounded", sans-serif;
    letter-spacing: -.055em;
}

.hero-studio h1 em {
    color: var(--violet);
    font-style: normal;
}

.hero-studio__lead {
    max-width: 610px;
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 1.65;
}

.hero-studio__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-studio__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
    padding-top: 21px;
    border-top: 1px solid rgba(16, 17, 20, .1);
}

.hero-studio__proof span {
    color: #656675;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.hero-studio__proof strong {
    display: block;
    margin-bottom: 4px;
    color: var(--violet);
    font-size: 10px;
    letter-spacing: .08em;
}

.hero-studio__visual {
    min-height: 510px;
}

.launch-board {
    position: absolute;
    inset: 24px 20px 26px 8px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 28px;
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 30px 80px rgba(34, 33, 69, .18);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    transform: rotate(1.2deg);
    animation: boardFloat 7s ease-in-out infinite;
}

.launch-board::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, .72) 49%, transparent 64%);
    translate: -130% 0;
    animation: boardSweep 6.5s ease-in-out infinite;
}

.launch-board__top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #757583;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.launch-board__top span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.launch-board__top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55c985;
    box-shadow: 0 0 0 6px rgba(85, 201, 133, .12);
}

.launch-board__top strong {
    color: var(--violet);
}

.launch-board__orbit {
    position: relative;
    display: grid;
    place-items: center;
    width: min(76%, 270px);
    aspect-ratio: 1;
    margin: 30px auto 18px;
    border: 1px solid rgba(119, 114, 232, .18);
    border-radius: 50%;
}

.launch-board__orbit::before,
.launch-board__orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(119, 114, 232, .18);
    border-radius: 50%;
}

.launch-board__orbit::before {
    inset: 14%;
}

.launch-board__orbit::after {
    inset: -12%;
    border-style: dashed;
    animation: orbitSpin 18s linear infinite;
}

.launch-board__core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(145deg, var(--lavender), var(--violet));
    box-shadow: 0 20px 50px rgba(119, 114, 232, .34);
    font: 600 34px/1 "Unbounded", sans-serif;
    animation: corePulse 3.4s ease-in-out infinite;
}

.launch-board__orbit i {
    position: absolute;
    z-index: 3;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 8px 18px rgba(62, 58, 146, .28);
}

.launch-board__orbit i:nth-child(2) { top: 6%; left: 28%; }
.launch-board__orbit i:nth-child(3) { right: 2%; bottom: 31%; }
.launch-board__orbit i:nth-child(4) { bottom: 8%; left: 22%; }

.launch-board__steps {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.launch-board__steps > span {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(16, 17, 20, .07);
    border-radius: 12px;
    color: #777886;
    background: rgba(255, 255, 255, .56);
    font-size: 11px;
    font-weight: 800;
}

.launch-board__steps i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c7c7cc;
}

.launch-board__steps strong {
    color: #8b8c99;
    font-size: 10px;
}

.launch-board__steps .is-complete i { background: #55c985; }
.launch-board__steps .is-active { color: var(--ink); border-color: rgba(119, 114, 232, .2); background: rgba(236, 235, 255, .86); }
.launch-board__steps .is-active i { background: var(--violet); box-shadow: 0 0 0 5px rgba(119, 114, 232, .12); }
.launch-board__steps .is-active strong { color: var(--violet); }

.launch-note {
    position: absolute;
    z-index: 4;
    min-width: 178px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(34, 33, 69, .16);
    backdrop-filter: blur(18px);
    animation: noteFloat 4.8s ease-in-out infinite;
}

.launch-note small,
.launch-note strong {
    display: block;
}

.launch-note small {
    color: #888997;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.launch-note strong {
    margin-top: 6px;
    font-size: 13px;
}

.launch-note span {
    display: inline-block;
    margin-top: 8px;
    color: #328458;
    font-size: 10px;
    font-weight: 900;
}

.launch-note--domain {
    top: 0;
    right: -4px;
}

.launch-note--result {
    bottom: 4px;
    left: -16px;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), #403b93);
    animation-delay: -2.2s;
}

.launch-note--result small,
.launch-note--result span {
    color: rgba(255, 255, 255, .7);
}

.hero-studio__ticker {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 58px;
    padding: 0 24px;
    overflow: hidden;
    border-top: 1px solid rgba(16, 17, 20, .09);
    background: rgba(255, 255, 255, .48);
    color: #696a77;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
}

.hero-studio__ticker::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .9) 48%, transparent 66%);
    translate: -120% 0;
    animation: boardSweep 6s ease-in-out infinite;
}

.hero-studio__ticker i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--violet);
}

/* Keep the original service cards, only make the long security title fit. */
.studio-service[href*="/security"] h3 {
    font-size: clamp(20px, 2vw, 31px);
    overflow-wrap: anywhere;
}

.projects-showcase {
    padding-block: 110px;
}

.projects-showcase__intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 48px;
}

.projects-showcase__intro h2 {
    max-width: 820px;
    margin-top: 14px;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.08;
}

.projects-showcase__intro > p {
    max-width: 360px;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
}

.flagship-wall {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
    margin-top: 46px;
}

.flagship-card {
    position: relative;
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: clamp(24px, 3vw, 38px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.flagship-card:hover {
    transform: translateY(-5px);
    filter: saturate(1.08);
    box-shadow: 0 28px 70px rgba(33, 32, 65, .16);
}

.flagship-card::after {
    content: "";
    position: absolute;
    right: -15%;
    bottom: -45%;
    width: 58%;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: .15;
    transition: transform .45s ease;
}

.flagship-card:hover::after {
    transform: scale(1.18);
}

.flagship-card > div,
.flagship-card > p,
.flagship-card footer {
    position: relative;
    z-index: 2;
}

.flagship-card small {
    display: block;
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.flagship-card strong {
    display: block;
    max-width: 780px;
    font: 600 clamp(30px, 4vw, 58px)/1.02 "Unbounded", sans-serif;
    letter-spacing: -.05em;
}

.flagship-card > p {
    max-width: 680px;
    margin-top: auto;
    padding-top: 34px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.flagship-card footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-top: 28px;
}

.flagship-card footer > span {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.flagship-card footer > span span {
    padding: 5px 8px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    opacity: .68;
}

.flagship-card footer i {
    flex: 0 0 auto;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.flagship-card:nth-child(1) {
    grid-column: span 5;
    min-height: 470px;
    color: #fff;
    background: linear-gradient(145deg, #8e89f2, #3e3a92);
}

.flagship-card:nth-child(2) {
    grid-column: span 7;
    min-height: 470px;
    background: #e4e2ff;
}

.flagship-card:nth-child(3) {
    grid-column: span 7;
    color: #fff;
    background: #455f51;
}

.flagship-card:nth-child(4) {
    grid-column: span 5;
    color: #fff;
    background: radial-gradient(circle at 86% 14%, #7772e8, transparent 32%), #111226;
}

.flagship-card:nth-child(5) {
    grid-column: span 5;
    background: #f2eadb;
}

.flagship-card:nth-child(6) {
    grid-column: span 7;
    background: #e5e8f0;
}

.flagship-card:nth-child(1) > p,
.flagship-card:nth-child(3) > p,
.flagship-card:nth-child(4) > p {
    color: rgba(255, 255, 255, .68);
}

.flagship-card:nth-child(2) strong,
.flagship-card:nth-child(6) strong {
    font-size: clamp(28px, 3.7vw, 52px);
}

.projects-bridge {
    display: grid;
    grid-template-columns: .75fr 1.45fr auto;
    gap: 26px;
    align-items: center;
    margin-top: 18px;
    padding: 24px 28px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #7772e8, #3e3a92);
}

.projects-bridge > span {
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    font-weight: 800;
}

.projects-bridge strong {
    font: 600 clamp(16px, 2vw, 22px)/1.4 "Unbounded", sans-serif;
}

.projects-bridge .btn {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .14);
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.locations-copy h2 {
    font-size: clamp(30px, 3.7vw, 50px);
}

.location-cards {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 30px;
}

.location-cards article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 78px;
    padding: 13px 15px;
    border-radius: 16px;
}

.location-cards .location-flag {
    display: block;
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
}

.location-cards small {
    display: block;
    color: var(--lavender);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.location-cards strong {
    margin-top: 3px;
    font-size: 15px;
    line-height: 1.2;
    overflow-wrap: normal;
}

.location-cards p {
    margin-top: 0;
    color: rgba(255, 255, 255, .74);
    white-space: nowrap;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 40px;
    align-items: end;
    padding: 42px 0;
}

.site-footer__identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__identity img {
    width: 86px;
    flex: 0 0 auto;
}

.site-footer__identity p,
.site-footer__copyright {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.65;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-weight: 900;
}

.site-footer__nav a,
.site-footer__nav button {
    color: #5d5c68;
    font-size: 13px;
}

.site-footer__copyright {
    white-space: nowrap;
}

@keyframes boardFloat {
    0%, 100% { transform: translateY(0) rotate(1.2deg); }
    50% { transform: translateY(-9px) rotate(.4deg); }
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes boardSweep {
    0%, 25% { translate: -130% 0; }
    72%, 100% { translate: 130% 0; }
}

@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}

@keyframes corePulse {
    50% { transform: scale(1.06); box-shadow: 0 24px 62px rgba(119, 114, 232, .42); }
}

@media (max-width: 1060px) {
    .header {
        grid-template-columns: auto 1fr auto;
    }

    .header-menu-toggle {
        display: block;
        justify-self: end;
        order: 2;
    }

    .header-actions {
        order: 3;
    }

    .navigation {
        position: fixed;
        inset: 82px 12px auto;
        order: initial;
        display: grid;
        grid-column: auto;
        gap: 0;
        max-height: calc(100dvh - 96px);
        padding: 12px;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, .82);
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 24px 70px rgba(30, 31, 45, .16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .navigation > .nav-link,
    .navigation .nav-link--button {
        display: block;
        width: 100%;
        padding: 14px;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .navigation .nav-link::after {
        display: none;
    }

    .nav-popover {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-menu.nav-menu--open .nav-popover {
        display: block;
    }

    .nav-popover__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-studio {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .hero-studio__content {
        max-width: 760px;
    }

    .hero-studio__visual {
        width: min(100%, 620px);
        min-height: 500px;
        margin-inline: auto;
    }

    .projects-bridge {
        grid-template-columns: 1fr 1fr;
    }

    .projects-bridge .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .landing-page {
        padding-top: 78px;
    }

    .header {
        top: 8px;
        width: calc(100% - 16px);
        min-height: 60px;
        padding: 7px 8px 7px 13px;
        border-radius: 18px;
    }

    .logo {
        width: 68px;
    }

    .header .btn-phone {
        display: none;
    }

    .header .btn-signup {
        min-height: 42px;
        padding-inline: 14px;
    }

    .navigation {
        inset: 76px 8px auto;
    }

    .nav-popover__grid {
        grid-template-columns: 1fr;
    }

    .nav-popover__intro {
        display: none;
    }

    .hero-studio {
        width: calc(100% - 16px);
        min-height: 0;
        padding: 44px 20px 88px;
        border-radius: 24px;
    }

    .hero-studio h1 {
        font-size: clamp(34px, 10.5vw, 48px);
        overflow-wrap: anywhere;
    }

    .hero-studio__actions {
        display: grid;
    }

    .hero-studio__actions .btn {
        width: 100%;
    }

    .hero-studio__proof {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-studio__proof span {
        display: grid;
        grid-template-columns: 34px 1fr;
        align-items: center;
    }

    .hero-studio__proof strong {
        margin: 0;
    }

    .hero-studio__visual {
        min-height: 420px;
    }

    .launch-board {
        inset: 24px 0 20px;
        padding: 18px;
        border-radius: 23px;
        transform: none;
    }

    .launch-board__orbit {
        width: 210px;
        margin-top: 34px;
    }

    .launch-note {
        min-width: 150px;
        padding: 13px;
    }

    .launch-note--domain {
        right: -10px;
    }

    .launch-note--result {
        bottom: -3px;
        left: -9px;
    }

    .hero-studio__ticker {
        justify-content: flex-start;
    }

    .projects-showcase {
        padding-block: 76px;
    }

    .projects-showcase__intro {
        display: block;
    }

    .projects-showcase__intro > p {
        margin-top: 18px;
    }

    .flagship-wall {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .flagship-card,
    .flagship-card:nth-child(n) {
        grid-column: auto;
        min-height: 330px;
    }

    .flagship-card:nth-child(1),
    .flagship-card:nth-child(2) {
        min-height: 390px;
    }

    .flagship-card footer {
        display: grid;
    }

    .projects-bridge {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .projects-bridge .btn {
        grid-column: auto;
        width: 100%;
    }

    .location-cards article {
        grid-template-columns: 42px minmax(0, 1fr) auto;
    }

    .site-footer {
        width: calc(100% - 24px);
        gap: 26px;
    }

    .site-footer__identity {
        align-items: flex-start;
    }

    .site-footer__nav {
        gap: 16px 20px;
    }
}

@media (max-width: 390px) {
    .header {
        grid-template-columns: auto auto auto;
        gap: 7px;
    }

    .header-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .header .btn-signup {
        min-height: 40px;
        padding-inline: 11px;
        font-size: 12px;
    }

    .location-cards article {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .location-cards p {
        grid-column: 2;
        justify-self: start;
        margin-top: -8px;
    }
}

/* Screenshot-directed refinement: expanding header and hybrid hero. */
.header {
    width: min(calc(100% - 32px), 1160px);
    transition:
        width .42s cubic-bezier(.22, 1, .36, 1),
        top .42s cubic-bezier(.22, 1, .36, 1),
        padding .42s cubic-bezier(.22, 1, .36, 1),
        border-radius .42s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s ease,
        background .28s ease;
}

.header--scrolled {
    top: 0;
    width: 100%;
    padding-right: max(18px, calc((100vw - 1160px) / 2));
    padding-left: max(18px, calc((100vw - 1160px) / 2));
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.hero-studio {
    grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
    gap: clamp(22px, 3.5vw, 48px);
    min-height: 720px;
    margin-bottom: 28px;
    padding: 42px clamp(24px, 3.4vw, 40px) 100px;
}

.hero-studio__content {
    padding: clamp(28px, 3.2vw, 40px);
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 26px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 24px 70px rgba(45, 44, 80, .1);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.hero-studio h1 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.hero-studio__lead {
    margin-top: 22px;
    font-size: clamp(16px, 1.4vw, 18px);
}

.hero-studio__points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.hero-studio__points span {
    padding: 8px 11px;
    border: 1px solid rgba(16, 17, 20, .09);
    border-radius: 999px;
    color: #565866;
    background: rgba(255, 255, 255, .64);
    font-size: 11px;
    font-weight: 900;
}

.hero-studio__signal {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 9px;
    align-items: center;
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 15px;
    background: rgba(255, 255, 255, .62);
    font-size: 10px;
}

.hero-studio__signal strong {
    font-weight: 900;
}

.hero-studio__signal span {
    height: 1px;
    background: linear-gradient(90deg, rgba(119, 114, 232, .22), var(--violet), rgba(119, 114, 232, .22));
}

.hero-studio__actions {
    margin-top: 24px;
}

.hero-studio__visual {
    min-height: 550px;
}

.launch-board {
    inset: 54px 22px 48px 62px;
    opacity: .8;
}

.launch-board__top {
    align-items: center;
}

.launch-board__orbit {
    width: min(68%, 270px);
    margin: auto;
}

.launch-board__core {
    width: 118px;
    height: 94px;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    line-height: 1.15;
    text-transform: lowercase;
}

.launch-board__core small {
    display: block;
    margin-bottom: 3px;
    font: 800 9px/1.2 "Manrope", sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .72;
}

.launch-board__steps,
.launch-note {
    display: none;
}

.launch-step-card {
    position: absolute;
    z-index: 5;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    width: min(72%, 340px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 24px 64px rgba(34, 33, 69, .17);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
    animation: stepCardFloat 5.4s ease-in-out infinite;
}

.launch-step-card > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #fff;
    background: var(--ink);
    font: 800 14px/1 "Unbounded", sans-serif;
}

.launch-step-card h2 {
    font: 700 clamp(15px, 1.5vw, 19px)/1.25 "Unbounded", sans-serif;
    letter-spacing: -.025em;
}

.launch-step-card p {
    margin-top: 8px;
    color: #6c6e7b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.launch-step-card--idea {
    top: 18px;
    left: -8px;
}

.launch-step-card--build {
    top: 202px;
    right: -10px;
    animation-delay: -1.8s;
}

.launch-step-card--result {
    bottom: 4px;
    left: 20px;
    animation-delay: -3.6s;
}

@keyframes stepCardFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-.4deg); }
    50% { transform: translate3d(0, -11px, 0) rotate(.6deg); }
}

/* Project typography follows the main Mounteam system. */
.flagship-card strong {
    font-size: clamp(28px, 3.25vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.flagship-card:nth-child(2) strong,
.flagship-card:nth-child(6) strong {
    font-size: clamp(26px, 3vw, 40px);
}

/* Laravel portfolio pages. */
.portfolio-page {
    min-height: 100vh;
    padding-top: 90px;
    overflow-x: clip;
}

.portfolio-archive-hero,
.portfolio-archive,
.portfolio-contact,
.project-detail-hero,
.project-overview,
.project-work,
.project-outcomes,
.project-related,
.portfolio-footer {
    width: min(calc(100% - 32px), 1160px);
    margin-inline: auto;
}

.portfolio-archive-hero {
    min-height: 520px;
    padding: clamp(36px, 6vw, 72px);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(172, 172, 255, .56), transparent 28%),
        linear-gradient(140deg, #17182a, #3e3a92 72%, #7772e8);
    box-shadow: 0 30px 90px rgba(45, 44, 80, .2);
}

.portfolio-archive-hero h1 {
    max-width: 940px;
    margin-top: 22px;
    font: 600 clamp(42px, 6.6vw, 80px)/1.02 "Unbounded", sans-serif;
    letter-spacing: -.055em;
}

.portfolio-archive-hero > p:not(.section-label) {
    max-width: 740px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.portfolio-archive-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    margin-top: 54px;
}

.portfolio-archive-hero__meta span {
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    font-weight: 800;
}

.portfolio-archive-hero__meta strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font: 600 28px/1 "Unbounded", sans-serif;
}

.portfolio-archive {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
    padding-block: 90px;
}

.project-theme--violet { --project-bg: linear-gradient(145deg, #8e89f2, #3e3a92); --project-ink: #fff; --project-muted: rgba(255,255,255,.68); --project-accent: #b9b6ff; }
.project-theme--lavender { --project-bg: #e4e2ff; --project-ink: #151622; --project-muted: #626474; --project-accent: #7772e8; }
.project-theme--green { --project-bg: #455f51; --project-ink: #fff; --project-muted: rgba(255,255,255,.68); --project-accent: #bfe2ce; }
.project-theme--midnight { --project-bg: radial-gradient(circle at 86% 14%, #7772e8, transparent 32%), #111226; --project-ink: #fff; --project-muted: rgba(255,255,255,.68); --project-accent: #b9b6ff; }
.project-theme--sand { --project-bg: #f2eadb; --project-ink: #1a1a20; --project-muted: #6d675c; --project-accent: #9a7244; }
.project-theme--slate { --project-bg: #e5e8f0; --project-ink: #161822; --project-muted: #616573; --project-accent: #596276; }

.portfolio-archive-card {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 30px;
    overflow: hidden;
    border-radius: 10px;
    color: var(--project-ink);
    background: var(--project-bg);
    transition: transform .25s ease, box-shadow .25s ease;
}

.portfolio-archive-card:nth-child(1),
.portfolio-archive-card:nth-child(4) {
    grid-column: span 5;
}

.portfolio-archive-card:nth-child(2),
.portfolio-archive-card:nth-child(3) {
    grid-column: span 7;
}

.portfolio-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 74px rgba(34, 33, 69, .16);
}

.portfolio-archive-card__meta,
.portfolio-archive-card footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-archive-card__body {
    margin-block: auto;
    padding-block: 46px;
}

.portfolio-archive-card__body small {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.portfolio-archive-card h2 {
    margin-top: 14px;
    font: 600 clamp(30px, 4vw, 52px)/1.06 "Unbounded", sans-serif;
    letter-spacing: -.045em;
}

.portfolio-archive-card p {
    max-width: 560px;
    margin-top: 18px;
    color: var(--project-muted);
    font-weight: 700;
    line-height: 1.65;
}

.portfolio-archive-card footer {
    align-items: end;
}

.portfolio-archive-card footer > span {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-archive-card footer i {
    padding: 5px 8px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-style: normal;
    opacity: .65;
}

.portfolio-contact {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 34px;
    margin-bottom: 70px;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 26px;
    background: rgba(172, 172, 255, .17);
}

.portfolio-contact small {
    color: var(--violet);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.portfolio-contact h2 {
    max-width: 760px;
    margin-top: 10px;
    font: 600 clamp(28px, 4vw, 48px)/1.14 "Unbounded", sans-serif;
    letter-spacing: -.035em;
}

.portfolio-contact .btn {
    flex: 0 0 auto;
}

.project-detail-hero {
    min-height: 660px;
    padding: clamp(32px, 5vw, 62px);
    overflow: hidden;
    border-radius: 30px;
    color: var(--project-ink);
    background: var(--project-bg);
    box-shadow: 0 30px 90px rgba(34, 33, 69, .18);
}

.project-detail-hero .section-label-light {
    color: var(--project-muted);
}

.project-detail-hero__meta {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    color: var(--project-muted);
    font-size: 12px;
    font-weight: 900;
}

.project-detail-hero__meta > span {
    padding: 7px 10px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.project-detail-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
    gap: 48px;
    align-items: center;
    margin-top: 72px;
}

.project-detail-hero h1 {
    max-width: 840px;
    margin-top: 16px;
    font: 600 clamp(44px, 7vw, 86px)/.98 "Unbounded", sans-serif;
    letter-spacing: -.06em;
    overflow-wrap: anywhere;
}

.project-detail-hero__lead {
    max-width: 720px;
    margin-top: 28px;
    color: var(--project-muted);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.65;
}

.project-detail-hero__mark {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 320px);
    aspect-ratio: 1;
    justify-self: end;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: .72;
}

.project-detail-hero__mark::before,
.project-detail-hero__mark::after {
    content: "";
    position: absolute;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.project-detail-hero__mark::before { inset: 15%; }
.project-detail-hero__mark::after { inset: -12%; opacity: .35; }

.project-detail-hero__mark span {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    border-radius: 28px;
    color: var(--project-ink);
    background: var(--project-accent);
    font: 600 42px/1 "Unbounded", sans-serif;
}

.project-detail-hero__mark i {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid var(--project-accent);
    border-radius: 50%;
    background: var(--project-ink);
}

.project-detail-hero__mark i:nth-of-type(1) { top: 8%; left: 28%; }
.project-detail-hero__mark i:nth-of-type(2) { right: 3%; bottom: 32%; }
.project-detail-hero__mark i:nth-of-type(3) { bottom: 9%; left: 21%; }

.project-detail-hero__facts {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .7fr 1fr;
    gap: 26px;
    margin: 58px 0 0;
}

.project-detail-hero__facts div {
    padding-top: 14px;
    border-top: 1px solid currentColor;
}

.project-detail-hero__facts dt {
    color: var(--project-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-detail-hero__facts dd {
    margin: 7px 0 0;
    font-size: 13px;
    font-weight: 900;
}

.project-overview {
    padding-block: 100px;
}

.project-overview__intro h2 {
    max-width: 1000px;
    margin-top: 16px;
    font: 600 clamp(30px, 4.6vw, 56px)/1.2 "Unbounded", sans-serif;
    letter-spacing: -.035em;
}

.project-overview__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.project-overview__tags span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 56px;
}

.project-stats article {
    min-height: 190px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 24px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 20px 60px rgba(45, 44, 80, .08);
}

.project-stats strong,
.project-stats span {
    display: block;
}

.project-stats strong {
    font: 600 clamp(36px, 5vw, 60px)/1 "Unbounded", sans-serif;
}

.project-stats span {
    margin-top: 50px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.project-work {
    width: 100%;
    padding: 92px max(16px, calc((100vw - 1160px) / 2));
    color: #fff;
    background: #101114;
}

.project-work__intro {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 40px;
    align-items: end;
}

.project-work__intro h2 {
    font: 600 clamp(32px, 4.8vw, 58px)/1.1 "Unbounded", sans-serif;
    letter-spacing: -.04em;
}

.project-work__list {
    margin-top: 58px;
}

.project-work__list article {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.project-work__list article > span {
    color: var(--lavender);
    font: 600 14px/1 "Unbounded", sans-serif;
}

.project-work__list h3 {
    font: 600 clamp(22px, 3vw, 34px)/1.2 "Unbounded", sans-serif;
}

.project-work__list p {
    max-width: 720px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
}

.project-outcomes {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    padding-block: 100px;
}

.project-outcomes h2,
.project-related__head h2 {
    margin-top: 12px;
    font: 600 clamp(30px, 4vw, 48px)/1.13 "Unbounded", sans-serif;
    letter-spacing: -.035em;
}

.project-outcomes ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: outcomes;
}

.project-outcomes li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    font-size: 17px;
    font-weight: 800;
    counter-increment: outcomes;
}

.project-outcomes li::before {
    content: "0" counter(outcomes);
    color: var(--violet);
    font: 600 11px/1.8 "Unbounded", sans-serif;
}

.project-related {
    padding-bottom: 90px;
}

.project-related__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.project-related__head > a {
    color: var(--violet);
    font-weight: 900;
}

.project-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.project-related-card {
    min-height: 310px;
    padding: 24px;
    border-radius: 18px;
    color: var(--project-ink);
    background: var(--project-bg);
}

.project-related-card small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-related-card h3 {
    margin-top: 52px;
    font: 600 clamp(20px, 2.4vw, 30px)/1.15 "Unbounded", sans-serif;
    letter-spacing: -.03em;
}

.project-related-card p {
    margin-top: 14px;
    color: var(--project-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.project-related-card > span {
    display: block;
    margin-top: 30px;
    font-size: 11px;
    font-weight: 900;
}

.portfolio-footer {
    margin-top: 0;
}

@media (max-width: 1060px) {
    .hero-studio {
        grid-template-columns: 1fr;
    }

    .hero-studio__visual {
        width: min(100%, 680px);
        min-height: 560px;
    }

    .project-detail-hero__content {
        grid-template-columns: 1fr;
    }

    .project-detail-hero__mark {
        position: absolute;
        right: -40px;
        bottom: -120px;
        opacity: .2;
    }
}

@media (max-width: 720px) {
    .header {
        width: calc(100% - 16px);
    }

    .header--scrolled {
        width: 100%;
        padding-inline: 10px;
    }

    .hero-studio {
        margin-bottom: 18px;
        padding: 22px 14px 84px;
    }

    .hero-studio__content {
        padding: 24px 20px;
        border-radius: 21px;
    }

    .hero-studio h1 {
        font-size: clamp(32px, 9.8vw, 44px);
    }

    .hero-studio__signal {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-studio__signal span {
        display: none;
    }

    .hero-studio__signal strong {
        text-align: center;
    }

    .hero-studio__visual {
        min-height: 610px;
    }

    .launch-board {
        inset: 70px 12px 80px;
    }

    .launch-board__top strong {
        max-width: 110px;
        text-align: right;
    }

    .launch-board__orbit {
        width: 210px;
    }

    .launch-step-card {
        width: min(92%, 350px);
        padding: 16px;
    }

    .launch-step-card--idea { top: 6px; left: 0; }
    .launch-step-card--build { top: 230px; right: 0; }
    .launch-step-card--result { bottom: 4px; left: 8px; }

    .portfolio-page {
        padding-top: 78px;
    }

    .portfolio-archive-hero,
    .portfolio-archive,
    .portfolio-contact,
    .project-detail-hero,
    .project-overview,
    .project-outcomes,
    .project-related,
    .portfolio-footer {
        width: calc(100% - 16px);
    }

    .portfolio-archive-hero,
    .project-detail-hero {
        min-height: 0;
        padding: 38px 22px;
        border-radius: 23px;
    }

    .portfolio-archive-hero h1,
    .project-detail-hero h1 {
        font-size: clamp(36px, 11.5vw, 54px);
    }

    .portfolio-archive {
        grid-template-columns: 1fr;
        padding-block: 64px;
    }

    .portfolio-archive-card,
    .portfolio-archive-card:nth-child(n) {
        grid-column: auto;
        min-height: 360px;
    }

    .portfolio-archive-card footer {
        display: grid;
    }

    .portfolio-contact {
        display: grid;
        margin-bottom: 48px;
    }

    .portfolio-contact .btn {
        width: 100%;
    }

    .project-detail-hero__content {
        margin-top: 54px;
    }

    .project-detail-hero__facts {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .project-overview {
        padding-block: 70px;
    }

    .project-stats,
    .project-related__grid {
        grid-template-columns: 1fr;
    }

    .project-stats article {
        min-height: 150px;
    }

    .project-stats span {
        margin-top: 30px;
    }

    .project-work {
        padding-block: 70px;
    }

    .project-work__intro,
    .project-outcomes {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-work__list article {
        grid-template-columns: 48px 1fr;
    }

    .project-outcomes {
        padding-block: 70px;
    }

    .project-related__head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .launch-step-card {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .launch-step-card > span {
        width: 34px;
        height: 34px;
    }

    .launch-step-card h2 {
        font-size: 14px;
    }

    .launch-step-card p {
        font-size: 11px;
    }
}

/* Final visual corrections from the annotated screenshots. */
.btn-primary {
    overflow: hidden;
    border: 0;
    background: linear-gradient(120deg, #aaa6f8 0%, #8d88f0 48%, #7772e8 100%);
    background-clip: border-box;
    box-shadow: 0 16px 36px rgba(119, 114, 232, .24);
}

.domain-stats-shell {
    color: #fff;
    background:
        radial-gradient(circle at 78% 12%, rgba(172, 172, 255, .24), transparent 31%),
        radial-gradient(circle at 14% 8%, rgba(119, 114, 232, .18), transparent 34%),
        linear-gradient(145deg, #101114, #1d1d30 72%, #25233e);
}

.domain-stats-shell .domain-check-section,
.domain-stats-shell .stats-section {
    background: transparent;
}

.domain-stats-shell .domain-check-section {
    padding-bottom: 34px;
}

.domain-stats-shell .stats-section {
    padding-top: 0;
}

.domain-check__copy h2,
.section-head h2,
.projects-showcase__intro h2,
.locations-copy h2 {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    letter-spacing: -.04em;
}

.projects-showcase__intro h2 {
    font-size: clamp(30px, 4.1vw, 54px);
    line-height: 1.1;
}

.locations-copy h2 {
    font-size: clamp(29px, 3.45vw, 46px);
    line-height: 1.1;
}

.hero-studio__content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-studio h1 {
    max-width: 520px;
    font-size: clamp(38px, 4.15vw, 56px);
}

.hero-studio__lead {
    max-width: 520px;
    font-size: clamp(15px, 1.3vw, 17px);
}

.launch-step-card--build {
    top: 160px;
    right: -40px;
}

.launch-board__orbit {
    transform: translateX(-64px);
}

.studio-services {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
}

.studio-service {
    --service-bg: rgba(255, 255, 255, .72);
    --service-ink: #15161e;
    --service-muted: #666977;
    --service-accent: #7772e8;
    grid-column: span 4;
    min-height: 320px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 10px;
    color: var(--service-ink);
    background: var(--service-bg) !important;
    box-shadow: 0 20px 60px rgba(45, 44, 80, .1);
}

.studio-service:hover,
.studio-service--featured:hover {
    color: var(--service-ink);
    background: var(--service-bg) !important;
    filter: saturate(1.06);
}

.studio-service span {
    color: var(--service-accent);
}

.studio-service h3,
.studio-service--featured h3 {
    max-width: 90%;
    color: var(--service-ink);
    font-size: clamp(24px, 2.65vw, 38px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.studio-service p,
.studio-service small,
.studio-service strong,
.studio-service--featured p,
.studio-service--featured strong {
    color: var(--service-muted);
}

.studio-service::after {
    right: -12px;
    bottom: -24px;
    width: 190px;
    height: 190px;
    opacity: .13;
    animation: serviceArtworkFloat 7s ease-in-out infinite;
}

.studio-service:nth-child(1) {
    --service-bg: linear-gradient(145deg, #8f8af2, #3e3a92);
    --service-ink: #fff;
    --service-muted: rgba(255, 255, 255, .72);
    --service-accent: #d8d6ff;
    grid-column: span 7;
    min-height: 410px;
}

.studio-service:nth-child(2) {
    --service-bg: #e5e3ff;
    grid-column: span 5;
    min-height: 410px;
}

.studio-service:nth-child(3) {
    --service-bg: radial-gradient(circle at 86% 12%, #7772e8, transparent 34%), #111226;
    --service-ink: #fff;
    --service-muted: rgba(255, 255, 255, .68);
    --service-accent: #b9b6ff;
    grid-column: span 4;
}

.studio-service:nth-child(4) {
    --service-bg: #f2eadb;
    --service-accent: #987047;
    grid-column: span 4;
}

.studio-service:nth-child(5) {
    --service-bg: #414f49;
    --service-ink: #fff;
    --service-muted: rgba(255, 255, 255, .7);
    --service-accent: #c5e3d3;
    grid-column: span 4;
}

.studio-service:nth-child(6) {
    --service-bg: #e4e8f1;
    --service-accent: #596276;
    grid-column: span 5;
    min-height: 360px;
}

.studio-service:nth-child(7) {
    --service-bg: linear-gradient(145deg, #ecebff, #d7d4ff);
    grid-column: span 7;
    min-height: 360px;
}

.studio-service:nth-child(8) {
    --service-bg: #fff;
    grid-column: span 4;
}

.studio-service:nth-child(9) {
    --service-bg: #eee5f1;
    --service-accent: #765d81;
    grid-column: span 4;
}

.studio-service:nth-child(10) {
    --service-bg: linear-gradient(145deg, #25263b, #101114);
    --service-ink: #fff;
    --service-muted: rgba(255, 255, 255, .68);
    --service-accent: #b9b6ff;
    grid-column: span 4;
}

.studio-service:nth-child(3)::after,
.studio-service:nth-child(5)::after,
.studio-service:nth-child(10)::after {
    background-color: transparent;
    filter: invert(1);
    width: 220px;
    height: 220px;
    opacity: .34;
}

.studio-service:nth-child(2)::after,
.studio-service:nth-child(6)::after {
    animation-delay: -1.2s;
}

.studio-service:nth-child(3)::after,
.studio-service:nth-child(7)::after {
    animation-delay: -2.4s;
}

.studio-service:nth-child(4)::after,
.studio-service:nth-child(8)::after {
    animation-delay: -3.6s;
}

.studio-service:nth-child(5)::after,
.studio-service:nth-child(9)::after {
    animation-delay: -4.8s;
}

.studio-service[href*="/security"] h3 {
    max-width: 100%;
    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

@keyframes serviceArtworkFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
    50% { transform: translate3d(-9px, -12px, 0) rotate(2deg); }
}

@media (max-width: 980px) {
    .studio-service,
    .studio-service:nth-child(n) {
        grid-column: span 6;
        min-height: 340px;
    }
}

@media (max-width: 720px) {
    .studio-services {
        grid-template-columns: 1fr;
    }

    .studio-service,
    .studio-service:nth-child(n) {
        grid-column: auto;
        min-height: 310px;
    }

    .studio-service[href*="/security"] h3 {
        font-size: 22px;
    }

    .launch-step-card--build {
        top: 130px;
        right: -4px;
    }

    .launch-board__orbit {
        transform: none;
    }
}

/* Latest homepage refinements. */
.launch-step-card,
.launch-step-card--build {
    width: 310px;
    max-width: calc(100% - 16px);
}

.domain-stats-shell {
    background:
        radial-gradient(circle at 78% 8%, rgba(119, 114, 232, .12), transparent 28%),
        radial-gradient(circle at 14% 6%, rgba(172, 172, 255, .08), transparent 31%),
        #101114;
}

.domain-check__copy,
.stat-item {
    background: rgba(255, 255, 255, .045);
}

.domain-widget {
    background:
        radial-gradient(circle at 82% 24%, rgba(119, 114, 232, .1), transparent 28%),
        rgba(255, 255, 255, .045);
}

.locations-inner {
    align-items: start;
}

.locations-inner > .location-cards {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 0;
}

.location-cards article {
    grid-template-columns: 46px minmax(0, 1fr) auto;
}

.location-cards .location-flag {
    width: 38px;
    height: 26px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.package-card {
    font-family: "Manrope", sans-serif;
}

.package-list strong {
    font: 700 clamp(17px, 1.65vw, 21px)/1.28 "Unbounded", sans-serif;
    letter-spacing: -.025em;
}

.package-list p {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.65;
}

@media (max-width: 720px) {
    .launch-step-card,
    .launch-step-card--build {
        width: min(92%, 310px);
    }

    .locations-inner > .location-cards {
        grid-template-columns: 1fr;
    }
}

/* Conversion-focused homepage structure after the commercial audit. */
.hero-studio h1 {
    max-width: 590px;
    font-size: clamp(36px, 3.75vw, 52px);
}

.hero-studio__facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #555866;
    font-size: 12px;
    font-weight: 900;
}

.hero-studio__facts i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--violet);
}

.task-selector {
    width: min(100% - 32px, 1160px);
    margin-inline: auto;
    padding-top: 42px;
}

.task-selector .section-head > p,
.services-section .section-head > p,
.team-section .section-head > p {
    max-width: 470px;
    color: #717381;
    font-weight: 700;
    line-height: 1.65;
}

.task-selector__options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.task-selector__options button {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(31, 31, 45, .08);
    border-radius: 18px;
    color: var(--ink);
    text-align: left;
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 18px 48px rgba(45, 44, 80, .08);
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.task-selector__options button:hover,
.task-selector__options button.is-active {
    transform: translateY(-5px);
    border-color: rgba(119, 114, 232, .42);
    background: #fff;
    box-shadow: 0 26px 64px rgba(45, 44, 80, .14);
}

.task-selector__options button > span {
    color: var(--violet);
    font: 700 11px/1 "Unbounded", sans-serif;
}

.task-selector__options strong {
    margin-top: auto;
    font: 700 clamp(17px, 1.65vw, 22px)/1.25 "Unbounded", sans-serif;
    letter-spacing: -.035em;
}

.task-selector__options small {
    margin-top: 10px;
    color: #777987;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.task-recommendation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-top: 12px;
    padding: 24px 26px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(125deg, #191a24, #353367);
    animation: recommendationReveal .44s ease both;
}

.task-recommendation[hidden] {
    display: none;
}

.task-recommendation > div {
    display: grid;
    gap: 6px;
}

.task-recommendation > div > span {
    color: var(--lavender);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.task-recommendation strong {
    font: 700 clamp(19px, 2vw, 27px)/1.2 "Unbounded", sans-serif;
}

.task-recommendation p {
    max-width: 680px;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
}

@keyframes recommendationReveal {
    from { opacity: 0; transform: translateY(-14px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 42px;
}

.site-product {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 24px 64px rgba(45, 44, 80, .1);
    transition: transform .24s ease, box-shadow .24s ease, outline-color .24s ease;
}

.site-product:nth-child(2) {
    color: #fff;
    background: linear-gradient(145deg, #8f8af2, #3e3a92);
}

.site-product:nth-child(3) {
    background: #e5e3ff;
}

.site-product.is-recommended {
    transform: translateY(-9px);
    outline: 3px solid rgba(119, 114, 232, .28);
    box-shadow: 0 34px 84px rgba(45, 44, 80, .2);
    animation: productRecommend .5s ease both;
}

@keyframes productRecommend {
    0% { transform: translateY(0) scale(.985); }
    100% { transform: translateY(-9px) scale(1); }
}

.services-section.journey-section--active .site-product {
    animation: journeySectionReveal .54s ease both;
}

.services-section.journey-section--active .site-product:nth-child(2) { animation-delay: .08s; }
.services-section.journey-section--active .site-product:nth-child(3) { animation-delay: .16s; }

@keyframes journeySectionReveal {
    from { opacity: .35; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-product__top,
.site-product footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.site-product__top span {
    color: var(--violet);
    font: 700 11px/1 "Unbounded", sans-serif;
}

.site-product:nth-child(2) .site-product__top span {
    color: var(--lavender);
}

.site-product__top strong {
    font-size: 14px;
}

.site-product h3 {
    margin-top: 58px;
    font: 700 clamp(27px, 3vw, 40px)/1.08 "Unbounded", sans-serif;
    letter-spacing: -.045em;
}

.site-product > p {
    margin-top: 18px;
    color: #696b78;
    font-weight: 700;
    line-height: 1.65;
}

.site-product:nth-child(2) > p,
.site-product:nth-child(2) ul {
    color: rgba(255, 255, 255, .72);
}

.site-product ul {
    display: grid;
    gap: 9px;
    margin: 24px 0 34px;
    padding: 0;
    color: #60626f;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
}

.site-product li::before {
    content: "✓";
    margin-right: 9px;
    color: var(--violet);
}

.site-product footer {
    margin-top: auto;
    font-size: 13px;
    font-weight: 900;
}

.site-product footer a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.addon-prices {
    margin-top: 14px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 20px;
    background: #11121a;
    color: #fff;
}

.addon-prices__intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
}

.addon-prices__intro h3 {
    max-width: 660px;
    font: 700 clamp(24px, 3vw, 38px)/1.15 "Unbounded", sans-serif;
    letter-spacing: -.04em;
}

.addon-prices__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.addon-prices__grid a {
    display: grid;
    gap: 10px;
    min-height: 112px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: background .2s ease;
}

.addon-prices__grid a:hover {
    background: rgba(172, 172, 255, .12);
}

.addon-prices__grid span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
}

.addon-prices__grid strong {
    align-self: end;
    font: 700 15px/1.2 "Unbounded", sans-serif;
}

.addon-prices__note {
    margin-top: 18px;
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
    font-weight: 700;
}

.commercial-cases {
    display: grid;
    gap: 12px;
    margin-top: 42px;
}

.commercial-case {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: center;
    min-height: 520px;
    padding: clamp(24px, 4vw, 48px);
    border-radius: 12px;
    color: var(--project-ink);
    background: var(--project-bg);
}

.commercial-case:nth-child(even) .commercial-case__screen {
    order: 2;
}

.commercial-case__screen {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 26px 80px rgba(23, 23, 38, .2);
    transform: rotate(-1.5deg);
}

.commercial-case:nth-child(even) .commercial-case__screen {
    transform: rotate(1.5deg);
}

.case-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 38px;
    padding: 0 14px;
    background: rgba(24, 24, 32, .08);
}

.case-browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(24, 24, 32, .26);
}

.case-browser-bar span {
    margin-left: 8px;
    color: #777987;
    font-size: 9px;
    font-weight: 800;
}

.case-browser-page {
    display: grid;
    align-content: center;
    min-height: 322px;
    padding: 36px;
    color: #15161e;
    background:
        radial-gradient(circle at 78% 22%, rgba(119, 114, 232, .25), transparent 28%),
        linear-gradient(135deg, #fff, #ebeaff);
}

.commercial-case__screen--mounteam-education .case-browser-page {
    background: linear-gradient(145deg, #e5e3ff, #fff);
}

.commercial-case__screen--imsit-institute .case-browser-page {
    background: linear-gradient(145deg, #e5e8f0, #fff);
}

.case-browser-page small {
    color: var(--violet);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.case-browser-page strong {
    max-width: 390px;
    margin: 20px 0 34px;
    font: 700 clamp(28px, 4vw, 52px)/1.05 "Unbounded", sans-serif;
    letter-spacing: -.05em;
}

.case-browser-page > span {
    display: block;
    width: 78%;
    height: 8px;
    margin-top: 9px;
    border-radius: 999px;
    background: rgba(24, 24, 32, .1);
}

.case-browser-page > span:nth-last-child(2) { width: 62%; }
.case-browser-page > span:last-child { width: 44%; }

.commercial-case__content > span {
    color: var(--project-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.commercial-case__content h3 {
    margin-top: 18px;
    font: 700 clamp(28px, 3.8vw, 48px)/1.08 "Unbounded", sans-serif;
    letter-spacing: -.045em;
}

.commercial-case__content > p {
    margin-top: 18px;
    color: var(--project-muted);
    font-weight: 700;
    line-height: 1.65;
}

.commercial-case__result {
    display: grid;
    gap: 7px;
    margin: 28px 0;
    padding: 18px;
    border: 1px solid currentColor;
    border-radius: 14px;
    opacity: .78;
}

.commercial-case__result small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.commercial-case__result strong {
    font: 700 15px/1.35 "Unbounded", sans-serif;
}

.commercial-case__content > a {
    font-weight: 900;
}

.why-highlight {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    margin-top: 44px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
}

.why-highlight > span,
.why-grid article > span {
    color: var(--lavender);
    font: 700 10px/1 "Unbounded", sans-serif;
}

.why-highlight strong,
.why-grid strong {
    font: 700 15px/1.35 "Unbounded", sans-serif;
}

.why-highlight p,
.why-grid p {
    margin-top: 8px;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    opacity: .66;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.why-grid article {
    min-height: 170px;
    padding: 20px;
    border: 1px solid rgba(24, 24, 30, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
}

.why-grid strong {
    display: block;
    margin-top: 34px;
}

.process-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 42px;
}

.process-results article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .075);
}

.process-results article > span {
    color: var(--lavender);
    font: 700 11px/1 "Unbounded", sans-serif;
}

.process-results h3 {
    font: 700 18px/1.25 "Unbounded", sans-serif;
}

.process-results p {
    margin-top: 10px;
    color: rgba(255, 255, 255, .62);
    font-weight: 700;
    line-height: 1.6;
}

.team-section {
    width: min(100% - 32px, 1160px);
    margin-inline: auto;
}

.team-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 12px;
    margin-top: 40px;
}

.team-lead {
    display: grid;
    grid-template-columns: minmax(180px, .7fr) minmax(260px, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #191a24, #333160);
}

.team-lead__portrait {
    display: grid;
    place-items: center;
    min-height: 320px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .2), transparent 25%),
        linear-gradient(145deg, #8f8af2, #3e3a92);
}

.team-lead__portrait span {
    font: 700 clamp(42px, 7vw, 76px)/1 "Unbounded", sans-serif;
    opacity: .74;
}

.team-lead > div > span {
    color: var(--lavender);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.team-lead h3 {
    margin-top: 18px;
    font: 700 clamp(26px, 3vw, 40px)/1.08 "Unbounded", sans-serif;
    letter-spacing: -.04em;
}

.team-lead p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
    line-height: 1.65;
}

.team-lead strong {
    display: block;
    margin-top: 26px;
    font-size: 12px;
}

.team-responsibilities {
    display: grid;
    gap: 10px;
}

.team-responsibilities article {
    padding: 22px;
    border: 1px solid rgba(24, 24, 30, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .68);
}

.team-responsibilities span {
    color: var(--violet);
    font: 700 9px/1 "Unbounded", sans-serif;
}

.team-responsibilities strong {
    display: block;
    margin-top: 18px;
    font: 700 15px/1.3 "Unbounded", sans-serif;
}

.team-responsibilities p {
    margin-top: 8px;
    color: #717381;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.contact-section {
    align-items: stretch;
}

.contact-path {
    padding: clamp(26px, 4vw, 44px);
    border-radius: 20px;
}

.contact-path--estimate {
    color: #fff;
    background: linear-gradient(145deg, #191a24, #343264);
}

.contact-path--direct {
    color: var(--ink);
    background: rgba(255, 255, 255, .76);
}

.contact-path h2 {
    margin-top: 18px;
    font-size: clamp(28px, 3vw, 42px);
}

.contact-path > p:not(.section-label) {
    margin-top: 16px;
    color: inherit;
    opacity: .66;
}

.contact-form--short {
    margin-top: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.contact-form--short input,
.contact-form--short textarea {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.contact-form--short input:focus,
.contact-form--short textarea:focus {
    outline: 2px solid rgba(172, 172, 255, .55);
}

.contact-form__optional summary {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.contact-form__optional textarea {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
}

.contact-form--short > small {
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    line-height: 1.5;
}

.form-message--error {
    color: #ffd4d4;
    background: rgba(255, 80, 80, .12);
}

.direct-contacts {
    display: grid;
    gap: 9px;
    margin-top: 32px;
}

.direct-contacts a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 19px;
    border: 1px solid rgba(24, 24, 30, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .58);
    transition: transform .2s ease, background .2s ease;
}

.direct-contacts a:hover {
    transform: translateX(4px);
    background: #fff;
}

.direct-contacts span {
    color: #747684;
    font-size: 12px;
    font-weight: 800;
}

.direct-contacts strong {
    font-size: 12px;
    text-align: right;
}

.contact-response {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #6d6f7c;
    font-size: 11px;
    font-weight: 800;
}

.contact-response i,
.quick-chat__head i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63c987;
    box-shadow: 0 0 0 5px rgba(99, 201, 135, .14);
}

.quick-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
}

.quick-chat__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #15161e;
    box-shadow: 0 18px 48px rgba(17, 18, 26, .26);
    font-weight: 900;
    cursor: pointer;
}

.quick-chat__toggle i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #63c987;
}

.quick-chat__panel {
    position: absolute;
    right: 0;
    bottom: 64px;
    width: min(360px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid rgba(24, 24, 30, .1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(23, 23, 38, .26);
    animation: chatReveal .25s ease both;
}

.quick-chat__panel[hidden],
.quick-chat__answer[hidden] {
    display: none;
}

@keyframes chatReveal {
    from { opacity: 0; transform: translateY(12px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.quick-chat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 18px;
    color: #fff;
    background: #15161e;
}

.quick-chat__head > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
}

.quick-chat__head button {
    color: #fff;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

.quick-chat__body {
    padding: 18px;
}

.quick-chat__body > p {
    color: #626472;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.quick-chat__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.quick-chat__choices button {
    padding: 9px 11px;
    border: 1px solid rgba(24, 24, 30, .1);
    border-radius: 999px;
    color: #444653;
    background: #f5f4ff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.quick-chat__choices button.is-active {
    color: #fff;
    background: var(--violet);
}

.quick-chat__answer {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding: 13px;
    border-radius: 12px;
    background: #f3f2ff;
    color: #5e6070;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.quick-chat__answer a {
    color: var(--violet);
    font-weight: 900;
}

.quick-chat__channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(24, 24, 30, .08);
}

.quick-chat__channels a {
    padding: 13px 8px;
    color: #5f6170;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
}

.quick-chat__channels a + a {
    border-left: 1px solid rgba(24, 24, 30, .08);
}

.location-map__focus-country,
.location-map__russia {
    fill: rgba(218, 218, 224, .48);
    stroke: rgba(255, 255, 255, .46);
}

.site-product--corporate h3 {
    font-size: clamp(23px, 2.45vw, 34px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.commercial-case__screen--anicloud-network .case-browser-bar {
    background: #171825;
}

.commercial-case__screen--anicloud-network .case-browser-bar span {
    color: rgba(255, 255, 255, .58);
}

.commercial-case__screen--anicloud-network .case-browser-bar i {
    background: rgba(255, 255, 255, .28);
}

.commercial-case__screen--anicloud-network .case-browser-page {
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(132, 118, 255, .58), transparent 26%),
        radial-gradient(circle at 18% 88%, rgba(70, 204, 255, .22), transparent 34%),
        linear-gradient(145deg, #20223b, #0d0e18 72%);
}

.commercial-case__screen--anicloud-network .case-browser-page small {
    color: #bcb5ff;
}

.commercial-case__screen--anicloud-network .case-browser-page > span {
    background: rgba(255, 255, 255, .16);
}

.roadmap-section {
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(rgba(119, 114, 232, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 114, 232, .07) 1px, transparent 1px),
        linear-gradient(135deg, #f6f5ff, #fff 48%, #e8e6ff);
    background-size: 42px 42px, 42px 42px, auto;
}

.roadmap-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: end;
}

.roadmap-section__head h2 {
    max-width: 820px;
    font: 700 clamp(34px, 5vw, 66px)/1.03 "Unbounded", sans-serif;
    letter-spacing: -.055em;
}

.roadmap-section__head > p {
    color: #666876;
    font-weight: 700;
    line-height: 1.65;
}

.roadmap-builder {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 12px;
    margin-top: 42px;
}

.roadmap-catalog,
.roadmap-plan {
    padding: clamp(20px, 3.5vw, 38px);
    border: 1px solid rgba(25, 25, 34, .08);
    border-radius: 22px;
}

.roadmap-catalog {
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(18px);
}

.roadmap-plan {
    display: flex;
    min-height: 590px;
    flex-direction: column;
    color: #fff;
    background:
        radial-gradient(circle at 92% 6%, rgba(139, 130, 255, .28), transparent 28%),
        #15161e;
    box-shadow: 0 28px 80px rgba(31, 31, 49, .18);
}

.roadmap-column-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.roadmap-column-head span {
    font: 700 14px/1.2 "Unbounded", sans-serif;
}

.roadmap-column-head small {
    color: #858795;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.roadmap-plan .roadmap-column-head small {
    color: #aaa6ff;
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    min-height: 96px;
}

.roadmap-items button,
.roadmap-dropzone button {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px 13px;
    min-width: 0;
    padding: 17px;
    border: 1px solid rgba(30, 30, 40, .09);
    border-radius: 15px;
    color: #20212b;
    background: #fff;
    box-shadow: 0 8px 28px rgba(33, 32, 66, .06);
    text-align: left;
    cursor: grab;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.roadmap-items button:hover,
.roadmap-dropzone button:hover {
    z-index: 2;
    border-color: rgba(119, 114, 232, .38);
    box-shadow: 0 16px 34px rgba(69, 64, 151, .14);
    transform: translateY(-3px);
}

.roadmap-items button > span,
.roadmap-dropzone button > span {
    grid-row: 1 / span 2;
    color: var(--violet);
    font: 700 10px/1 "Unbounded", sans-serif;
}

.roadmap-items button strong,
.roadmap-dropzone button strong {
    min-width: 0;
    font: 700 13px/1.25 "Unbounded", sans-serif;
}

.roadmap-items button small,
.roadmap-dropzone button small {
    color: #777986;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.roadmap-items button.is-dragging,
.roadmap-dropzone button.is-dragging {
    opacity: .4;
    cursor: grabbing;
    transform: scale(.98);
}

.roadmap-dropzone {
    display: flex;
    flex: 1;
    min-height: 440px;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border: 1px dashed rgba(187, 182, 255, .4);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
}

.roadmap-dropzone > p {
    margin: auto;
    padding: 30px;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.roadmap-dropzone > p[hidden] {
    display: none;
}

.roadmap-dropzone button {
    width: 100%;
    color: #fff;
    border-color: rgba(255, 255, 255, .13);
    background: linear-gradient(125deg, rgba(131, 123, 246, .28), rgba(255, 255, 255, .075));
    box-shadow: none;
}

.roadmap-dropzone button small {
    color: rgba(255, 255, 255, .6);
}

.roadmap-dropzone button::after {
    content: "⋮⋮";
    position: absolute;
    right: 13px;
    top: 50%;
    color: rgba(255, 255, 255, .34);
    font-weight: 900;
    transform: translateY(-50%) rotate(90deg);
}

.roadmap-plan__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.roadmap-plan__actions > button {
    color: rgba(255, 255, 255, .56);
    background: none;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.roadmap-plan__actions .btn {
    min-height: 48px;
}

.contact-form__comment {
    display: grid;
    gap: 8px;
}

.contact-form__comment textarea {
    min-height: 112px;
    resize: vertical;
}

@media (max-width: 980px) {
    .task-selector__options,
    .site-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-product:last-child {
        grid-column: 1 / -1;
    }

    .addon-prices__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .commercial-case,
    .roadmap-section__head,
    .roadmap-builder,
    .team-layout {
        grid-template-columns: 1fr;
    }

    .commercial-case:nth-child(even) .commercial-case__screen {
        order: initial;
    }
}

@media (max-width: 720px) {
    .hero-studio h1 {
        font-size: clamp(32px, 10vw, 43px);
    }

    .hero-studio__facts {
        gap: 8px;
    }

    .task-selector__options,
    .site-products,
    .addon-prices__grid,
    .roadmap-items,
    .why-grid,
    .process-results {
        grid-template-columns: 1fr;
    }

    .task-selector__options button {
        min-height: 160px;
    }

    .task-recommendation,
    .addon-prices__intro {
        display: grid;
    }

    .task-recommendation .btn {
        width: 100%;
    }

    .site-product,
    .site-product:last-child {
        grid-column: auto;
        min-height: 440px;
    }

    .commercial-case {
        min-height: 0;
    }

    .commercial-case__screen {
        min-height: 280px;
    }

    .case-browser-page {
        min-height: 242px;
        padding: 24px;
    }

    .team-lead {
        grid-template-columns: 1fr;
    }

    .team-lead__portrait {
        min-height: 240px;
    }

    .roadmap-plan {
        min-height: 520px;
    }

    .roadmap-plan__actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .roadmap-plan__actions .btn {
        width: 100%;
    }

    .quick-chat {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .task-recommendation,
    .site-product.is-recommended,
    .quick-chat__panel {
        animation: none;
    }
}

/* Keep Education-specific hero sizing above later legacy refinements. */
.education-site .education-hero h1 {
    max-width: 640px;
    font-size: clamp(38px, 4.35vw, 62px);
}

@media (max-width: 720px) {
    .education-site .education-hero h1 {
        font-size: clamp(32px, 10vw, 43px);
    }
}
