/* ==========================================================================
   COREAL — Design System & Motion Layer
   Dual-tone: cinematic dark hero  ->  editorial light body
   All animation uses transform/opacity only (GPU, 60fps).
   Full prefers-reduced-motion fallbacks at the end of this file.
   ========================================================================== */

:root {
    /* Light body palette */
    --bg: #F7F6F2;          /* warm paper */
    --bg-soft: #F1EFE9;
    --surface: #FFFFFF;
    --surface-2: #FBFAF7;
    --ink: #0E0F12;         /* near-black display */
    --ink-2: #21242B;
    --ink-soft: #3C4048;
    --muted: #6B7078;
    --line: #E6E2D9;
    --line-strong: #D8D3C7;

    /* Brand accent */
    --accent: #1F3CFF;      /* electric cobalt — speed / action */
    --accent-ink: #16277F;
    --accent-soft: #EAEDFF;
    --gold: #B8873A;        /* refined gold — premium accents */
    --gold-soft: #F3EAD7;
    --success: #0E9F6E;

    /* Dark hero palette */
    --d-bg: #0A0B0E;
    --d-bg-2: #101218;
    --d-ink: #F6F5F1;
    --d-muted: #9AA0AC;
    --d-line: rgba(255,255,255,.12);
    --d-accent: #5B74FF;

    --shadow-sm: 0 1px 2px rgba(14,15,18,.05), 0 1px 3px rgba(14,15,18,.04);
    --shadow: 0 14px 40px -18px rgba(14,15,18,.22), 0 4px 14px -8px rgba(14,15,18,.12);
    --shadow-lg: 0 40px 90px -34px rgba(14,15,18,.34), 0 12px 34px -14px rgba(14,15,18,.18);
    --shadow-accent: 0 24px 60px -24px rgba(31,60,255,.42);

    --radius: 16px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --max: 1260px;
    --ease: cubic-bezier(.22,.61,.20,1);
    --ease-spring: cubic-bezier(.16,1.2,.30,1);
    --nav-h: 76px;
    --bar-h: 44px;   /* fixed ticker strip under the nav */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--ink-2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-size: 15.5px;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.06;
    letter-spacing: -.025em;
    margin: 0;
    font-weight: 800;
}
h1 { font-size: clamp(1.5rem, 3vw, 1.85rem); }
h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h3 { font-size: clamp(1rem, 1.3vw, 1.08rem); font-weight: 700; letter-spacing: -.02em; }
p { margin: 0; color: var(--muted); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 30px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 11px;
    font-size: .74rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }

section { padding: 78px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { font-size: .98rem; max-width: 640px; }

/* ==========================================================================
   Scroll progress bar + film grain + custom cursor
   ========================================================================== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 100%;
    transform: scaleX(0); transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    z-index: 120; will-change: transform;
}

.grain {
    position: fixed; inset: 0; z-index: 118; pointer-events: none; opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 130; pointer-events: none;
    border-radius: 50%; transform: translate(-50%, -50%);
    will-change: transform; mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
    width: 40px; height: 40px; border: 1.5px solid #fff;
    transition: width .28s var(--ease-spring), height .28s var(--ease-spring),
                background .28s var(--ease), opacity .28s var(--ease);
}
body.cursor-active .cursor-ring {
    width: 66px; height: 66px; background: rgba(255,255,255,.10); border-color: transparent;
}
body.cursor-hidden .cursor-dot, body.cursor-hidden .cursor-ring { opacity: 0; }
@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 27px; border-radius: 999px; font-weight: 600;
    font-size: .95rem; border: 1.5px solid transparent; letter-spacing: -.01em;
    transition: transform .5s var(--ease-spring), box-shadow .3s var(--ease),
                background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    will-change: transform;
}
.btn .arrow { display: inline-block; transition: transform .35s var(--ease-spring); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-ink); box-shadow: 0 30px 70px -22px rgba(31,60,255,.55); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-gold { background: var(--ink); color: #fff; }
.btn-gold:hover { background: var(--gold); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold); color: #fff; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 90;
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    background: rgba(10,11,14,.34);
    border-bottom: 1px solid transparent;
    transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
    background: rgba(247,246,242,.86);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 30px; width: auto; transition: filter .35s var(--ease); }
.nav:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.brand-by {
    font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
    font-weight: 600; color: var(--muted); padding-left: 12px; border-left: 1px solid var(--line-strong);
    transition: color .35s var(--ease), border-color .35s var(--ease);
}
.nav:not(.scrolled) .brand-by { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.24); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links > a, .dropdown-trigger {
    font-size: .92rem; font-weight: 500; color: var(--ink-2);
    position: relative; padding: 8px 0; display: inline-flex; align-items: center; gap: 5px;
    transition: color .25s var(--ease);
}
.nav:not(.scrolled) .nav-links > a, .nav:not(.scrolled) .dropdown-trigger { color: rgba(255,255,255,.86); }
.nav-links > a::after, .dropdown-trigger::after {
    content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 0;
    background: var(--accent); transition: width .3s var(--ease);
}
.nav-links > a:hover::after, .nav-item:hover .dropdown-trigger::after { width: 100%; }
.nav:not(.scrolled) .nav-links > a:hover, .nav:not(.scrolled) .dropdown-trigger:hover { color: #fff; }
.caret { transition: transform .3s var(--ease); opacity: .7; }
.nav-item.open .caret, .nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdowns */
.nav-item { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 12px; min-width: 290px;
    opacity: 0; visibility: hidden; transition: opacity .26s var(--ease), transform .26s var(--ease);
    z-index: 100;
}
.nav-item:hover > .dropdown-menu, .nav-item.open > .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-right { left: auto; right: 0; transform: translateX(0) translateY(10px); }
.nav-item:hover > .dropdown-right, .nav-item.open > .dropdown-right { transform: translateX(0) translateY(0); }
.dropdown-link {
    display: block; padding: 11px 14px; border-radius: 11px;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.dropdown-link:hover { background: var(--bg-soft); transform: translateX(3px); }
.dd-name { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; }
.dd-desc { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.dd-divider { height: 1px; background: var(--line); margin: 8px 6px; }
.dd-group { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 10px 14px 6px; }
.dd-soon { opacity: .6; cursor: default; }
.soon-badge { font-size: .6rem; background: var(--gold-soft); color: var(--gold); padding: 2px 7px; border-radius: 999px; margin-left: 6px; letter-spacing: .08em; }

/* Mega menu */
.mega-menu { min-width: 720px; padding: 26px; }
.mega-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mega-col-title { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.mega-link { display: block; padding: 7px 0; font-size: .88rem; color: var(--ink-2); font-weight: 500; transition: color .2s var(--ease), transform .2s var(--ease); }
.mega-link:hover { color: var(--accent); transform: translateX(3px); }
.mega-all { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .82rem; font-weight: 700; color: var(--accent); }
.mega-all .arrow { transition: transform .3s var(--ease-spring); }
.mega-all:hover .arrow { transform: translateX(4px); }

.nav-tools { display: flex; align-items: center; gap: 16px; }
.nav-login { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 500; color: var(--ink-2); transition: color .25s var(--ease); }
.nav:not(.scrolled) .nav-login { color: rgba(255,255,255,.86); }
.nav-login:hover { color: var(--accent); }
.nav-divider { width: 1px; height: 20px; background: var(--line-strong); }
.nav:not(.scrolled) .nav-divider { background: rgba(255,255,255,.2); }
.nav-search-btn, .nav-locale .dropdown-trigger { color: var(--ink-2); display: inline-flex; align-items: center; gap: 3px; }
.nav:not(.scrolled) .nav-search-btn, .nav:not(.scrolled) .nav-locale .dropdown-trigger { color: rgba(255,255,255,.86); }
.nav-search-btn:hover { color: var(--accent); }
.nav-cta {
    background: var(--accent); color: #fff; padding: 11px 20px; border-radius: 999px;
    font-size: .88rem; font-weight: 600; white-space: nowrap;
    transition: transform .5s var(--ease-spring), background .25s var(--ease), box-shadow .3s var(--ease);
    box-shadow: 0 10px 30px -12px rgba(31,60,255,.5); will-change: transform;
}
.nav-cta:hover { background: var(--accent-ink); }
.nav:not(.scrolled) .nav-cta { background: #fff; color: var(--ink); box-shadow: none; }
.nav:not(.scrolled) .nav-cta:hover { background: var(--gold); color: #fff; }
.nav-toggle { display: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s var(--ease); }
.nav:not(.scrolled) .nav-toggle span { background: #fff; }

/* ==========================================================================
   HERO — dark cinematic
   ========================================================================== */
.hero {
    position: relative; overflow: hidden;
    background: radial-gradient(1100px 620px at 78% -8%, #1a2140 0%, transparent 58%),
                radial-gradient(760px 520px at 8% 18%, #171a24 0%, transparent 60%),
                var(--d-bg);
    color: var(--d-ink);
    padding: calc(var(--nav-h) + var(--bar-h) + 40px) 0 70px;
}
.hero::after { /* fade into the light body */
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
    background: linear-gradient(180deg, transparent, var(--bg)); pointer-events: none; z-index: 3;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero-grid-lines {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    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: 68px 68px;
    -webkit-mask-image: radial-gradient(circle at 60% 34%, #000 12%, transparent 72%);
    mask-image: radial-gradient(circle at 60% 34%, #000 12%, transparent 72%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }

.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06); border: 1px solid var(--d-line);
    padding: 8px 16px; border-radius: 999px; font-size: .8rem; color: var(--d-ink); font-weight: 500;
    backdrop-filter: blur(6px);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(14,159,110,.22); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(14,159,110,.22); } 50% { box-shadow: 0 0 0 9px rgba(14,159,110,.03); } }

.hero h1 { color: var(--d-ink); margin: 24px 0 22px; }
.hero h1 .grad {
    background: linear-gradient(104deg, #7d90ff 0%, #5B74FF 45%, var(--gold) 120%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: 1rem; max-width: 560px; color: #C7CBD4; line-height: 1.66; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero-trust { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust > div { position: relative; padding-left: 18px; }
.hero-trust > div::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(var(--d-accent), transparent); border-radius: 2px; }
.hero-trust b { display: block; font-family: 'Manrope', sans-serif; font-size: 1.02rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero-trust span { font-size: .8rem; color: var(--d-muted); }

/* Split-text entrance */
.split-line { display: block; overflow: hidden; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-inner { display: inline-block; transform: translateY(112%); will-change: transform; }
.is-split-in .split-inner {
    transform: translateY(0);
    transition: transform .92s cubic-bezier(.16,.9,.24,1);
    transition-delay: var(--sd, 0s);
}

/* Hero pin-code card */
.hero-card {
    position: relative; z-index: 2;
    background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.6);
    border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
    transform-style: preserve-3d; will-change: transform;
}
.hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hc-pill { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; }
.hc-city { font-size: .8rem; color: var(--muted); font-weight: 500; }
.hc-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: 18px; letter-spacing: -.02em; }
.pin-widget { display: flex; flex-direction: column; gap: 14px; }
.hc-note { margin-top: 16px; font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ==========================================================================
   Fields (shared)
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .8rem; color: var(--ink); font-weight: 600; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
    font: inherit; font-size: .94rem; padding: 13px 15px; border: 1.5px solid var(--line-strong);
    border-radius: 12px; background: var(--surface); color: var(--ink-2);
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 118px; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.industries { background: var(--ink); color: #fff; padding: 30px 0; overflow: hidden; position: relative; z-index: 4; }
.industries .label { text-align: center; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 16px; }
.marquee { display: flex; gap: 0; width: max-content; animation: scroll 34s linear infinite; }
.marquee span { font-family: 'Manrope', sans-serif; font-weight: 800; color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.7vw, 1.3rem); display: inline-flex; align-items: center; gap: 30px; letter-spacing: -.01em; }
.marquee span span { display: inline-flex; }
.marquee span span::after { content: "◆"; color: var(--gold); font-size: .6em; padding: 0 30px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.industries:hover .marquee { animation-play-state: paused; }

/* ==========================================================================
   METRICS
   ========================================================================== */
.metrics { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.metric {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 26px; position: relative; overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    will-change: transform;
}
.metric::after { content: ""; position: absolute; inset: auto -30% -40% auto; width: 180px; height: 180px; background: radial-gradient(circle, rgba(31,60,255,.09), transparent 70%); opacity: 0; transition: opacity .4s var(--ease); }
.metric:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.metric:hover::after { opacity: 1; }
.metric .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(1.25rem, 1.8vw, 1.6rem); background: linear-gradient(120deg, var(--ink), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; line-height: 1; }
.metric p { margin-top: 12px; font-size: .84rem; line-height: 1.5; }

/* ==========================================================================
   Cards grid (services / advisory) — 3D tilt
   ========================================================================== */
.cards-grid { display: grid; gap: 22px; }
.card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 34px; position: relative; overflow: hidden;
    transform-style: preserve-3d; will-change: transform;
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(420px circle at var(--gx,50%) var(--gy,0%), rgba(31,60,255,.07), transparent 42%); opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; }
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card:hover::before { opacity: 1; }
.card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; transform: translateZ(40px); }
.card-ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(140deg, var(--accent-soft), #fff); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; transition: transform .4s var(--ease-spring); }
.card:hover .card-ico { transform: scale(1.08) rotate(-4deg); }
.card h3 { transform: translateZ(30px); }
.card p { font-size: .95rem; line-height: 1.62; transform: translateZ(18px); }

/* ==========================================================================
   Property-type chips
   ========================================================================== */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink-2);
    padding: 12px 20px; border-radius: 999px; font-size: .92rem; font-weight: 500;
    transition: transform .4s var(--ease-spring), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    will-change: transform;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transition: background .25s var(--ease), transform .3s var(--ease-spring); }
.chip:hover { transform: translateY(-4px); background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:hover::before { background: var(--gold); transform: scale(1.6); }

/* ==========================================================================
   Sector grid (who we serve / technology)
   ========================================================================== */
.sectors { background: var(--bg-soft); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; position: relative; overflow: hidden;
    transition: transform .38s var(--ease-spring), box-shadow .38s var(--ease), border-color .38s var(--ease);
    will-change: transform;
}
.sector::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: 50% 0; transition: transform .38s var(--ease-spring); }
.sector:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.sector:hover::before { transform: scaleY(1); }
.sector b { display: block; color: var(--ink); font-family: 'Manrope', sans-serif; font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.sector span { font-size: .82rem; color: var(--muted); margin-top: 5px; display: block; }

/* ==========================================================================
   Insights — 3D scroll-tilt carousel
   ========================================================================== */
.insights-3d { perspective: 1600px; }
.insights-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; transform-style: preserve-3d; transition: transform .2s linear; }
.insight-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease), border-color .45s var(--ease);
    will-change: transform;
}
.insight-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.insight-media { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.insight-card.featured .insight-media { aspect-ratio: 16/11; }
.insight-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insight-card:hover .insight-media img { transform: scale(1.07); }
.insight-tag { position: absolute; top: 16px; left: 16px; background: rgba(10,11,14,.72); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(6px); }
.insight-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.insight-body .date { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.insight-body h3 { color: var(--ink); }
.insight-link { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; font-weight: 700; color: var(--accent); margin-top: auto; }
.insight-link .arrow { transition: transform .3s var(--ease-spring); }
.insight-link:hover .arrow { transform: translateX(5px); }

/* Reports */
.reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.report-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease); will-change: transform; }
.report-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.report-media { aspect-ratio: 4/3; overflow: hidden; }
.report-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.report-card:hover .report-media img { transform: scale(1.06); }
.report-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.report-body h3 { color: var(--ink); }

/* ==========================================================================
   Pinned horizontal — "How It Works"
   ========================================================================== */
.process { background: var(--ink); color: #fff; padding: 0; }
.pin-wrap { position: relative; }
.pin-stage { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden; padding: calc(var(--nav-h) + var(--bar-h) + 30px) 0 34px; }
.pin-viewport { margin-top: auto; margin-bottom: auto; }
.pin-head { max-width: var(--max); margin: 0 auto; padding: 0 30px 28px; width: 100%; }
.pin-head .eyebrow { color: var(--gold); }
.pin-head .eyebrow::before { background: var(--gold); }
.pin-head h2 { color: #fff; margin-top: 14px; }
.pin-viewport { width: 100%; overflow: hidden; }
.pin-track { display: flex; gap: 26px; padding: 0 30px; width: max-content; will-change: transform; }
.pin-progress { max-width: var(--max); margin: 34px auto 0; padding: 0 30px; width: 100%; }
.pin-progress-bar { height: 3px; background: rgba(255,255,255,.14); border-radius: 3px; overflow: hidden; }
.pin-progress-bar i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--d-accent), var(--gold)); transform: scaleX(0); transform-origin: 0 50%; will-change: transform; }
.pin-card {
    flex: 0 0 clamp(300px, 40vw, 460px); background: rgba(255,255,255,.04);
    border: 1px solid var(--d-line); border-radius: var(--radius-lg); padding: 40px;
    display: flex; flex-direction: column; min-height: 340px;
}
.pin-card .step-no { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.75rem; background: linear-gradient(140deg, var(--d-accent), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.04em; line-height: 1; }
.pin-card b { display: block; font-family: 'Manrope', sans-serif; font-size: .98rem; font-weight: 800; color: #fff; margin: 22px 0 14px; letter-spacing: -.02em; }
.pin-card p { color: var(--d-muted); font-size: 1rem; line-height: 1.62; }
.pin-hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }

/* ==========================================================================
   Video showcase (drop-in film)
   ========================================================================== */
.showcase { background: var(--d-bg); color: #fff; overflow: hidden; }
.showcase-frame {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    aspect-ratio: 16/9; border: 1px solid var(--d-line); box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #14172080, #0a0b0e), #101218;
}
.showcase-frame video, .showcase-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase-poster { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; text-align: center; z-index: 2; transition: opacity .5s var(--ease); }
.showcase.playing .showcase-poster { opacity: 0; pointer-events: none; }
.play-btn { width: 88px; height: 88px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-accent); transition: transform .5s var(--ease-spring); will-change: transform; }
.play-btn::before { content: ""; position: absolute; width: 88px; height: 88px; border-radius: 50%; border: 1.5px solid var(--d-accent); animation: ripple 2.4s ease-out infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.play-btn:hover { transform: scale(1.08); }
.showcase-poster b { font-family: 'Manrope', sans-serif; font-size: .98rem; color: #fff; letter-spacing: -.02em; }
.showcase-poster span { font-size: .9rem; color: var(--d-muted); max-width: 380px; }

/* ==========================================================================
   USP band + parent band
   ========================================================================== */
.usp-band { background: radial-gradient(700px 400px at 80% 0%, #1c2450, transparent 60%), var(--ink); }
.usp-band h2 { line-height: 1.1; }
.parent-band {
    background: radial-gradient(700px 420px at 12% 120%, #1c2450, transparent 60%), var(--ink);
    border-radius: var(--radius-xl); padding: 56px; display: grid; grid-template-columns: 1.5fr auto;
    align-items: center; gap: 34px; position: relative; overflow: hidden;
}

/* ==========================================================================
   Values — six letters
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease); will-change: transform; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.v-letter { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.75rem; line-height: 1; background: linear-gradient(140deg, var(--gold), var(--gold-deep, #8C6E2F)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.value b { display: block; font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 12px 0 8px; letter-spacing: -.02em; }
.value p { font-size: .92rem; line-height: 1.6; }

/* ==========================================================================
   Dual photo CTA
   ========================================================================== */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.photo-cta { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; }
.photo-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.photo-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,11,14,.9) 0%, rgba(10,11,14,.25) 55%, transparent 100%); }
.photo-cta:hover img { transform: scale(1.06); }
.photo-cta-body { position: relative; z-index: 2; padding: 34px; color: #fff; }
.photo-cta-body .eyebrow { color: var(--gold); }
.photo-cta-body .eyebrow::before { background: var(--gold); }
.photo-cta-body h3 { color: #fff; margin: 10px 0 8px; font-size: .98rem; }
.photo-cta-body p { color: rgba(255,255,255,.78); margin-bottom: 18px; max-width: 340px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 900px; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .95rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: .98rem; font-weight: 400; color: var(--accent); transition: transform .3s var(--ease-spring); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; font-size: .96rem; line-height: 1.66; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .row:last-child { border-bottom: none; }
.contact-info .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-info b { display: block; color: var(--ink); font-size: .96rem; margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.contact-info span { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.contact-info a { color: var(--accent); font-weight: 500; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--d-bg); color: #b6bcc8; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-grid b { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-family: 'Manrope', sans-serif; display: block; margin-bottom: 16px; }
.footer-grid a { color: #8b93a3; font-size: .9rem; display: block; padding: 6px 0; transition: color .2s var(--ease), transform .2s var(--ease); }
.footer-grid a:hover { color: #fff; transform: translateX(3px); }
.footer-grid > div:first-child p { margin-top: 14px; max-width: 340px; line-height: 1.66; color: #8b93a3; }
.brand-logo-footer { height: 30px; filter: brightness(0) invert(1); }
.footer-legal { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-legal p { font-size: .76rem; color: #6b7280; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #6b7280; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }

/* ==========================================================================
   Modal + search + back-to-top
   ========================================================================== */
.modal-backdrop { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(10,11,14,.72); backdrop-filter: blur(8px); animation: fadeIn .28s var(--ease); }
.modal-backdrop[hidden] { display: none; }
.modal { background: var(--surface); border-radius: var(--radius-lg); padding: 44px 38px; max-width: 440px; text-align: center; box-shadow: var(--shadow-lg); animation: popIn .5s var(--ease-spring); }
.modal-ico { width: 66px; height: 66px; border-radius: 50%; background: var(--success); color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.modal h3 { font-size: .98rem; margin-bottom: 10px; }
.modal p { margin-bottom: 24px; line-height: 1.6; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.95); } to { opacity: 1; transform: none; } }

.search-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(10,11,14,.72); backdrop-filter: blur(8px); display: flex; justify-content: center; padding-top: 12vh; animation: fadeIn .28s var(--ease); }
.search-overlay[hidden] { display: none; }
.search-box { width: min(680px, 92vw); background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; height: fit-content; max-height: 72vh; display: flex; flex-direction: column; animation: popIn .45s var(--ease-spring); }
.search-input-row { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-bottom: 1px solid var(--line); color: var(--muted); }
.search-input-row input { flex: 1; font: inherit; font-size: .98rem; border: none; outline: none; background: none; color: var(--ink); }
.search-close { font-size: .98rem; color: var(--muted); }
.search-results { overflow-y: auto; padding: 12px; }
.search-empty { padding: 30px; text-align: center; color: var(--muted); font-size: .9rem; }

.to-top { position: fixed; right: 26px; bottom: 26px; z-index: 80; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease-spring), background .25s var(--ease); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ==========================================================================
   Reveal-on-scroll — transform/opacity only
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .09s; }
.reveal.delay-2 { transition-delay: .18s; }
.reveal.delay-3 { transition-delay: .27s; }
.reveal.delay-4 { transition-delay: .36s; }
[data-reveal="scale"] { transform: translateY(30px) scale(.94); }
[data-reveal="scale"].in { transform: none; }
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="left"].in { transform: none; }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="right"].in { transform: none; }

/* stagger children */
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .04s; }
.stagger.in > *:nth-child(2) { transition-delay: .1s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .22s; }
.stagger.in > *:nth-child(5) { transition-delay: .28s; }
.stagger.in > *:nth-child(6) { transition-delay: .34s; }
.stagger.in > *:nth-child(7) { transition-delay: .40s; }
.stagger.in > *:nth-child(8) { transition-delay: .46s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .sector-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .insights-grid { grid-template-columns: 1fr 1fr; }
    .reports-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .parent-band { grid-template-columns: 1fr; }
    .dual-cta { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-tools { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex; position: fixed; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; align-items: flex-start; gap: 0; background: var(--surface);
        padding: 14px 30px; border-bottom: 1px solid var(--line); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    }
    .nav-links.open > a, .nav-links.open .nav-item { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
    .nav-links.open .dropdown-menu, .nav-links.open .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 8px 0 8px 14px; min-width: auto; }
    .nav-links.open .mega-columns { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 680px) {
    section { padding: 78px 0; }
    .container { padding: 0 20px; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: 1fr !important; }
    .sector-grid { grid-template-columns: 1fr !important; }
    .insights-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 22px; }
    .parent-band { padding: 36px; }
    .pin-card { flex-basis: 80vw; padding: 30px; }
    .pin-stage { height: auto; position: static; padding: 78px 0; }
    .pin-wrap { height: auto !important; }
    .pin-track { transform: none !important; flex-wrap: wrap; }
    .pin-viewport { overflow: visible; }
}

/* ==========================================================================
   REDUCED MOTION — instant, no transforms
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal, .stagger > *, [data-reveal] { opacity: 1 !important; transform: none !important; }
    .split-inner { transform: none !important; }
    .marquee { animation: none !important; }
    .cursor-dot, .cursor-ring { display: none !important; }
    .pin-wrap { height: auto !important; }
    .pin-stage { position: static !important; height: auto !important; padding: 78px 0; }
    .pin-track { transform: none !important; flex-wrap: wrap; }
    .pin-viewport { overflow: visible !important; }
    #hero-canvas, .grain, .scroll-progress { display: none !important; }
    .play-btn::before { animation: none !important; }
}

/* ==========================================================================
   MULTI-PAGE ADDITIONS — page heros, index grids, detail pages, contact
   ========================================================================== */

/* General gradient-text utility */
.grad {
    background: linear-gradient(104deg, #7d90ff 0%, #5B74FF 45%, var(--gold) 120%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Page hero (index pages) ---- */
.page-hero {
    position: relative; overflow: hidden; color: var(--d-ink);
    background: radial-gradient(1100px 620px at 78% -8%, #1a2140 0%, transparent 58%),
                radial-gradient(760px 520px at 8% 18%, #171a24 0%, transparent 60%), var(--d-bg);
    padding: calc(var(--nav-h) + var(--bar-h) + 40px) 0 72px;
}
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: linear-gradient(180deg, transparent, var(--bg)); pointer-events: none; z-index: 3; }
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.page-hero h1 { color: var(--d-ink); margin: 22px 0 20px; }
.page-hero .lead { font-size: 1rem; max-width: 620px; color: #C7CBD4; line-height: 1.65; }
.page-hero .hero-tag { display: inline-flex; }

/* ---- Detail hero ---- */
.detail-hero { padding-bottom: 64px; }
.detail-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.crumbs { font-size: .82rem; color: var(--d-muted); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; }
.crumbs a { color: #C7CBD4; transition: color .2s var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs em { color: #fff; font-style: normal; font-weight: 600; }
.detail-badge {
    display: inline-flex; align-items: center; gap: 9px; font-size: .74rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--d-accent);
    background: rgba(91,116,255,.12); border: 1px solid rgba(91,116,255,.28);
    padding: 7px 14px; border-radius: 999px;
}
.detail-hero h1 { color: #fff; margin: 20px 0 14px; }
.detail-tagline { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(1rem, 1.5vw, 1.18rem); letter-spacing: -.02em; margin-bottom: 18px; line-height: 1.15; }
.detail-hero .lead { font-size: 1rem; max-width: 620px; color: #C7CBD4; line-height: 1.66; }
.highlight-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.highlight-chip { font-size: .82rem; font-weight: 500; color: #DDE1EA; background: rgba(255,255,255,.06); border: 1px solid var(--d-line); padding: 9px 16px; border-radius: 999px; }

/* ---- Index grid (solutions/industries listing) ---- */
.index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.index-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; display: flex; flex-direction: column;
    transform-style: preserve-3d; will-change: transform;
    transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.index-card:hover { box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.index-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.index-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.index-card:hover .index-media img { transform: scale(1.07); }
.index-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,11,14,.5)); }
.index-ico { position: absolute; left: 18px; bottom: 18px; z-index: 2; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.92); color: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.index-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.index-body h3 { color: var(--ink); font-size: 1.05rem; }
.index-body .insight-link { margin-top: auto; }

/* ---- Stat band ---- */
.stat-band { background: var(--ink); color: #fff; padding: 46px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-cell { text-align: center; padding: 10px; }
.stat-cell b { display: block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(1.25rem, 1.8vw, 1.6rem); letter-spacing: -.02em; background: linear-gradient(120deg, #fff, var(--d-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell span { display: block; margin-top: 8px; font-size: .88rem; color: var(--d-muted); }

/* ---- Excel / How-we-help rows ---- */
.excel-list { display: flex; flex-direction: column; gap: 18px; }
.excel-row {
    display: grid; grid-template-columns: 120px 1fr; gap: 26px; align-items: start;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 32px 34px; transform-style: preserve-3d; will-change: transform;
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.excel-row:hover { box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.excel-index span { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.6rem; line-height: 1; background: linear-gradient(140deg, var(--accent), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.04em; }
.excel-body h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.05rem; }
.excel-body p { font-size: 1rem; line-height: 1.65; }

/* ---- Flow line ---- */
.flow-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.flow-line::before { content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); z-index: 0; }
.flow-node { position: relative; z-index: 1; text-align: left; }
.flow-dot { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--line-strong); color: var(--accent); font-family: 'Manrope', sans-serif; font-weight: 800; font-size: .95rem; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.flow-node b { display: block; font-family: 'Manrope', sans-serif; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; letter-spacing: -.01em; }
.flow-node p { font-size: .88rem; line-height: 1.5; }

/* ---- Challenge band ---- */
.challenge-band { background: radial-gradient(700px 400px at 85% 0%, #1c2450, transparent 60%), var(--ink); color: #fff; }
.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.challenge-cell { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.04); border: 1px solid var(--d-line); border-radius: var(--radius); padding: 26px; }
.challenge-x { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: rgba(255,120,90,.14); color: #ff8a6a; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.challenge-cell p { color: #D2D6DF; font-size: .98rem; line-height: 1.55; }

/* ---- Link cards (preview grids) ---- */
.link-card { text-decoration: none; }
.link-card .insight-link { color: var(--accent); }
.link-sector { display: block; }
.sector-head { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; }
.sector-ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(140deg, var(--accent-soft), #fff); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: transform .4s var(--ease-spring); }
.sector-head b { margin: 0; }
.link-sector:hover .sector-ico { transform: scale(1.08) rotate(-4deg); }

/* ---- CTA split (home + partial) ---- */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-split-card { background: rgba(255,255,255,.04); border: 1px solid var(--d-line); border-radius: var(--radius-lg); padding: 40px; }
.cta-split-card h2 { margin: 12px 0 12px; font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.cta-split-card p { margin-bottom: 24px; max-width: 380px; }

/* ---- Mega menu: solutions grid ---- */
.mega-columns-sol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mega-solution { display: flex; gap: 12px; align-items: flex-start; padding: 11px 14px; border-radius: 11px; transition: background .2s var(--ease), transform .2s var(--ease); }
.mega-solution:hover { background: var(--bg-soft); transform: translateX(3px); }
.mega-solution-ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.mega-solution .dd-desc { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

/* ==========================================================================
   CONTACT — Procure / Provide
   ========================================================================== */
.contact-hero { padding-bottom: 34px; }
.mode-toggle { position: relative; display: inline-flex; gap: 0; margin: 34px auto 0; background: rgba(255,255,255,.06); border: 1px solid var(--d-line); border-radius: 999px; padding: 5px; }
.mode-btn { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border-radius: 999px; font-size: .95rem; font-weight: 600; color: var(--d-muted); transition: color .3s var(--ease); white-space: nowrap; }
.mode-btn em { font-style: normal; font-weight: 400; opacity: .7; font-size: .84rem; }
.mode-btn.active { color: #fff; }
.mode-glider { position: absolute; z-index: 1; top: 5px; left: 5px; width: calc(50% - 5px); height: calc(100% - 10px); border-radius: 999px; background: linear-gradient(120deg, var(--accent), var(--accent-ink)); transition: transform .45s var(--ease-spring); }
.contact-section { padding-top: 44px; }
.contact-shell { position: relative; }
.contact-pane { display: none; }
#contactModes[data-mode="procure"] .pane-procure,
#contactModes[data-mode="provide"] .pane-provide {
    display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px;
    animation: paneIn .5s var(--ease);
}
@keyframes paneIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.pane-aside .eyebrow { margin-bottom: 14px; }
.pane-aside h2 { margin-bottom: 14px; }
.pane-aside > p { margin-bottom: 24px; }
.aside-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 16px; }
.aside-list li { position: relative; padding-left: 22px; }
.aside-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.aside-list b { display: block; color: var(--ink); font-family: 'Manrope', sans-serif; font-size: .98rem; }
.aside-list span { font-size: .88rem; color: var(--muted); }
.aside-contact { padding-top: 22px; border-top: 1px solid var(--line); }
.aside-contact a { display: block; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.aside-contact span { font-size: .84rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; top: -9999px; }
.opt { color: var(--muted); font-weight: 400; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.check-chip { display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1.5px solid var(--line-strong); border-radius: 11px; font-size: .88rem; color: var(--ink-2); cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease); }
.check-chip:hover { border-color: var(--accent); }
.check-chip input { accent-color: var(--accent); width: 16px; height: 16px; }
.check-chip:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.form-status { margin-top: 14px; font-size: .88rem; }

@media (max-width: 1080px) {
    .index-grid { grid-template-columns: 1fr 1fr; }
    .flow-line { grid-template-columns: 1fr 1fr; }
    .flow-line::before { display: none; }
    .challenge-grid { grid-template-columns: 1fr; }
    .contact-pane, #contactModes[data-mode="procure"] .pane-procure, #contactModes[data-mode="provide"] .pane-provide { grid-template-columns: 1fr; gap: 30px; }
    .cta-split { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .index-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; gap: 30px; }
    .flow-line { grid-template-columns: 1fr; }
    .excel-row { grid-template-columns: 1fr; gap: 12px; padding: 26px; }
    .excel-index span { font-size: 2.4rem; }
    .check-grid { grid-template-columns: 1fr; }
    .mode-btn em { display: none; }
    .mode-btn { padding: 12px 18px; }
}

/* ==========================================================================
   IMMERSIVE INDEX CARDS (image-free) — solutions & industries listing
   ========================================================================== */
.imm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.imm-card {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    padding: 32px; min-height: 300px; display: flex; flex-direction: column;
    color: #fff; text-decoration: none;
    background: radial-gradient(130% 130% at 0% 0%, #1c2340 0%, #0c0e15 58%);
    border: 1px solid rgba(255,255,255,.09);
    transform-style: preserve-3d; will-change: transform;
    transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.imm-card::before { /* cursor-follow accent glow (--gx/--gy set by tilt JS) */
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(360px circle at var(--gx,78%) var(--gy,12%), rgba(91,116,255,.30), transparent 46%);
    opacity: .75; transition: opacity .4s var(--ease); pointer-events: none;
}
.imm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(91,116,255,.45); }
.imm-card:hover::before { opacity: 1; }
.imm-watermark { position: absolute; top: -26px; right: -22px; z-index: 0; color: #fff; opacity: .06; pointer-events: none; }
.imm-watermark svg { width: 190px; height: 190px; }
.imm-ico {
    position: relative; z-index: 2; width: 54px; height: 54px; border-radius: 14px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    display: flex; align-items: center; justify-content: center; color: #fff;
    transition: transform .45s var(--ease-spring), background .3s var(--ease);
}
.imm-card:hover .imm-ico { transform: scale(1.08) rotate(-4deg); background: rgba(91,116,255,.22); }
.imm-num { position: absolute; top: 30px; right: 30px; z-index: 2; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: rgba(255,255,255,.28); letter-spacing: .04em; }
.imm-body { position: relative; z-index: 2; margin-top: auto; padding-top: 26px; }
.imm-body h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.imm-body p { color: #AEB4C4; font-size: .9rem; line-height: 1.55; }
.imm-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #fff; font-weight: 700; font-size: .9rem; }
.imm-link .arrow { transition: transform .35s var(--ease-spring); }
.imm-card:hover .imm-link .arrow { transform: translateX(5px); }

@media (max-width: 1080px) { .imm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px)  { .imm-grid { grid-template-columns: 1fr; } .imm-card { min-height: 260px; } }

/* ==========================================================================
   AVAILABILITY (checking) page
   ========================================================================== */
.availability-hero { min-height: 74vh; display: flex; align-items: center; }
.checking-dots::after { content: ""; animation: ellipsis 1.6s steps(1, end) infinite; }
@keyframes ellipsis { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } 100% { content: ""; } }
.avail-summary { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 20px 0 4px; }
.avail-summary span { display: inline-flex; gap: 8px; align-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--d-line); padding: 8px 15px; border-radius: 999px; font-size: .85rem; color: #C7CBD4; }
.avail-summary b { color: #fff; font-weight: 600; }
.avail-form { margin-top: 28px; }
.avail-input-row { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.avail-input-row input { flex: 1; padding: 15px 18px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: .95rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.avail-input-row input::placeholder, .avail-phone::placeholder { color: #8890a0; }
.avail-input-row input:focus, .avail-phone:focus { outline: none; border-color: var(--d-accent); box-shadow: 0 0 0 4px rgba(91,116,255,.18); }
.avail-input-row .btn { flex-shrink: 0; }
.avail-phone { display: block; width: 100%; max-width: 520px; margin: 12px auto 0; padding: 13px 18px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; font: inherit; font-size: .9rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.avail-back { display: inline-block; margin-top: 24px; color: #C7CBD4; font-size: .9rem; transition: color .2s var(--ease); }
.avail-back:hover { color: #fff; }
@media (max-width: 560px) { .avail-input-row { flex-direction: column; } .avail-input-row .btn { justify-content: center; } }

/* ==========================================================================
   FIXED TICKER BAR — sits directly under the nav, stays constant
   ========================================================================== */
.ticker-bar {
    position: fixed; top: var(--nav-h); left: 0; right: 0; height: var(--bar-h);
    z-index: 80; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden; display: flex; align-items: center;
}
.ticker-bar .marquee { display: flex; width: max-content; animation: scroll 40s linear infinite; }
.ticker-bar .marquee span { font-family: 'Manrope', sans-serif; font-weight: 700; color: rgba(255,255,255,.9); font-size: .82rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 22px; }
.ticker-bar .marquee span span { display: inline-flex; }
.ticker-bar .marquee span span::after { content: "◆"; color: var(--gold); font-size: .5em; padding: 0 22px; }
.ticker-bar:hover .marquee { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .ticker-bar .marquee { animation: none; } }
@media (max-width: 680px) { :root { --bar-h: 40px; } .ticker-bar .marquee span { font-size: .76rem; } }
