:root {
    color-scheme: dark;
    --bg: #061114;
    --bg-2: #0b2025;
    --ink: #f8fafc;
    --muted: #9fb0b6;
    --soft: #dce8ea;
    --line: rgba(226, 232, 240, 0.16);
    --panel: rgba(7, 20, 24, 0.72);
    --panel-strong: rgba(8, 25, 30, 0.92);
    --teal: #17d7c2;
    --cyan: #66dff7;
    --amber: #f6bd55;
    --rose: #fb7185;
    --green: #6ee7b7;
    --slate: #152a30;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
    --radius: 8px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    min-width: 320px;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.icon-sprite { display: none; }
svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.page-progress {
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
    height: 3px;
    left: 0;
    position: fixed;
    right: auto;
    top: 0;
    transform-origin: left center;
    transform: scaleX(0);
    width: 100%;
    z-index: 80;
}

.site-header {
    align-items: center;
    backdrop-filter: blur(22px);
    background: rgba(6, 17, 20, 0.58);
    border-bottom: 1px solid transparent;
    display: flex;
    height: 74px;
    justify-content: space-between;
    left: 0;
    padding: 0 clamp(16px, 4vw, 48px);
    position: fixed;
    right: 0;
    top: 0;
    transition: background .24s ease, border-color .24s ease, height .24s ease;
    z-index: 40;
}
.site-header.is-scrolled {
    background: rgba(6, 17, 20, 0.92);
    border-color: var(--line);
    height: 64px;
}
.brand {
    align-items: center;
    display: inline-flex;
    font-weight: 900;
    gap: 10px;
    line-height: 1;
    min-height: 42px;
}
.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--teal), var(--amber));
    border-radius: 8px;
    color: #031112;
    display: inline-flex;
    font-size: 13px;
    height: 36px;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(255,255,255,.2) inset, 0 14px 34px rgba(23,215,194,.25);
    width: 36px;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 15px; }
.brand-copy small { color: rgba(248,250,252,.58); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.site-nav {
    align-items: center;
    display: flex;
    gap: 6px;
}
.site-nav a {
    border-radius: 8px;
    color: rgba(248, 250, 252, 0.78);
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    min-height: 40px;
    padding: 13px 12px;
    position: relative;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a::after {
    background: var(--teal);
    bottom: 7px;
    content: "";
    height: 2px;
    left: 12px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
    width: calc(100% - 24px);
}
.site-nav a:hover, .site-nav a.is-active { background: rgba(255,255,255,.08); color: #fff; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav .nav-cta {
    background: #f8fafc;
    color: #061114;
    margin-left: 6px;
    overflow: hidden;
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--teal); color: #031112; transform: translateY(-1px); }
.nav-toggle {
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: none;
    height: 42px;
    justify-content: center;
    position: relative;
    width: 42px;
    z-index: 44;
}
.nav-toggle svg { height: 22px; width: 22px; }

.hero {
    align-items: center;
    display: grid;
    isolation: isolate;
    min-height: min(94svh, 900px);
    overflow: hidden;
    padding: 116px clamp(18px, 5vw, 64px) 86px;
    position: relative;
}
.hero-bg {
    height: 112%;
    inset: -6% 0 auto;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transform: translate3d(0, calc(var(--scroll, 0) * 28px), 0) scale(1.02);
    width: 100%;
    z-index: -4;
}
.hero-canvas {
    height: 100%;
    inset: 0;
    opacity: .58;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -2;
}
.hero-grid {
    background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 78px 78px;
    inset: 0;
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
    opacity: .34;
    position: absolute;
    transform: translate3d(calc(var(--scroll, 0) * -20px), 0, 0);
    z-index: -3;
}
.hero::before {
    background: linear-gradient(115deg, transparent 0 18%, rgba(23,215,194,.16) 18% 18.8%, transparent 18.8% 34%, rgba(246,189,85,.16) 34% 34.6%, transparent 34.6% 100%);
    content: "";
    inset: 0;
    opacity: .8;
    position: absolute;
    transform: translateX(calc(var(--scroll, 0) * 60px));
    z-index: -1;
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 12, 14, .97) 0%, rgba(3, 12, 14, .84) 42%, rgba(3, 12, 14, .26) 76%, rgba(3, 12, 14, .72) 100%),
        linear-gradient(180deg, rgba(6, 17, 20, .18) 0%, rgba(6, 17, 20, .08) 58%, #061114 100%);
    inset: 0;
    position: absolute;
    z-index: -1;
}
.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 4;
}
.hero-kicker-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.eyebrow {
    color: var(--green);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}
.eyebrow.dark { color: #0f766e; }
.live-pill {
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: rgba(248,250,252,.8);
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    gap: 8px;
    min-height: 30px;
    padding: 0 10px;
}
.live-pill i {
    animation: liveBlink 1.2s infinite;
    background: var(--green);
    border-radius: 50%;
    height: 7px;
    width: 7px;
}
@keyframes liveBlink { 0%,100% { opacity: .35; transform: scale(.75); } 50% { opacity: 1; transform: scale(1.08); } }
h1, h2, h3, p { margin: 0; }
h1 {
    font-size: clamp(46px, 7vw, 96px);
    line-height: .92;
    max-width: 900px;
    text-wrap: balance;
}
h2 {
    color: #0f172a;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: .98;
    text-wrap: balance;
}
h3 { font-size: 21px; line-height: 1.14; }
.hero-copy {
    color: var(--soft);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 620;
    line-height: 1.58;
    margin-top: 24px;
    max-width: 710px;
}
.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.hero-actions.centered { justify-content: center; }
.btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 950;
    gap: 10px;
    justify-content: center;
    min-height: 50px;
    overflow: hidden;
    padding: 0 19px;
    position: relative;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
    content: "";
    height: 100%;
    left: -80%;
    position: absolute;
    top: 0;
    transform: skewX(-18deg);
    transition: left .55s ease;
    width: 46%;
}
.btn:hover::before { left: 120%; }
.btn svg { height: 19px; width: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn.primary {
    background: linear-gradient(135deg, var(--teal), #7df7e6);
    color: #031112;
    box-shadow: 0 18px 44px rgba(23, 215, 194, .26);
}
.btn.primary:hover { box-shadow: 0 24px 54px rgba(23, 215, 194, .32); }
.btn.ghost {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
}
.btn.light.primary { background: #f8fafc; color: #061114; }
.btn.light.ghost { border-color: rgba(255,255,255,.34); }
.hero-proof {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 44px;
    max-width: 690px;
}
.hero-proof span {
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    color: rgba(248,250,252,.78);
    font-size: 13px;
    font-weight: 800;
    min-height: 82px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}
.hero-proof span::after {
    background: linear-gradient(90deg, var(--teal), transparent);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}
.hero-proof strong {
    color: #fff;
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 7px;
}
.command-card {
    background: linear-gradient(180deg, rgba(9, 25, 30, .82), rgba(9, 25, 30, .54));
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    bottom: clamp(88px, 10vw, 140px);
    box-shadow: var(--shadow);
    color: #fff;
    max-width: 330px;
    padding: 16px;
    position: absolute;
    right: clamp(18px, 6vw, 82px);
    transform-style: preserve-3d;
    width: min(330px, 34vw);
    z-index: 3;
}
.command-card::before {
    background: linear-gradient(135deg, rgba(23,215,194,.42), transparent 45%, rgba(246,189,85,.26));
    content: "";
    inset: 0;
    opacity: .45;
    pointer-events: none;
    position: absolute;
}
.command-head, .command-row, .command-foot { position: relative; }
.command-head {
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.13);
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
}
.command-head span { color: rgba(248,250,252,.66); font-size: 12px; font-weight: 800; }
.command-head strong { color: var(--green); font-size: 13px; }
.command-row {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr auto;
    padding: 13px 0 3px;
}
.command-row span { color: rgba(248,250,252,.78); font-size: 13px; font-weight: 800; }
.command-row b { color: #fff; }
.command-row i {
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    grid-column: 1 / -1;
    height: 5px;
    overflow: hidden;
    position: relative;
}
.command-row i::after {
    animation: meter 2.8s ease-in-out infinite;
    background: linear-gradient(90deg, var(--teal), var(--cyan));
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: var(--w);
}
@keyframes meter { 0%,100% { opacity: .72; } 50% { opacity: 1; filter: brightness(1.2); } }
.command-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.command-foot em {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: rgba(248,250,252,.82);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    padding: 7px 9px;
}
.scroll-cue {
    align-items: center;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    bottom: 26px;
    display: flex;
    height: 44px;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 28px;
    z-index: 5;
}
.scroll-cue span {
    animation: cue 1.55s infinite;
    background: #fff;
    border-radius: 999px;
    height: 8px;
    width: 4px;
}
@keyframes cue { 0%,100%{ transform: translateY(-7px); opacity:.5; } 50%{ transform: translateY(7px); opacity:1; } }

.module-ticker {
    background: #07181c;
    border-block: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    padding: 15px 0;
}
.ticker-track {
    animation: ticker 34s linear infinite;
    display: flex;
    gap: 12px;
    width: max-content;
}
.ticker-track span {
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: rgba(248,250,252,.78);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    min-height: 34px;
    padding: 0 15px;
    white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section {
    background: #f2f7f7;
    color: #0f172a;
    padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 64px);
}
.intro-band {
    background:
        linear-gradient(180deg, #f6faf9, #edf5f5),
        linear-gradient(90deg, transparent, rgba(23,215,194,.1));
    padding-top: clamp(62px, 7vw, 90px);
}
.section-head {
    margin: 0 auto 38px;
    max-width: var(--max);
}
.section-head h2 { max-width: 900px; }
.section-head p:not(.eyebrow) {
    color: #52646a;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 790px;
}
.module-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: var(--max);
    perspective: 1000px;
}
.module-card, .integration-card, .metric {
    background: rgba(255,255,255,.92);
    border: 1px solid #dce8ea;
    border-radius: 8px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, .07);
}
.module-card {
    min-height: 254px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.module-card::before {
    background: linear-gradient(135deg, rgba(23,215,194,.14), transparent 42%, rgba(246,189,85,.14));
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .22s ease;
}
.module-card::after {
    background: linear-gradient(90deg, var(--teal), var(--amber), transparent);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}
.module-card:hover {
    border-color: rgba(15, 118, 110, .38);
    box-shadow: 0 28px 66px rgba(15, 118, 110, .16);
}
.module-card:hover::before { opacity: 1; }
.module-card svg, .module-card h3, .module-card p, .card-index { position: relative; }
.module-card svg {
    color: #0f766e;
    height: 36px;
    margin-bottom: 32px;
    width: 36px;
}
.card-index {
    color: rgba(15, 23, 42, .22);
    font-size: 48px;
    font-weight: 950;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 16px;
}
.module-card p, .integration-card p, .feature-strip p, .security-copy p, .cta-inner p, .feature-story p {
    color: #52646a;
    font-size: 15px;
    font-weight: 590;
    line-height: 1.62;
    margin-top: 12px;
}

.split-section {
    align-items: center;
    background: #e5f0ef;
    display: grid;
    gap: clamp(28px, 5vw, 72px);
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    position: relative;
}
.split-section::before {
    background-image: linear-gradient(90deg, rgba(15,118,110,.14) 1px, transparent 1px), linear-gradient(rgba(15,118,110,.11) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    inset: 0;
    opacity: .32;
    pointer-events: none;
    position: absolute;
}
.split-section > * { max-width: 620px; position: relative; }
.feature-story { justify-self: end; }
.check-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}
.check-list li {
    align-items: center;
    background: rgba(255,255,255,.75);
    border: 1px solid #d3e0e2;
    border-radius: 8px;
    display: flex;
    font-weight: 850;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    transition: transform .2s ease, background .2s ease;
}
.check-list li:hover { background: #fff; transform: translateX(4px); }
.check-list svg {
    color: #0f766e;
    flex: 0 0 auto;
    height: 20px;
    width: 20px;
}
.workflow-panel {
    background: #061114;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #fff;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transform-style: preserve-3d;
}
.workflow-panel::before {
    background-image: linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
    inset: 0;
    opacity: .35;
    position: absolute;
}
.flow-step, .flow-line { position: relative; }
.flow-step {
    align-items: flex-start;
    display: grid;
    gap: 4px 14px;
    grid-template-columns: 48px 1fr;
    min-height: 70px;
}
.flow-step span {
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    color: var(--cyan);
    display: flex;
    font-weight: 950;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.flow-step.active span { background: var(--teal); color: #041113; }
.flow-step strong { font-size: 21px; }
.flow-step small { color: rgba(248,250,252,.68); font-size: 14px; font-weight: 680; grid-column: 2; line-height: 1.45; }
.flow-line {
    background: rgba(255,255,255,.1);
    height: 34px;
    margin: -8px 0 8px 21px;
    overflow: hidden;
    width: 2px;
}
.flow-line i {
    animation: flowPulse 1.7s ease-in-out infinite;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    display: block;
    height: 100%;
    transform: translateY(-100%);
    width: 100%;
}
@keyframes flowPulse { to { transform: translateY(100%); } }

.feature-band {
    background: #061114;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.feature-band::before {
    background: linear-gradient(115deg, transparent 0 24%, rgba(23,215,194,.11) 24% 24.8%, transparent 24.8% 62%, rgba(246,189,85,.1) 62% 62.7%, transparent 62.7%);
    content: "";
    inset: 0;
    opacity: .75;
    position: absolute;
}
.band-head {
    margin: 0 auto 32px;
    max-width: var(--max);
    position: relative;
}
.band-head h2 { color: #fff; max-width: 800px; }
.feature-strip {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: var(--max);
    position: relative;
}
.feature-strip div {
    background: rgba(255,255,255,.072);
    border: 1px solid rgba(255,255,255,.09);
    min-height: 270px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transition: transform .22s ease, background .22s ease;
}
.feature-strip div:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.feature-strip div::after {
    background: linear-gradient(180deg, rgba(23,215,194,.28), transparent);
    content: "";
    height: 90px;
    left: 0;
    opacity: .35;
    position: absolute;
    right: 0;
    top: 0;
}
.feature-strip span, .feature-strip strong, .feature-strip p { position: relative; }
.feature-strip span {
    color: var(--amber);
    display: block;
    font-weight: 950;
    margin-bottom: 44px;
}
.feature-strip strong { display: block; font-size: 22px; line-height: 1.15; }
.feature-strip p { color: rgba(248,250,252,.68); }

.integration-section { background: #fbfaf6; }
.integration-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: var(--max);
}
.integration-card {
    min-height: 240px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transform-style: preserve-3d;
}
.integration-card::before {
    background: linear-gradient(135deg, rgba(23,215,194,.16), transparent 50%, rgba(246,189,85,.16));
    content: "";
    inset: 0;
    opacity: .7;
    position: absolute;
}
.integration-card span, .integration-card h3, .integration-card p { position: relative; }
.integration-card span {
    background: #061114;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 42px;
    min-height: 30px;
    padding: 8px 10px;
}
.integration-card h3 { color: #0f172a; }
.integration-card:nth-child(1) { border-top: 4px solid var(--teal); }
.integration-card:nth-child(2) { border-top: 4px solid var(--cyan); }
.integration-card:nth-child(3) { border-top: 4px solid var(--amber); }

.security-section {
    align-items: center;
    background: #e8eff2;
    display: grid;
    gap: clamp(28px, 5vw, 70px);
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
}
.security-copy { justify-self: end; max-width: 570px; }
.security-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 590px;
    perspective: 1000px;
}
.metric {
    min-height: 178px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transform-style: preserve-3d;
}
.metric::after {
    background: linear-gradient(90deg, transparent, rgba(23,215,194,.24), transparent);
    content: "";
    height: 2px;
    left: -40%;
    position: absolute;
    top: 0;
    width: 70%;
    animation: metricLine 3.2s ease-in-out infinite;
}
@keyframes metricLine { 0%,100% { transform: translateX(0); opacity: .15; } 50% { transform: translateX(160%); opacity: 1; } }
.metric strong {
    color: #0f766e;
    display: block;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}
.metric span {
    color: #52646a;
    display: block;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.4;
    margin-top: 18px;
}

.cta-section {
    background: #0b2025;
    color: #fff;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.cta-section::before {
    background-image: linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 34px 34px;
    content: "";
    inset: 0;
    opacity: .24;
    position: absolute;
}
.cta-section::after {
    background: linear-gradient(100deg, transparent, rgba(23,215,194,.18), transparent);
    content: "";
    height: 100%;
    left: -40%;
    position: absolute;
    top: 0;
    transform: skewX(-18deg);
    width: 55%;
    animation: ctaSweep 5.8s ease-in-out infinite;
}
@keyframes ctaSweep { 0%,100% { left: -55%; opacity: 0; } 45%,55% { opacity: 1; } 100% { left: 105%; } }
.cta-inner {
    margin: 0 auto;
    max-width: 880px;
    position: relative;
    z-index: 1;
}
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(248,250,252,.74); font-size: 17px; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.module-grid .reveal:nth-child(2), .integration-grid .reveal:nth-child(2), .security-grid .reveal:nth-child(2) { transition-delay: .08s; }
.module-grid .reveal:nth-child(3), .integration-grid .reveal:nth-child(3), .security-grid .reveal:nth-child(3) { transition-delay: .16s; }
.module-grid .reveal:nth-child(4), .security-grid .reveal:nth-child(4) { transition-delay: .22s; }
.module-grid .reveal:nth-child(5) { transition-delay: .28s; }
.module-grid .reveal:nth-child(6) { transition-delay: .34s; }

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

@media (max-width: 1100px) {
    .command-card { opacity: .95; right: 22px; width: min(300px, 34vw); }
}

@media (max-width: 980px) {
    .site-header { height: 66px; }
    .brand-copy small { display: none; }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        background: rgba(6, 17, 20, .98);
        border-left: 1px solid var(--line);
        bottom: auto;
        display: grid;
        gap: 4px;
        grid-auto-rows: max-content;
        height: 100svh;
        min-height: 100vh;
        padding: 86px 18px 22px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform .24s ease;
        width: min(340px, 88vw);
        z-index: 42;
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav a { min-height: 48px; padding: 17px 14px; }
    .site-nav .nav-cta { margin-left: 0; text-align: center; }
    .hero { min-height: 90svh; padding-top: 98px; }
    .command-card { display: none; }
    .hero-proof { grid-template-columns: 1fr; max-width: 430px; }
    .hero-proof span { min-height: 66px; }
    .module-grid, .integration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split-section, .security-section { grid-template-columns: 1fr; }
    .split-section > *, .security-copy { justify-self: stretch; max-width: none; }
    .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .hero {
        min-height: 92svh;
        padding: 92px 18px 44px;
    }
    .hero-bg { object-position: 58% center; }
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(3,12,14,.97), rgba(3,12,14,.72)),
            linear-gradient(180deg, rgba(6,17,20,.14), #061114 100%);
    }
    .hero-kicker-row { align-items: flex-start; flex-direction: column; }
    h1 { font-size: clamp(42px, 14vw, 60px); }
    h2 { font-size: clamp(29px, 10vw, 42px); }
    .hero-copy { font-size: 16px; }
    .hero-proof {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 28px;
        max-width: none;
    }
    .hero-proof span {
        font-size: 11px;
        min-height: 70px;
        padding: 10px 8px;
    }
    .hero-proof strong { font-size: 22px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .btn { width: 100%; }
    .scroll-cue { display: none; }
    .section { padding: 62px 16px; }
    .module-grid, .integration-grid, .feature-strip, .security-grid { grid-template-columns: 1fr; }
    .module-card, .integration-card, .metric, .feature-strip div { min-height: auto; }
    .feature-strip span, .integration-card span { margin-bottom: 28px; }
    .workflow-panel { padding: 18px; }
    .ticker-track { animation-duration: 26s; }
}