:root {
    --bg: #080b0f;
    --bg-soft: #0d1117;

    --surface:
        rgba(17, 22, 28, 0.72);

    --surface-strong:
        rgba(20, 26, 33, 0.92);

    --border:
        rgba(255, 255, 255, 0.08);

    --border-strong:
        rgba(255, 255, 255, 0.14);

    --text: #f5f7f2;
    --text-soft: #9ba5ad;
    --text-muted: #69737c;

    --accent: #d6ff48;
    --accent-rgb: 214, 255, 72;

    --green: #8cffb1;

    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 15px;

    --container: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color:
        transparent;
}

::selection {
    background:
        rgba(var(--accent-rgb), 0.22);

    color: var(--text);
}


/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    inset: 0;

    z-index: -5;

    overflow: hidden;

    pointer-events: none;
}

.background::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 52% 12%,
            rgba(var(--accent-rgb), 0.055),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 45%,
            rgba(58, 129, 255, 0.045),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #080b0f 0%,
            #090d11 50%,
            #080b0f 100%
        );
}

.background-grid {
    position: absolute;
    inset: 0;

    opacity: 0.27;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035)
            1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1),
            transparent 88%
        );
}

.background-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: 0.12;

    animation:
        floatOrb 12s ease-in-out infinite;
}

.background-orb--one {
    width: 450px;
    height: 450px;

    top: 8%;
    right: -180px;

    background: var(--accent);
}

.background-orb--two {
    width: 340px;
    height: 340px;

    top: 48%;
    left: -200px;

    background: #4184ff;

    animation-delay: -4s;
}

.background-orb--three {
    width: 320px;
    height: 320px;

    bottom: -170px;
    right: 28%;

    background: var(--accent);

    animation-delay: -8s;
}

.page-noise {
    position: fixed;
    inset: 0;

    z-index: 50;

    pointer-events: none;

    opacity: 0.022;

    background-image:
        url(
            "data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"
        );
}

.cursor-glow {
    position: fixed;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    pointer-events: none;

    z-index: -2;

    opacity: 0;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(var(--accent-rgb), 0.06),
            transparent 68%
        );

    transition:
        opacity 300ms ease;
}


/* =========================
   HEADER
========================= */

.header {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    height: 92px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    z-index: 20;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;
}

.brand-symbol {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(var(--accent-rgb), 0.18);

    border-radius: 13px;

    background:
        rgba(var(--accent-rgb), 0.07);

    box-shadow:
        inset 0 0 20px
        rgba(var(--accent-rgb), 0.03);
}

.brand-symbol svg {
    width: 31px;
    height: 31px;

    fill:
        rgba(var(--accent-rgb), 0.13);

    stroke: var(--accent);
    stroke-width: 1.8;
}

.brand-symbol-line {
    fill: none;

    stroke-linecap: round;
}

.brand-copy {
    display: grid;
}

.brand-copy strong {
    font-size: 14px;

    letter-spacing: -0.02em;
}

.brand-copy span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.header-status {
    min-height: 35px;

    padding: 0 14px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--text-soft);

    font-size: 11px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px
        rgba(140, 255, 177, 0.8);

    animation:
        statusPulse 2s infinite;
}


/* =========================
   HERO
========================= */

.hero {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height:
        calc(100vh - 92px);

    margin: 0 auto;

    padding:
        60px 0 100px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(520px, 1.12fr);

    align-items: center;

    gap:
        clamp(50px, 6vw, 110px);

    position: relative;
}

.hero-content {
    position: relative;

    z-index: 5;
}

.hero-badge {
    width: fit-content;

    min-height: 34px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    border:
        1px solid
        rgba(var(--accent-rgb), 0.16);

    border-radius: 999px;

    background:
        rgba(var(--accent-rgb), 0.05);

    color: var(--accent);

    font-size: 10px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 14px var(--accent);
}

.hero-title {
    max-width: 780px;

    margin:
        26px 0 26px;

    font-size:
        clamp(
            58px,
            6.4vw,
            106px
        );

    line-height: 0.92;

    letter-spacing: -0.067em;

    font-weight: 680;
}

.hero-title-accent {
    display: inline-block;

    color: var(--accent);

    text-shadow:
        0 0 60px
        rgba(var(--accent-rgb), 0.12);
}

.hero-description {
    max-width: 620px;

    margin: 0;

    color: var(--text-soft);

    font-size:
        clamp(
            16px,
            1.35vw,
            20px
        );

    line-height: 1.65;
}

.hero-actions {
    margin-top: 34px;

    display: flex;
    align-items: center;

    gap: 24px;

    flex-wrap: wrap;
}

.primary-button {
    min-height: 54px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    border-radius: 14px;

    background: var(--accent);

    color: #0c1008;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 10px 40px
        rgba(var(--accent-rgb), 0.08);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 50px
        rgba(var(--accent-rgb), 0.16);
}

.primary-button svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 180ms ease;
}

.primary-button:hover svg {
    transform: translateX(4px);
}

.primary-button--large {
    min-height: 60px;

    padding: 0 26px;
}

.hero-note {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--text-muted);

    font-size: 11px;
}

.hero-note-icon {
    color: var(--accent);
}

.hero-metrics {
    margin-top: 52px;

    display: flex;
    align-items: center;

    gap: 28px;
}

.hero-metric {
    display: grid;

    gap: 5px;
}

.hero-metric strong {
    color: var(--text);

    font-size: 25px;

    letter-spacing: -0.04em;
}

.hero-metric span {
    color: var(--text-muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.metric-divider {
    width: 1px;
    height: 36px;

    background: var(--border);
}


/* =========================
   DASHBOARD VISUAL
========================= */

.hero-visual {
    min-width: 0;

    position: relative;

    perspective: 1600px;
}

.visual-glow {
    position: absolute;

    width: 85%;
    height: 70%;

    top: 20%;
    left: 10%;

    z-index: -1;

    border-radius: 50%;

    background:
        rgba(var(--accent-rgb), 0.07);

    filter: blur(80px);
}

.dashboard-preview {
    width: 100%;

    min-height: 570px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(19, 25, 31, 0.94),
            rgba(11, 15, 20, 0.94)
        );

    box-shadow:
        0 50px 120px
        rgba(0, 0, 0, 0.42),
        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

    transform:
        rotateY(-5deg)
        rotateX(2deg);

    transform-style:
        preserve-3d;

    transition:
        transform 300ms ease;
}

.preview-header {
    height: 67px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid var(--border);

    background:
        rgba(10, 14, 18, 0.65);
}

.preview-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}

.preview-logo {
    width: 31px;
    height: 31px;

    border-radius: 9px;

    display: grid;
    place-items: center;

    background: var(--accent);

    color: #10140c;

    font-size: 10px;
    font-weight: 900;
}

.preview-brand div:last-child {
    display: grid;

    gap: 2px;
}

.preview-brand strong {
    font-size: 10px;
}

.preview-brand span {
    color: var(--text-muted);

    font-size: 7px;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.preview-live {
    min-height: 25px;

    padding: 0 9px;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    border:
        1px solid
        rgba(140, 255, 177, 0.12);

    border-radius: 999px;

    color: var(--green);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.preview-live span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);
}

.preview-content {
    min-height: 503px;

    display: grid;

    grid-template-columns:
        120px 1fr;
}

.preview-sidebar {
    padding: 18px 11px;

    border-right:
        1px solid var(--border);

    background:
        rgba(8, 11, 15, 0.30);
}

.preview-nav {
    min-height: 34px;

    padding: 0 9px;

    display: flex;
    align-items: center;

    gap: 7px;

    border-radius: 8px;

    color: var(--text-muted);

    font-size: 7px;

    margin-bottom: 4px;
}

.preview-nav span {
    width: 5px;
    height: 5px;

    border-radius: 2px;

    background:
        currentColor;

    opacity: 0.7;
}

.preview-nav.active {
    background:
        rgba(var(--accent-rgb), 0.08);

    color: var(--accent);
}

.preview-main {
    padding: 22px 20px;
}

.preview-title {
    display: grid;

    gap: 5px;
}

.preview-title span {
    color: var(--accent);

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.preview-title strong {
    font-size: 18px;

    letter-spacing: -0.04em;
}

.preview-cards {
    margin-top: 18px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.preview-card {
    min-height: 84px;

    padding: 12px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.018);

    display: flex;
    flex-direction: column;
}

.preview-card--accent {
    border-color:
        rgba(var(--accent-rgb), 0.12);

    background:
        rgba(var(--accent-rgb), 0.04);
}

.preview-card span {
    color: var(--text-muted);

    font-size: 7px;
}

.preview-card strong {
    margin-top: 7px;

    font-size: 20px;
}

.mini-progress {
    height: 2px;

    margin-top: auto;

    border-radius: 999px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.05);
}

.mini-progress i {
    display: block;

    width: var(--width);
    height: 100%;

    background: var(--accent);

    transform-origin: left;

    animation:
        progressReveal
        1.8s ease forwards;
}

.preview-chart {
    margin-top: 10px;

    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.012);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chart-header div:first-child {
    display: grid;

    gap: 4px;
}

.chart-header span {
    color: var(--accent);

    font-size: 5px;

    letter-spacing: 0.13em;
}

.chart-header strong {
    font-size: 8px;
}

.chart-period {
    color: var(--text-muted);

    font-size: 6px;
}

.chart-area {
    height: 155px;

    margin-top: 8px;

    position: relative;
}

.chart-grid-lines {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid-lines i {
    width: 100%;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.04);
}

.chart-svg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.chart-fill {
    fill: url(#chartFill);

    animation:
        chartFade 1.8s ease forwards;
}

.chart-line {
    fill: none;

    stroke: var(--accent);

    stroke-width: 2;

    stroke-linecap: round;

    vector-effect:
        non-scaling-stroke;

    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;

    animation:
        chartDraw
        2.8s 0.4s ease forwards;
}

.chart-point {
    fill: var(--accent);

    stroke:
        rgba(var(--accent-rgb), 0.25);

    stroke-width: 8;

    opacity: 0;

    animation:
        pointAppear
        400ms 2.6s ease forwards;
}

.preview-leads {
    margin-top: 10px;

    display: grid;

    gap: 6px;
}

.preview-lead {
    min-height: 43px;

    padding: 7px 9px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    display: grid;

    grid-template-columns:
        28px minmax(0, 1fr)
        26px 38px;

    align-items: center;

    gap: 8px;

    background:
        rgba(255, 255, 255, 0.012);
}

.lead-avatar {
    width: 27px;
    height: 27px;

    border-radius: 8px;

    display: grid;
    place-items: center;

    background:
        rgba(var(--accent-rgb), 0.07);

    color: var(--accent);

    font-size: 8px;
    font-weight: 800;
}

.lead-info {
    min-width: 0;

    display: grid;

    gap: 2px;
}

.lead-info strong {
    overflow: hidden;

    font-size: 7px;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.lead-info span {
    color: var(--text-muted);

    font-size: 6px;
}

.lead-score {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.lead-priority {
    min-height: 19px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background:
        rgba(255, 107, 107, 0.08);

    color: #ff8d8d;

    font-size: 6px;
}

.floating-tag {
    position: absolute;

    z-index: 10;

    min-height: 42px;

    padding: 0 14px;

    display: flex;
    align-items: center;

    gap: 8px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 12px;

    background:
        rgba(15, 20, 26, 0.85);

    backdrop-filter: blur(18px);

    color: var(--text-soft);

    font-size: 8px;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.28);

    animation:
        floating 4s ease-in-out infinite;
}

.floating-tag--one {
    top: 13%;
    left: -26px;
}

.floating-tag--two {
    right: -24px;
    bottom: 20%;

    display: grid;

    min-width: 75px;

    gap: 1px;
}

.floating-tag--two strong {
    color: var(--accent);

    font-size: 16px;
}

.floating-tag-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px var(--green);
}


/* =========================
   ENGINE SECTION
========================= */

.engine-section {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        145px 0;
}

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

.section-eyebrow {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

.section-heading h2,
.intelligence-copy h2,
.final-cta h2 {
    margin:
        14px 0 18px;

    font-size:
        clamp(
            42px,
            5vw,
            72px
        );

    line-height: 1;

    letter-spacing: -0.055em;

    font-weight: 640;
}

.section-heading h2 span,
.intelligence-copy h2 span,
.final-cta h2 span {
    color: var(--text-muted);
}

.section-heading p {
    max-width: 610px;

    margin: 0;

    color: var(--text-soft);

    line-height: 1.65;
}

.engine-grid {
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}

.engine-card {
    min-height: 315px;

    padding: 24px;

    position: relative;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(19, 25, 31, 0.72),
            rgba(12, 16, 20, 0.55)
        );

    overflow: hidden;

    transition:
        transform 220ms ease,
        border-color 220ms ease;
}

.engine-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(var(--accent-rgb), 0.07);

    filter: blur(35px);

    opacity: 0;

    transition:
        opacity 220ms ease;
}

.engine-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(var(--accent-rgb), 0.14);
}

.engine-card:hover::before {
    opacity: 1;
}

.engine-number {
    color: var(--text-muted);

    font-size: 9px;

    letter-spacing: 0.12em;
}

.engine-icon {
    width: 51px;
    height: 51px;

    margin-top: 70px;

    border-radius: 14px;

    display: grid;
    place-items: center;

    background:
        rgba(var(--accent-rgb), 0.055);

    border:
        1px solid
        rgba(var(--accent-rgb), 0.09);
}

.engine-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: var(--accent);
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.engine-card h3 {
    margin:
        18px 0 9px;

    font-size: 17px;

    letter-spacing: -0.03em;
}

.engine-card p {
    margin: 0;

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================
   INTELLIGENCE
========================= */

.intelligence-section {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        110px 0 160px;

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    align-items: center;

    gap:
        clamp(
            60px,
            10vw,
            170px
        );
}

.intelligence-visual {
    min-height: 560px;

    display: grid;
    place-items: center;
}

.radar {
    width:
        min(
            100%,
            520px
        );

    aspect-ratio: 1;

    position: relative;

    border-radius: 50%;

    border:
        1px solid
        rgba(var(--accent-rgb), 0.11);

    background:
        radial-gradient(
            circle,
            rgba(var(--accent-rgb), 0.045),
            rgba(0, 0, 0, 0) 60%
        );

    box-shadow:
        inset 0 0 80px
        rgba(var(--accent-rgb), 0.025);
}

.radar-ring {
    position: absolute;

    border:
        1px solid
        rgba(var(--accent-rgb), 0.09);

    border-radius: 50%;

    inset: 15%;
}

.radar-ring--two {
    inset: 30%;
}

.radar-ring--three {
    inset: 43%;
}

.radar-cross {
    position: absolute;

    background:
        rgba(var(--accent-rgb), 0.065);
}

.radar-cross--horizontal {
    width: 100%;
    height: 1px;

    left: 0;
    top: 50%;
}

.radar-cross--vertical {
    width: 1px;
    height: 100%;

    left: 50%;
    top: 0;
}

.radar-sweep {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    overflow: hidden;

    animation:
        radarSpin
        6s linear infinite;
}

.radar-sweep::before {
    content: "";

    position: absolute;

    width: 50%;
    height: 50%;

    left: 50%;
    top: 0;

    transform-origin:
        bottom left;

    background:
        conic-gradient(
            from 270deg,
            rgba(var(--accent-rgb), 0.14),
            transparent 40deg
        );
}

.radar-center {
    position: absolute;

    width: 104px;
    height: 104px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(var(--accent-rgb), 0.20);

    border-radius: 50%;

    display: grid;
    align-content: center;
    justify-items: center;

    gap: 4px;

    background:
        rgba(8, 12, 15, 0.82);

    box-shadow:
        0 0 50px
        rgba(var(--accent-rgb), 0.08);
}

.radar-center span {
    color: var(--text-muted);

    font-size: 7px;

    letter-spacing: 0.18em;
}

.radar-center strong {
    color: var(--accent);

    font-size: 11px;

    letter-spacing: 0.08em;
}

.radar-node {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 6px
        rgba(var(--accent-rgb), 0.05),
        0 0 22px
        rgba(var(--accent-rgb), 0.9);

    animation:
        nodePulse
        2.4s infinite;
}

.radar-node--one {
    top: 22%;
    left: 34%;
}

.radar-node--two {
    top: 62%;
    right: 21%;

    animation-delay:
        -0.8s;
}

.radar-node--three {
    bottom: 22%;
    left: 28%;

    animation-delay:
        -1.6s;
}

.intelligence-copy {
    max-width: 570px;
}

.intelligence-copy p {
    margin: 0;

    color: var(--text-soft);

    line-height: 1.7;

    font-size: 16px;
}

.intelligence-list {
    margin-top: 38px;

    border-top:
        1px solid var(--border);
}

.intelligence-list div {
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 16px;

    border-bottom:
        1px solid var(--border);

    color: var(--text-soft);

    font-size: 13px;
}

.intelligence-list span {
    color: var(--accent);

    font-size: 9px;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height: 570px;

    margin:
        0 auto 80px;

    padding: 80px;

    position: relative;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-xl);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(17, 23, 29, 0.82),
            rgba(9, 13, 17, 0.78)
        );
}

.final-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025)
            1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );
}

.final-cta-glow {
    position: absolute;

    width: 550px;
    height: 260px;

    top: 55%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(var(--accent-rgb), 0.075);

    filter: blur(90px);
}

.final-cta > * {
    position: relative;

    z-index: 2;
}

.final-cta h2 {
    max-width: 900px;
}

.final-cta p {
    max-width: 500px;

    margin:
        0 0 30px;

    color: var(--text-soft);

    line-height: 1.6;
}


/* =========================
   FOOTER
========================= */

.footer {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height: 90px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 25px;

    border-top:
        1px solid var(--border);

    color: var(--text-muted);

    font-size: 10px;
}

.footer-brand {
    margin-right: auto;

    color: var(--text-soft);

    font-weight: 700;
}


/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity 800ms
        cubic-bezier(.2, .65, .3, 1),
        transform 800ms
        cubic-bezier(.2, .65, .3, 1);
}

.reveal-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 180ms;
}

.reveal-delay-3 {
    transition-delay: 260ms;
}

.reveal-delay-4 {
    transition-delay: 340ms;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes statusPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

@keyframes floatOrb {
    0%,
    100% {
        transform:
            translate3d(
                0,
                0,
                0
            );
    }

    50% {
        transform:
            translate3d(
                20px,
                -25px,
                0
            );
    }
}

@keyframes floating {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}

@keyframes progressReveal {
    from {
        transform:
            scaleX(0);
    }

    to {
        transform:
            scaleX(1);
    }
}

@keyframes chartDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes chartFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pointAppear {
    to {
        opacity: 1;
    }
}

@keyframes radarSpin {
    to {
        transform:
            rotate(360deg);
    }
}

@keyframes nodePulse {
    0%,
    100% {
        transform:
            scale(1);

        opacity: 1;
    }

    50% {
        transform:
            scale(0.65);

        opacity: 0.55;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (
    max-width: 1180px
) {
    .hero {
        grid-template-columns:
            1fr;

        padding-top: 80px;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-visual {
        max-width: 900px;

        margin:
            30px auto 0;

        width: 100%;
    }

    .dashboard-preview {
        transform: none;
    }

    .engine-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .intelligence-section {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .intelligence-visual {
        order: 2;
    }

    .intelligence-copy {
        max-width: 760px;
    }
}


@media (
    max-width: 720px
) {
    .header,
    .hero,
    .engine-section,
    .intelligence-section,
    .final-cta,
    .footer {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }

    .header {
        height: 78px;
    }

    .header-status {
        display: none;
    }

    .hero {
        min-height: auto;

        padding:
            70px 0 80px;
    }

    .hero-title {
        font-size:
            clamp(
                54px,
                17vw,
                78px
            );
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        align-items: flex-start;

        flex-direction: column;
    }

    .primary-button {
        width: 100%;
    }

    .hero-metrics {
        width: 100%;

        gap: 15px;

        justify-content:
            space-between;
    }

    .hero-metric strong {
        font-size: 21px;
    }

    .hero-metric span {
        font-size: 8px;
    }

    .floating-tag {
        display: none;
    }

    .dashboard-preview {
        min-height: 430px;

        border-radius: 18px;
    }

    .preview-header {
        height: 54px;
    }

    .preview-content {
        min-height: 376px;

        grid-template-columns:
            1fr;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        padding: 15px 13px;
    }

    .preview-cards {
        gap: 6px;
    }

    .preview-card {
        min-height: 70px;

        padding: 9px;
    }

    .preview-card strong {
        font-size: 16px;
    }

    .preview-chart {
        padding: 10px;
    }

    .chart-area {
        height: 110px;
    }

    .engine-section {
        padding:
            100px 0;
    }

    .engine-grid {
        margin-top: 45px;

        grid-template-columns:
            1fr;
    }

    .engine-card {
        min-height: 250px;
    }

    .engine-icon {
        margin-top: 35px;
    }

    .intelligence-section {
        padding:
            80px 0 110px;
    }

    .intelligence-visual {
        min-height: auto;
    }

    .radar {
        width: 100%;
    }

    .final-cta {
        min-height: 520px;

        padding:
            55px 20px;
    }

    .footer {
        min-height: 120px;

        flex-wrap: wrap;

        gap: 10px;

        padding: 25px 0;
    }

    .footer-brand {
        width: 100%;

        margin-right: 0;
    }
}


@media (
    prefers-reduced-motion:
    reduce
) {
    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;
    }
}
