/* ==========================================================================
   BotKavach — 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 BotKavach 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: 52px 0;
}

.band-tight {
    padding: 40px 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 28px;
}

.head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}

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

.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: 14px;
}

.bx {
    position: relative;
    background: #fff;
    border: 1px solid var(--s-line);
    border-radius: var(--r-xl);
    padding: 22px 22px;
    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: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(20, 17, 43, .12);
}

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

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

.bx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.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 tabs (reuses .lf pill style) ── */
.feat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

/* ── Pain → Outcome pair card ── */
.pairs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--s-line);
    border-radius: var(--r-xl);
    background: #fff;
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}
.pair:hover {
    box-shadow: var(--e-2);
    border-color: #ddd5fb;
}
.pair-side {
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.pair-pain {
    background: linear-gradient(135deg, rgba(239, 68, 68, .05), rgba(239, 68, 68, .02));
    border-bottom: 1px solid var(--s-line);
}
.pair-win {
    background: linear-gradient(135deg, rgba(16, 185, 129, .05), rgba(16, 185, 129, .02));
}
.pair-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}
.pair-pain .pair-ico {
    background: linear-gradient(135deg, #ef4444, #f97316);
}
.pair-win .pair-ico {
    background: linear-gradient(135deg, #10b981, #059669);
}
.pair-body {
    min-width: 0;
}
.pair-body h3 {
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: -.02em;
}
.pair-body p {
    font-size: 13.5px;
    color: var(--ink-500);
    line-height: 1.55;
    margin: 0;
}
.pair-arrow {
    display: none;
}

@media (min-width: 760px) {
    .pairs {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .pair {
        grid-template-columns: 1fr;
    }
    .pair-pain {
        border-bottom: 1px solid var(--s-line);
    }
}

@media (min-width: 1080px) {
    .pairs {
        grid-template-columns: 1fr;
    }
    .pair {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
    }
    .pair-pain {
        border-bottom: none;
        border-right: 1px solid var(--s-line);
    }
    .pair-arrow {
        display: grid;
        place-items: center;
        width: 44px;
        color: var(--v-500);
        font-size: 18px;
        background: var(--s-1);
    }
}

/* 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;
    z-index: 10;
}

.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: 4 columns — all plans on one line */
    .pr-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .pc {
        padding: 26px 20px;
    }

    .pc-price .amt {
        font-size: 42px;
    }

    /* 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;
    }

    /* Pricing: relax gap at desktop */
    .pr-grid {
        gap: 22px;
    }

    .pc {
        padding: 32px 24px;
    }

    .pc-price .amt {
        font-size: 48px;
    }

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

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

/* ==========================================================================
   Tina AI Section
   ========================================================================== */
.tina-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    align-items: start;
}

.tina-chat {
    background: var(--s-0);
    border: 1px solid var(--s-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--e-2);
    position: relative;
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow .3s, border-color .3s;
}

.tina-chat:hover {
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
    box-shadow: var(--e-4);
    border-color: #ddd5fb;
}

.tina-chat-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--s-line);
    background: var(--grad-soft);
}

.tina-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}

.tina-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tina-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink-900);
}

.tina-status {
    font-size: 12px;
    color: var(--ink-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tina-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ok);
    display: inline-block;
}

.tina-msgs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 420px;
    overflow-y: auto;
}

.tina-msg {
    display: flex;
    opacity: 0;
}

.tina-msg.user {
    justify-content: flex-end;
}

.tina-msg.bot {
    justify-content: flex-start;
}

.tina-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.tina-bubble.user {
    background: var(--grad);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.tina-bubble.bot {
    background: var(--s-2);
    color: var(--ink-700);
    border-bottom-left-radius: 4px;
}

.tina-action {
    display: inline-block;
    font-size: 12px;
    color: var(--v-500);
    margin-top: 4px;
    font-style: italic;
    opacity: 0;
}

.tina-caps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tina-cap {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.tina-cap-i {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex: 0 0 44px;
    box-sizing: border-box;
}

.tina-cap h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 4px;
}

.tina-cap p {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.6;
    margin: 0;
}

.tina-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.tina-stat {
    text-align: center;
}

.tina-stat strong {
    display: block;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tina-stat span {
    font-size: 14px;
    color: var(--ink-500);
}

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

    .tina-stats {
        gap: 32px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   ULTRAMODERN MOTION SYSTEM v2
   Physics-based springs, lerp-driven mouse tracking, living aurora
   gradients, word-by-word reveals, 3D tilt with glare, magnetic
   buttons, custom cursor, particle field, animated conic borders,
   scroll-driven parallax. Respects prefers-reduced-motion.
   ══════════════════════════════════════════════════════════════════ */

/* ── 0. Spring physics tokens ───────────────────────────────────── */
:root {
    --spring-out: cubic-bezier(.22, 1, .36, 1);
    --spring-back: cubic-bezier(.34, 1.56, .64, 1);
    --spring-bounce: cubic-bezier(.68, -0.55, .27, 1.55);
    --ease-smooth: cubic-bezier(.25, .46, .45, .94);
}

/* ── 1. Living aurora mesh — organic blob morphing ──────────────── */
.hero-mesh {
    position: absolute;
    inset: -10% -10% auto;
    height: 760px;
    pointer-events: none;
    overflow: hidden;
}

.hero-mesh::before,
.hero-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform, border-radius;
}

/* Blob 1: violet, top-left */
.hero-mesh::before {
    width: 55vw;
    height: 55vw;
    top: -15%;
    left: -10%;
    background: radial-gradient(closest-side, rgba(139, 92, 246, .22), transparent 72%);
    animation: blob-morph-a 20s ease-in-out infinite, blob-drift-a 25s ease-in-out infinite alternate;
}

/* Blob 2: indigo, top-right */
.hero-mesh::after {
    width: 45vw;
    height: 45vw;
    top: -10%;
    right: -8%;
    background: radial-gradient(closest-side, rgba(99, 102, 241, .20), transparent 70%);
    animation: blob-morph-b 22s ease-in-out infinite, blob-drift-b 28s ease-in-out infinite alternate;
}

/* Blob 3: sky, center (uses the existing background for the base layer) */
.hero-mesh {
    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);
    animation: blob-morph-c 24s ease-in-out infinite, blob-drift-c 22s ease-in-out infinite alternate;
}

@keyframes blob-morph-a {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%; }
    25%      { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
    50%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    75%      { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
}

@keyframes blob-morph-b {
    0%, 100% { border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%; }
    33%      { border-radius: 55% 45% 40% 60% / 45% 60% 55% 45%; }
    66%      { border-radius: 50% 50% 60% 40% / 50% 40% 45% 55%; }
}

@keyframes blob-morph-c {
    0%, 100% { filter: blur(6px) hue-rotate(0deg); }
    50%      { filter: blur(8px) hue-rotate(8deg); }
}

@keyframes blob-drift-a {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(4%, -3%) scale(1.06); }
    50%  { transform: translate(-2%, 4%) scale(0.96); }
    75%  { transform: translate(3%, 2%) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes blob-drift-b {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
    33%  { transform: translate(-4%, 2%) scale(1.04) rotate(3deg); }
    66%  { transform: translate(3%, -3%) scale(0.97) rotate(-2deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

@keyframes blob-drift-c {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(2%, -2%) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ── 2. Hero grid — subtle breathing ────────────────────────────── */
.hero-grid {
    animation: grid-breathe 8s ease-in-out infinite;
}

@keyframes grid-breathe {
    0%, 100% { opacity: 1; }
    50%      { opacity: .6; }
}

/* ── 3. Gradient text — living shimmer ──────────────────────────── */
.grad-text {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 20%, #6366f1 40%, #8b5cf6 60%, #7c3aed 80%, #6d28d9 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer-flow 5s linear infinite;
}

@keyframes shimmer-flow {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ── 4. Word-by-word hero heading reveal ────────────────────────── */
.w {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.w span {
    display: inline-block;
    transform: translateY(110%) rotate(3deg);
    opacity: 0;
    transition: transform .8s var(--spring-out), opacity .6s ease;
}

.w.in span {
    transform: translateY(0) rotate(0);
    opacity: 1;
}

/* ── 5. Hero entrance choreography ──────────────────────────────── */
.hero-pill {
    animation: hero-spring-in .8s var(--spring-back) .1s both;
}

.hero h1 {
    animation: hero-spring-in .9s var(--spring-back) .2s both;
}

.hero-sub {
    animation: hero-fade-up .8s var(--spring-out) .45s both;
}

.hero-cta {
    animation: hero-fade-up .8s var(--spring-out) .55s both;
}

.hero-micro {
    animation: hero-fade-up .8s var(--spring-out) .65s both;
}

.shot {
    animation: hero-fade-up 1s var(--spring-out) .4s both;
}

.metrics {
    animation: hero-fade-up .9s var(--spring-out) .7s both;
}

@keyframes hero-spring-in {
    from { opacity: 0; transform: translateY(40px) scale(.95); }
    to   { opacity: 1; transform: none; }
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

/* ── 6. Hero pill — living glow ring ────────────────────────────── */
.hero-pill b {
    position: relative;
    animation: pill-breathe 3s ease-in-out infinite;
}

.hero-pill b::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: var(--grad);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    animation: pill-halo 3s ease-in-out infinite;
}

@keyframes pill-breathe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
    50%      { box-shadow: 0 0 0 5px rgba(124, 58, 237, .10); }
}

@keyframes pill-halo {
    0%, 100% { opacity: 0; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.05); }
}

/* ── 7. Particle field ──────────────────────────────────────────── */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--v-400);
    opacity: 0;
    animation: particle-float var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes particle-float {
    0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0); }
    10%  { opacity: .6; transform: translateY(-20px) translateX(5px) scale(1); }
    90%  { opacity: .3; }
    100% { opacity: 0; transform: translateY(-120px) translateX(-15px) scale(.5); }
}

/* ── 8. Custom cursor glow ──────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .25), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s var(--spring-out), height .3s var(--spring-out), opacity .3s;
    mix-blend-mode: screen;
    opacity: 0;
}

.cursor-glow.visible {
    opacity: 1;
}

.cursor-glow.hovering {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle, rgba(124, 58, 237, .35), transparent 70%);
}

/* ── 9. Magnetic buttons ────────────────────────────────────────── */
.b-pri, .b-ghost, .b-white, .b-outline-w {
    position: relative;
    transition: translate .3s var(--spring-out), box-shadow .3s;
    will-change: translate;
}

.b-pri {
    overflow: hidden;
    isolation: isolate;
}

.b-pri::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .3) 50%, transparent 80%);
    transform: translateX(-120%) skewX(-15deg);
    transition: transform .7s var(--ease-smooth);
    z-index: 1;
    pointer-events: none;
}

.b-pri:hover::before {
    transform: translateX(120%) skewX(-15deg);
}

.b-pri:active {
    transform: scale(.96) !important;
}

/* Click ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    transform: scale(0);
    animation: ripple-expand .6s var(--ease-smooth) forwards;
    pointer-events: none;
    z-index: 2;
}

@keyframes ripple-expand {
    to { transform: scale(4); opacity: 0; }
}

/* ── 10. 3D card tilt with glare ────────────────────────────────── */
.bx {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --glare-x: 50%;
    --glare-y: 50%;
    --glare-opacity: 0;
    --mx: 50%;
    --my: 50%;
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .15s ease-out, box-shadow .3s, border-color .3s;
}

.bx::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px at var(--glare-x) var(--glare-y), rgba(255, 255, 255, .15), transparent 60%);
    opacity: var(--glare-opacity);
    pointer-events: none;
    z-index: 2;
    transition: opacity .2s;
}

.bx::after {
    background: radial-gradient(220px at var(--mx) var(--my), rgba(124, 58, 237, .14), transparent 70%);
}

.bx:hover {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-6px);
    box-shadow: var(--e-4);
    border-color: #ddd5fb;
}

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

.bx:hover .bx-ico {
    transform: scale(1.15) rotate(-4deg);
}

/* ── 11. Staggered bento reveal ─────────────────────────────────── */
.bento .bx.rv {
    opacity: 0;
    transform: translateY(30px) scale(.96);
    transition: opacity .7s var(--spring-out), transform .7s var(--spring-out);
    transition-delay: calc(var(--i, 0) * 70ms);
}

.bento .bx.rv.in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── 12. Scroll parallax layers ─────────────────────────────────── */
.shot, .hero-pill, .metrics {
    transition: translate .1s linear;
    will-change: translate;
}

/* ── 13. Metric counters with spring pop ────────────────────────── */
.metric-v {
    display: inline-block;
    animation: counter-spring .8s var(--spring-back) both;
    animation-delay: .7s;
}

@keyframes counter-spring {
    0%   { opacity: 0; transform: scale(.5) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.metric {
    transition: background .3s, transform .3s var(--spring-out);
}

.metric:hover {
    background: var(--s-1);
    transform: translateY(-2px);
}

.metric:hover .metric-v {
    transform: scale(1.1);
    transition: transform .3s var(--spring-back);
}

/* ── 14. Problem/Solution — dramatic side reveal ────────────────── */
.ps-card.bad.rv {
    opacity: 0;
    transform: translateX(-40px) rotate(-1deg);
    transition: opacity .8s var(--spring-out), transform .8s var(--spring-out);
}

.ps-card.good.rv {
    opacity: 0;
    transform: translateX(40px) rotate(1deg);
    transition: opacity .8s var(--spring-out), transform .8s var(--spring-out);
    transition-delay: .15s;
}

.ps-card.bad.rv.in,
.ps-card.good.rv.in {
    opacity: 1;
    transform: none;
}

/* ── 15. Pair arrow — living pulse ──────────────────────────────── */
.pair-arrow {
    animation: arrow-flow 2.5s ease-in-out infinite;
}

@keyframes arrow-flow {
    0%, 100% { transform: translateX(0) scale(1); opacity: .5; }
    50%      { transform: translateX(8px) scale(1.1); opacity: 1; }
}

/* ── 16. Terminal typing cursor ─────────────────────────────────── */
.term .m:last-child::after {
    content: '▋';
    color: var(--v-400);
    animation: cursor-blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes cursor-blink {
    0%, 50%  { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ── 17. Log rows — cascade slide ───────────────────────────────── */
.logrow {
    animation: log-cascade .6s var(--spring-out) both;
}

.logrow:nth-child(2) { animation-delay: .12s; }
.logrow:nth-child(3) { animation-delay: .24s; }

@keyframes log-cascade {
    from { opacity: 0; transform: translateX(-16px) scale(.95); }
    to   { opacity: 1; transform: none; }
}

/* ── 18. Pricing — animated conic gradient border ───────────────── */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.pc {
    position: relative;
    transition: transform .4s var(--spring-out), box-shadow .4s;
}

.pc::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--grad);
    opacity: 0;
    z-index: -1;
    transition: opacity .4s;
}

.pc:hover::after {
    opacity: .15;
}

.pc.hot {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from var(--border-angle, 0deg), #6d28d9, #7c3aed, #6366f1, #8b5cf6, #0ea5e9, #6d28d9) border-box;
    animation: border-rotate 4s linear infinite, hot-breathe 3s ease-in-out infinite;
}

@keyframes border-rotate {
    to { --border-angle: 360deg; }
}

@keyframes hot-breathe {
    0%, 100% { box-shadow: 0 0 0 1px rgba(124, 58, 237, .10), 0 24px 60px rgba(109, 40, 217, .18); }
    50%      { box-shadow: 0 0 0 1px rgba(124, 58, 237, .22), 0 32px 80px rgba(109, 40, 217, .28); }
}

.pc-badge {
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-3px); }
}

/* ── 19. Final CTA — living gradient orbs ───────────────────────── */
.fcta-card::before {
    animation: grid-pan 30s linear infinite;
}

@keyframes grid-pan {
    0%   { background-position: 0 0; }
    100% { background-position: 46px 46px; }
}

.fcta-card::after {
    animation: orb-morph 15s ease-in-out infinite, orb-drift 20s ease-in-out infinite alternate;
}

@keyframes orb-morph {
    0%, 100% { border-radius: 50%; transform: scale(1); }
    33%      { border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%; transform: scale(1.1); }
    66%      { border-radius: 55% 45% 40% 60% / 40% 60% 55% 45%; transform: scale(.95); }
}

@keyframes orb-drift {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-30px, 20px); }
    100% { transform: translate(0, 0); }
}

.fcta-in .eyebrow {
    animation: pill-breathe 3s ease-in-out infinite;
}

/* ── 20. Nav — smooth underline + glow ──────────────────────────── */
.nv-link {
    position: relative;
    transition: color .25s, background .25s;
}

.nv-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--spring-back);
}

.nv-link:hover::after {
    transform: scaleX(1);
}

/* ── 21. FAQ — smooth spring rotation ───────────────────────────── */
.fq-i {
    transition: transform .35s var(--spring-back), background .25s, color .25s, border-color .25s;
}

.fq.open .fq-i {
    transform: rotate(180deg);
}

/* ── 22. Tab pills — spring morph ───────────────────────────────── */
.feat-tabs .lf,
.faq-tabs .lf,
.lay-filters .lf {
    transition: all .3s var(--spring-back);
}

.feat-tabs .lf.on,
.faq-tabs .lf.on,
.lay-filters .lf.on {
    transform: scale(1.04);
}

/* ── 23. Marquee — speed boost ──────────────────────────────────── */
.mq-track {
    animation: scrollx 38s linear infinite;
}

.mq:hover .mq-track {
    animation-duration: 18s;
}

/* ── 24. Section eyebrow — icon float ───────────────────────────── */
.eyebrow i {
    animation: icon-float 2.5s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* ── 25. Checkmarks — staggered pop on reveal ───────────────────── */
.ps-list .fa-check,
.ps-list .fa-xmark,
.check-list .fa-check {
    opacity: 0;
}

.rv.in .ps-list .fa-check,
.rv.in .ps-list .fa-xmark,
.rv.in .check-list .fa-check {
    animation: check-spring .5s var(--spring-back) both;
}

.rv.in .ps-list li:nth-child(2) .fa-check,
.rv.in .ps-list li:nth-child(2) .fa-xmark,
.rv.in .check-list li:nth-child(2) .fa-check { animation-delay: .08s; }

.rv.in .ps-list li:nth-child(3) .fa-check,
.rv.in .ps-list li:nth-child(3) .fa-xmark,
.rv.in .check-list li:nth-child(3) .fa-check { animation-delay: .16s; }

.rv.in .ps-list li:nth-child(4) .fa-check,
.rv.in .ps-list li:nth-child(4) .fa-xmark,
.rv.in .check-list li:nth-child(4) .fa-check { animation-delay: .24s; }

.rv.in .ps-list li:nth-child(5) .fa-check,
.rv.in .ps-list li:nth-child(5) .fa-xmark,
.rv.in .check-list li:nth-child(5) .fa-check { animation-delay: .32s; }

.rv.in .ps-list li:nth-child(6) .fa-check,
.rv.in .ps-list li:nth-child(6) .fa-xmark,
.rv.in .check-list li:nth-child(6) .fa-check { animation-delay: .40s; }

@keyframes check-spring {
    0%   { opacity: 0; transform: scale(0) rotate(-60deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ── 26. Shot frame — floating with depth ───────────────────────── */
.shot-frame {
    animation: shot-bob 7s ease-in-out infinite;
}

.shot-frame:hover {
    animation-play-state: paused;
}

@keyframes shot-bob {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50%      { transform: translateY(-8px) rotateX(1deg); }
}

/* ── 27. Shot chips — float + fade ──────────────────────────────── */
.shot-chip {
    animation: floaty 5.5s ease-in-out infinite, chip-fade .8s ease .3s both;
}

@keyframes chip-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── 28. Scroll reveal variants ─────────────────────────────────── */
.rv-scale {
    opacity: 0;
    transform: scale(.9);
    transition: opacity .7s var(--spring-out), transform .7s var(--spring-out);
}

.rv-scale.in {
    opacity: 1;
    transform: scale(1);
}

.rv-blur {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(24px);
    transition: opacity .8s ease, filter .8s ease, transform .8s var(--spring-out);
}

.rv-blur.in {
    opacity: 1;
    filter: blur(0);
    transform: none;
}

.rv-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .7s var(--spring-out), transform .7s var(--spring-out);
}

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

.rv-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .7s var(--spring-out), transform .7s var(--spring-out);
}

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

/* ── 29. Tina chat — bubble cascade ─────────────────────────────── */
.tina-chat.rv.in .tina-msg.user { transform-origin: right center; animation: msg-pop-user .65s var(--spring-back) both; }
.tina-chat.rv.in .tina-msg.bot  { transform-origin: left center; animation: msg-pop-bot .65s var(--spring-back) both; }

.tina-chat.rv.in .tina-msg:nth-child(1) { animation-delay: .1s; }
.tina-chat.rv.in .tina-msg:nth-child(2) { animation-delay: .5s; }
.tina-chat.rv.in .tina-msg:nth-child(3) { animation-delay: .9s; }
.tina-chat.rv.in .tina-msg:nth-child(4) { animation-delay: 1.3s; }

@keyframes msg-pop-user {
    0%   { opacity: 0; transform: translate(40px, 16px) scale(.92); }
    60%  { transform: translate(-6px, -4px) scale(1.02); }
    100% { opacity: 1; transform: none; }
}

@keyframes msg-pop-bot {
    0%   { opacity: 0; transform: translate(-40px, 16px) scale(.92); }
    60%  { transform: translate(6px, -4px) scale(1.02); }
    100% { opacity: 1; transform: none; }
}

.tina-chat.rv.in .tina-action {
    display: inline-block;
    animation: chip-pop .45s var(--spring-back) both;
}

.tina-chat.rv.in .tina-bubble.bot .tina-action:nth-of-type(1) { animation-delay: 2.05s; }
.tina-chat.rv.in .tina-bubble.bot .tina-action:nth-of-type(2) { animation-delay: 2.2s; }

@keyframes chip-pop {
    0%   { opacity: 0; transform: scale(.6) translateY(10px); }
    70%  { transform: scale(1.1); }
    100% { opacity: 1; transform: none; }
}

.tina-dot {
    animation: dot-breathe 1.8s ease-in-out infinite;
}

@keyframes dot-breathe {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.75); }
}

/* ── 30. Footer — brand glow + social bounce ────────────────────── */
.ft-brand a img {
    transition: filter .3s, transform .3s var(--spring-out);
}

.ft-brand a:hover img {
    filter: drop-shadow(0 6px 16px rgba(124, 58, 237, .35));
    transform: scale(1.05);
}

.ft-soc a {
    transition: transform .3s var(--spring-back);
}

.ft-soc a:hover {
    transform: translateY(-4px) scale(1.15);
}

/* ── 31. Verdict card (compare page compat) ─────────────────────── */
.verdict-card {
    transition: transform .35s var(--spring-out), box-shadow .35s;
}

.verdict-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(99, 102, 241, .20);
}

/* ── 32. Hairline — shimmer sweep ───────────────────────────────── */
.hairline {
    position: relative;
    overflow: hidden;
}

.hairline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .15), transparent);
    transform: translateX(-100%);
    animation: hairline-sweep 4s ease-in-out infinite;
}

@keyframes hairline-sweep {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* ── 33. Reduced motion — disable everything ────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero-mesh,
    .hero-mesh::before,
    .hero-mesh::after,
    .hero-grid,
    .grad-text,
    .hero-pill b,
    .hero-pill b::after,
    .hero-pill,
    .hero h1,
    .hero-sub,
    .hero-cta,
    .hero-micro,
    .shot,
    .metrics,
    .metric-v,
    .metric,
    .pair-arrow,
    .term .m:last-child::after,
    .logrow,
    .pc.hot,
    .pc-badge,
    .fcta-card::before,
    .fcta-card::after,
    .fcta-in .eyebrow,
    .eyebrow i,
    .shot-frame,
    .shot-chip,
    .tina-msg,
    .tina-dot,
    .tina-action,
    .mq-track,
    .hairline::after,
    .particle,
    .cursor-glow,
    .rv.in .ps-list .fa-check,
    .rv.in .ps-list .fa-xmark,
    .rv.in .check-list .fa-check {
        animation: none !important;
    }

    .w span {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .rv-scale,
    .rv-blur,
    .rv-left,
    .rv-right {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .bx {
        transform: none !important;
    }

    .bx:hover {
        transform: translateY(-5px) !important;
    }

    .b-pri::before,
    .ripple {
        display: none !important;
    }

    .ps-list .fa-check,
    .ps-list .fa-xmark,
    .check-list .fa-check {
        opacity: 1 !important;
    }

    .tina-msg,
    .tina-action,
    .tina-chat {
        opacity: 1 !important;
        transform: none !important;
    }

    .cursor-glow {
        display: none !important;
    }
}
