/* ============================================================
   CloudLens AI — Landing v2 (modern dark / techy redesign)
   Self-contained. Pairs with landing-v2.html + js/landing.js
   ============================================================ */

:root {
    /* Core dark palette */
    --bg-0: #05060f;
    --bg-1: #080a18;
    --bg-2: #0c0f22;
    --surface: rgba(255, 255, 255, 0.035);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);

    /* Text */
    --text: #eef1fb;
    --text-soft: #b6bdd4;
    --text-dim: #7f88a3;

    /* Accents */
    --accent: #5b8cff;
    --accent-2: #22d3ee;
    --violet: #8b5cff;
    --grad: linear-gradient(120deg, #5b8cff 0%, #22d3ee 55%, #8b5cff 100%);
    --grad-soft: linear-gradient(120deg, rgba(91, 140, 255, .18), rgba(34, 211, 238, .12), rgba(139, 92, 255, .18));

    /* Status */
    --good: #34d399;
    --warn: #fbbf24;
    --bad: #fb7185;

    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1180px;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Light mode overrides (theme toggle sets data-theme="light") */
:root[data-theme="light"] {
    --bg-0: #f6f8fe;
    --bg-1: #ffffff;
    --bg-2: #eef2fb;
    --surface: #ffffff;
    --surface-2: #f4f7ff;
    --border: rgba(15, 23, 42, 0.10);
    --border-strong: rgba(15, 23, 42, 0.18);
    --text: #0c1226;
    --text-soft: #3c4663;
    --text-dim: #6b7390;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    background: var(--bg-0);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Ambient page background: aurora blobs + grid */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(60rem 40rem at 12% -8%, rgba(91, 140, 255, .22), transparent 60%),
        radial-gradient(50rem 40rem at 95% 5%, rgba(139, 92, 255, .18), transparent 55%),
        radial-gradient(45rem 38rem at 50% 110%, rgba(34, 211, 238, .12), transparent 60%);
    pointer-events: none;
}
:root[data-theme="light"] body::before { opacity: .5; }

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
    pointer-events: none;
}
:root[data-theme="light"] body::after {
    background-image:
        linear-gradient(rgba(15, 23, 42, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .05) 1px, transparent 1px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem;
    padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
    cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #04122e; background: var(--grad);
    box-shadow: 0 8px 30px rgba(91, 140, 255, .35);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(91, 140, 255, .5); }
.btn-ghost {
    color: var(--text); background: var(--surface-2);
    border-color: var(--border-strong); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.landing-nav {
    position: sticky; top: 0; left: 0; right: 0; z-index: 100;
    transition: all .3s ease;
    padding: 14px 0;
}
.landing-nav.scrolled {
    background: color-mix(in srgb, var(--bg-0) 78%, transparent);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.brand-logo { width: 34px; height: 34px; border-radius: 9px; }
.brand-name .ai { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { color: var(--text-soft); font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--text); }
.btn-icon { background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
    width: 38px; height: 38px; border-radius: 10px; font-size: 1.05rem; cursor: pointer; display: grid; place-items: center; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* ---------- Announcement bar ---------- */
.announce {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 9px 16px; font-size: .85rem; color: var(--text-soft);
    background: var(--grad-soft); border-bottom: 1px solid var(--border);
    position: relative; z-index: 101;
}
.announce .tag { font-weight: 700; color: var(--text);
    background: var(--surface-2); border: 1px solid var(--border-strong);
    padding: 2px 10px; border-radius: 999px; font-size: .74rem; letter-spacing: .03em; }
.announce a { color: var(--accent-2); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
    padding: 64px 0 90px;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--border-strong);
    font-size: .8rem; font-weight: 500; color: var(--text-soft); margin-bottom: 22px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 10px var(--good); }
.hero h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.7rem); line-height: 1.05; letter-spacing: -.02em;
    margin-bottom: 20px;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.12rem; color: var(--text-soft); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: .85rem; }
.hero-trust .checks { display: flex; }
.hero-trust .checks span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
    background: var(--surface-2); border: 1px solid var(--border); margin-left: -7px; font-size: .7rem; }

/* Hero product preview */
.preview {
    position: relative; border-radius: 20px; padding: 16px;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.preview-bar { display: flex; gap: 6px; margin-bottom: 14px; padding: 0 4px; }
.preview-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.preview-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding: 0 4px; }
.preview-head h4 { font-family: var(--font-display); font-size: 1rem; }
.preview-head .badge { font-size: .72rem; color: var(--good); background: rgba(52, 211, 153, .12); padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(52, 211, 153, .3); }
.score-row { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.score-ring {
    width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
    background: conic-gradient(var(--accent-2) 0% 87%, rgba(255, 255, 255, .08) 87% 100%);
    display: grid; place-items: center;
}
.score-ring .inner { width: 76px; height: 76px; border-radius: 50%; background: var(--bg-1); display: grid; place-items: center; flex-direction: column; }
.score-ring .num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; }
.score-ring .lbl { font-size: .62rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
.pillars { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.pbar { display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: center; font-size: .72rem; color: var(--text-soft); }
.pbar .track { height: 7px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.pbar .fill { height: 100%; border-radius: 999px; background: var(--grad); }
.findings { display: flex; flex-direction: column; gap: 8px; }
.finding { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px;
    background: var(--surface); border: 1px solid var(--border); font-size: .78rem; }
.finding .sev { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.finding .sev.h { background: var(--bad); } .finding .sev.m { background: var(--warn); } .finding .sev.l { background: var(--good); }
.finding .txt { color: var(--text-soft); }

/* ---------- Section primitives ---------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.eyebrow { font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; display: inline-block; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* ---------- Logo marquee ---------- */
.marquee-wrap { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-label { text-align: center; color: var(--text-dim); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.marquee { display: flex; gap: 56px; width: max-content; animation: scroll 26s linear infinite; opacity: .8; }
.marquee:hover { animation-play-state: paused; }
.marquee span { display: flex; align-items: center; gap: 10px; color: var(--text-soft); font-weight: 600; font-size: 1rem; white-space: nowrap; }
.marquee img { height: 26px; filter: grayscale(1) brightness(2); }
:root[data-theme="light"] .marquee img { filter: grayscale(1); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.stat-card .stat-number, .stat-card .stat-value { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card .stat-label { color: var(--text-dim); font-size: .88rem; margin-top: 6px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); position: relative; transition: border-color .2s, transform .2s; }
.step:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .94rem; }
.step .ico { font-size: 1.5rem; position: absolute; top: 28px; right: 26px; opacity: .9; }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(160px, auto); gap: 18px; }
.tile { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
    position: relative; overflow: hidden; transition: border-color .25s, transform .25s; }
.tile::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .25s; pointer-events: none; }
.tile:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.tile:hover::before { opacity: .5; }
.tile > * { position: relative; }
.tile .ico { font-size: 1.7rem; margin-bottom: 16px; }
.tile h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 10px; }
.tile p { color: var(--text-soft); font-size: .94rem; }
.tile ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.tile li { color: var(--text-soft); font-size: .87rem; display: flex; gap: 8px; align-items: center; }
.tile li::before { content: '✓'; color: var(--accent-2); font-weight: 700; }
.tile-lg { grid-column: span 3; }
.tile-md { grid-column: span 3; }
.tile-sm { grid-column: span 2; }
@media (max-width: 900px) { .tile-lg, .tile-md, .tile-sm { grid-column: span 6; } }

/* ---------- Capability rows ---------- */
.cap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.cap:nth-child(even) .cap-visual { order: -1; }
.cap h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -.01em; margin-bottom: 14px; }
.cap .eyebrow { margin-bottom: 12px; }
.cap p { color: var(--text-soft); margin-bottom: 18px; }
.cap ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cap li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); font-size: .95rem; }
.cap li .ck { color: var(--accent-2); font-weight: 700; margin-top: 1px; }
.cap-visual { padding: 22px; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-strong); }

/* mini cost widget */
.cost-rows { display: flex; flex-direction: column; gap: 10px; }
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); font-size: .85rem; }
.cost-row .svc { color: var(--text-soft); }
.cost-row .amt { font-family: var(--font-display); font-weight: 600; }
.cost-total { display: flex; justify-content: space-between; align-items: center; padding: 14px; margin-top: 4px; border-radius: 10px; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.cost-total .amt { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.cost-save { color: var(--good); font-size: .8rem; }

/* compliance chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: .82rem; color: var(--text-soft); display: flex; gap: 8px; align-items: center; }
.chip .ok { color: var(--good); }

/* ---------- Providers ---------- */
.providers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.provider { padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .25s, border-color .25s; }
.provider:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.provider .logo { height: 38px; display: flex; align-items: center; margin-bottom: 18px; }
.provider .logo img { height: 34px; filter: brightness(0) invert(1); opacity: .92; }
:root[data-theme="light"] .provider .logo img { filter: none; }
.provider h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }
.status.available { color: var(--good); background: rgba(52, 211, 153, .12); border: 1px solid rgba(52, 211, 153, .3); }
.status.soon { color: var(--warn); background: rgba(251, 191, 36, .1); border: 1px solid rgba(251, 191, 36, .28); }
.provider p { color: var(--text-soft); font-size: .9rem; margin-bottom: 16px; }
.provider ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.provider li { color: var(--text-soft); font-size: .85rem; display: flex; gap: 8px; }
.provider li::before { content: '→'; color: var(--accent); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pricing-card { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .25s, border-color .25s; position: relative; }
.pricing-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.pricing-card.featured { border-color: transparent; background:
    linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
    var(--grad) border-box; border: 1px solid transparent; box-shadow: 0 20px 60px rgba(91, 140, 255, .2); }
.pricing-badge { font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.pricing-badge.popular { color: var(--accent-2); }
.price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; }
.price-credits { color: var(--text-soft); font-size: .95rem; margin: 6px 0 18px; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
.pricing-card li { color: var(--text-soft); font-size: .84rem; display: flex; gap: 9px; align-items: flex-start; }
.pricing-card li .ck { color: var(--accent-2); font-weight: 700; }
.btn-pricing { width: 100%; padding: 12px; border-radius: 11px; font-weight: 600; font-size: .9rem; cursor: pointer;
    background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text); transition: all .2s; }
.btn-pricing:hover { background: var(--surface); transform: translateY(-2px); }
.pricing-card.featured .btn-pricing { background: var(--grad); border-color: transparent; color: #04122e; box-shadow: 0 8px 24px rgba(91, 140, 255, .35); }
.pricing-note { text-align: center; margin-top: 30px; color: var(--text-dim); font-size: .88rem; }
.pricing-note a { color: var(--accent-2); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.about-grid p { color: var(--text-soft); margin-bottom: 16px; }
.about-cards { display: flex; flex-direction: column; gap: 14px; }
.about-card { padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.about-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; }
.about-card p { color: var(--text-soft); font-size: .9rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); cursor: pointer;
    padding: 20px 22px; font-size: 1.02rem; font-weight: 600; font-family: var(--font-body);
    display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { color: var(--accent-2); font-size: 1.4rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--text-soft); font-size: .94rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 70px 40px; border-radius: 28px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-strong); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: .7; pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); font-size: 1.08rem; max-width: 520px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer p.tagline { color: var(--text-soft); font-size: .9rem; max-width: 320px; margin-bottom: 18px; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-badge { font-size: .75rem; color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); padding: 5px 11px; border-radius: 999px; }
.footer-col h4 { font-family: var(--font-display); font-size: .92rem; margin-bottom: 14px; color: var(--text); }
.footer-col a { display: block; color: var(--text-soft); font-size: .88rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 44px; padding-top: 24px; text-align: center; color: var(--text-dim); font-size: .85rem; }

/* ---------- Scroll reveal ---------- */
.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; } .delay-3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
    .preview { max-width: 480px; }
    .about-grid { grid-template-columns: 1fr; }
    .cap, .cap:nth-child(even) .cap-visual { grid-template-columns: 1fr; }
    .cap-visual { order: 0 !important; }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .providers-grid, .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .nav-links { display: none; }
    .nav-links.mobile-active { display: flex; position: absolute; top: 64px; right: 16px; left: 16px;
        flex-direction: column; gap: 16px; padding: 22px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); }
    .nav-toggle { display: block; }
    .stats-band, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .preview { animation: none; } .marquee { animation: none; }
    .scroll-reveal { transition: none; opacity: 1; transform: none; }
}
