/* ============================================================
   GRATICARE — sci-fi futuristic UI
   palette derived from logo: navy #0D1440 · orange #F47B20
   secondary accent: electric cyan #22D3EE · text #F5F7FF
   ============================================================ */

:root {
    --navy:        #0D1440;
    --navy-deep:   #070B24;
    --navy-panel:  #10184a;
    --orange:      #F47B20;
    --orange-hot:  #FF8F3C;
    --cyan:        #22D3EE;
    --light:       #F5F7FF;
    --muted:       rgba(245, 247, 255, .68);
    --faint:       rgba(245, 247, 255, .40);

    --glass-bg:     rgba(245, 247, 255, .035);
    --glass-border: rgba(244, 123, 32, .22);
    --glass-border-cyan: rgba(34, 211, 238, .18);

    --glow-orange: 0 0 24px rgba(244, 123, 32, .35);
    --glow-cyan:   0 0 24px rgba(34, 211, 238, .28);

    --font-hud:     'Orbitron', 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', 'Cascadia Code', Consolas, monospace;
    --font-logo:    'Poppins', 'Segoe UI', system-ui, sans-serif;

    --nav-h: 84px;
    --nav-h-min: 62px;
    --radius: 10px;
    --maxw: 1200px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h-min) + 24px);
}

body {
    background: var(--navy-deep);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(244, 123, 32, .45); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), #b3520e);
    border-radius: 8px;
    border: 2px solid var(--navy-deep);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    text-transform: lowercase;      /* echo the wordmark */
    letter-spacing: -.02em;
    text-wrap: balance;
}
h1, h2 {
    font-family: var(--font-hud);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.22;
}

/* global keyboard focus ring */
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 3px;
}

.mono { font-family: var(--font-mono); }

/* ============================================================
   AMBIENT BACKGROUND LAYERS
   ============================================================ */
.bg-mesh {
    position: fixed; inset: -20%;
    z-index: -4;
    pointer-events: none;
    background:
        radial-gradient(42% 40% at 78% 12%, rgba(244, 123, 32, .16) 0%, transparent 70%),
        radial-gradient(38% 44% at 12% 78%, rgba(34, 211, 238, .10) 0%, transparent 70%),
        radial-gradient(50% 50% at 50% 45%, rgba(16, 24, 74, .85) 0%, transparent 100%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-deep) 100%);
    animation: mesh-drift 26s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes mesh-drift {
    0%   { transform: translate3d(-1.5%, -1%, 0) scale(1); }
    100% { transform: translate3d(1.5%, 1.5%, 0) scale(1.06); }
}

#starfield {
    position: fixed; inset: 0;
    z-index: -3;
    width: 100%; height: 100%;
    pointer-events: none;
}

.bg-grid {
    position: fixed; inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 247, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 247, 255, .028) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(75% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(75% 60% at 50% 40%, black 30%, transparent 100%);
}

#cursor-glow {
    position: fixed;
    left: 0; top: 0;
    width: 480px; height: 480px;
    margin: -240px 0 0 -240px;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(244, 123, 32, .10) 0%,
        rgba(34, 211, 238, .04) 38%,
        transparent 70%);
    opacity: 0;
    transition: opacity .5s ease;
    will-change: transform;
}
body.has-pointer #cursor-glow { opacity: 1; }

#scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; width: 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: 0 0 12px rgba(244, 123, 32, .8);
    z-index: 300;
    pointer-events: none;
}

/* ============================================================
   GLASS PRIMITIVE
   ============================================================ */
.glass {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(245, 247, 255, .06),
        0 20px 50px rgba(0, 0, 0, .35);
}
/* console corner brackets on every panel */
.glass::before {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(var(--orange), var(--orange)) 0 0 / 16px 2px,
        linear-gradient(var(--orange), var(--orange)) 0 0 / 2px 16px,
        linear-gradient(var(--orange), var(--orange)) 100% 0 / 16px 2px,
        linear-gradient(var(--orange), var(--orange)) 100% 0 / 2px 16px,
        linear-gradient(var(--orange), var(--orange)) 0 100% / 16px 2px,
        linear-gradient(var(--orange), var(--orange)) 0 100% / 2px 16px,
        linear-gradient(var(--orange), var(--orange)) 100% 100% / 16px 2px,
        linear-gradient(var(--orange), var(--orange)) 100% 100% / 2px 16px;
    background-repeat: no-repeat;
    opacity: .45;
    transition: opacity .3s ease;
}
.glass:hover::before { opacity: .95; }

.panel-topbar {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(245, 247, 255, .07);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--faint);
}
.panel-topbar i {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(245, 247, 255, .14);
}
.panel-topbar i:first-child   { background: var(--orange); box-shadow: 0 0 8px rgba(244,123,32,.8); }
.panel-topbar i:nth-child(2)  { background: var(--cyan);   box-shadow: 0 0 8px rgba(34,211,238,.6); }
.panel-topbar span { margin-left: auto; }

/* ============================================================
   TYPO HELPERS
   ============================================================ */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .22em;
    text-transform: lowercase;
    color: var(--cyan);
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 18px;
}
.eyebrow::before { content: '['; color: rgba(244, 123, 32, .65); font-weight: 700; }
.eyebrow::after  { content: ']'; color: rgba(244, 123, 32, .65); font-weight: 700; }
.eyebrow span { color: var(--orange); font-weight: 700; }
.eyebrow.center { justify-content: center; }
.sec-index { margin-left: auto; color: var(--faint); font-style: normal; letter-spacing: .1em; }

.section { position: relative; padding: 110px 0; }
.section-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}
.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(22px, 3.2vw, 38px); }

/* rgb-split glitch when a heading enters the viewport */
.glitch-in { animation: h2-glitch .55s steps(4, end) 1; }
@keyframes h2-glitch {
    0%   { clip-path: inset(0 0 62% 0); transform: translateX(-7px); text-shadow: 3px 0 var(--cyan), -3px 0 var(--orange); }
    30%  { clip-path: inset(44% 0 0 0);  transform: translateX(5px);  text-shadow: -3px 0 var(--cyan), 3px 0 var(--orange); }
    60%  { clip-path: inset(18% 0 34% 0); transform: translateX(-2px); text-shadow: 2px 0 var(--orange), -2px 0 var(--cyan); }
    100% { clip-path: inset(0); transform: none; text-shadow: none; }
}
.section-sub { color: var(--muted); margin-top: 18px; max-width: 720px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 32px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    text-transform: lowercase;
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    transition: box-shadow .3s ease, border-color .3s ease, color .3s ease, background .3s ease;
    will-change: transform;
}
.btn .btn-label { position: relative; z-index: 2; display: inline-block; }

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #e05f0a 100%);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(244, 123, 32, .55), 0 8px 24px rgba(244, 123, 32, .28);
    animation: neon-pulse 3s ease-in-out infinite;
}
.btn-primary:hover {
    box-shadow: 0 0 34px rgba(244, 123, 32, .65), 0 8px 30px rgba(244, 123, 32, .35);
    animation-play-state: paused;
}
@keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(244,123,32,.35), 0 8px 24px rgba(244,123,32,.22); }
    50%      { box-shadow: 0 0 26px rgba(244,123,32,.60), 0 8px 24px rgba(244,123,32,.32); }
}

.btn-ghost {
    color: var(--light);
    border-color: var(--glass-border-cyan);
    background: rgba(34, 211, 238, .04);
}
.btn-ghost:hover {
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    color: var(--cyan);
}

.btn-sm { padding: 10px 22px; font-size: 13.5px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(244,123,32,.35) 40%, transparent 70%);
    transform: scale(0);
    animation: ripple .7s ease-out forwards;
    pointer-events: none;
    z-index: 1;
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   NAV
   ============================================================ */
#site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    height: var(--nav-h);
    display: flex; align-items: center; gap: 40px;
    transition: height .35s ease;
}
#site-nav.scrolled {
    background: rgba(7, 11, 36, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(244, 123, 32, .18);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}
#site-nav.scrolled .nav-inner { height: var(--nav-h-min); }

/* wordmark — dark-bg variant of the logo */
.wordmark {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 27px;
    letter-spacing: -.015em;
    line-height: 1;
    display: inline-flex;
    filter: drop-shadow(0 0 14px rgba(244, 123, 32, .25));
    transition: filter .3s ease, transform .3s ease;
}
.wordmark:hover { filter: drop-shadow(0 0 20px rgba(244, 123, 32, .5)); }
.wm-grat { color: var(--light); }
.wm-care { color: var(--orange); }
.wm-i { position: relative; display: inline-block; }
.wm-dot {
    position: absolute;
    left: 50%; top: .06em;
    width: .16em; height: .16em;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px rgba(244, 123, 32, .9);
    animation: dot-blink 4s ease-in-out infinite;
}
@keyframes dot-blink {
    0%, 92%, 100% { opacity: 1; }
    95%           { opacity: .2; }
}

.nav-links {
    display: flex; gap: 34px;
    margin-left: auto;
}
.nav-link {
    position: relative;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--muted);
    padding: 6px 2px;
    transition: color .25s ease, text-shadow .25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    box-shadow: 0 0 8px rgba(244, 123, 32, .7);
}
.nav-link:hover, .nav-link.active { color: var(--light); text-shadow: 0 0 12px rgba(244,123,32,.45); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

#menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: rgba(244, 123, 32, .08);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
}
#menu-toggle span {
    display: block;
    height: 2px; width: 100%;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(244,123,32,.8);
    transition: transform .3s ease, opacity .3s ease;
}
body.menu-open #menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open #menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open #menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
    position: fixed; inset: 0;
    z-index: 150;
    background: rgba(7, 11, 36, .92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
body.menu-open #mobile-menu { opacity: 1; visibility: visible; }
#mobile-menu nav { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.m-link {
    font-family: var(--font-display);
    font-size: clamp(28px, 8vw, 44px);
    font-weight: 600;
    color: var(--light);
    padding: 8px 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: color .3s ease, opacity .45s ease, transform .45s ease;
}
body.menu-open .m-link { opacity: 1; transform: none; }
body.menu-open .m-link:nth-child(1) { transition-delay: .08s; }
body.menu-open .m-link:nth-child(2) { transition-delay: .14s; }
body.menu-open .m-link:nth-child(3) { transition-delay: .20s; }
body.menu-open .m-link:nth-child(4) { transition-delay: .26s; }
body.menu-open .m-link:nth-child(5) { transition-delay: .32s; }
.m-link:hover { color: var(--orange); text-shadow: 0 0 20px rgba(244,123,32,.6); }
.m-cta { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 40px) 0 60px;
    overflow: hidden;
}
/* big screens: anchor content just below the nav instead of dead-centering
   it in a tall viewport, which otherwise leaves a large empty band up top */
@media (min-width: 1081px) {
    .hero {
        justify-content: flex-start;
        min-height: auto;
        padding-top: calc(var(--nav-h) + 48px);
        padding-bottom: 96px;
    }
}
.hero-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 40px;
}

.hero-eyebrow { font-size: 14px; margin-bottom: 26px; }
.cursor-block {
    display: inline-block;
    color: var(--orange);
    animation: caret-blink 1.1s step-end infinite;
    font-weight: 700;
}
@keyframes caret-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

#hero-headline {
    font-size: clamp(28px, 4.6vw, 54px);
    font-weight: 800;
    max-width: 17ch;
    margin-bottom: 38px;
    position: relative;
}
#hero-headline .w { display: inline-block; white-space: nowrap; }
#hero-headline .accent-word {
    background: linear-gradient(100deg, var(--orange) 10%, var(--orange-hot) 50%, var(--cyan) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(244, 123, 32, .35));
}
#hero-headline.glitch-tick { animation: glitch-jolt .32s steps(2, end) 1; }
@keyframes glitch-jolt {
    0%   { text-shadow: 2px 0 var(--cyan), -2px 0 var(--orange); transform: translateX(0); }
    25%  { text-shadow: -3px 0 var(--cyan), 3px 0 var(--orange); transform: translateX(1px); }
    50%  { text-shadow: 2px 0 var(--orange), -2px 0 var(--cyan); transform: translateX(-1px); }
    100% { text-shadow: none; transform: none; }
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 42px; }

.quote-chip {
    max-width: 430px;
    padding: 22px 26px;
    border-left: 3px solid var(--orange);
}
.quote-chip blockquote {
    font-family: var(--font-display);
    font-size: 16.5px;
    color: var(--muted);
    line-height: 1.5;
}
.quote-chip figcaption {
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--orange);
}

/* --- hero visual: holographic globe --- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.globe-wrap {
    position: relative;
    width: min(480px, 88vw);
    aspect-ratio: 1;
}
#globe { width: 100%; height: 100%; display: block; }

.globe-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    pointer-events: none;
}
.ring-1 {
    inset: -4%;
    border: 1px dashed rgba(34, 211, 238, .25);
    animation: ring-spin 40s linear infinite;
}
.ring-2 {
    inset: 5%;
    border: 1px solid rgba(244, 123, 32, .14);
    border-top-color: rgba(244, 123, 32, .55);
    animation: ring-spin 14s linear infinite reverse;
    filter: drop-shadow(0 0 6px rgba(244, 123, 32, .35));
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.globe-base-glow {
    position: absolute;
    left: 50%; bottom: -6%;
    width: 70%; height: 14%;
    transform: translateX(-50%);
    background: radial-gradient(50% 100% at 50% 100%, rgba(244, 123, 32, .35) 0%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

.hud-chip {
    position: absolute;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--cyan);
    background: rgba(7, 11, 36, .65);
    border: 1px solid var(--glass-border-cyan);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 18px rgba(34, 211, 238, .12);
    white-space: nowrap;
    animation: chip-float 6s ease-in-out infinite;
}
.hud-chip-1 { top: 9%; left: -2%; color: var(--orange); border-color: var(--glass-border); animation-delay: 0s; }
.hud-chip-2 { top: 40%; right: -6%; animation-delay: -2s; }
.hud-chip-3 { bottom: 14%; left: 2%; animation-delay: -4s; }
@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.ecg-line {
    position: absolute;
    left: 50%; bottom: -13%;
    width: 74%; height: 44px;
    transform: translateX(-50%);
    overflow: visible;
}
.ecg-line path {
    stroke: var(--orange);
    stroke-width: 1.6;
    filter: drop-shadow(0 0 5px rgba(244, 123, 32, .9));
    stroke-dasharray: 640;
    stroke-dashoffset: 640;
    animation: ecg-draw 4.2s linear infinite;
}
@keyframes ecg-draw {
    0%   { stroke-dashoffset: 640; opacity: 0; }
    8%   { opacity: 1; }
    72%  { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.scroll-hint {
    position: absolute;
    left: 50%; bottom: 26px;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--faint);
    transition: color .3s ease;
}
.scroll-hint:hover { color: var(--orange); }
.scroll-hint-line {
    width: 1px; height: 44px;
    background: linear-gradient(180deg, var(--orange), transparent);
    animation: hint-drop 1.8s ease-in-out infinite;
    transform-origin: top;
}
@keyframes hint-drop {
    0%   { transform: scaleY(0); opacity: 0; }
    35%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}

/* ============================================================
   TICKER DIVIDER
   ============================================================ */
.ticker {
    position: relative;
    border-top: 1px solid rgba(244, 123, 32, .16);
    border-bottom: 1px solid rgba(244, 123, 32, .16);
    background: rgba(244, 123, 32, .035);
    overflow: hidden;
    padding: 13px 0;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
    font-size: 12.5px;
    letter-spacing: .28em;
    text-transform: lowercase;
    color: rgba(244, 123, 32, .75);
    text-shadow: 0 0 10px rgba(244, 123, 32, .35);
}
.ticker-track span { white-space: nowrap; padding-right: 6px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT — split + stat panel
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 48px;
    align-items: start;
}
.split-main p { color: var(--muted); margin-bottom: 22px; max-width: 62ch; }
.split-main .btn { margin-top: 10px; }

.stat-panel { padding: 0 0 10px; overflow: hidden; }
.stat {
    display: flex; align-items: baseline; gap: 16px;
    padding: 22px 26px 0;
}
.stat-num {
    font-family: var(--font-hud);
    font-size: 30px;
    font-weight: 800;
    color: var(--orange);
    text-shadow: 0 0 22px rgba(244, 123, 32, .45);
    min-width: 168px;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .14em;
    color: var(--muted);
    text-transform: lowercase;
}
#pulse-canvas {
    width: 100%; height: 74px;
    display: block;
    margin-top: 16px;
    opacity: .9;
}

/* ============================================================
   SERVICES — tilt cards
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    perspective: 1400px;
}
.svc { grid-column: span 2; }
.svc:nth-child(4) { grid-column: span 3; }
.svc.svc-wide { grid-column: span 3; }

.svc {
    position: relative;
    padding: 34px 30px 30px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color .35s ease, box-shadow .35s ease;
    --mx: 50%; --my: 50%;
}
.svc:hover {
    border-color: rgba(244, 123, 32, .55);
    box-shadow:
        inset 0 1px 0 rgba(245, 247, 255, .08),
        0 24px 60px rgba(0, 0, 0, .45),
        var(--glow-orange);
}
.svc-glow {
    position: absolute; inset: 0;
    background: radial-gradient(340px circle at var(--mx) var(--my),
        rgba(244, 123, 32, .13), rgba(34, 211, 238, .05) 45%, transparent 65%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.svc:hover .svc-glow { opacity: 1; }

.svc-num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: var(--font-hud);
    font-size: 34px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 247, 255, .14);
    transition: -webkit-text-stroke-color .35s ease, color .35s ease;
}
.svc:hover .svc-num { -webkit-text-stroke-color: rgba(244, 123, 32, .6); }

.svc-icon {
    width: 62px; height: 62px;
    margin-bottom: 22px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(244, 123, 32, .07);
    border: 1px solid rgba(244, 123, 32, .25);
    box-shadow: inset 0 0 18px rgba(244, 123, 32, .08);
}
.svc-icon svg { width: 38px; height: 38px; overflow: visible; }
.svc-icon .ic-core  { stroke: var(--orange); filter: drop-shadow(0 0 5px rgba(244,123,32,.8)); }
.svc-icon .ic-arc   { stroke: var(--cyan); opacity: .8; }
.svc-icon .ic-scan  { stroke: var(--orange); opacity: .9; }
.svc-icon .ic-bar   { stroke: var(--cyan); stroke-linecap: round; }
.svc-icon .ic-orbit { stroke: var(--cyan); opacity: .7; }

.svc:hover .ic-arc.a1 { animation: arc-ping 1.6s ease-out infinite; }
.svc:hover .ic-arc.a2 { animation: arc-ping 1.6s ease-out .25s infinite; }
@keyframes arc-ping {
    0%, 100% { opacity: .35; }
    50%      { opacity: 1; filter: drop-shadow(0 0 4px rgba(34,211,238,.9)); }
}
.svc:hover .ic-bar { animation: bar-eq .8s ease-in-out infinite alternate; }
.svc:hover .ic-bar.b2 { animation-delay: .12s; }
.svc:hover .ic-bar.b3 { animation-delay: .24s; }
.svc:hover .ic-bar.b4 { animation-delay: .36s; }
@keyframes bar-eq { from { transform: scaleY(.55); } to { transform: scaleY(1.5); } }
.svc .ic-bar { transform-origin: center; transform-box: fill-box; }

.svc:hover .ic-scan { animation: scan-y 1.8s ease-in-out infinite; }
@keyframes scan-y {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(14px); }
}
.svc:hover .ic-orbit.o1 { animation: orbit-pulse 2.4s linear infinite; }
.svc:hover .ic-orbit.o2 { animation: orbit-pulse 2.4s linear .8s infinite; }
.svc:hover .ic-orbit.o3 { animation: orbit-pulse 2.4s linear 1.6s infinite; }
@keyframes orbit-pulse {
    0%, 100% { opacity: .35; }
    50%      { opacity: 1; }
}

.svc h3 {
    font-size: 21px;
    margin-bottom: 8px;
    color: var(--light);
}
.svc-tag { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.svc > p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }

.svc-list { list-style: none; margin-bottom: 22px; }
.svc-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 2;
}
.svc-list li::before {
    content: '●';
    position: absolute; left: 0;
    color: var(--orange);
    font-size: 9px;
    top: 1px;
    text-shadow: 0 0 6px rgba(244, 123, 32, .9);
}

.svc-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px;
    letter-spacing: .16em;
    color: var(--cyan);
    text-transform: lowercase;
    margin-top: auto;
}
.svc-link .arrow { transition: transform .3s ease; }
.svc-link:hover { color: var(--orange); text-shadow: 0 0 10px rgba(244,123,32,.6); }
.svc-link:hover .arrow { transform: translateX(6px); }

/* ============================================================
   CLIENTS — marquee
   ============================================================ */
.marquee {
    position: relative;
    overflow: hidden;
    padding: 10px 0 30px;
}
.marquee-track {
    display: flex;
    gap: 26px;
    width: max-content;
    padding-right: 26px;   /* equalize gap across the loop seam */
    animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }

.client-chip {
    flex: 0 0 auto;
    width: 190px; height: 96px;
    display: grid; place-items: center;
    padding: 18px 24px;
    background: rgba(245, 247, 255, .92);
    border-color: rgba(245, 247, 255, .16);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease, background .3s ease;
}
.client-chip img {
    max-height: 56px;
    width: auto;
    max-width: 100%;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .35s ease, opacity .35s ease;
}
.client-chip:hover {
    background: #F5F7FF;
    border-color: rgba(244, 123, 32, .75);
    box-shadow: var(--glow-orange), 0 10px 30px rgba(244, 123, 32, .2);
    transform: translateY(-4px);
}
.client-chip:hover img {
    /* monochrome → full colour */
    filter: none;
    opacity: 1;
}

.marquee-fade {
    position: absolute; top: 0; bottom: 0;
    width: 130px;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade.left  { left: 0;  background: linear-gradient(90deg, var(--navy-deep), transparent); }
.marquee-fade.right { right: 0; background: linear-gradient(-90deg, var(--navy-deep), transparent); }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding: 54px 56px;
    overflow: hidden;
}
.how-copy h2 { font-size: clamp(19px, 2.6vw, 30px); margin-bottom: 16px; }
.how-copy p { color: var(--muted); max-width: 62ch; }
.how-copy .eyebrow { margin-bottom: 14px; }

.how-circuit {
    position: absolute;
    right: 0; bottom: 0;
    width: 46%; height: 100%;
    opacity: .5;
    pointer-events: none;
}
.circuit-path {
    stroke: rgba(34, 211, 238, .5);
    stroke-width: 1.2;
    stroke-dasharray: 6 8;
    animation: circuit-flow 2.4s linear infinite;
}
.circuit-path.p2 { stroke: rgba(244, 123, 32, .5); animation-duration: 3.1s; }
@keyframes circuit-flow { to { stroke-dashoffset: -28; } }
.circuit-node {
    fill: var(--orange);
    filter: drop-shadow(0 0 4px rgba(244, 123, 32, .9));
    animation: node-blink 2.8s ease-in-out infinite;
}
.circuit-node:nth-of-type(odd) { fill: var(--cyan); animation-delay: -1.4s; }
@keyframes node-blink { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

/* ============================================================
   TEAM / FOUNDERS
   ============================================================ */
.founders-eyebrow { margin: 30px 0 26px; }
.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 46px;
}
.founder { padding: 26px; display: flex; flex-direction: column; gap: 22px; }

.founder-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--navy-panel);
}
.founder-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: saturate(.85) contrast(1.04);
    transition: transform .6s cubic-bezier(.2, .8, .2, 1), filter .6s ease;
}
.founder:hover .founder-photo img { transform: scale(1.05); filter: saturate(1.05); }

.scan-overlay {
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(34, 211, 238, .05) 0 1px, transparent 1px 4px),
        linear-gradient(180deg, transparent 0%, rgba(13, 20, 64, .35) 100%);
    pointer-events: none;
}
.scan-overlay::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 34%;
    top: -40%;
    background: linear-gradient(180deg, transparent, rgba(244, 123, 32, .16), rgba(34, 211, 238, .12), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.founder:hover .scan-overlay::after {
    opacity: 1;
    animation: photo-scan 2.1s ease-in-out infinite;
}
@keyframes photo-scan {
    0%   { top: -40%; }
    100% { top: 110%; }
}

.corner {
    position: absolute;
    width: 16px; height: 16px;
    border: 1.6px solid var(--orange);
    filter: drop-shadow(0 0 4px rgba(244, 123, 32, .8));
    pointer-events: none;
}
.corner.tl { top: 9px;  left: 9px;   border-right: 0; border-bottom: 0; }
.corner.tr { top: 9px;  right: 9px;  border-left: 0;  border-bottom: 0; }
.corner.bl { bottom: 9px; left: 9px; border-right: 0; border-top: 0; }
.corner.br { bottom: 9px; right: 9px; border-left: 0; border-top: 0; }

.founder-id {
    display: block;
    font-size: 11.5px;
    letter-spacing: .14em;
    color: var(--cyan);
    margin-bottom: 10px;
}
.founder-bio h3 { font-size: 20px; margin-bottom: 12px; }
.founder-bio p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }

.jobs-quote {
    padding: 46px 54px;
    text-align: center;
    border-color: rgba(244, 123, 32, .3);
    overflow: hidden;
}
.jobs-quote-mark {
    position: absolute;
    top: -30px; left: 22px;
    font-family: var(--font-display);
    font-size: 190px;
    color: rgba(244, 123, 32, .12);
    pointer-events: none;
    line-height: 1;
}
.jobs-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 500;
    line-height: 1.45;
    max-width: 26ch;
    margin: 0 auto 14px;
    text-transform: lowercase;
}
.jobs-quote figcaption {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .18em;
    color: var(--orange);
    text-shadow: 0 0 12px rgba(244, 123, 32, .5);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 32px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-block { padding: 24px 28px; transition: border-color .3s ease, box-shadow .3s ease; }
.info-block:hover { border-color: rgba(244, 123, 32, .5); box-shadow: var(--glow-orange); }
.info-label {
    display: block;
    font-size: 11.5px;
    letter-spacing: .16em;
    color: var(--orange);
    margin-bottom: 8px;
}
.info-block p { color: var(--light); font-size: 15px; }
.info-block a { color: var(--light); transition: color .25s ease, text-shadow .25s ease; }
.info-block a:hover { color: var(--cyan); text-shadow: 0 0 12px rgba(34, 211, 238, .6); }

#contactform { padding: 0 30px 30px; }
#contactform .panel-topbar { margin: 0 -30px 26px; }

.field { position: relative; margin-bottom: 18px; }
.field input, .field textarea {
    width: 100%;
    background: rgba(7, 11, 36, .5);
    border: 1px solid rgba(245, 247, 255, .12);
    border-radius: 10px;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 16px 18px;
    outline: none;
    transition: border-color .3s ease, box-shadow .3s ease;
    resize: vertical;
}
.field label {
    position: absolute;
    left: 18px; top: 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .06em;
    color: var(--faint);
    pointer-events: none;
    transition: all .25s ease;
    background: transparent;
    padding: 0 6px;
}
.field input:focus, .field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(244, 123, 32, .4), 0 0 22px rgba(244, 123, 32, .18);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
    top: -9px;
    font-size: 10.5px;
    color: var(--orange);
    background: #0a1033;
    border-radius: 4px;
}
#form-status { margin-top: 14px; font-size: 12.5px; color: var(--cyan); min-height: 20px; }
#form-status.err { color: #ff6b6b; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    position: relative;
    padding: 130px 0;
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(55% 70% at 50% 110%, rgba(244, 123, 32, .22) 0%, transparent 70%),
        radial-gradient(40% 50% at 85% -10%, rgba(34, 211, 238, .10) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title {
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 800;
    margin-bottom: 40px;
}
.cta-title .accent {
    background: linear-gradient(100deg, var(--orange), var(--orange-hot), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(244, 123, 32, .4));
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    border-top: 1px solid rgba(244, 123, 32, .18);
    background: rgba(7, 11, 36, .6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 64px 28px 44px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
}
.footer-brand .wordmark { font-size: 24px; }
.footer-tag { margin-top: 14px; font-size: 12px; letter-spacing: .18em; color: var(--faint); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-head { margin-bottom: 6px; font-size: 11.5px; }
.footer-col a {
    color: var(--muted);
    font-size: 14px;
    width: fit-content;
    transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}
.footer-col a:hover {
    color: var(--orange);
    transform: translateX(4px);
    text-shadow: 0 0 12px rgba(244, 123, 32, .5);
}

.footer-base {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(245, 247, 255, .07);
    display: flex; align-items: center; justify-content: space-between;
}
.copyright { font-size: 12px; letter-spacing: .12em; color: var(--faint); }

#back-to-top {
    width: 46px; height: 46px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(244, 123, 32, .08);
    color: var(--orange);
    font-size: 15px;
    cursor: pointer;
    transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}
#back-to-top:hover {
    box-shadow: var(--glow-orange);
    transform: translateY(-3px);
    background: rgba(244, 123, 32, .16);
}

/* ============================================================
   SCI-FI OVERLAYS — crt · hud frame · reticle · radar · boot
   ============================================================ */

/* CRT scanlines + slow scan sweep over the whole page */
.crt {
    position: fixed; inset: 0;
    z-index: 90;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
        rgba(0, 0, 0, .16) 0 1px, transparent 1px 3px);
    opacity: .22;
}
.crt::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: -20%;
    height: 120px;
    background: linear-gradient(180deg,
        transparent, rgba(34, 211, 238, .045), rgba(244, 123, 32, .05), transparent);
    animation: crt-sweep 9s ease-in-out infinite;
    will-change: transform;
}
@keyframes crt-sweep {
    0%   { transform: translateY(0); }
    100% { transform: translateY(140vh); }
}

/* screen-edge HUD frame */
.hud-frame { position: fixed; inset: 12px; z-index: 95; pointer-events: none; }
.hf {
    position: absolute;
    width: 26px; height: 26px;
    border: 1.5px solid rgba(244, 123, 32, .45);
    filter: drop-shadow(0 0 5px rgba(244, 123, 32, .5));
}
.hf.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hf.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hf.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hf.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud-readout {
    position: absolute;
    right: 36px; bottom: 6px;
    font-size: 10.5px;
    letter-spacing: .2em;
    color: rgba(34, 211, 238, .8);
    text-shadow: 0 0 8px rgba(34, 211, 238, .5);
}

/* cursor targeting reticle (desktop, fine pointer only) */
#reticle {
    position: fixed;
    left: 0; top: 0;
    width: 34px; height: 34px;
    margin: -17px 0 0 -17px;
    z-index: 400;
    pointer-events: none;
    border: 1px solid rgba(34, 211, 238, .55);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s ease, border-color .25s ease, scale .25s ease;
    will-change: transform;
}
#reticle::before, #reticle::after {
    content: '';
    position: absolute;
    background: rgba(34, 211, 238, .7);
}
#reticle::before { left: 50%; top: -6px; width: 1px; height: 5px; box-shadow: 0 40px 0 rgba(34,211,238,.7); }
#reticle::after  { top: 50%; left: -6px; height: 1px; width: 5px; box-shadow: 40px 0 0 rgba(34,211,238,.7); }
body.has-pointer #reticle { opacity: 1; }
#reticle.on-target {
    border-color: var(--orange);
    scale: 1.5;
    box-shadow: 0 0 18px rgba(244, 123, 32, .35);
}
#reticle.on-target::before, #reticle.on-target::after { background: rgba(244, 123, 32, .8); }

/* motion pause control (also the WCAG 2.2.2 mechanism) */
#motion-toggle {
    position: fixed;
    left: 16px; bottom: 16px;
    z-index: 210;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--cyan);
    background: rgba(7, 11, 36, .7);
    border: 1px solid var(--glass-border-cyan);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
#motion-toggle:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
#motion-toggle[aria-pressed="true"] { color: var(--orange); border-color: var(--glass-border); }
body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after { animation-play-state: paused !important; }

/* radar sweep + satellites around the globe */
.radar-sweep {
    position: absolute; inset: 3%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(34, 211, 238, .14) 0deg,
        rgba(34, 211, 238, .05) 26deg,
        transparent 60deg 360deg);
    animation: ring-spin 7s linear infinite;
    pointer-events: none;
}
.orbit { position: absolute; inset: 4%; pointer-events: none; }
.orbit::after {
    content: '';
    position: absolute;
    top: 50%; right: -3px;
    width: 7px; height: 7px;
    margin-top: -3.5px;
    border-radius: 50%;
}
.orbit-a { animation: ring-spin 13s linear infinite; }
.orbit-a::after { background: var(--cyan); box-shadow: 0 0 12px rgba(34, 211, 238, .9); }
.orbit-b { inset: -2%; animation: ring-spin 21s linear infinite reverse; }
.orbit-b::after { background: var(--orange); box-shadow: 0 0 12px rgba(244, 123, 32, .9); }

.hud-chip-4 { bottom: 2%; right: 2%; color: var(--cyan); animation-delay: -3s; min-width: 218px; text-align: left; }

/* boot / system-init overlay (built by JS) */
#boot {
    position: fixed; inset: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    background:
        radial-gradient(60% 50% at 50% 40%, rgba(16, 24, 74, .9) 0%, transparent 100%),
        var(--navy-deep);
    transition: opacity .5s ease;
}
#boot.done { opacity: 0; pointer-events: none; }
.boot-wordmark { font-size: 34px; margin-bottom: 16px; }
.boot-log {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.7;
    color: rgba(34, 211, 238, .85);
    width: min(430px, 82vw);
    min-height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.boot-log .ok { color: rgba(245, 247, 255, .5); }
.boot-bar {
    width: min(430px, 82vw);
    height: 3px;
    background: rgba(245, 247, 255, .1);
    border-radius: 2px;
    overflow: hidden;
}
.boot-bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: 0 0 12px rgba(244, 123, 32, .8);
    transition: width .16s linear;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .svc, .svc:nth-child(4) { grid-column: span 3; }
    .svc.svc-wide { grid-column: span 6; }
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding-bottom: 90px; }
    .hero-visual { order: -1; margin-top: -20px; }
    .globe-wrap { width: min(340px, 70vw); }
    #hero-headline { max-width: 18ch; }
    .hud-chip-1 { left: -6%; }
    .hud-chip-2 { right: -8%; }
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    #menu-toggle { display: flex; }
    .nav-actions { margin-left: auto; }
    .nav-actions .btn { display: none; }

    .split, .founders, .contact-grid { grid-template-columns: 1fr; }
    .how-band { grid-template-columns: 1fr; padding: 40px 30px; }
    .how-circuit { opacity: .22; width: 90%; }
    .footer-inner { grid-template-columns: 1fr 1fr; padding-top: 48px; }
    .section { padding: 80px 0; }
    .hud-frame { display: none; }
    #motion-toggle { left: 10px; bottom: 10px; padding: 7px 11px; font-size: 10px; }
}

@media (max-width: 640px) {
    .svc, .svc:nth-child(4), .svc.svc-wide { grid-column: span 6; }
    .section-inner { padding: 0 20px; }
    .hero-inner { padding: 0 20px; }
    .globe-wrap { width: min(280px, 78vw); }
    .hud-chip-2 { right: 0; }
    .hud-chip { font-size: 10px; padding: 6px 10px; }
    .stat-num { font-size: 36px; min-width: 108px; }
    .jobs-quote { padding: 36px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-base { flex-direction: column; gap: 16px; }
    .client-chip { width: 150px; height: 80px; padding: 16px 20px; }
    .client-chip img { max-height: 42px; }
    .scroll-hint { display: none; }
}

/* ============================================================
   FALLBACKS + REDUCED MOTION
   ============================================================ */
.no-gsap [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .ticker-track, .marquee-track { animation: none !important; }
    .marquee, .ticker { overflow-x: auto; }
    #cursor-glow, #reticle, .crt::after { display: none; }
    [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}
