/* ═══════════════════════════════════════════
   FOUNDATION
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --black: #07090f;
    --black2: #0a0d16;
    --black3: #0e1220;
    --white: #ffffff;
    --blue: #0055ff;
    --blue-h: #1a6aff;
    --green: #00d26a;
    --t100: rgba(255, 255, 255, 1);
    --t90: rgba(255, 255, 255, 0.9);
    --t80: rgba(255, 255, 255, 0.8);
    --t70: rgba(255, 255, 255, 0.7);
    --t60: rgba(255, 255, 255, 0.6);
    --t50: rgba(255, 255, 255, 0.5);
    --t40: rgba(255, 255, 255, 0.4);
    --t30: rgba(255, 255, 255, 0.3);
    --t20: rgba(255, 255, 255, 0.2);
    --t10: rgba(255, 255, 255, 0.1);
    --t06: rgba(240, 232, 232, 0.06);
    --t03: rgba(255, 255, 255, 0.03);
    --b20: rgba(0, 85, 255, 0.2);
    --b10: rgba(0, 85, 255, 0.1);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease2: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family:
        "Onest",
        system-ui,
        -apple-system,
        sans-serif;
    background: var(--black);
    color: var(--t100);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img,
svg {
    display: block;
}

/* Layout */
.W {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.W-s {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* Reveal */
.R {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s var(--ease),
        transform 0.65s var(--ease);
}

.R.d1 {
    transition-delay: 0.08s;
}

.R.d2 {
    transition-delay: 0.16s;
}

.R.d3 {
    transition-delay: 0.24s;
}

.R.d4 {
    transition-delay: 0.32s;
}

.R.vis {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════
   NOISE TEXTURE
═══════════════════════════════════════════ */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 0 clamp(20px, 4vw, 48px);
    transition:
        background 0.3s var(--ease2),
        border-color 0.3s;
}

nav.stuck {
    background: rgba(7, 9, 15, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--t10);
}

.nav-in {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    /* background: var(--blue); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 17px;
    height: 17px;
}

.logoMake {
    display: inline-flex;
    align-items: center; /* vertically centers all children */
    font-family: "Arial Black", sans-serif;
    font-size: clamp(1rem, 4vw, 1.5rem); /* responsive font size */
    font-weight: 900;
    color: white;
    line-height: 1;
}
.logoHelper {
    display: inline-flex;
    align-items: center; /* vertically centers all children */
    font-family: "Arial Black", sans-serif;
    font-size: clamp(1rem, 4vw, 1rem); /* responsive font size */
    font-weight: 900;
    color: white;
    line-height: 1;
}
.logoHelperNormal {
    display: inline-flex;
    align-items: center; /* vertically centers all children */
    line-height: 1;
}

.italic-text {
    font-style: italic;
    color: #0055ff;
    /* Remove the margin-left: -10px entirely */
}

.logo-inline {
    display: inline-block;
    vertical-align: middle;
    line-height: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.logo-inline .logo-x {
    font-style: italic;
    color: #0055ff;
}
.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    margin-left: 12px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--t50);
    padding: 6px 14px;
    border-radius: 7px;
    transition:
        color 0.15s,
        background 0.15s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--t06);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-sign {
    font-size: 14px;
    font-weight: 500;
    color: var(--t50);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--t10);
    transition: all 0.15s;
}

.nav-sign:hover {
    color: var(--white);
    border-color: var(--t20);
}

.nav-demo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
    background: var(--blue);
    padding: 9px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition:
        background 0.15s,
        transform 0.15s,
        box-shadow 0.15s;
    box-shadow:
        0 0 0 1px rgba(0, 85, 255, 0.6),
        0 4px 16px rgba(0, 85, 255, 0.3);
}

.nav-demo:hover {
    background: var(--blue-h);
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(0, 85, 255, 0.8),
        0 8px 28px rgba(0, 85, 255, 0.4);
}

.nav-demo svg {
    width: 13px;
    height: 13px;
    transition: transform 0.15s;
}

.nav-demo:hover svg {
    transform: translateX(2px);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    position: relative;
    padding: 148px 0 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background glows */
.hero-glow-a {
    position: absolute;
    pointer-events: none;
    width: 900px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    left: 50%;
    transform: translateX(-20%);
    background: radial-gradient(
        ellipse at center,
        rgba(0, 85, 255, 0.16) 0%,
        transparent 65%
    );
    filter: blur(100px);
}

.hero-glow-b {
    position: absolute;
    pointer-events: none;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    bottom: 200px;
    left: -100px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 210, 106, 0.06) 0%,
        transparent 65%
    );
    filter: blur(80px);
}

/* Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--t06) 1px, transparent 1px),
        linear-gradient(90deg, var(--t06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(
        ellipse 90% 80% at 50% 0%,
        black 20%,
        transparent 80%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 90% 80% at 50% 0%,
        black 20%,
        transparent 80%
    );
}

/* Hero content */
.hero-body {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--t50);
    padding: 6px 14px;
    border: 1px solid var(--t10);
    border-radius: 999px;
    margin-bottom: 36px;
    animation: up 0.6s var(--ease) 0.1s both;
}

.hero-badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease infinite;
}

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

    50% {
        opacity: 0.4;
    }
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-h1 {
    font-size: clamp(44px, 7.5vw, 96px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-bottom: 28px;
    animation: up 0.7s var(--ease) 0.18s both;
}

.hero-h1 .em {
    display: block;
    background: linear-gradient(90deg, #4d8eff 0%, #7ab5ff 50%, #4d8eff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ═══════════════════════════════════════════
   HIGHLIGHT STRIP
═══════════════════════════════════════════ */
.highlight-strip {
    background: #0a0d16;
    border-top: 1px solid var(--t06);
    border-bottom: 1px solid var(--t06);
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.highlight-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--t10);
    position: relative;
}

.highlight-item:last-child {
    border-right: none;
}

/* Left blue accent line */
.highlight-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
}

.highlight-item span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 640px) {
    .highlight-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-item:nth-child(2) {
        border-right: none;
    }
}
.hero-sub {
    margin-bottom: 20px !important;

    /* font-size: clamp(16px, 1.8vw, 20px);
            font-weight: 400;
            line-height: 1.7;
            color: ;
            max-width: 580px;
            margin: 0 auto 40px;
            animation: up .7s var(--ease) .28s both; */
}

.hero-sub strong {
    color: rgb(112, 224, 112);
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 20px);
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: up 0.7s var(--ease) 0.46s both;
}

.hero-proof-item {
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    font-weight: 400;
    color: var(--t20);
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-proof-item svg {
    width: 12px;
    height: 12px;
    color: var(--green);
    flex-shrink: 0;
}

.hero-proof-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--t20);
}

/* ── DASHBOARD ── */
.hero-dash-wrap {
    position: relative;
    z-index: 2;
    margin: 52px auto 0;
    max-width: 1100px;
    padding: 0 clamp(20px, 4vw, 48px);
    animation: dashIn 1s var(--ease) 0.5s both;
}

@keyframes dashIn {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateX(5deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: perspective(1200px) rotateX(1.5deg) translateY(0);
    }
}

.dash-glow {
    position: absolute;
    left: 10%;
    right: 10%;
    top: -30px;
    height: 60px;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(0, 85, 255, 0.5) 0%,
        transparent 70%
    );
    filter: blur(40px);
    pointer-events: none;
}

.dash {
    background: #0c0f1c;
    border: 1px solid var(--t10);
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 85, 255, 0.1),
        0 32px 80px rgba(0, 0, 0, 0.7),
        0 80px 160px rgba(0, 0, 0, 0.5);
}

/* Chrome bar */
.dash-bar {
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--t06);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dd-r {
    background: #ff5f57;
}

.dd-y {
    background: #ffbc2e;
}

.dd-g {
    background: #28c840;
}

.dash-url {
    flex: 1;
    max-width: 380px;
    margin: 0 auto;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--t20);
    background: var(--t06);
    border-radius: 6px;
    padding: 4px 14px;
    text-align: center;
}

.dash-status {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.dash-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 3px 9px;
    border-radius: 4px;
}

.tag-live {
    background: rgba(0, 210, 106, 0.15);
    color: #00d26a;
}

.tag-sec {
    background: rgba(0, 85, 255, 0.15);
    color: #6699ff;
}

/* Dash body */
.dash-body {
    display: grid;
    grid-template-columns: 192px 1fr;
    min-height: 440px;
}

/* Sidebar */
.dash-sb {
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid var(--t06);
    padding: 14px 0;
}

.sb-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--t06);
}

.sb-brand-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-brand-icon svg {
    width: 12px;
    height: 12px;
}

.sb-brand-name {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.sb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--t20);
    cursor: pointer;
    transition: all 0.12s;
    border-right: 2px solid transparent;
}

.sb-link.on {
    background: rgba(0, 85, 255, 0.12);
    color: var(--white);
    border-right-color: var(--blue);
}

.sb-link:hover:not(.on) {
    color: var(--t50);
}

.sb-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke-width: 1.8;
}

.sb-sep {
    height: 1px;
    background: var(--t06);
    margin: 6px 14px;
}

/* Main dashboard area */
.dash-main {
    background: #0c0f1c;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* KPI row */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    flex-shrink: 0;
}

.kpi {
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 8px;
    padding: 11px 13px;
}

.kpi-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--t20);
    margin-bottom: 5px;
}

.kpi-val {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    color: var(--white);
}

.kv-b {
    color: #6699ff;
}

.kv-g {
    color: #00d26a;
}

.kv-t {
    color: #33ccff;
}

.kv-w {
    color: var(--white);
}

/* Charts row */
.charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.chart-card {
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 8px;
    padding: 13px;
    display: flex;
    flex-direction: column;
}

.chart-title {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--t70);
    margin-bottom: 1px;
}

.chart-sub {
    font-size: 8px;
    color: var(--t20);
    margin-bottom: 8px;
    font-family: "JetBrains Mono", monospace;
}

.chart-svg {
    width: 100%;
    flex: 1;
    min-height: 44px;
    overflow: visible;
}

.cl {
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-nums {
    display: flex;
    gap: 14px;
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid var(--t06);
}

.cnum .cv {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.cnum .cl-txt {
    font-size: 8px;
    color: var(--t20);
    margin-top: 1px;
    font-family: "JetBrains Mono", monospace;
}

/* Table */
.dash-table {
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dash-table table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    font-family: "JetBrains Mono", monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--t20);
    padding: 7px 11px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
}

.dash-table td {
    font-size: 10.5px;
    color: var(--t50);
    padding: 7px 11px;
    border-top: 1px solid var(--t06);
}

.dash-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.pill {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

.p-g {
    background: rgba(0, 210, 106, 0.12);
    color: #00d26a;
}

.p-r {
    background: rgba(255, 80, 80, 0.1);
    color: #ff8080;
}

.p-a {
    background: rgba(255, 200, 80, 0.1);
    color: #ffd080;
}

.p-b {
    background: rgba(0, 85, 255, 0.15);
    color: #6699ff;
}

.pbar {
    height: 4px;
    background: var(--t06);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 3px;
    width: 60px;
}

.pbar-f {
    height: 100%;
    border-radius: 999px;
}

/* ---------- MARQUEE ---------- */
.mq {
    background: #060810;
    border-top: 1px solid var(--w06);
    border-bottom: 1px solid var(--w06);
    padding: 36px 0 28px;
    overflow: hidden;
    position: relative;
}
.mql {
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--t20);
    margin-bottom: 20px;
}
.mqt {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: mqs 21s linear infinite;
}
.mqt:hover {
    animation-play-state: paused;
}
.mi {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--t20);
    white-space: nowrap;
    transition: color 0.2s;
}
.mi:hover {
    color: #fff;
}
.ms {
    color: var(--w18);
}
.mfl,
.mfr {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.mfl {
    left: 0;
    background: linear-gradient(90deg, #060810, transparent);
}
.mfr {
    right: 0;
    background: linear-gradient(-90deg, #060810, transparent);
}
@keyframes mqs {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.section {
    padding: clamp(80px, 10vw, 130px) 0;
}

.eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t20);
    margin-bottom: 20px;
    display: block;
}

.h2 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 16px;
}

.h2 em {
    font-style: normal;
    color: var(--t50);
}

.body-text {
    font-size: clamp(16px, 1.6vw, 18px);
    color: var(--t50);
    line-height: 1.75;
    max-width: 560px;
}

/* Problem two-column */
.prob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 7vw, 100px);
    align-items: start;
}

.prob-cards {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 40px;
}

.prob-card {
    padding: 24px 28px;
    border: 1px solid var(--t06);
    border-left: 2px solid var(--blue);
    border-radius: 0 10px 10px 0;
    background: var(--t03);
    transition:
        background 0.25s,
        border-left-color 0.25s;
    cursor: default;
}

.prob-card:hover {
    background: rgba(0, 85, 255, 0.04);
    border-left-color: var(--blue-h);
}

.prob-n {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--t20);
    margin-bottom: 10px;
}

.prob-title {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 7px;
}

.prob-body {
    font-size: 14px;
    color: var(--t50);
    line-height: 1.65;
}

/* Right callouts */
.callouts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.callout {
    padding: 24px 26px;
    border: 1px solid var(--t06);
    border-radius: 12px;
    background: var(--t03);
}

.callout-big {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 6px;
}

.callout-desc {
    font-size: 13.5px;
    color: var(--t50);
    line-height: 1.6;
}

.callout-note {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--t30);
    margin-top: 10px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section {
    background: var(--black2);
    border-top: 1px solid var(--t06);
    border-bottom: 1px solid var(--t06);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--t06);
    border: 1px solid var(--t06);
    border-radius: 14px;
    overflow: hidden;
}

.how-step {
    background: var(--black2);
    padding: clamp(32px, 4vw, 50px) clamp(28px, 3vw, 42px);
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
}

.how-step:hover {
    background: var(--black3);
}

.how-step-num {
    font-family: "JetBrains Mono", monospace;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 1;
    color: rgba(113, 110, 110, 0.47);
    margin-bottom: 28px;
}

.how-step-title {
    font-size: clamp(15px, 2vw, 21px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.how-step-title span {
    display: block;
    font-size: 0.82em;
    font-weight: 400;
    color: var(--t50);
    margin-top: 4px;
    font-style: italic;
}

.how-step-body {
    font-size: 14px;
    color: var(--t50);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.how-step-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--green);
    padding: 5px 12px;
    background: rgba(0, 210, 106, 0.08);
    border: 1px solid rgba(0, 210, 106, 0.2);
    border-radius: 999px;
}

/* ═══════════════════════════════════════════
   PRODUCT SHOWCASE
═══════════════════════════════════════════ */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 32px;
}

.tab {
    font-size: 13px;
    font-weight: 500;
    color: var(--t50);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--t06);
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
}

.tab:hover {
    color: var(--white);
    border-color: var(--t10);
}

.tab.on {
    color: var(--white);
    background: rgba(0, 85, 255, 0.14);
    border-color: rgba(0, 85, 255, 0.4);
}

.show-win {
    border: 1px solid var(--t10);
    border-radius: 14px;
    overflow: hidden;
    background: var(--black2);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.show-bar {
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--t06);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
}

.show-dots {
    display: flex;
    gap: 6px;
}

.show-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sd-r {
    background: #ff5f57;
}

.sd-y {
    background: #ffbc2e;
}

.sd-g {
    background: #28c840;
}

.show-addr {
    flex: 1;
    max-width: 360px;
    margin: 0 auto;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--t20);
    background: var(--t06);
    border-radius: 6px;
    padding: 4px 14px;
    text-align: center;
}

/* Slide system */
.slide {
    display: none;
    animation: sIn 0.22s var(--ease);
}

.slide.on {
    display: flex;
    flex-direction: column;
}

@keyframes sIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.s-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 440px;
}

/* Sidebar (reused across slides) */
.s-sb {
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid var(--t06);
    padding: 13px 0;
}

.s-sb-b {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px 11px;
    border-bottom: 1px solid var(--t06);
    margin-bottom: 7px;
}

.s-sb-ic {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-sb-ic svg {
    width: 11px;
    height: 11px;
}

.s-sb-nm {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.s-lnk {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    font-size: 11px;
    font-weight: 500;
    color: var(--t20);
    cursor: pointer;
    transition: all 0.12s;
    border-right: 2px solid transparent;
}

.s-lnk.on {
    background: rgba(0, 85, 255, 0.1);
    color: var(--white);
    border-right-color: var(--blue);
}

.s-lnk:hover:not(.on) {
    color: var(--t50);
}

.s-lnk svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    stroke-width: 1.8;
}

/* Slide main area */
.s-main {
    background: var(--black2);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.s-kpi {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    flex-shrink: 0;
}

.sk {
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 7px;
    padding: 9px 11px;
}

.sk-l {
    font-family: "JetBrains Mono", monospace;
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--t20);
    margin-bottom: 4px;
}

.sk-v {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.s-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    flex: 1;
}

.s-ch {
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 7px;
    padding: 11px;
    display: flex;
    flex-direction: column;
}

.s-ch-t {
    font-size: 10px;
    font-weight: 600;
    color: var(--t70);
    margin-bottom: 1px;
}

.s-ch-s {
    font-size: 7.5px;
    color: var(--t20);
    margin-bottom: 7px;
    font-family: "JetBrains Mono", monospace;
}

.s-svg {
    flex: 1;
    width: 100%;
    min-height: 40px;
    overflow: visible;
}

.s-ln {
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.s-ns {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid var(--t06);
}

.s-n .av {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.s-n .al {
    font-size: 7.5px;
    color: var(--t20);
    margin-top: 1px;
    font-family: "JetBrains Mono", monospace;
}

.s-tbl {
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 7px;
    overflow: hidden;
    flex-shrink: 0;
}

.s-tbl table {
    width: 100%;
    border-collapse: collapse;
}

.s-tbl th {
    font-family: "JetBrains Mono", monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--t20);
    padding: 6px 10px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
}

.s-tbl td {
    font-size: 9.5px;
    color: var(--t50);
    padding: 6px 10px;
    border-top: 1px solid var(--t06);
}

.s-tbl tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.bd {
    display: inline-block;
    font-size: 8px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
}

.bd-g {
    background: rgba(0, 210, 106, 0.12);
    color: #00d26a;
}

.bd-r {
    background: rgba(255, 80, 80, 0.1);
    color: #ff8080;
}

.bd-a {
    background: rgba(255, 200, 80, 0.1);
    color: #ffd080;
}

.bd-b {
    background: rgba(0, 85, 255, 0.15);
    color: #6699ff;
}

.bd-x {
    background: rgba(255, 255, 255, 0.07);
    color: var(--t50);
}

.spbar {
    height: 4px;
    background: var(--t06);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 2px;
}

.spbar-f {
    height: 100%;
    border-radius: 999px;
}

.s-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    min-height: 0;
}

.s-pane {
    padding: 11px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.s-pane:first-child {
    border-right: 1px solid var(--t06);
}

.s-pt {
    font-size: 10px;
    font-weight: 700;
    color: var(--t50);
    margin-bottom: 7px;
    flex-shrink: 0;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s-funnel {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.f-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.f-lbl {
    font-size: 9.5px;
    color: var(--t50);
    width: 90px;
    flex-shrink: 0;
    font-weight: 500;
}

.f-bar {
    flex: 1;
    height: 18px;
    background: var(--t06);
    border-radius: 3px;
    overflow: hidden;
}

.f-fill {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 7px;
}

.f-txt {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
}

.f-n {
    font-size: 9px;
    color: var(--t20);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
    font-family: "JetBrains Mono", monospace;
}

.ai-map {
    display: grid;
    grid-template-columns: 1fr 36px 1fr;
    border: 1px solid var(--t06);
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 7px;
}

.ai-col {
    padding: 9px;
}

.ai-mid {
    background: var(--t03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-left: 1px solid var(--t06);
    border-right: 1px solid var(--t06);
}

.ai-lbl {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--t20);
    margin-bottom: 5px;
    font-family: "JetBrains Mono", monospace;
}

.ai-chip {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 8.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    text-align: center;
}

.s-task {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    background: var(--t03);
    border: 1px solid var(--t06);
    border-radius: 6px;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.s-task-dot {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8.5px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: "JetBrains Mono", monospace;
}

.s-task-t {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--t70);
    margin-bottom: 1px;
}

.s-task-s {
    font-size: 8px;
    color: var(--t20);
    font-family: "JetBrains Mono", monospace;
}

.so-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 9px;
    flex-shrink: 0;
}

.so-c {
    border-radius: 7px;
    padding: 10px;
    text-align: center;
}

.so-c .sb {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.04em;
}

.so-c .sl {
    font-size: 8px;
    font-weight: 600;
    font-family: "JetBrains Mono", monospace;
}

.rep-hdr {
    background: #152040;
    border-radius: 6px;
    padding: 9px 12px;
    margin-bottom: 7px;
    flex-shrink: 0;
}

.rep-ht {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1px;
}

.rep-hs {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "JetBrains Mono", monospace;
}

.rep-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 9px;
    border-bottom: 1px solid var(--t06);
    font-size: 9.5px;
    color: var(--t50);
}

.rep-row.tot {
    background: rgba(0, 85, 255, 0.07);
    font-weight: 700;
    color: var(--white);
}

.s-inp {
    font-size: 9.5px;
    background: var(--t06);
    border: 1px solid var(--t06);
    border-radius: 4px;
    padding: 5px 8px;
    color: var(--t70);
    margin-bottom: 5px;
    width: 100%;
    font-family: "Onest", sans-serif;
}

.s-inp.hi {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.08);
    color: var(--white);
}

.s-lbl {
    font-size: 8px;
    font-weight: 600;
    color: var(--t20);
    margin-bottom: 2px;
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.s-btn-p {
    background: var(--blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Onest", sans-serif;
}

.s-btn-s {
    background: var(--t06);
    color: var(--t50);
    padding: 5px 9px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 500;
    border: 1px solid var(--t06);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Onest", sans-serif;
}

/* ═══════════════════════════════════════════
   FEATURES  — Linear-style text grid
═══════════════════════════════════════════ */
.feat-section {
    background: var(--black2);
    border-top: 1px solid var(--t06);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--t06);
    border: 1px solid var(--t06);
    border-radius: 14px;
    overflow: hidden;
}

.feat-card {
    background: var(--black2);
    padding: clamp(28px, 3vw, 40px) clamp(24px, 2.8vw, 36px);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.feat-card:hover {
    background: var(--black3);
}

.feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 85, 255, 0.5),
        transparent
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.feat-card:hover::before {
    transform: scaleX(1);
}

.feat-num {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.feat-num svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    display: block;
}

/* Icon color variants */
.fi-blue {
    background: rgba(0, 85, 255, 0.15);
    color: #6699ff;
}
.fi-teal {
    background: rgba(0, 194, 224, 0.12);
    color: #00c2e0;
}
.fi-green {
    background: rgba(0, 210, 106, 0.12);
    color: #00d26a;
}
.fi-purple {
    background: rgba(124, 92, 255, 0.12);
    color: #7c5cff;
}
.fi-amber {
    background: rgba(232, 160, 32, 0.12);
    color: #e8a020;
}
.fi-red {
    background: rgba(224, 48, 64, 0.1);
    color: #e03040;
}

.feat-title {
    font-size: clamp(16px, 1.7vw, 19px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}

.feat-body {
    font-size: clamp(13px, 1.2vw, 14.5px);
    color: var(--t50);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   METRICS — 4 large numbers
═══════════════════════════════════════════ */
.metrics-section {
    position: relative;
    overflow: hidden;
}

.metrics-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse,
        rgba(0, 85, 255, 0.08),
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--t06);
    border: 1px solid var(--t06);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.metric {
    background: var(--black);
    padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px);
    transition: background 0.2s;
    position: relative;
}

.metric:hover {
    background: rgba(255, 255, 255, 0.02);
}

.metric::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 85, 255, 0.3),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.metric:hover::after {
    opacity: 1;
}

.metric-val {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.mu {
    font-size: 0.48em;
    font-weight: 900;
    color: var(--t70);
    line-height: 1;
    letter-spacing: 0;      /* ← resets the -0.06em inherited from .metric-val */
    padding-bottom: 0.1em;
}

.metric-title {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.metric-desc {
    font-size: clamp(12px, 1.1vw, 13.5px);
    color: var(--t20);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════
   MANAGED
═══════════════════════════════════════════ */
.managed-section {
    background: var(--black2);
    border-top: 1px solid var(--t06);
    border-bottom: 1px solid var(--t06);
}

.del-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 60px;
}

.del {
    padding: 32px 28px;
    border: 1px solid var(--t06);
    border-radius: 14px;
    background: var(--t03);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

.del::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.del:hover {
    border-color: var(--t10);
    transform: translateY(-4px);
    background: var(--t06);
}

.del:hover::before {
    opacity: 1;
}

.del.feat {
    background: rgba(0, 85, 255, 0.08);
    border-color: rgba(0, 85, 255, 0.25);
}

.del.feat::before {
    background: linear-gradient(90deg, var(--blue), #4499ff);
    opacity: 1;
}

.del-badge {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: var(--blue);
    color: #fff;
}

.del-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

.del-body {
    font-size: 14px;
    color: var(--t50);
    line-height: 1.65;
}

/* Pipeline */
.pipe-wrap {
    position: relative;
    padding: 0 10px;
}

.pipe-line {
    position: absolute;
    top: 23px;
    left: calc(8.33% + 10px);
    right: calc(8.33% + 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), #4499ff);
    z-index: 0;
    border-radius: 1px;
}

.pipe-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    position: relative;
    z-index: 1;
}

.ps {
    text-align: center;
    padding: 0 3px;
}

.ps-c {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    border: 3px solid var(--black2);
}

.ps-t {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.ps-d {
    font-size: 10px;
    color: var(--t20);
    line-height: 1.4;
    margin-bottom: 5px;
}

.ps-tag {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 8.5px;
    font-weight: 500;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 0.4px;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(
        ellipse,
        rgba(0, 85, 255, 0.07),
        transparent 70%
    );
    filter: blur(50px);
    pointer-events: none;
}

.faq-box {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fq {
    border-bottom: 1px solid var(--t06);
}

.fq:first-child {
    border-top: 1px solid var(--t06);
}

.fq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: clamp(16px, 2vw, 22px) 0;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: clamp(15px, 1.7vw, 18px);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--t50);
    transition: color 0.15s;
}

.fq-q:hover,
.fq.open .fq-q {
    color: var(--white);
}


.fq-text {
    flex: 1;          /* takes all available space, pushes icon to the right */
    min-width: 0;     /* prevents overflow issues */
}

.fq-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--t10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--t20);
}

.fq.open .fq-ico {
    background: rgba(0, 85, 255, 0.18);
    border-color: rgba(0, 85, 255, 0.4);
    color: #6699ff;
    transform: rotate(45deg);
}

.fq-ico svg {
    width: 9px;
    height: 9px;
    stroke-width: 2.5;
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.75;
    color: var(--t50);
    transition:
        max-height 0.4s var(--ease2),
        padding 0.3s;
}

.fq.open .fq-a {
    max-height: 280px;
    padding: 0 0 22px;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0 clamp(72px, 9vw, 120px);
    overflow: hidden;
    background: #0d111e;
}
.ctabg {
    position: absolute;
    inset: -10%;
    background: var(--black2);
    filter: blur(80px);
    animation: rot 20s linear infinite reverse;
    pointer-events: none;
}
.ctag {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(
        ellipse 50% 42% at 50% 40%,
        #000 0%,
        transparent 80%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 50% 42% at 50% 40%,
        #000 0%,
        transparent 80%
    );
}
.ctain {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}
.ctah {
    font-size: clamp(46px, 6.5vw, 88px);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: -0.056em;
    margin-bottom: 18px;
}
.ctas {
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--w60);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto clamp(28px, 4vw, 42px);
}
.ctab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #060810;
    padding: 17px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 44px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.ctab:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}
.ctab svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}
.ctab:hover svg {
    transform: translateX(3px);
}
.ctl {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.ck {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: var(--w35);
    transition: color 0.15s;
}
.ck:hover {
    color: #fff;
}
.ck svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--black);
    border-top: 1px solid var(--t06);
    padding: 56px 0 28px;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.ft-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ft-brand-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
}

.ft-desc {
    font-size: 14px;
    color: var(--t50);
    line-height: 1.75;
    max-width: 300px;
}

.ft-col h6 {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--t50);
    margin-bottom: 14px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-col a,
.ft-col span {
    font-size: 14px;
    color: var(--t50);
    transition: color 0.15s;
}

.ft-col a:hover,
.ft-col span:hover {
    color: var(--white);
}

.ft-bottom {
    border-top: 1px solid var(--t06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--t50);
}

.ft-links {
    display: flex;
    gap: 20px;
}

.ft-links a {
    color: var(--t20);
    transition: color 0.15s;
    font-size: 13px;
}

.ft-links a:hover {
    color: var(--t50);
}

/* Float pill */
.fpill {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 700;
    background: var(--blue);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 28px rgba(0, 85, 255, 0.5);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition:
        opacity 0.3s,
        transform 0.3s;
    pointer-events: none;
}

.fpill.on {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.fpill:hover {
    background: var(--blue-h);
    transform: translateY(-2px) !important;
}

.fpill svg {
    width: 13px;
    height: 13px;
}



/* ═══════════════════════════════════════════
   CONTACT MODAL
═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease2);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    position: relative;
    background: var(--black2);
    border: 1px solid var(--t10);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 44px);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--t10) transparent;
    box-shadow: 0 0 0 1px rgba(0, 85, 255, 0.1), 0 32px 80px rgba(0, 0, 0, 0.7);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.3s var(--ease);
}

.modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.6), transparent);
    border-radius: 18px 18px 0 0;
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--t10);
    background: var(--t06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t50);
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--t10);
    color: var(--white);
    border-color: var(--t20);
}

.modal-close svg {
    width: 14px;
    height: 14px;
    display: block;
}

input[type="date"] {
    color-scheme: dark;
}
.form-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 6px;
    padding-right: 40px;
}

.form-sub {
    font-size: 14px;
    color: var(--t50);
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--t50);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black);
    border: 1px solid var(--t10);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--white);
    font-family: 'Onest', sans-serif;
    transition: border-color 0.15s, background 0.15s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(0, 85, 255, 0.5);
    background: rgba(0, 85, 255, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--t50);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select option {
    background: #0a0d16;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Onest', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 85, 255, 0.6), 0 8px 24px rgba(0, 85, 255, 0.3);
    margin-top: 6px;
    margin-bottom: 14px;
}

.submit-btn:hover {
    background: var(--blue-h);
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(0, 85, 255, 0.8), 0 12px 32px rgba(0, 85, 255, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn svg {
    width: 14px;
    height: 14px;
}

.form-note {
    font-size: 12px;
    color: var(--t50);
    text-align: center;
    line-height: 1.6;
}

.form-note a {
    color: #6699ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 20px;
    gap: 16px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 210, 106, 0.12);
    border: 1px solid rgba(0, 210, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.success-icon svg {
    width: 24px;
    height: 24px;
}

.success-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
}

.success-desc {
    font-size: 14px;
    color: var(--t50);
    line-height: 1.75;
    max-width: 340px;
}

@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .dash-body {
        grid-template-columns: 1fr;
    }

    .dash-sb {
        display: none;
    }

    .kpi-row,
    .s-kpi {
        grid-template-columns: repeat(3, 1fr);
    }

    .charts-row,
    .s-charts {
        grid-template-columns: 1fr;
    }

    .prob-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .callouts {
        position: static;
    }

    .how-steps {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .s-body {
        grid-template-columns: 1fr;
    }

    .s-sb {
        display: none;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .del-grid {
        grid-template-columns: 1fr;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
    }

    .ft-brand {
        grid-column: span 2;
    }

    .pipe-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pipe-line {
        display: none;
    }

    .s-split {
        grid-template-columns: 1fr;
    }

    .s-pane:first-child {
        border-right: none;
        border-bottom: 1px solid var(--t06);
    }

    .trust-inner {
        flex-wrap: wrap;
    }

    .trust-cell {
        min-width: 160px;
    }
}

@media (max-width: 640px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid,
    .trust-inner {
        grid-template-columns: 1fr 1fr;
    }

    .ft-top {
        grid-template-columns: 1fr;
    }

    .ft-brand {
        grid-column: span 1;
    }
}
