:root {
    --bg: #0a0c10;
    --bg-2: #0d1016;
    --surface: #12161f;
    --surface-2: #181d28;
    --line: rgba(255, 255, 255, .08);
    --line-2: rgba(255, 255, 255, .15);
    --ink: #eef2f7;
    --ink-2: #a9b3c1;
    --ink-3: #6b7686;
    --accent: #1eace3;
    --accent-bright: #4ec5f0;
    --accent-deep: #0c6f99;
    --accent-soft: rgba(30, 172, 227, .12);
    --accent-line: rgba(30, 172, 227, .35);
    --r-sm: 12px;
    --r-lg: 22px;
    --maxw: 1240px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, .display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #04121a; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent-bright);
}
.eyebrow::before {
    content: ""; width: 22px; height: 1px; background: var(--accent-line);
}
.eyebrow.center::after {
    content: ""; width: 22px; height: 1px; background: var(--accent-line);
}

/* live equalizer motif (small, used in eyebrows / inline) */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 13px; }
.eq span {
    width: 2.5px; background: var(--accent); border-radius: 2px;
    transform-origin: bottom; height: 100%;
    animation: eqbar 1.1s var(--ease) infinite alternate;
}
.eq span:nth-child(1) { animation-delay: -.2s; }
.eq span:nth-child(2) { animation-delay: -.5s; }
.eq span:nth-child(3) { animation-delay: -.9s; }
.eq span:nth-child(4) { animation-delay: -.35s; }
@keyframes eqbar { from { transform: scaleY(.28); } to { transform: scaleY(1); } }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 15px;
    padding: 13px 16px 13px 22px; border-radius: 999px;
    border: 1px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary { background: var(--accent); color: #04121a; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); padding: 13px 22px; }
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent-bright); }
.btn .bezel {
    display: grid; place-items: center; width: 26px; height: 26px; border-radius: 999px;
    background: rgba(4, 18, 26, .16); transition: transform .25s var(--ease);
}
.btn-primary .bezel { background: rgba(4, 18, 26, .18); }
.btn:hover .bezel { transform: translate(2px, -1px); }
.btn .bezel svg { width: 13px; height: 13px; }

/* ---------- nav ---------- */
header.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 60;
    transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
header.nav.scrolled {
    background: rgba(10, 12, 16, .72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
    font-size: 14.5px; color: var(--ink-2); position: relative; padding: 6px 0;
    transition: color .2s var(--ease);
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
    background: var(--accent); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
    display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px;
    width: 42px; height: 42px; place-items: center; color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
    position: fixed; inset: 0; z-index: 55; background: var(--bg-2);
    display: flex; flex-direction: column; padding: 96px 28px 40px;
    transform: translateY(-102%); transition: transform .45s var(--ease); gap: 6px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 500;
    padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu .btn { margin-top: 28px; justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-glow {
    position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
    background: radial-gradient(circle, rgba(30, 172, 227, .22), transparent 62%);
    filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-grid-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 30%, transparent 78%);
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.7rem, 6.2vw, 4.6rem); font-weight: 700; max-width: 13ch; }
.hero h1 .grad {
    background: linear-gradient(105deg, var(--accent-bright), var(--accent-deep));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
    margin-top: 26px; font-size: 19px; color: var(--ink-2); max-width: 48ch; line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust {
    margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    font-size: 13.5px; color: var(--ink-3);
}
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-3); }
.hero-trust b { color: var(--ink-2); font-weight: 600; }

/* hero media: duotone photo + now-playing card + waveform */
.hero-media { position: relative; }
.media-frame {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--line-2); aspect-ratio: 4 / 5;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
}
.media-frame img {
    width: 100%; height: 100%; object-fit: cover; transform: scale(1.06);
    filter: grayscale(1) contrast(1.06) brightness(.82);
}
.media-frame .duo {
    position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(30, 172, 227, .55), rgba(8, 16, 24, .2) 55%);
    mix-blend-mode: color;
}
.media-frame .scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 16, .9) 4%, transparent 48%);
}
.media-tag {
    position: absolute; top: 18px; left: 18px; z-index: 3;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
    padding: 7px 13px; border-radius: 999px; color: var(--ink);
    background: rgba(10, 12, 16, .55); border: 1px solid var(--line-2); backdrop-filter: blur(8px);
}
.media-tag .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(78,197,240,.55); } 70% { box-shadow: 0 0 0 9px rgba(78,197,240,0); } 100% { box-shadow: 0 0 0 0 rgba(78,197,240,0); } }

.now-playing {
    position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 4;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 14px;
    background: rgba(14, 17, 23, .72); border: 1px solid var(--line-2);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}
.now-playing .art {
    width: 44px; height: 44px; border-radius: 9px; flex: none;
    background: linear-gradient(140deg, var(--accent), var(--accent-deep));
    display: grid; place-items: center;
}
.now-playing .art svg { width: 20px; height: 20px; color: #04121a; }
.now-playing .np-meta { min-width: 0; flex: 1; }
.now-playing .np-label { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-family: 'Space Grotesk', sans-serif; }
.now-playing .np-title { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.now-playing .np-eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 22px; flex: none; }
.now-playing .np-eq span {
    width: 3px; background: var(--accent-bright); border-radius: 2px; height: 100%; transform-origin: bottom;
    animation: eqbar 1s var(--ease) infinite alternate;
}

/* big hero waveform strip */
.wave {
    position: relative; z-index: 2; margin-top: 64px;
    display: flex; align-items: flex-end; gap: 4px; height: 90px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.wave .bar {
    flex: 1; min-width: 2px; border-radius: 3px; transform-origin: bottom;
    background: linear-gradient(to top, var(--accent-deep), var(--accent-bright));
    opacity: .85; animation: wavebar 1.5s ease-in-out infinite alternate;
}
@keyframes wavebar { from { transform: scaleY(.12); opacity: .45; } to { transform: scaleY(1); opacity: .9; } }

/* ---------- generic section ---------- */
section { position: relative; scroll-margin-top: 80px; }
.band { padding: clamp(80px, 11vw, 150px) 0; }
.band.tight { padding: clamp(64px, 8vw, 110px) 0; }
.section-head { max-width: 620px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-top: 18px; }
.section-head p { margin-top: 18px; color: var(--ink-2); font-size: 18px; }
.divider { height: 1px; background: var(--line); border: 0; }

/* real-photo section backdrop: grayscale image + cyan duotone wash + scrim, kept faint so copy contrast holds */
.band.has-bg { position: relative; isolation: isolate; }
.band.has-bg > .wrap { position: relative; z-index: 1; }
.band-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.band-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1) brightness(.52) contrast(1.05);
    opacity: .2;
}
.band-bg::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(150deg, rgba(30, 172, 227, .5), rgba(8, 16, 24, .15) 60%);
    mix-blend-mode: color;
}
.band-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 12, 16, .72) 38%, rgba(10, 12, 16, .72) 62%, var(--bg) 100%);
}

/* ---------- stats band ---------- */
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
}
.stat { padding: 38px 30px; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
.stat .num {
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.7rem);
    line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
    color: var(--ink);
}
.stat .num .u { color: var(--accent); }
.stat .lbl { margin-top: 12px; color: var(--ink-2); font-size: 14.5px; }

/* ---------- effect / research ---------- */
.effect-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 20px; }
.finding {
    position: relative; padding: 34px 30px; border-radius: var(--r-lg);
    border: 1px solid var(--line); background: var(--surface);
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
    overflow: hidden;
}
.finding::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
    background: radial-gradient(120% 90% at 0% 0%, var(--accent-soft), transparent 60%);
    transition: opacity .4s var(--ease);
}
.finding:hover { transform: translateY(-5px); border-color: var(--accent-line); background: var(--surface-2); }
.finding:hover::after { opacity: 1; }
.finding .ficon { width: 40px; height: 40px; color: var(--accent-bright); margin-bottom: 22px; }
.finding .ficon svg { width: 100%; height: 100%; }
.finding .fkey {
    font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: -.01em;
    color: var(--ink); margin-bottom: 12px;
}
.finding .fkey em { color: var(--accent-bright); font-style: normal; }
.finding p.fbody { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }
.finding .cite {
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
    font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--ink-3); letter-spacing: .01em;
}

/* ---------- split (about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media {
    position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2);
    aspect-ratio: 5 / 4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(.85); transform: scale(1.04); }
.split-media .duo { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(30,172,227,.5), rgba(8,16,24,.25) 60%); mix-blend-mode: color; }
.split-media .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,16,.55), transparent 55%); }
.split-body h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.split-body p { color: var(--ink-2); margin-top: 18px; font-size: 16.5px; }
.check-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.check-list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.check-list li svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }

/* ---------- services bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.svc {
    position: relative; padding: 30px; border-radius: var(--r-lg);
    border: 1px solid var(--line); background: var(--surface); overflow: hidden;
    display: flex; flex-direction: column; min-height: 230px;
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.svc:hover { transform: translateY(-5px); border-color: var(--accent-line); background: var(--surface-2); }
.svc .svc-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-bright); margin-bottom: auto; }
.svc .svc-ico svg { width: 23px; height: 23px; }
.svc h3 { font-size: 21px; margin-top: 28px; }
.svc p { color: var(--ink-2); font-size: 14.5px; margin-top: 10px; }
.svc .tag { position: absolute; top: 26px; right: 26px; font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--ink-3); }
.svc.feat { grid-column: span 3; min-height: 260px; }
.svc.feat .svc-ico { width: 52px; height: 52px; }
.svc.feat h3 { font-size: 25px; }
.svc.half { grid-column: span 3; }
.svc.third { grid-column: span 2; }
@media (min-width: 921px) { .svc.third { min-height: 210px; } }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step .rail { position: absolute; top: 13px; left: 0; right: 0; height: 1px; background: var(--line); }
.step .rail::before { content: ""; position: absolute; left: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.step .snum { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--accent-bright); letter-spacing: .1em; }
.step h4 { font-size: 20px; margin: 14px 0 14px; }
.step ul { list-style: none; display: grid; gap: 9px; }
.step ul li { font-size: 14.5px; color: var(--ink-2); display: flex; gap: 9px; }
.step ul li svg { width: 15px; height: 15px; color: var(--accent); flex: none; margin-top: 4px; }

/* ---------- cloud feature band ---------- */
.cloud {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--line); background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 50px;
}
.cloud-body h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.cloud-body p { color: var(--ink-2); margin-top: 16px; }
.cloud-media img { width: 100%; height: auto; border-radius: var(--r-sm); }
.cloud-glow { position: absolute; right: -8%; top: -30%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(30,172,227,.18), transparent 65%); filter: blur(10px); pointer-events: none; }

/* ---------- journey timeline ---------- */
.timeline-scroll { display: flex; gap: 18px; overflow-x: auto; padding: 8px 24px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.milestone {
    scroll-snap-align: start; flex: 0 0 240px; padding: 24px; border-radius: var(--r-sm);
    border: 1px solid var(--line); background: var(--surface); position: relative;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}
.milestone:hover { border-color: var(--accent-line); background: var(--surface-2); }
.milestone .yr { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; color: var(--accent-bright); letter-spacing: -.02em; }
.milestone .mk { margin-top: 12px; font-size: 15px; color: var(--ink-2); }
.milestone .node { position: absolute; top: 24px; right: 24px; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--accent); }

/* ---------- coverage ---------- */
.coverage { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.cov-map { position: relative; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); padding: 26px; }
.cov-map img { width: 100%; height: auto; opacity: .9; filter: brightness(1.1) hue-rotate(-6deg); }
.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.country-chips span {
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; letter-spacing: .03em;
    padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2);
    transition: border-color .25s var(--ease), color .25s var(--ease);
}
.country-chips span:hover { border-color: var(--accent-line); color: var(--accent-bright); }
.cov-stats { display: grid; gap: 16px; }
.cov-stat { display: flex; align-items: baseline; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cov-stat:first-child { padding-top: 0; }
.cov-stat .cnum { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--ink); letter-spacing: -.03em; font-variant-numeric: tabular-nums; min-width: 130px; }
.cov-stat .cnum .u { color: var(--accent); }
.cov-stat .clbl { color: var(--ink-2); font-size: 15px; }

/* ---------- CTA + contact ---------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.contact h2 { font-size: clamp(2.1rem, 4.4vw, 3rem); }
.contact .lead { color: var(--ink-2); margin-top: 18px; font-size: 17px; max-width: 42ch; }
.contact-info { margin-top: 34px; display: grid; gap: 18px; }
.ci { display: flex; gap: 15px; align-items: flex-start; }
.ci .ci-ico { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-bright); }
.ci .ci-ico svg { width: 19px; height: 19px; }
.ci .ci-k { font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.ci .ci-v { color: var(--ink); font-size: 16px; margin-top: 2px; }

.form-card { padding: 34px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 12.5px; letter-spacing: .04em; color: var(--ink-2); margin-bottom: 9px; }
.field input, .field textarea {
    width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r-sm);
    color: var(--ink); font-family: 'Inter', sans-serif; font-size: 15.5px; padding: 14px 16px; resize: vertical;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #0b0f15; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field .hint { font-size: 12px; color: var(--ink-3); margin-top: 7px; min-height: 15px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { margin-top: 16px; font-size: 13.5px; min-height: 18px; text-align: center; }
.form-note.ok { color: var(--accent-bright); }
.form-note.err { color: #f0876a; }

/* ---------- footer ---------- */
footer.ft { border-top: 1px solid var(--line); padding: 70px 0 36px; background: var(--bg-2); }
.ft-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.ft-brand img { height: 34px; margin-bottom: 18px; }
.ft-brand p { color: var(--ink-3); font-size: 14px; max-width: 30ch; }
.ft-social { display: flex; gap: 12px; margin-top: 22px; }
.ft-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); transition: all .25s var(--ease); }
.ft-social a:hover { border-color: var(--accent-line); color: var(--accent-bright); transform: translateY(-2px); }
.ft-social a svg { width: 17px; height: 17px; }
.ft-col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.ft-col a { display: block; color: var(--ink-2); font-size: 14.5px; padding: 6px 0; transition: color .2s var(--ease); }
.ft-col a:hover { color: var(--accent-bright); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); }
.ft-bottom p { color: var(--ink-3); font-size: 13.5px; }
.ft-bottom .dl span:nth-child(1) { color: #f36d24; font-weight: 600; }
.ft-bottom .dl span:nth-child(2) { color: #fa9d26; font-weight: 600; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .hero-media { max-width: 420px; }
    .effect-grid { grid-template-columns: 1fr; }
    .split, .split.rev { grid-template-columns: 1fr; gap: 34px; }
    .split.rev .split-media { order: 0; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .svc.feat, .svc.half, .svc.third { grid-column: span 1; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .cloud { grid-template-columns: 1fr; padding: 36px; }
    .coverage { grid-template-columns: 1fr; gap: 36px; }
    .contact { grid-template-columns: 1fr; gap: 36px; }
    .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
    .nav-links, .nav-cta .btn-ghost { display: none; }
    .nav-toggle { display: grid; }
    .stats { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(2n) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .check-list { grid-template-columns: 1fr; }
    .ft-top { grid-template-columns: 1fr; }
    .hero { padding-top: 120px; }
    body { font-size: 16px; }
}
@media (max-width: 480px) {
    .bento { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .wrap { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .wave .bar { transform: scaleY(.6); opacity: .7; }
    .eq span, .now-playing .np-eq span { transform: scaleY(.7); }
}
