:root {
    --bg: #071017;
    --ink: #f8fafc;
    --muted: #9fb0c3;
    --soft: #66768a;
    --panel: #111b26;
    --panel-2: #0d1620;
    --line: rgba(148, 163, 184, 0.22);
    --blue: #2f80ed;
    --cyan: #38bdf8;
    --green: #2fbf71;
    --amber: #f5b942;
    --red: #ef5b6c;
    --shadow: 0 28px 88px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(10, 22, 32, 0.96), var(--bg) 38%),
        var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px max(22px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 23, 0.82);
    backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.proof-strip,
.footer,
.pilot-actions {
    display: flex;
    align-items: center;
}

.brand {
    gap: 12px;
    font-weight: 900;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--green) 52%, var(--amber));
}

.brand-mark span {
    display: block;
    height: 14px;
    border-radius: 3px;
    background: white;
    animation: meter 1.4s ease-in-out infinite;
}

.brand-mark span:nth-child(2) { height: 22px; animation-delay: .12s; }
.brand-mark span:nth-child(3) { height: 18px; animation-delay: .24s; }
.brand-mark span:nth-child(4) { height: 25px; animation-delay: .05s; }

@keyframes meter {
    50% { transform: scaleY(.55); opacity: .72; }
}

.nav-links {
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.nav-links a:hover,
.product-menu button:hover {
    color: var(--ink);
}

.product-menu {
    position: relative;
}

.product-menu button {
    border: 0;
    padding: 10px 0;
    color: var(--muted);
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.product-menu-panel {
    position: absolute;
    top: 42px;
    right: -22px;
    width: 300px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 22, 32, 0.98);
    box-shadow: var(--shadow);
}

.product-menu-panel a {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 6px;
}

.product-menu-panel a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.product-menu-panel span {
    color: var(--muted);
    font-size: 13px;
}

.nav-cta {
    padding: 10px 16px;
    color: #061018;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.hero {
    width: min(1180px, calc(100vw - 44px));
    min-height: calc(100vh - 88px);
    margin: 0 auto;
    padding: 112px 0 42px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.eyebrow,
.section-heading span,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(47, 191, 113, 0.32);
    border-radius: 999px;
    background: rgba(47, 191, 113, 0.1);
    color: #a7f3c9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 18px var(--green);
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    50% { opacity: .42; transform: scale(1.45); }
}

.hero h1,
.section-heading h2,
.split-section h2,
.pilot-card h2,
.mac-band h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 950;
}

.hero p,
.section-heading p,
.split-section p,
.pilot-card p,
.mac-band p {
    color: var(--muted);
    line-height: 1.65;
}

.hero p {
    max-width: 590px;
    margin: 20px 0 0;
    font-size: 19px;
}

.hero-actions {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #061018;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.btn.secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.055);
}

.proof-strip {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.proof-strip span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 750;
}

.hero-media {
    border: 1px solid rgba(226, 232, 240, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--panel);
}

.hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.outcome-band,
.section {
    width: min(1180px, calc(100vw - 44px));
    margin: 0 auto;
}

.outcome-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
}

.outcome-band div {
    display: grid;
    gap: 6px;
    padding: 22px;
    background: rgba(17, 27, 38, 0.86);
}

.outcome-band strong {
    font-size: 18px;
}

.outcome-band span {
    color: var(--muted);
    line-height: 1.5;
}

.section {
    padding: 96px 0 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading h2,
.split-section h2,
.pilot-card h2,
.mac-band h2 {
    font-size: clamp(32px, 4vw, 54px);
}

.section-heading p,
.split-section p,
.pilot-card p,
.mac-band p {
    max-width: 720px;
    font-size: 18px;
}

.workflow-grid,
.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.workflow-card,
.stack-grid article,
.pilot-card,
.split-section,
.mac-band {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(17, 27, 38, 0.74);
}

.workflow-card,
.stack-grid article {
    padding: 22px;
}

.workflow-card h3,
.stack-grid h3 {
    margin: 18px 0 10px;
    font-size: 20px;
}

.workflow-card p,
.stack-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.step-num {
    width: 44px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #071017;
    background: var(--amber);
    font-weight: 950;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 32px;
    padding: 34px;
}

.decision-list {
    display: grid;
    gap: 10px;
}

.decision-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.decision-list span {
    color: #bae6fd;
    font-weight: 900;
}

.decision-list strong {
    text-align: right;
}

.mac-band {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 30px;
}

.pilot {
    padding-bottom: 70px;
}

.pilot-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(47, 191, 113, 0.08)),
        rgba(17, 27, 38, 0.82);
}

.pilot-actions {
    gap: 12px;
    flex-wrap: wrap;
}

.footer {
    width: min(1180px, calc(100vw - 44px));
    margin: 0 auto;
    padding: 28px 0 42px;
    gap: 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer span {
    color: var(--ink);
    font-weight: 900;
    margin-right: auto;
}

@media (max-width: 960px) {
    .nav {
        position: sticky;
    }

    .hero {
        min-height: auto;
        padding-top: 54px;
        grid-template-columns: 1fr;
    }

    .workflow-grid,
    .stack-grid,
    .outcome-band {
        grid-template-columns: 1fr 1fr;
    }

    .split-section,
    .pilot-card {
        grid-template-columns: 1fr;
    }

    .mac-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        gap: 14px;
        flex-wrap: wrap;
    }

    .product-menu-panel {
        left: 0;
        right: auto;
    }

    .hero,
    .outcome-band,
    .section,
    .footer {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        gap: 20px;
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .eyebrow {
        margin-bottom: 14px;
        padding: 7px 11px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        margin-top: 16px;
        font-size: 18px;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 24px;
    }

    .btn {
        min-height: 48px;
        padding: 0 16px;
    }

    .proof-strip {
        margin-top: 18px;
    }

    .proof-strip span:nth-child(n+3),
    .hero-media {
        display: none;
    }

    .workflow-grid,
    .stack-grid,
    .outcome-band {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: 70px;
    }
}
