/* ==========================================================================
   SRTN — Landing Page v2  ·  Light Theme
   Design language: soft lavender washes, crisp white cards, violet→indigo
   gradient accents, tight typography. Mirrors the in-app dashboard palette.
   ========================================================================== */

:root {
    /* Brand — sampled from the SRTN dashboard */
    --v-600: #6d28d9;
    --v-500: #7c3aed;
    --v-400: #8b5cf6;
    --v-300: #a78bfa;
    --i-600: #4f46e5;
    --i-500: #6366f1;
    --sky: #0ea5e9;

    /* Surfaces */
    --s-0: #ffffff;
    --s-1: #fbfaff;
    --s-2: #f6f4ff;
    --s-3: #f1eefe;
    --s-line: #e9e6f7;
    --s-line-2: #f2f0fb;

    /* Ink */
    --ink-900: #14112b;
    --ink-700: #3d3a5c;
    --ink-500: #6b6890;
    --ink-400: #8d8ab0;

    /* Semantic */
    --ok: #10b981;
    --warn: #f59e0b;
    --bad: #ef4444;

    /* Gradient */
    --grad: linear-gradient(135deg, #6d28d9 0%, #7c3aed 45%, #6366f1 100%);
    --grad-soft: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 100%);

    /* Elevation — violet-tinted shadows read far more premium than grey */
    --e-1: 0 1px 2px rgba(20, 17, 43, .04), 0 1px 3px rgba(109, 40, 217, .04);
    --e-2: 0 2px 4px rgba(20, 17, 43, .04), 0 8px 20px rgba(109, 40, 217, .06);
    --e-3: 0 4px 8px rgba(20, 17, 43, .04), 0 18px 40px rgba(109, 40, 217, .10);
    --e-4: 0 8px 16px rgba(20, 17, 43, .05), 0 32px 72px rgba(109, 40, 217, .14);
    --e-glow: 0 0 0 1px rgba(124, 58, 237, .12), 0 24px 60px rgba(109, 40, 217, .18);

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 26px;
    --r-full: 999px;

    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

    --wrap: 1400px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-sans);
    background: var(--s-0);
    color: var(--ink-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

::selection {
    background: rgba(124, 58, 237, .18);
}

/* ── Type scale ──────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--f-display);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.12;
    color: var(--ink-900);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px 6px 11px;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--v-600);
    margin-bottom: 18px;
}

.eyebrow i {
    font-size: 11px;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── Layout primitives ───────────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-narrow {
    max-width: 880px;
}

section {
    position: relative;
}

.band {
    padding: 72px 0;
}

.band-tight {
    padding: 56px 0;
}

.band-white {
    background: var(--s-0);
}

.band-tint {
    background: var(--s-1);
}

.band-tint-2 {
    background: linear-gradient(180deg, #fbfaff 0%, #f6f4ff 100%);
}

.head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.head h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 16px;
}

.head p {
    font-size: 17px;
    color: var(--ink-500);
    line-height: 1.7;
}

.head-left {
    text-align: left;
    margin-left: 0;
}

/* Decorative hairline divider between bands */
.hairline {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--s-line) 20%, var(--s-line) 80%, transparent);
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--r-md);
    transition: transform .18s cubic-bezier(.34, 1.4, .64, 1), box-shadow .22s, background .22s, color .22s, border-color .22s;
    white-space: nowrap;
    letter-spacing: -.01em;
}

.b-lg {
    padding: 15px 28px;
    font-size: 15.5px;
    border-radius: 14px;
}

.b-sm {
    padding: 9px 16px;
    font-size: 13px;
}

.b-full {
    width: 100%;
}

.b-pri {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 1px 2px rgba(109, 40, 217, .2), 0 8px 22px rgba(109, 40, 217, .26);
}

.b-pri:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(109, 40, 217, .22), 0 16px 34px rgba(109, 40, 217, .34);
}

.b-ghost {
    background: var(--s-0);
    color: var(--ink-900);
    border: 1.5px solid var(--s-line);
    box-shadow: var(--e-1);
}

.b-ghost:hover {
    border-color: var(--v-300);
    color: var(--v-600);
    transform: translateY(-2px);
    box-shadow: var(--e-2);
}

.b-soft {
    background: var(--s-2);
    color: var(--v-600);
    border: 1px solid var(--s-line);
}

.b-soft:hover {
    background: var(--s-3);
}

.b-white {
    background: #fff;
    color: var(--v-600);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
}

.b-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.b-outline-w {
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
}

.b-outline-w:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .8);
}

/* ══════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════ */
.nv {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.nv.stuck {
    background: rgba(255, 255, 255, .92);
    border-bottom-color: var(--s-line);
    box-shadow: 0 1px 20px rgba(20, 17, 43, .05);
}

.nv-in {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nv-brand img {
    height: 42px;
    width: auto;
}

.nv-links {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.nv-link {
    padding: 8px 13px;
    border-radius: var(--r-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-700);
    transition: color .18s, background .18s;
}

.nv-link:hover {
    color: var(--v-600);
    background: var(--s-2);
}

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

/* "Log in" ghost button hidden on mobile — too crowded with burger + CTA */
.nv-right .b-ghost {
    display: none;
}

.nv-burger {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--ink-900);
    border: 1px solid var(--s-line);
    background: #fff;
}

.mm {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 899;
    background: #fff;
    border-bottom: 1px solid var(--s-line);
    padding: 14px 20px 22px;
    box-shadow: var(--e-3);
    display: none;
    flex-direction: column;
    gap: 2px;
}

.mm.open {
    display: flex;
}

.mm a.mm-link {
    padding: 13px 12px;
    border-radius: var(--r-sm);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink-900);
}

.mm a.mm-link:hover {
    background: var(--s-2);
}

.mm .b {
    margin-top: 10px;
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding: 116px 0 0;
    background: var(--s-0);
    overflow: hidden;
}

/* layered background: mesh blobs + fine grid, both extremely subtle */
.hero-mesh {
    position: absolute;
    inset: -10% -10% auto;
    height: 760px;
    pointer-events: none;
    background:
        radial-gradient(46% 46% at 18% 22%, rgba(139, 92, 246, .16) 0%, transparent 64%),
        radial-gradient(40% 40% at 82% 12%, rgba(99, 102, 241, .14) 0%, transparent 62%),
        radial-gradient(36% 36% at 62% 62%, rgba(14, 165, 233, .09) 0%, transparent 60%);
    filter: blur(6px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(109, 40, 217, .05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(109, 40, 217, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(120% 70% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(120% 70% at 50% 0%, #000 20%, transparent 75%);
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    text-align: center;
}

/* Announcement pill */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 7px;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-full);
    box-shadow: var(--e-1);
    font-size: 13px;
    font-weight: 650;
    color: var(--ink-700);
    margin-bottom: 26px;
}

.hero-pill b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--r-full);
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    letter-spacing: -.035em;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.72;
    color: var(--ink-500);
    max-width: 560px;
    margin: 0 auto 30px;
}

.hero-sub strong {
    color: var(--ink-900);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    justify-content: center;
}

/* On mobile, hero buttons go full-width */
.hero-cta .b {
    width: 100%;
}

.hero-micro {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-400);
    justify-content: center;
}

.hero-micro span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-micro i {
    color: var(--ok);
    font-size: 12px;
}

/* ── Dashboard shot in a browser frame ───────────────────────────── */
.shot {
    position: relative;
    perspective: 1600px;
}

.shot-frame {
    position: relative;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--s-line);
    box-shadow: var(--e-4);
    overflow: hidden;
    /* 3D transform added at min-width: 1080px */
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.shot-frame:hover {
    transform: rotateY(0) rotateX(0) translateY(-4px);
}

.shot-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #fbfaff, #f6f4ff);
    border-bottom: 1px solid var(--s-line-2);
}

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

.shot-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
}

.shot-dots i:nth-child(1) {
    background: #ff5f57;
}

.shot-dots i:nth-child(2) {
    background: #febc2e;
}

.shot-dots i:nth-child(3) {
    background: #28c840;
}

.shot-url {
    flex: 1;
    margin-left: 6px;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-full);
    padding: 4px 12px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    color: var(--ink-400);
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 320px;
}

.shot-url i {
    color: var(--ok);
    font-size: 9px;
}

.shot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* glow behind the frame */
.shot::before {
    content: '';
    position: absolute;
    inset: 12% -6% -10% 4%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(124, 58, 237, .28), transparent 72%);
    filter: blur(46px);
    z-index: -1;
}

/* Floating KPI chips — hidden on mobile, shown at min-width: 1080px */
.shot-chip {
    display: none;
    position: absolute;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--s-line);
    border-radius: 14px;
    box-shadow: var(--e-3);
    z-index: 3;
    animation: floaty 5.5s ease-in-out infinite;
}

.shot-chip .ci {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.shot-chip .cv {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink-900);
}

.shot-chip .cl {
    font-size: 10.5px;
    font-weight: 650;
    color: var(--ink-400);
    letter-spacing: .01em;
}

.chip-a {
    left: -26px;
    top: 16%;
    animation-delay: 0s;
}

.chip-b {
    right: -20px;
    bottom: 22%;
    animation-delay: -2.6s;
}

@keyframes floaty {

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

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

/* ── Hero metric bar (glass card straddling the fold) ────────────── */
.metrics {
    position: relative;
    z-index: 3;
    margin: 72px auto 0;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-xl);
    box-shadow: var(--e-3);
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

.metric {
    padding: 22px 18px;
    text-align: center;
    border-bottom: 1px solid var(--s-line-2);
    transition: background .25s;
}

.metric:last-child {
    border-bottom: none;
}

.metric:hover {
    background: var(--s-1);
}

.metric-v {
    font-family: var(--f-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-l {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-400);
}

/* ══════════════════════════════════════════════════════════════════
   LOGO / PLATFORM MARQUEE
   ══════════════════════════════════════════════════════════════════ */
.mq {
    padding: 56px 0 60px;
    background: var(--s-0);
    overflow: hidden;
}

.mq-cap {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: 28px;
}

.mq-mask {
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.mq-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scrollx 38s linear infinite;
}

.mq-mask:hover .mq-track {
    animation-play-state: paused;
}

@keyframes scrollx {
    to {
        transform: translateX(-50%);
    }
}

.chipx {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 650;
    color: var(--ink-700);
    box-shadow: var(--e-1);
    white-space: nowrap;
}

.chipx i {
    font-size: 16px;
    color: var(--v-500);
}

/* ══════════════════════════════════════════════════════════════════
   PROBLEM → SOLUTION SPLIT
   ══════════════════════════════════════════════════════════════════ */
.ps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

.ps-card {
    padding: 34px 32px;
    border-radius: var(--r-xl);
    border: 1px solid var(--s-line);
    background: #fff;
    box-shadow: var(--e-1);
}

.ps-card.bad {
    background: linear-gradient(180deg, #fff8f8, #fff);
    border-color: #fbdcdc;
}

.ps-card.good {
    background: linear-gradient(180deg, #f5f3ff, #fff);
    border-color: #e3dcfd;
    box-shadow: var(--e-2);
}

.ps-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ps-card.bad .ps-tag {
    color: var(--bad);
}

.ps-card.good .ps-tag {
    color: var(--v-600);
}

.ps-card h3 {
    font-size: 21px;
    margin-bottom: 16px;
}

.ps-list li {
    display: flex;
    gap: 11px;
    padding: 9px 0;
    font-size: 14.5px;
    color: var(--ink-700);
    line-height: 1.6;
}

.ps-list i {
    margin-top: 4px;
    font-size: 13px;
    flex-shrink: 0;
}

.ps-card.bad .ps-list i {
    color: #f87171;
}

.ps-card.good .ps-list i {
    color: var(--ok);
}

/* ══════════════════════════════════════════════════════════════════
   BENTO FEATURES
   ══════════════════════════════════════════════════════════════════ */
.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.bx {
    position: relative;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-xl);
    padding: 30px 28px;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, border-color .3s;
}

.bx::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(70% 60% at 50% 0%, rgba(124, 58, 237, .07), transparent 70%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}

.bx:hover {
    transform: translateY(-5px);
    box-shadow: var(--e-3);
    border-color: #ddd5fb;
}

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

/* All bento cells span 1 column on mobile */
.bx-w2,
.bx-w3,
.bx-w4,
.bx-w6 {
    grid-column: span 1;
}

.bx-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(20, 17, 43, .12);
}

.bx h3 {
    font-size: 18px;
    margin-bottom: 9px;
    letter-spacing: -.02em;
}

.bx p {
    font-size: 14.5px;
    color: var(--ink-500);
    line-height: 1.68;
}

.bx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.bx-tags span {
    padding: 4px 11px;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    border-radius: var(--r-full);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-500);
}

/* Feature box — stacked on mobile, side-by-side at min-width: 900px */
.bx-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
}

.bx-feature .bxf-copy h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.bx-feature .bxf-copy p {
    font-size: 15px;
}

/* Mini terminal / code visual used inside bento cells */
.term {
    background: #16132e;
    border-radius: 14px;
    padding: 16px 18px;
    font-family: var(--f-mono);
    font-size: 12px;
    line-height: 1.85;
    color: #cfc9f5;
    box-shadow: var(--e-3);
    overflow: hidden;
}

.term-top {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
}

.term-top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: block;
}

.term .k {
    color: #a78bfa;
}

.term .g {
    color: #34d399;
}

.term .r {
    color: #fb7185;
}

.term .m {
    color: #64608c;
}

/* Live-log style rows for the fraud bento cell */
.logrows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logrow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: var(--s-1);
    border: 1px solid var(--s-line-2);
    border-radius: 10px;
    font-size: 12.5px;
}

.logrow .ip {
    font-family: var(--f-mono);
    font-size: 11.5px;
    color: var(--ink-500);
    margin-left: auto;
}

.pill {
    padding: 3px 9px;
    border-radius: var(--r-full);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.pill-bad {
    background: #fee2e2;
    color: #b91c1c;
}

.pill-ok {
    background: #d1fae5;
    color: #047857;
}

.pill-warn {
    background: #fef3c7;
    color: #b45309;
}

/* ══════════════════════════════════════════════════════════════════
   37 LAYERS
   ══════════════════════════════════════════════════════════════════ */
.lay-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 34px;
}

.lf {
    padding: 8px 17px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--s-line);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-500);
    transition: all .2s;
}

.lf:hover {
    border-color: var(--v-300);
    color: var(--v-600);
}

.lf.on {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(109, 40, 217, .26);
}

.lay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.lay {
    position: relative;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: 16px;
    padding: 16px 14px 14px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    overflow: hidden;
}

.lay::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}

.lay:hover {
    transform: translateY(-4px);
    box-shadow: var(--e-3);
    border-color: #ddd5fb;
}

.lay:hover::before {
    transform: scaleX(1);
}

.lay-n {
    position: absolute;
    top: 14px;
    right: 15px;
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 800;
    color: #ded9f4;
    letter-spacing: -.02em;
}

.lay:hover .lay-n {
    color: var(--v-300);
}

.lay-i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    display: grid;
    place-items: center;
    color: var(--v-600);
    font-size: 15px;
    margin-bottom: 14px;
    transition: all .28s;
}

.lay:hover .lay-i {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: scale(1.06);
}

.lay h3 {
    font-size: 14.5px;
    font-weight: 750;
    margin-bottom: 5px;
    letter-spacing: -.015em;
}

.lay p {
    font-size: 12.5px;
    color: var(--ink-400);
    line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════
   THREAT INTELLIGENCE (light violet feature band)
   ══════════════════════════════════════════════════════════════════ */
.ti {
    background:
        radial-gradient(60% 60% at 12% 0%, rgba(139, 92, 246, .12), transparent 62%),
        radial-gradient(50% 50% at 92% 100%, rgba(99, 102, 241, .12), transparent 60%),
        linear-gradient(180deg, #f6f4ff, #fbfaff);
    border-top: 1px solid var(--s-line);
    border-bottom: 1px solid var(--s-line);
}

.ti-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.ti-stat {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(8px);
    border: 1px solid var(--s-line);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--e-1);
    transition: transform .25s, box-shadow .25s;
}

.ti-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--e-2);
}

.ti-stat .v {
    font-family: var(--f-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--v-600);
    line-height: 1;
}

.ti-stat .l {
    margin-top: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-400);
}

/* TI source boxes — stacked on mobile */
.ti .split {
    gap: 16px;
    align-items: stretch;
}

.src-box {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--s-line);
    border-radius: var(--r-lg);
    padding: 26px 28px;
    box-shadow: var(--e-1);
}

.src-box h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.src-box>p {
    font-size: 13px;
    color: var(--ink-400);
    margin-bottom: 16px;
}

.src-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.src-tags span {
    padding: 5px 12px;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 650;
    color: var(--ink-700);
}

.fw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.fw-tags span {
    padding: 5px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    color: #dc2626;
}

/* Scraper defense grid */
.sd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
}

.sd {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--s-line);
    border-radius: 14px;
    transition: transform .25s, box-shadow .25s, background .25s;
}

.sd:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: var(--e-2);
}

.sd-i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 15px;
    flex-shrink: 0;
}

.sd h4 {
    font-size: 14px;
    font-weight: 750;
    margin-bottom: 3px;
}

.sd p {
    font-size: 12.5px;
    color: var(--ink-400);
    line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════
   SPLIT SHOWCASE (safe pages)
   ══════════════════════════════════════════════════════════════════ */
/* Split — stacked on mobile, side-by-side at min-width: 900px */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.split.flip .sp-media {
    order: 0;
}

.sp-media {
    position: relative;
}

.sp-media img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: var(--e-3);
    border: 1px solid var(--s-line);
}

.sp-media::before {
    content: '';
    position: absolute;
    inset: 14% -4% -8% 6%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(16, 185, 129, .22), transparent 72%);
    filter: blur(44px);
    z-index: -1;
}

.sp-media.violet::before {
    background: radial-gradient(closest-side, rgba(124, 58, 237, .26), transparent 72%);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 28px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--ink-700);
    line-height: 1.6;
}

.check-list i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d1fae5;
    color: #047857;
    display: grid;
    place-items: center;
    font-size: 9px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ══════════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════════════════════════ */
.cmp-shell {
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-xl);
    box-shadow: var(--e-3);
    overflow: hidden;
}

.cmp-scroll {
    overflow-x: auto;
}

.cmp {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.cmp thead th {
    padding: 20px 22px;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -.01em;
}

.cmp thead th:first-child {
    text-align: left;
    background: var(--s-1);
    color: var(--ink-700);
    width: 38%;
}

.cmp thead th.us {
    background: var(--grad);
    color: #fff;
    position: relative;
}

.cmp thead th.us small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .78;
    margin-top: 2px;
}

.cmp thead th.them {
    background: var(--s-2);
    color: var(--ink-500);
}

.cmp td {
    padding: 15px 22px;
    font-size: 14px;
    border-top: 1px solid var(--s-line-2);
    color: var(--ink-700);
    text-align: center;
    vertical-align: middle;
}

.cmp td:first-child {
    text-align: left;
    font-weight: 650;
    color: var(--ink-900);
}

.cmp tbody tr:hover td {
    background: var(--s-1);
}

.cmp td.us-cell {
    background: rgba(124, 58, 237, .045);
    font-weight: 650;
}

.cmp tbody tr:hover td.us-cell {
    background: rgba(124, 58, 237, .085);
}

.yes {
    color: var(--ok);
    font-weight: 800;
}

.no {
    color: #cfcbe4;
}

.mid {
    color: var(--warn);
    font-weight: 700;
    font-size: 13px;
}

.pr {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 16px;
}

.pr-us {
    color: var(--v-600);
}

.pr-them {
    color: #ef4444;
}

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS — vertical rail
   ══════════════════════════════════════════════════════════════════ */
/* Rail — flat on mobile, vertical spine at min-width: 680px */
.rail {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 0;
}

.rail::before {
    display: none;
    content: '';
    position: absolute;
    left: 25px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(180deg, var(--v-400), var(--i-500), var(--s-line));
    border-radius: 2px;
}

.stepr {
    position: relative;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-lg);
    padding: 24px 26px;
    box-shadow: var(--e-1);
    transition: transform .28s, box-shadow .28s, border-color .28s;
}

.stepr:hover {
    transform: none;
    box-shadow: var(--e-3);
    border-color: #ddd5fb;
}

/* Step number — static on mobile, absolute on >= 680px */
.stepr-n {
    position: static;
    margin-bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--grad);
    color: #fff;
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(109, 40, 217, .3);
    border: none;
}

.stepr h3 {
    font-size: 18px;
    margin-bottom: 7px;
}

.stepr p {
    font-size: 14.5px;
    color: var(--ink-500);
    line-height: 1.68;
}

.stepr code {
    font-family: var(--f-mono);
    font-size: 12.5px;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    padding: 2px 8px;
    border-radius: 6px;
    color: var(--v-600);
}

/* ══════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════ */
.pr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

.pc {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid var(--s-line);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, border-color .3s;
}

.pc:hover {
    transform: translateY(-6px);
    box-shadow: var(--e-3);
    border-color: #ddd5fb;
}

.pc.hot {
    border-color: transparent;
    box-shadow: var(--e-glow);
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--grad) border-box;
    border: 1.5px solid transparent;
}

.pc.hot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(80% 50% at 50% 0%, rgba(124, 58, 237, .07), transparent 70%);
    pointer-events: none;
}

.pc-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: var(--r-full);
    background: var(--grad);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(109, 40, 217, .32);
    white-space: nowrap;
}

.pc h3 {
    font-size: 19px;
    margin-bottom: 4px;
}

.pc-desc {
    font-size: 13px;
    color: var(--ink-400);
    margin-bottom: 20px;
}

.pc-price {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 4px;
}

.pc-price .cur {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-500);
    margin-top: 8px;
}

.pc-price .amt {
    font-family: var(--f-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--ink-900);
}

.pc-price .per {
    font-size: 14px;
    color: var(--ink-400);
    font-weight: 600;
    margin-top: 30px;
}

.pc-meta {
    font-size: 12.5px;
    color: var(--ink-400);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--s-line-2);
}

.pc-feats {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
    flex: 1;
}

.pc-feats li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13.8px;
    color: var(--ink-700);
    line-height: 1.5;
}

.pc-feats i {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 8px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pc-feats i.fa-check {
    background: #d1fae5;
    color: #047857;
}

.pc-feats i.fa-xmark {
    background: var(--s-3);
    color: #b5b0d0;
}

.pc-feats li.off {
    color: var(--ink-400);
}

/* ══════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════ */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq {
    border: 1px solid var(--s-line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.fq.open {
    border-color: #ddd5fb;
    box-shadow: var(--e-2);
}

.fq-t {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 22px;
    text-align: left;
    transition: background .2s;
}

.fq-t:hover {
    background: var(--s-1);
}

.fq-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.5;
    letter-spacing: -.01em;
}

.fq-i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    display: grid;
    place-items: center;
    color: var(--v-600);
    font-size: 11px;
    flex-shrink: 0;
    transition: transform .32s, background .25s, color .25s, border-color .25s;
}

.fq.open .fq-i {
    transform: rotate(180deg);
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}

.fq-b {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .34s cubic-bezier(.2, .8, .2, 1);
}

.fq.open .fq-b {
    grid-template-rows: 1fr;
}

.fq-b>div {
    overflow: hidden;
}

.fq-a {
    padding: 0 22px 22px;
    font-size: 14.2px;
    color: var(--ink-500);
    line-height: 1.85;
}

.fq-a strong {
    color: var(--ink-900);
}

.fq-a code {
    font-family: var(--f-mono);
    font-size: 12.5px;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    padding: 1px 7px;
    border-radius: 5px;
    color: var(--v-600);
}

/* ══════════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════════ */
.fcta {
    padding: 96px 0;
    background: var(--s-1);
}

.fcta-card {
    position: relative;
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
    overflow: hidden;
    background: var(--grad);
    box-shadow: 0 30px 80px rgba(109, 40, 217, .34);
}

.fcta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 70%);
}

.fcta-card::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    right: -120px;
    bottom: -220px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, .22), transparent);
}

.fcta-in {
    position: relative;
    z-index: 2;
    max-width: 660px;
    margin: 0 auto;
}

.fcta-in .eyebrow {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.fcta-in h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: #fff;
    margin-bottom: 16px;
}

.fcta-in p {
    font-size: 17px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.fcta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fcta-note {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.fcta-note span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER (light)
   ══════════════════════════════════════════════════════════════════ */
.ft {
    background: #fff;
    border-top: 1px solid var(--s-line);
    padding: 68px 0 28px;
}

.ft-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--s-line-2);
}

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

.ft-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.ft-brand p {
    font-size: 13.5px;
    color: var(--ink-500);
    line-height: 1.72;
    max-width: 290px;
    margin-bottom: 18px;
}

.ft-soc {
    display: flex;
    gap: 9px;
}

.ft-soc a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--s-2);
    border: 1px solid var(--s-line);
    display: grid;
    place-items: center;
    color: var(--ink-500);
    font-size: 14px;
    transition: all .2s;
}

.ft-soc a:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.ft-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-900);
    margin-bottom: 15px;
}

.ft-col a {
    display: block;
    font-size: 13.8px;
    color: var(--ink-500);
    padding: 6px 0;
    transition: color .18s, transform .18s;
}

.ft-col a:hover {
    color: var(--v-600);
    transform: translateX(3px);
}

.ft-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    font-size: 13px;
    color: var(--ink-400);
}

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

.ft-bot-links a:hover {
    color: var(--v-600);
}

/* ══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.rv.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .rv,
    .shot-chip,
    .mq-track {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ══════════════════════════════════════════════════════════════════
   PROGRESSIVE ENHANCEMENT — min-width breakpoints
   Base CSS above targets mobile (≤679px). Each block below enhances
   the layout for wider viewports.
   ══════════════════════════════════════════════════════════════════ */

/* ── ≥ 680px : Small tablets / large phones landscape ───────────── */
@media (min-width: 680px) {
    .band {
        padding: 88px 0;
    }

    .band-tight {
        padding: 64px 0;
    }

    .head {
        margin-bottom: 48px;
    }

    /* Metrics: 2×2 grid */
    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric:nth-child(1),
    .metric:nth-child(2) {
        border-bottom: 1px solid var(--s-line-2);
    }

    .metric:nth-child(2) {
        border-right: 1px solid var(--s-line-2);
    }

    .metric:nth-child(3),
    .metric:nth-child(4) {
        border-bottom: none;
    }

    /* Bento: 2 columns */
    .bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .bx-w2 {
        grid-column: span 2;
    }

    .bx-w3,
    .bx-w4,
    .bx-w6 {
        grid-column: span 2;
    }

    /* TI stats: 2 columns */
    .ti-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Layer grid: wider cards */
    .lay-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 14px;
    }

    .lay {
        padding: 20px 18px 18px;
    }

    /* How-it-works: vertical rail appears */
    .rail {
        padding-left: 62px;
    }

    .rail::before {
        display: block;
    }

    .stepr-n {
        position: absolute;
        left: -62px;
        top: 20px;
        width: 52px;
        height: 52px;
        font-size: 19px;
        border: 4px solid #fff;
        margin-bottom: 0;
    }

    .stepr:hover {
        transform: translateX(6px);
    }

    /* Hero buttons: auto width */
    .hero-cta .b {
        width: auto;
    }

    /* Pricing: 2 columns */
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* FCTA card: larger padding */
    .fcta-card {
        padding: 60px 36px;
        border-radius: 28px;
    }

    /* SD grid: 2 columns */
    .sd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ── ≥ 900px : Tablets / small laptops ──────────────────────────── */
@media (min-width: 900px) {
    .band {
        padding: 104px 0;
    }

    .band-tight {
        padding: 76px 0;
    }

    .head {
        margin-bottom: 56px;
    }

    /* Nav: show links, hide burger */
    .nv-links {
        display: flex;
    }

    .nv-right .b-ghost {
        display: inline-flex;
    }

    .nv-burger {
        display: none;
    }

    /* Split layouts: side-by-side */
    .split,
    .split.flip {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .split.flip .sp-media {
        order: -1;
    }

    /* PS cards: side-by-side */
    .ps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* TI stats: 4 columns */
    .ti-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* TI source boxes: side-by-side */
    .ti .split {
        gap: 24px;
    }

    /* Bento: 4 columns */
    .bento {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .bx-w2 {
        grid-column: span 2;
    }

    .bx-w3,
    .bx-w4,
    .bx-w6 {
        grid-column: span 4;
    }

    /* Feature bento cell: side-by-side */
    .bx-feature {
        grid-template-columns: 1.05fr 1fr;
        gap: 28px;
        padding: 34px;
    }

    /* Pricing: 3 columns */
    .pr-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    /* SD grid: 3 columns */
    .sd-grid {
        grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    }
}

/* ── ≥ 1080px : Desktop ─────────────────────────────────────────── */
@media (min-width: 1080px) {
    .hero {
        padding-top: 132px;
    }

    /* Hero: side-by-side with left-aligned text */
    .hero-in {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        gap: 48px;
        text-align: left;
    }

    .hero-sub {
        margin-left: 0;
        margin-right: 0;
        font-size: 17.5px;
    }

    .hero-cta,
    .hero-micro {
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: clamp(38px, 3.8vw, 53px);
    }

    /* Shot frame: 3D perspective tilt */
    .shot-frame {
        transform: rotateY(-3.5deg) rotateX(1.5deg);
    }

    .shot-frame:hover {
        transform: rotateY(0) rotateX(0) translateY(-4px);
    }

    /* Floating KPI chips visible */
    .shot-chip {
        display: flex;
    }

    .chip-a {
        left: -26px;
        top: 16%;
    }

    .chip-b {
        right: -20px;
        bottom: 22%;
    }

    /* Metrics: 4 columns */
    .metrics {
        grid-template-columns: repeat(4, 1fr);
    }

    .metric {
        padding: 26px 22px;
        border-right: 1px solid var(--s-line-2);
        border-bottom: none;
    }

    .metric:nth-child(2) {
        border-right: 1px solid var(--s-line-2);
    }

    .metric:last-child {
        border-right: none;
    }

    /* Bento: 6 columns */
    .bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .bx-w2 {
        grid-column: span 2;
    }

    .bx-w3 {
        grid-column: span 3;
    }

    .bx-w4 {
        grid-column: span 4;
    }

    .bx-w6 {
        grid-column: span 6;
    }

    /* Footer: full 5-column layout */
    .ft-top {
        grid-template-columns: 1.4fr repeat(4, 1fr);
        gap: 40px;
    }

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