:root {
    --bg: #0d0e0c;
    --bg-soft: #12130f;
    --surface: #171713;
    --surface-2: #1d1b16;
    --section-soft: #11120f;
    --section-warm: #161510;
    --cream: #f2ede3;
    --paper: #e9e2d4;
    --ink: #15130f;
    --muted: #999184;
    --muted-dark: #696154;
    --line: rgba(232, 216, 184, 0.14);
    --line-light: rgba(24, 20, 14, 0.12);
    --gold: #c9a35f;
    --gold-light: #e0c17f;
    --gold-dark: #886b3d;
    --green: #718b6b;
    --container: 1240px;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    min-width: 320px;
    background: var(--bg);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { display: block; }

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 3000;
    padding: 12px 18px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 4px;
    font-weight: 800;
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-dark { background: var(--bg); color: var(--cream); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 82px;
    color: var(--cream);
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
    background: rgba(9, 9, 7, .9);
    border-color: var(--line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--gold);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark path:first-child { fill: none; stroke: currentColor; stroke-width: 1.6; }
.brand-mark path:last-child { fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; }
.brand-wordmark { display: flex; align-items: baseline; gap: 6px; letter-spacing: .08em; line-height: 1; }
.brand-wordmark strong { font-size: 1.05rem; font-weight: 800; }
.brand-wordmark span { color: var(--gold); font-family: var(--serif); font-size: 1.08rem; letter-spacing: .06em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.desktop-nav a, .text-link { color: rgba(242, 237, 227, .72); font-size: .82rem; font-weight: 700; letter-spacing: .02em; transition: color .2s ease; }
.desktop-nav a:hover, .text-link:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 22px; }

.button {
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .025em;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .77rem; }
.button-gold { background: var(--gold); color: #18130b; border-color: var(--gold); box-shadow: 0 12px 40px rgba(201, 163, 95, .12); }
.button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 18px 50px rgba(201, 163, 95, .22); }
.button-ghost { color: var(--cream); border-color: rgba(242, 237, 227, .2); background: rgba(255, 255, 255, .015); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201, 163, 95, .04); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { width: 22px; height: 1px; background: var(--cream); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
    position: relative;
    min-height: 860px;
    padding: 158px 0 38px;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(9, 9, 7, .97) 0%, rgba(9, 9, 7, .84) 45%, rgba(9, 9, 7, .7) 100%),
        radial-gradient(circle at 76% 42%, #1a1711 0%, #090907 56%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .23;
    background-image: linear-gradient(rgba(201,163,95,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(201,163,95,.09) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -180px; top: 90px; background: radial-gradient(circle, rgba(201,163,95,.1), transparent 68%); }
.hero-glow-two { width: 330px; height: 330px; left: 15%; bottom: -180px; background: radial-gradient(circle, rgba(111,137,105,.075), transparent 70%); }
.hero-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(52px, 7vw, 100px); }
.hero-copy { padding-bottom: 42px; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow i { width: 26px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--gold-dark); }
.hero h1 {
    max-width: 720px;
    margin: 24px 0 25px;
    font-family: var(--serif);
    font-size: clamp(3.65rem, 6vw, 6.45rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.04em;
}
.hero-description { max-width: 630px; color: rgba(242,237,227,.68); font-size: clamp(1.02rem, 1.35vw, 1.17rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: 36px; }
.hero-assurance span { display: inline-flex; align-items: center; gap: 8px; color: rgba(242,237,227,.48); font-size: .72rem; font-weight: 700; }
.hero-assurance span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; min-width: 0; }
.executive-panel { position: relative; background: rgba(18,16,12,.86); border: 1px solid rgba(224,193,127,.22); border-radius: 8px; box-shadow: 0 48px 100px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.03); overflow: hidden; backdrop-filter: blur(12px); }
.executive-panel::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 34%); }
.panel-topbar { min-height: 54px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); color: rgba(242,237,227,.55); font-size: .68rem; font-weight: 700; }
.panel-brand, .panel-status { display: flex; align-items: center; gap: 9px; }
.panel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(201,163,95,.7); }
.panel-status i { width: 6px; height: 6px; border-radius: 50%; background: #76956e; box-shadow: 0 0 12px rgba(118,149,110,.7); }
.panel-body { padding: 24px; }
.panel-title-row { display: flex; align-items: flex-start; justify-content: space-between; }
.panel-kicker, .module-card small, .map-label small { color: rgba(242,237,227,.38); font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.panel-title-row h2 { margin-top: 4px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.panel-title-row button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 3px; background: transparent; display: flex; align-items: center; justify-content: center; gap: 3px; cursor: pointer; }
.panel-title-row button span { width: 3px; height: 3px; border-radius: 50%; background: rgba(242,237,227,.5); }
.intelligence-map { position: relative; min-height: 250px; margin-top: 15px; border: 1px solid rgba(232,216,184,.08); border-radius: 5px; background: radial-gradient(circle at 50% 50%, rgba(201,163,95,.055), transparent 56%), #0e0d0a; overflow: hidden; }
.intelligence-map::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,163,95,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(201,163,95,.045) 1px, transparent 1px); background-size: 30px 30px; }
.intelligence-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-shape { fill: rgba(201,163,95,.025); stroke: rgba(224,193,127,.14); stroke-width: 1; }
.route { fill: none; stroke: url(#lineGold); stroke-width: 1.3; stroke-dasharray: 4 6; animation: route 18s linear infinite; }
.route-two { animation-duration: 24s; animation-direction: reverse; }
.map-node circle:first-child { fill: var(--gold-light); }
.map-node circle:last-child { fill: none; stroke: rgba(224,193,127,.35); animation: nodePulse 2.8s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.node-two circle:last-child { animation-delay: .7s; }.node-three circle:last-child { animation-delay: 1.4s; }.node-four circle:last-child { animation-delay: 2.1s; }
@keyframes route { to { stroke-dashoffset: -140; } }
@keyframes nodePulse { 0% { transform: scale(.45); opacity: .9; } 100% { transform: scale(1.45); opacity: 0; } }
.map-label { position: absolute; z-index: 2; padding: 8px 11px; border: 1px solid rgba(224,193,127,.16); border-radius: 3px; background: rgba(9,9,7,.83); box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.map-label strong { display: block; margin-top: 2px; color: rgba(242,237,227,.82); font-size: .67rem; }
.label-origin { left: 5%; bottom: 11%; }.label-market { right: 4%; top: 12%; }.label-insight { right: 30%; bottom: 10%; }
.panel-modules { display: grid; grid-template-columns: 1.18fr 1fr 1fr; gap: 8px; margin-top: 8px; }
.module-card { position: relative; min-height: 86px; padding: 15px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(232,216,184,.08); border-radius: 4px; background: rgba(255,255,255,.015); }
.module-featured { border-color: rgba(201,163,95,.24); background: rgba(201,163,95,.055); }
.module-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(201,163,95,.22); border-radius: 3px; color: var(--gold-light); flex-shrink: 0; }
.module-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.module-card strong { display: block; margin-top: 2px; color: rgba(242,237,227,.75); font-size: .67rem; line-height: 1.35; }
.module-state { position: absolute; right: 8px; top: 8px; padding: 2px 6px; border-radius: 10px; background: rgba(113,139,107,.11); color: #9bb397; font-size: .49rem; font-weight: 800; text-transform: uppercase; }
.floating-card { position: absolute; z-index: 4; min-width: 205px; padding: 12px 14px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(224,193,127,.22); border-radius: 5px; background: rgba(17,15,11,.93); box-shadow: 0 20px 50px rgba(0,0,0,.42); backdrop-filter: blur(10px); }
.floating-card-top { top: 19%; right: -74px; }.floating-card-bottom { left: -64px; bottom: 12%; }
.floating-icon { width: 31px; height: 31px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(201,163,95,.18); border-radius: 50%; }
.floating-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.floating-card small { display: block; color: rgba(242,237,227,.36); font-size: .54rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.floating-card strong { display: block; margin-top: 2px; color: rgba(242,237,227,.82); font-size: .67rem; }
.capability-strip { min-height: 82px; margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(242,237,227,.42); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.capability-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-dark); }

.positioning-section { padding: 130px 0 145px; background: var(--section-soft); color: var(--cream); }
.positioning-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.section-intro { min-width: 0; }
.positioning-section h2, .section-heading h2, .enterprise-section h2, .cta-section h2 {
    margin-top: 20px;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.025em;
}
.positioning-section h2 { max-width: 820px; font-size: clamp(2.7rem, 4.7vw, 5rem); }
.positioning-copy { padding-bottom: 4px; }
.positioning-copy p { color: rgba(242,237,227,.52); font-size: .96rem; }
.positioning-copy .lead { margin-bottom: 18px; color: rgba(242,237,227,.78); font-size: 1.08rem; line-height: 1.75; }

.platform-window { margin-top: 92px; min-height: 650px; display: grid; grid-template-columns: 210px 1fr; border: 1px solid rgba(224,193,127,.14); border-radius: 7px; background: #151510; color: var(--cream); box-shadow: 0 55px 110px rgba(0,0,0,.3); overflow: hidden; }
.window-sidebar { padding: 25px 15px 18px; border-right: 1px solid var(--line); background: #0c0c0a; display: flex; flex-direction: column; }
.sidebar-mini-brand { margin: 0 10px 34px; display: flex; align-items: center; gap: 9px; color: var(--cream); font-weight: 800; font-size: .78rem; letter-spacing: .1em; }
.sidebar-mini-brand span { width: 19px; height: 19px; border: 1px solid var(--gold); border-radius: 50% 45% 50% 46%; transform: rotate(-28deg); }
.sidebar-item { min-height: 44px; padding: 0 12px; display: flex; align-items: center; gap: 12px; border-radius: 4px; color: rgba(242,237,227,.4); font-size: .68rem; font-weight: 700; }
.sidebar-item i { width: 13px; height: 13px; border: 1px solid currentColor; border-radius: 2px; }
.sidebar-item.active { color: var(--gold-light); background: rgba(201,163,95,.08); }
.sidebar-spacer { flex: 1; }
.sidebar-user { padding: 17px 8px 0; display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.sidebar-user > span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(201,163,95,.12); color: var(--gold-light); font-size: .56rem; font-weight: 800; }
.sidebar-user b, .sidebar-user small { display: block; }.sidebar-user b { font-size: .58rem; }.sidebar-user small { color: rgba(242,237,227,.35); font-size: .51rem; }
.window-content { padding: 0 26px 26px; min-width: 0; }
.window-header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.window-header small, .card-heading small, .window-side-card small, .window-bottom-card small { color: rgba(242,237,227,.34); font-size: .54rem; font-weight: 800; letter-spacing: .12em; }
.window-header h3 { margin-top: 3px; font-size: 1rem; }
.window-header-actions { display: flex; gap: 8px; }
.window-header-actions span { width: 31px; height: 31px; border: 1px solid var(--line); border-radius: 3px; }
.window-grid { padding-top: 22px; display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 12px; }
.window-main-card, .window-side-card, .window-bottom-card { border: 1px solid rgba(232,216,184,.075); border-radius: 4px; background: rgba(255,255,255,.015); }
.window-main-card { grid-column: span 2; min-height: 365px; padding: 20px; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.card-heading strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.card-heading > span { color: #88a180; font-size: .56rem; font-weight: 800; }
.signal-chart { position: relative; height: 260px; margin-top: 24px; }
.signal-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-grid { fill: none; stroke: rgba(232,216,184,.065); stroke-width: 1; }
.chart-area { fill: url(#areaGradient); }
.chart-line { fill: none; stroke: var(--gold); stroke-width: 2; vector-effect: non-scaling-stroke; }
.chart-point { position: absolute; width: 8px; height: 8px; border: 2px solid var(--gold-light); border-radius: 50%; background: #11100d; box-shadow: 0 0 0 5px rgba(201,163,95,.1); }
.point-a { left: 18%; top: 45%; }.point-b { left: 51%; top: 26%; }.point-c { right: 8%; top: 15%; }
.window-side-card { min-height: 176px; padding: 18px; }
.insight-card { grid-row: span 1; }
.window-side-card strong { display: block; margin-top: 14px; font-family: var(--serif); font-size: 1.07rem; font-weight: 400; line-height: 1.25; }
.window-side-card p { margin-top: 13px; color: rgba(242,237,227,.43); font-size: .64rem; line-height: 1.6; }
.insight-lines { display: grid; gap: 7px; margin-top: 22px; }.insight-lines span { height: 4px; border-radius: 3px; background: rgba(242,237,227,.08); }.insight-lines span:nth-child(2){width:80%;}.insight-lines span:nth-child(3){width:56%;}
.alert-card { grid-column: 3; }
.alert-row { height: 32px; margin-top: 10px; padding: 0 8px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(232,216,184,.06); border-radius: 3px; }
.alert-row span { width: 60%; height: 4px; background: rgba(242,237,227,.08); border-radius: 2px; }.alert-row i { width: 20px; height: 10px; border-radius: 8px; background: rgba(113,139,107,.18); position: relative; }.alert-row i::after { content:''; position:absolute; width:6px; height:6px; right:2px; top:2px; border-radius:50%; background:#8ba084; }
.window-bottom-card { min-height: 88px; padding: 16px; display: flex; align-items: center; gap: 12px; }
.status-icon { width: 31px; height: 31px; border: 1px solid rgba(201,163,95,.2); border-radius: 50%; position: relative; }
.status-icon::after { content:''; position:absolute; inset:10px; border-radius:50%; background: var(--gold); }
.window-bottom-card strong { display: block; margin-top: 3px; font-size: .63rem; }

.solutions-section { padding: 135px 0 145px; }
.section-heading { display: grid; grid-template-columns: 1.1fr .55fr; gap: 90px; align-items: end; }
.section-heading h2 { max-width: 760px; font-size: clamp(2.8rem, 4.4vw, 4.8rem); }
.section-heading > p { color: rgba(242,237,227,.5); font-size: .95rem; }
.solutions-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(232,216,184,.1); border: 1px solid rgba(232,216,184,.1); }
.solution-card { position: relative; min-height: 330px; padding: 34px; background: #10110e; overflow: hidden; transition: background .3s ease; }
.solution-card:hover { background: #181711; }
.solution-card-large { grid-row: span 2; min-height: 661px; }
.solution-card-wide { grid-column: span 2; min-height: 330px; }
.solution-index { position: absolute; top: 30px; right: 30px; color: rgba(242,237,227,.22); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.solution-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(201,163,95,.2); color: var(--gold-light); }
.solution-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.solution-card h3 { max-width: 390px; margin-top: 34px; font-family: var(--serif); font-size: 1.72rem; font-weight: 400; line-height: 1.14; }
.solution-card p { max-width: 410px; margin-top: 17px; color: rgba(242,237,227,.46); font-size: .84rem; }
.bars-visual { position: absolute; inset: auto 34px 34px; height: 260px; display: flex; align-items: end; gap: 11px; border-bottom: 1px solid rgba(201,163,95,.16); }
.bars-visual i { flex: 1; background: linear-gradient(to top, rgba(201,163,95,.08), rgba(201,163,95,.38)); border-top: 1px solid rgba(224,193,127,.65); }
.bars-visual i:nth-child(1){height:25%;}.bars-visual i:nth-child(2){height:43%;}.bars-visual i:nth-child(3){height:36%;}.bars-visual i:nth-child(4){height:67%;}.bars-visual i:nth-child(5){height:58%;}.bars-visual i:nth-child(6){height:88%;}
.solution-copy { display: flex; align-items: flex-start; gap: 26px; }
.solution-copy h3 { margin-top: 0; }
.integration-visual { position: absolute; left: 34px; right: 34px; bottom: 38px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.integration-visual span { min-width: 62px; height: 34px; padding: 0 10px; display: grid; place-items: center; border: 1px solid rgba(232,216,184,.12); color: rgba(242,237,227,.55); font-size: .57rem; font-weight: 800; letter-spacing: .08em; }
.integration-visual span:last-child { border-color: rgba(201,163,95,.35); color: var(--gold-light); }
.integration-visual i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,163,95,.08), rgba(201,163,95,.45)); position: relative; }
.integration-visual i::after { content:''; position:absolute; right:0; top:-2px; width:5px; height:5px; border-radius:50%; background:var(--gold); }

.enterprise-section { padding: 145px 0; background: var(--section-warm); color: var(--cream); }
.enterprise-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.enterprise-copy { position: sticky; top: 120px; }
.enterprise-section h2 { margin-top: 23px; font-size: clamp(2.65rem, 4.1vw, 4.4rem); }
.enterprise-copy > p { margin-top: 27px; color: rgba(242,237,227,.55); font-size: .98rem; }
.inline-link { margin-top: 30px; display: inline-flex; align-items: center; gap: 11px; color: var(--gold-light); font-size: .78rem; font-weight: 800; border-bottom: 1px solid rgba(224,193,127,.35); padding-bottom: 5px; }
.inline-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.inline-link:hover svg { transform: translateX(4px); }
.enterprise-pillars { border-top: 1px solid var(--line); }
.enterprise-pillars article { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.enterprise-pillars article > span { color: var(--gold-dark); font-size: .64rem; font-weight: 800; letter-spacing: .13em; }
.enterprise-pillars h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.enterprise-pillars p { margin-top: 8px; color: rgba(242,237,227,.5); font-size: .86rem; }

.audience-section { padding: 135px 0 145px; background: var(--section-soft); color: var(--cream); }
.section-heading-light > p { color: rgba(242,237,227,.5); }
.audience-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-card { min-height: 330px; padding: 32px 28px; border-right: 1px solid var(--line); transition: background .3s ease; }
.audience-card:hover { background: rgba(201,163,95,.035); }
.audience-card:last-child { border-right: 0; }
.audience-number { color: var(--gold-dark); font-size: .62rem; font-weight: 800; letter-spacing: .13em; }
.audience-line { width: 34px; height: 1px; margin: 50px 0 28px; background: var(--gold-dark); }
.audience-card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.18; }
.audience-card p { margin-top: 17px; color: rgba(242,237,227,.5); font-size: .82rem; }

.cta-section { position: relative; padding: 130px 0 136px; overflow: hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 50% 110%, rgba(201,163,95,.12), transparent 38%); }
.cta-grain { position:absolute; inset:0; opacity:.18; background-image: radial-gradient(rgba(224,193,127,.35) .5px, transparent .5px); background-size: 7px 7px; mask-image:linear-gradient(to right,transparent,#000 25%,#000 75%,transparent); }
.cta-content { position:relative; text-align:center; }
.cta-section h2 { max-width: 900px; margin: 24px auto 0; font-size: clamp(3rem, 5.2vw, 5.5rem); }
.cta-section p { max-width: 680px; margin: 24px auto 0; color: rgba(242,237,227,.53); }
.cta-actions { margin-top: 36px; display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }

.site-footer { background: #0a0b09; color: var(--cream); }
.footer-main { padding: 78px 0 62px; display: grid; grid-template-columns: 1.7fr repeat(3, .7fr); gap: 70px; }
.footer-brand-block p { max-width: 340px; margin-top: 22px; color: rgba(242,237,227,.4); font-size: .82rem; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column h3 { margin-bottom: 9px; color: rgba(242,237,227,.85); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(242,237,227,.42); font-size: .75rem; transition: color .2s ease; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { min-height: 70px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: rgba(242,237,227,.27); font-size: .65rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.72,.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1120px) {
    .desktop-nav { gap: 22px; }
    .hero-layout { grid-template-columns: .9fr 1.1fr; gap: 42px; }
    .hero h1 { font-size: clamp(3.4rem, 6vw, 5.4rem); }
    .floating-card-top { right: -24px; }.floating-card-bottom { left: -24px; }
    .positioning-layout { grid-template-columns: 1fr .75fr; gap: 50px; }
    .footer-main { gap: 42px; }
}

@media (max-width: 960px) {
    .desktop-nav, .header-actions { display: none; }
    .menu-toggle { display: flex; }
    .mobile-nav {
        position: fixed;
        inset: 82px 0 auto;
        padding: 26px 24px 32px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: rgba(9,9,7,.98);
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    }
    .mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .mobile-nav > a:not(.button) { padding: 13px 0; color: rgba(242,237,227,.72); border-bottom: 1px solid rgba(232,216,184,.08); font-size: .82rem; font-weight: 700; }
    .mobile-nav .button { margin-top: 16px; }
    .hero { min-height: auto; padding-top: 140px; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-copy { max-width: 800px; padding-bottom: 0; }
    .hero h1 { max-width: 820px; font-size: clamp(4rem, 10vw, 6.6rem); }
    .hero-visual { max-width: 760px; width: 100%; margin-inline: auto; }
    .floating-card-top { right: -10px; }.floating-card-bottom { left: -10px; }
    .capability-strip { flex-wrap: wrap; justify-content: center; padding-bottom: 25px; }
    .positioning-layout, .section-heading, .enterprise-layout { grid-template-columns: 1fr; }
    .positioning-copy { max-width: 680px; margin-left: 0; }
    .platform-window { grid-template-columns: 160px 1fr; }
    .sidebar-user div { display: none; }
    .window-grid { grid-template-columns: 1fr 1fr; }
    .window-main-card { grid-column: span 2; }
    .alert-card { grid-column: auto; }
    .solutions-grid { grid-template-columns: repeat(2,1fr); }
    .solution-card-large { grid-row: span 1; min-height: 430px; }
    .solution-card-wide { grid-column: span 2; }
    .enterprise-copy { position: static; max-width: 740px; }
    .audience-grid { grid-template-columns: repeat(2,1fr); }
    .audience-card:nth-child(2) { border-right:0; }.audience-card:nth-child(-n+2){border-bottom:1px solid var(--line);}
    .footer-main { grid-template-columns: 1.5fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .site-header { height: 72px; }
    .mobile-nav { top: 72px; }
    .brand-wordmark strong, .brand-wordmark span { font-size: .92rem; }
    .brand-mark { width: 34px; height: 34px; }
    .hero { padding-top: 122px; }
    .hero h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
    .hero-description { font-size: .97rem; }
    .hero-actions .button { width: 100%; }
    .hero-assurance { display: grid; gap: 9px; }
    .executive-panel { border-radius: 5px; }
    .panel-body { padding: 15px; }
    .panel-topbar { padding-inline: 14px; }
    .panel-status { display: none; }
    .intelligence-map { min-height: 220px; }
    .map-label { transform: scale(.86); transform-origin: left center; }
    .label-market { transform-origin: right center; }
    .panel-modules { grid-template-columns: 1fr; }
    .module-card { min-height: 70px; }
    .floating-card { display: none; }
    .capability-strip i { display: none; }
    .capability-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
    .positioning-section, .solutions-section, .enterprise-section, .audience-section { padding: 92px 0; }
    .positioning-section h2, .section-heading h2, .enterprise-section h2 { font-size: clamp(2.5rem, 11vw, 3.7rem); }
    .positioning-copy { margin-left: 0; }
    .platform-window { margin-top: 58px; grid-template-columns: 1fr; min-height: auto; }
    .window-sidebar { display: none; }
    .window-content { padding: 0 14px 14px; }
    .window-header { min-height: 74px; }
    .window-header-actions span:nth-child(-n+2) { display:none; }
    .window-grid { grid-template-columns: 1fr; }
    .window-main-card { grid-column: auto; min-height: 330px; }
    .signal-chart { height: 220px; }
    .section-heading { gap: 25px; }
    .solutions-grid { grid-template-columns: 1fr; margin-top: 50px; }
    .solution-card, .solution-card-large, .solution-card-wide { grid-column: auto; min-height: 330px; }
    .solution-card-large { min-height: 520px; }
    .solution-card-wide { min-height: 430px; }
    .solution-copy { display: block; }
    .solution-copy h3 { margin-top: 28px; }
    .integration-visual { flex-wrap: wrap; justify-content: flex-start; }
    .integration-visual i { display:none; }
    .enterprise-layout { gap: 55px; }
    .enterprise-pillars article { grid-template-columns: 42px 1fr; gap: 16px; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card { min-height: 260px; border-right: 0; border-bottom:1px solid var(--line); }
    .audience-card:last-child { border-bottom:0; }
    .audience-line { margin: 34px 0 22px; }
    .cta-section { padding: 92px 0; }
    .cta-section h2 { font-size: clamp(2.8rem, 12vw, 4.3rem); }
    .cta-actions .button { width:100%; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand-block { grid-column: span 2; margin-bottom: 16px; }
    .footer-column:last-child { grid-column: span 2; }
}

@media (max-width: 420px) {
    .panel-title-row h2 { font-size: 1.35rem; }
    .map-label { display:none; }
    .intelligence-map { min-height: 180px; }
    .positioning-copy { margin-left: 0; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand-block, .footer-column:last-child { grid-column: auto; }
    .footer-bottom { padding: 20px 0; flex-direction: column; align-items:flex-start; gap:8px; }
}

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