:root {
    --ink: #07111f;
    --ink-2: #101d2f;
    --blue: #1468ff;
    --blue-deep: #0e49c9;
    --cyan: #42d7e8;
    --lime: #c9ff54;
    --cream: #f4efe3;
    --paper: #fbfcff;
    --white: #fff;
    --muted: #667085;
    --line: rgba(7,17,31,.12);
    --shell: 1220px;
    --radius: 28px;
    --shadow: 0 30px 80px rgba(7,17,31,.12);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -70px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: #fff;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(7,17,31,.88);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand__mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue);
    box-shadow: 0 9px 28px rgba(20,104,255,.28);
}

.brand__mark svg { width: 21px; fill: #fff; }
.brand__word { font-size: 23px; }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 650;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: #fff;
    transition: right .2s ease;
}

.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 16px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .2s ease;
}

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

.mobile-menu {
    position: fixed;
    inset: 86px 0 0;
    background: var(--ink);
}

.mobile-menu__inner {
    min-height: calc(100vh - 86px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 36px;
}

.mobile-menu nav { display: grid; }

.mobile-menu nav a {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    color: #fff;
    font-size: clamp(28px, 8vw, 46px);
    font-weight: 760;
    letter-spacing: -.045em;
}

.mobile-menu nav a span {
    color: var(--cyan);
    font-size: 11px;
    letter-spacing: .12em;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 760;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button--small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
}

.button--light {
    color: var(--ink);
    background: #fff;
}

.button--primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 15px 35px rgba(20,104,255,.28);
}

.button--primary:hover { background: #2c79ff; }

.button--white {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.button--dark {
    color: #fff;
    background: var(--ink);
}

.button--full { width: 100%; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 760;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 23px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 12%, transparent);
}

.eyebrow--light { color: var(--cyan); }

.section { padding: 120px 0; }
.section--soft { background: #f1f5fb; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 880px;
    padding-top: 86px;
    color: #fff;
    background: var(--ink);
}

.hero__ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero__orb--one {
    width: 700px;
    height: 700px;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(20,104,255,.48), transparent 66%);
}

.hero__orb--two {
    width: 580px;
    height: 580px;
    bottom: -260px;
    left: -260px;
    background: radial-gradient(circle, rgba(66,215,232,.17), transparent 67%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: 70px;
    padding-top: 36px;
    padding-bottom: 64px;
}

.hero h1,
.page-hero h1,
.quote-page h1,
.contact-page h1 {
    margin: 0;
    font-size: clamp(58px, 7.5vw, 112px);
    line-height: .89;
    letter-spacing: -.075em;
    font-weight: 820;
}

.hero h1 em,
.page-hero h1 em,
.quote-page h1 em,
.contact-page h1 em {
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero__lede {
    max-width: 690px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 35px;
}

.hero__visual {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}

.screen-card {
    width: min(100%, 520px);
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(255,255,255,.065);
    box-shadow: 0 45px 100px rgba(0,0,0,.36);
    backdrop-filter: blur(18px);
    transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}

.screen-card__top {
    display: flex;
    justify-content: space-between;
    padding: 4px 4px 15px;
    color: rgba(255,255,255,.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cyan);
}

.live-dot::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(66,215,232,.10);
}

.screen-card__frame {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 17px;
    background:
        linear-gradient(130deg, rgba(20,104,255,.33), transparent 42%),
        radial-gradient(circle at 70% 28%, rgba(201,255,84,.20), transparent 26%),
        linear-gradient(160deg, #192743, #070d18 78%);
}

.screen-card__frame::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 310px;
    left: 50%;
    bottom: -90px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 100px 100px 0 0;
    transform: translateX(-50%);
    box-shadow:
        0 0 0 34px rgba(255,255,255,.025),
        0 0 0 68px rgba(255,255,255,.018);
}

.frame-line {
    position: absolute;
    height: 1px;
    background: rgba(255,255,255,.16);
}

.frame-line--one { width: 70%; left: 15%; top: 35%; }
.frame-line--two { width: 45%; left: 27%; top: 44%; }

.frame-subtitle {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: min(84%, 390px);
    transform: translateX(-50%);
    text-align: center;
}

.frame-subtitle span {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.frame-subtitle p {
    margin: 0;
    padding: 9px 14px;
    border-radius: 8px;
    background: rgba(0,0,0,.62);
    font-size: 13px;
    font-weight: 650;
}

.screen-card__timeline {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    margin-top: 16px;
}

.timeline-label {
    color: rgba(255,255,255,.38);
    font-size: 8px;
    letter-spacing: .1em;
}

.timeline-track {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
}

.timeline-track i {
    display: block;
    width: 64%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.screen-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.screen-card__metrics div {
    padding: 13px;
    border-radius: 12px;
    background: rgba(255,255,255,.055);
}

.screen-card__metrics strong {
    display: block;
    font-size: 16px;
}

.screen-card__metrics span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.43);
    font-size: 8px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(9,20,36,.88);
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
}

.floating-card--top { top: 38px; right: -15px; }
.floating-card--bottom { left: -26px; bottom: 55px; }

.floating-card__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--ink);
    background: var(--lime);
    font-size: 11px;
    font-weight: 900;
}

.floating-card__pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 8px rgba(66,215,232,.10);
}

.floating-card strong,
.floating-card small { display: block; }

.floating-card strong { font-size: 11px; }
.floating-card small {
    margin-top: 3px;
    color: rgba(255,255,255,.42);
    font-size: 8px;
}

.hero__ticker {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 21px 0;
    color: var(--ink);
    background: var(--lime);
    transform: rotate(-1.2deg) scale(1.02);
}

.ticker-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 25px;
    animation: ticker 26s linear infinite;
}

.ticker-track span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .13em;
}

.ticker-track i { font-style: normal; }

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.intro { background: #fff; }

.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .65fr);
    gap: 110px;
    align-items: start;
}

.display-title,
.section-head h2,
.workflow h2,
.languages h2,
.quality-callout h2,
.final-cta h2,
.story h2,
.page-cta h2 {
    margin: 0;
    font-size: clamp(46px, 6.2vw, 86px);
    line-height: .94;
    letter-spacing: -.065em;
}

.intro__copy {
    padding-top: 55px;
}

.intro__copy p,
.story__grid > div:last-child p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.intro__copy .text-link { margin-top: 17px; }

.section-head {
    display: grid;
    grid-template-columns: 1fr minmax(320px, .55fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
}

.section-head > p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.service-stack {
    display: grid;
    gap: 20px;
}

.service-panel {
    position: relative;
    min-height: 510px;
    display: grid;
    grid-template-columns: 80px minmax(0, .88fr) minmax(370px, 1fr);
    align-items: center;
    gap: 30px;
    overflow: hidden;
    padding: 54px;
    border-radius: var(--radius);
}

.service-panel--dark { color: #fff; background: var(--ink); }
.service-panel--blue { color: #fff; background: var(--blue); }
.service-panel--lime { color: var(--ink); background: var(--lime); }
.service-panel--cream { color: var(--ink); background: var(--cream); }

.service-panel__index {
    align-self: start;
    padding-top: 8px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15em;
    opacity: .58;
}

.service-panel__label {
    margin: 0 0 28px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .66;
}

.service-panel h3 {
    margin: 0;
    font-size: clamp(39px, 5vw, 70px);
    line-height: .95;
    letter-spacing: -.06em;
}

.service-panel__copy > p:not(.service-panel__label) {
    max-width: 520px;
    margin: 24px 0 0;
    font-size: 14px;
    line-height: 1.75;
    opacity: .70;
}

.service-panel__copy a {
    display: inline-flex;
    gap: 9px;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 800;
}

.service-panel__art {
    position: relative;
    min-height: 330px;
    display: grid;
    place-items: center;
}

.service-panel__art--subs {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px;
    background:
        radial-gradient(circle at 70% 25%, rgba(20,104,255,.35), transparent 30%),
        #0b1627;
}

.subtitle-row {
    width: 100%;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 14px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.subtitle-row span {
    color: var(--cyan);
    font-size: 9px;
    letter-spacing: .08em;
}

.subtitle-row p {
    margin: 0;
    padding: 11px 13px;
    border-radius: 9px;
    color: #fff;
    background: rgba(0,0,0,.50);
    font-size: 12px;
}

.script-page {
    width: min(100%, 360px);
    padding: 35px;
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
    font-family: "Courier New", monospace;
}

.script-page span {
    font-size: 10px;
    font-weight: 800;
}

.script-page b {
    display: block;
    margin: 28px 0 5px;
    text-align: center;
    font-size: 11px;
}

.script-page p {
    margin: 0;
    font-size: 10px;
    line-height: 1.6;
}

.qc-ring {
    width: 260px;
    height: 260px;
    display: grid;
    place-content: center;
    border: 1px solid rgba(7,17,31,.16);
    border-radius: 50%;
    text-align: center;
    box-shadow:
        0 0 0 26px rgba(7,17,31,.035),
        0 0 0 52px rgba(7,17,31,.022);
}

.qc-ring span {
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.qc-ring strong {
    font-size: 74px;
    line-height: 1;
    letter-spacing: -.08em;
}

.qc-ring small {
    margin-top: 4px;
    font-size: 10px;
}

.service-panel__art--sdh {
    align-content: center;
    justify-items: center;
    border-radius: 22px;
    background: rgba(255,255,255,.45);
}

.sound-wave {
    height: 105px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sound-wave i {
    width: 8px;
    border-radius: 999px;
    background: var(--blue);
}

.sound-wave i:nth-child(1),
.sound-wave i:nth-child(9) { height: 24px; }
.sound-wave i:nth-child(2),
.sound-wave i:nth-child(8) { height: 52px; }
.sound-wave i:nth-child(3),
.sound-wave i:nth-child(7) { height: 78px; }
.sound-wave i:nth-child(4),
.sound-wave i:nth-child(6) { height: 42px; }
.sound-wave i:nth-child(5) { height: 102px; }

.service-panel__art--sdh p {
    margin: 22px 0 0;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--ink);
    font-size: 11px;
    font-weight: 750;
}

.workflow {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.workflow::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -450px;
    right: -230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,104,255,.35), transparent 66%);
}

.workflow__intro {
    position: relative;
    z-index: 1;
    max-width: 890px;
}

.workflow h2 em {
    color: var(--cyan);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.workflow__intro > p:last-child {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 16px;
    line-height: 1.75;
}

.workflow-line {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.workflow-step {
    position: relative;
    min-height: 320px;
    padding: 28px 28px 0 0;
    border-right: 1px solid rgba(255,255,255,.10);
}

.workflow-step:last-child { border-right: 0; padding-left: 28px; }
.workflow-step:not(:first-child) { padding-left: 28px; }

.workflow-step > span {
    color: rgba(255,255,255,.32);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
}

.workflow-step__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-top: 58px;
    border-radius: 16px;
    color: var(--cyan);
    background: rgba(66,215,232,.09);
    font-size: 17px;
    font-weight: 850;
}

.workflow-step h3 {
    margin: 25px 0 12px;
    font-size: 25px;
    letter-spacing: -.035em;
}

.workflow-step p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 13px;
    line-height: 1.7;
}

.balance { background: #fff; }

.balance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.balance-card {
    min-height: 430px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: var(--paper);
    transition: transform .25s ease, box-shadow .25s ease;
}

.balance-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 60px rgba(7,17,31,.09);
}

.balance-card__number {
    display: inline-block;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.balance-card h3 {
    margin: 100px 0 17px;
    font-size: 34px;
    letter-spacing: -.045em;
}

.balance-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.balance-card ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.balance-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 680;
}

.balance-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.languages {
    color: #fff;
    background: #0c1730;
}

.languages__grid {
    display: grid;
    grid-template-columns: 1fr .86fr;
    align-items: center;
    gap: 100px;
}

.language-orbit {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin-inline: auto;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 70px rgba(255,255,255,.015),
        inset 0 0 0 140px rgba(255,255,255,.012);
}

.language-orbit::before,
.language-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.language-orbit::before { inset: 17%; }
.language-orbit::after { inset: 34%; }

.language-orbit__center {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    text-align: center;
    background: var(--blue);
    box-shadow: 0 0 0 18px rgba(20,104,255,.10);
}

.language-orbit__center span {
    font-size: 28px;
    font-weight: 820;
    letter-spacing: -.05em;
}

.language-orbit__center small {
    margin-top: 4px;
    color: rgba(255,255,255,.62);
    font-size: 8px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.language-node {
    position: absolute;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: #14233f;
    font-size: 10px;
    font-weight: 850;
}

.language-node--ar { top: 8%; left: 43%; }
.language-node--en { top: 34%; right: 4%; }
.language-node--fr { bottom: 9%; right: 21%; }
.language-node--de { bottom: 10%; left: 20%; }
.language-node--tr { top: 35%; left: 4%; }

.languages h2 { font-size: clamp(49px, 5.8vw, 80px); }

.languages__copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.75;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.language-list span {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.04);
    font-size: 11px;
}

.quality-callout { background: var(--cream); }

.quality-callout__panel {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 80px;
    padding: 70px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(7,17,31,.08);
}

.quality-callout__panel > div:first-child > p:not(.eyebrow) {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.quality-callout .button { margin-top: 28px; }

.quality-meter {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 34px;
}

.quality-meter__ring {
    width: 180px;
    height: 180px;
    display: grid;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    text-align: center;
    box-shadow:
        0 0 0 18px rgba(20,104,255,.045),
        0 0 0 36px rgba(20,104,255,.025);
}

.quality-meter__ring span {
    color: var(--blue);
    font-size: 72px;
    font-weight: 820;
    line-height: .9;
    letter-spacing: -.08em;
}

.quality-meter__ring small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.quality-meter ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quality-meter li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
}

.quality-meter li span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.final-cta,
.page-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 90% 15%, rgba(66,215,232,.30), transparent 26%),
        var(--blue);
}

.final-cta::after,
.page-cta::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -120px;
    bottom: -280px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255,255,255,.045),
        0 0 0 110px rgba(255,255,255,.025);
}

.final-cta__inner,
.page-cta__inner {
    position: relative;
    z-index: 1;
    padding-top: 105px;
    padding-bottom: 105px;
}

.final-cta h2,
.page-cta h2 {
    max-width: 900px;
}

.final-cta__inner > p:not(.eyebrow) {
    max-width: 720px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.7;
}

.final-cta .button,
.page-cta .button { margin-top: 32px; }

.site-footer {
    padding: 80px 0 26px;
    color: #fff;
    background: var(--ink);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.brand--footer .brand__mark {
    width: 42px;
    height: 42px;
}

.brand--footer .brand__word { font-size: 31px; }

.footer-top > div:first-child > p {
    margin: 18px 0 0;
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

.footer-cta {
    text-align: right;
}

.footer-cta p {
    margin: 0 0 10px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}

.footer-cta a {
    font-size: 25px;
    font-weight: 760;
    letter-spacing: -.04em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr .8fr 1fr;
    gap: 50px;
    padding: 56px 0;
}

.footer-grid > div {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 11px;
}

.footer-label {
    margin: 0 0 9px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.footer-grid a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.31);
    font-size: 10px;
}

.page-hero {
    min-height: 660px;
    display: flex;
    align-items: end;
    padding: 180px 0 90px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(20,104,255,.42), transparent 30%),
        var(--ink);
}

.page-hero--blue { background: var(--blue); }
.page-hero--blue h1 em { color: var(--lime); }

.page-hero--lime {
    color: var(--ink);
    background: var(--lime);
}

.page-hero--lime .eyebrow { color: var(--blue); }
.page-hero--lime h1 em { color: var(--blue); }

.page-hero .shell > p:not(.eyebrow) {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 16px;
    line-height: 1.7;
}

.page-hero--lime .shell > p:not(.eyebrow) { color: rgba(7,17,31,.62); }

.page-services { background: #fff; }

.detail-row {
    display: grid;
    grid-template-columns: 70px 1fr .7fr;
    gap: 45px;
    align-items: start;
    padding: 62px 0;
    border-bottom: 1px solid var(--line);
}

.detail-row > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
}

.detail-row h2 {
    margin: 0;
    font-size: clamp(35px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.055em;
}

.detail-row > p {
    margin: 36px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.story { background: #fff; }

.story__grid {
    display: grid;
    grid-template-columns: 1.05fr .7fr;
    gap: 100px;
}

.standards { background: #fff; }

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.standard-card {
    min-height: 300px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: var(--paper);
}

.standard-card:last-child { grid-column: 1 / -1; }

.standard-card > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.standard-card h2 {
    margin: 90px 0 15px;
    font-size: 34px;
    letter-spacing: -.045em;
}

.standard-card p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.quote-page,
.contact-page {
    min-height: 100vh;
    padding: 170px 0 100px;
    color: #fff;
    background:
        radial-gradient(circle at 83% 20%, rgba(20,104,255,.42), transparent 31%),
        var(--ink);
}

.quote-page__grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: center;
    gap: 90px;
}

.quote-page__intro > p:not(.eyebrow) {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.60);
    font-size: 15px;
    line-height: 1.75;
}

.quote-page__intro .button { margin-top: 30px; }

.quote-card {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(18px);
}

.quote-card__label {
    margin: 0 0 18px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.quote-card ol {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quote-card li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.quote-card li:last-child { border-bottom: 0; }

.quote-card li > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 850;
}

.quote-card strong,
.quote-card small { display: block; }

.quote-card strong { font-size: 14px; }
.quote-card small {
    margin-top: 5px;
    color: rgba(255,255,255,.42);
    font-size: 10px;
}

.contact-page {
    display: flex;
    align-items: center;
}

.contact-page__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 60px;
}

.contact-page__links > * {
    position: relative;
    min-height: 180px;
    display: grid;
    align-content: end;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
}

.contact-page__links span {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-page__links strong {
    font-size: 22px;
    letter-spacing: -.03em;
}

.contact-page__links i {
    position: absolute;
    top: 24px;
    right: 24px;
    font-style: normal;
}

.page-cta__inner {
    padding-top: 85px;
    padding-bottom: 85px;
}

.page-cta h2 {
    max-width: 800px;
    font-size: clamp(44px, 5.5vw, 72px);
}

@media (max-width: 1050px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .hero__copy { max-width: 850px; }
    .hero__visual { min-height: 520px; }
    .screen-card { width: min(86%, 570px); }

    .intro__grid,
    .languages__grid,
    .quality-callout__panel,
    .quote-page__grid {
        grid-template-columns: 1fr;
    }

    .intro__grid,
    .languages__grid,
    .quote-page__grid { gap: 60px; }

    .intro__copy { padding-top: 0; }

    .service-panel {
        grid-template-columns: 55px 1fr;
    }

    .service-panel__art {
        grid-column: 1 / -1;
        min-height: 290px;
    }

    .workflow-line { grid-template-columns: repeat(2, 1fr); }

    .workflow-step:nth-child(2) { border-right: 0; }
    .workflow-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); }

    .quality-callout__panel { gap: 55px; }

    .story__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-actions .button { display: none; }

    .menu-toggle { display: grid; }

    .section { padding: 88px 0; }

    .section-head {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .service-panel {
        min-height: 0;
        padding: 36px;
    }

    .balance-grid { grid-template-columns: 1fr; }

    .balance-card {
        min-height: 340px;
    }

    .balance-card h3 { margin-top: 65px; }

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

    .detail-row {
        grid-template-columns: 50px 1fr;
    }

    .detail-row > p {
        grid-column: 2;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .shell { width: min(100% - 28px, var(--shell)); }

    .site-header__inner { min-height: 74px; }
    .mobile-menu { inset-top: 74px; }

    .hero {
        min-height: 0;
        padding-top: 74px;
    }

    .hero__inner {
        min-height: 0;
        gap: 44px;
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .hero h1,
    .page-hero h1,
    .quote-page h1,
    .contact-page h1 {
        font-size: clamp(49px, 16vw, 76px);
    }

    .hero__lede { font-size: 15px; }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button { width: 100%; }
    .hero__actions .text-link { justify-content: center; min-height: 46px; }

    .hero__visual { min-height: 405px; }

    .screen-card {
        width: 100%;
        padding: 12px;
        transform: none;
    }

    .screen-card__metrics div { padding: 10px; }
    .screen-card__metrics strong { font-size: 13px; }
    .screen-card__metrics span { font-size: 7px; }

    .floating-card--top { top: -20px; right: 4px; }
    .floating-card--bottom { left: 4px; bottom: 0; }

    .display-title,
    .section-head h2,
    .workflow h2,
    .languages h2,
    .quality-callout h2,
    .final-cta h2,
    .story h2,
    .page-cta h2 {
        font-size: clamp(40px, 13vw, 60px);
    }

    .intro__grid { grid-template-columns: 1fr; gap: 36px; }

    .service-panel {
        grid-template-columns: 1fr;
        padding: 27px;
        border-radius: 21px;
    }

    .service-panel__index { padding-top: 0; }
    .service-panel__art { grid-column: auto; min-height: 240px; }
    .service-panel h3 { font-size: 43px; }

    .subtitle-row { grid-template-columns: 1fr; }
    .subtitle-row span { display: none; }

    .script-page { padding: 25px; }

    .qc-ring {
        width: 190px;
        height: 190px;
    }

    .qc-ring strong { font-size: 58px; }

    .workflow-line { grid-template-columns: 1fr; }

    .workflow-step,
    .workflow-step:not(:first-child),
    .workflow-step:last-child {
        min-height: 250px;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .workflow-step__icon { margin-top: 36px; }

    .language-orbit { width: 100%; }
    .language-orbit__center { width: 115px; height: 115px; }
    .language-node { width: 43px; height: 43px; }

    .quality-callout__panel { padding: 30px; }

    .quality-meter {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .quality-meter ul { width: 100%; }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-cta { text-align: left; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 22px;
    }

    .page-hero { min-height: 560px; padding-top: 150px; }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 45px 0;
    }

    .detail-row > p { grid-column: auto; }

    .standards-grid { grid-template-columns: 1fr; }
    .standard-card:last-child { grid-column: auto; }

    .quote-page,
    .contact-page { padding-top: 140px; }

    .quote-card { padding: 24px; }

    .contact-page__links { grid-template-columns: 1fr; }
}

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

    .reveal { opacity: 1; transform: none; }
}
