:root {
    --bg: #06061A;
    --bg2: #0A0A26;
    --bg3: #101038;
    --glass: rgba(160, 150, 255, .04);
    --glass-border: rgba(255, 255, 255, .06);
    --glass-hover: rgba(255, 255, 255, .09);
    --glow-amber: rgba(255, 157, 27, .15);
    --glow-red: rgba(255, 53, 53, .12);
    --amber: #FF9D1B;
    --red: #FF3535;
    --grad: linear-gradient(135deg, #FF9D1B 0%, #FF3535 100%);
    --text: #EDECF4;
    --text2: #8A88A8;
    --text3: #5C5A78;
    --border: rgba(255, 255, 255, .06);
    --r: 16px;
    --r-sm: 10px;
    --r-xl: 24px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    --max: 1120px;
    --hdr: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.72;
    font-size: 16px;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: var(--amber); text-decoration: none; transition: color .25s; }
a:hover { color: #ffb84d; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #252548; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #353560; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════
   HEADER - floating pill nav
   ═══════════════════════════════════════════════ */

.header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 900px;
    height: var(--hdr);
    background: rgba(10, 10, 38, .72);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 8px 0 20px;
}

.header-inner { display: flex; align-items: center; width: 100%; gap: 8px; }

.logo { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; color: var(--text); flex-shrink: 0; }
.logo img, .logo svg { width: 30px; height: 30px; }
.logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
    color: var(--text2);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 100px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 11px 24px; border-radius: 100px; font-size: 14px; font-weight: 600;
    font-family: inherit; cursor: pointer; border: none;
    transition: transform .15s, box-shadow .25s, opacity .2s, background .25s;
    text-decoration: none; line-height: 1.3;
}
.btn:active { transform: scale(.96); }

.btn-primary {
    background: var(--grad); color: #fff;
    box-shadow: 0 4px 24px rgba(255, 53, 53, .25), 0 0 0 0 rgba(255, 157, 27, 0);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(255, 53, 53, .35), 0 0 80px rgba(255, 157, 27, .08); color: #fff; }

.btn-outline {
    background: transparent; color: var(--amber);
    border: 1.5px solid rgba(255, 157, 27, .4);
    backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255, 157, 27, .08); color: var(--amber); border-color: var(--amber); }

.btn-ghost { background: rgba(255, 255, 255, .06); color: var(--text); border: 1px solid var(--glass-border); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn svg, .btn i { font-size: 16px; }

.header-cta { margin-left: auto; flex-shrink: 0; }

.hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
    color: var(--text); margin-left: 4px;
}
.hamburger svg { width: 24px; height: 24px; }

.mobile-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 6, 26, .97); backdrop-filter: blur(20px);
    z-index: 999; padding: 100px 28px 28px; overflow-y: auto;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 18px; color: var(--text2); border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .btn { margin-top: 24px; width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════
   HERO - centered, gradient orbs, oversized text
   ═══════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 157, 27, .14), transparent 70%);
    top: -10%; right: -8%;
}
.hero-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 53, 53, .1), transparent 70%);
    bottom: -5%; left: -10%;
}
.hero-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(100, 80, 220, .08), transparent 70%);
    top: 30%; left: 20%;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 100px;
    background: var(--glass); border: 1px solid var(--glass-border);
    font-size: 13px; font-weight: 500; color: var(--text2);
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
}
.hero-label i { color: var(--amber); }

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}
.hero h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc {
    color: var(--text2);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   STATS TICKER - horizontal strip
   ═══════════════════════════════════════════════ */

.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    padding: 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
}

.ticker-item strong {
    font-size: 20px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.ticker-sep {
    color: var(--border);
    font-size: 24px;
    user-select: none;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SECTIONS - varied backgrounds
   ═══════════════════════════════════════════════ */

.sec { padding: 96px 0; position: relative; }
.sec-dark { background: var(--bg); }
.sec-indigo { background: var(--bg2); }

.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin-left: auto; margin-right: auto; }

.sec-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.sec-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 16px;
}

.sec-desc {
    color: var(--text2);
    font-size: 16px;
    max-width: 640px;
    line-height: 1.72;
}

/* ═══════════════════════════════════════════════
   DIAGONAL SEPARATOR
   ═══════════════════════════════════════════════ */

.diag {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
}
.diag svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.diag-dark svg { color: var(--bg); }
.diag-indigo svg { color: var(--bg2); }

/* ═══════════════════════════════════════════════
   GLASS CARDS
   ═══════════════════════════════════════════════ */

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform .25s, border-color .3s, background .3s;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 157, 27, .2);
    background: var(--glass-hover);
}

.glass-card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(255, 157, 27, .12), rgba(255, 53, 53, .08));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--amber);
    font-size: 22px;
}

.glass-card { text-align: center; }
.glass-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.glass-card p { color: var(--text2); font-size: 15px; line-height: 1.68; }

/* ═══════════════════════════════════════════════
   BENTO GRID
   ═══════════════════════════════════════════════ */

.bento {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.bento-wide { grid-column: 1 / -1; }
.bento-tall { grid-row: span 2; }

.bento .glass-card { height: 100%; display: flex; flex-direction: column; }

/* ═══════════════════════════════════════════════
   FEATURE ROWS (horizontal icon+text)
   ═══════════════════════════════════════════════ */

.feat-rows { display: flex; flex-direction: column; gap: 1px; }

.feat-row {
    display: flex; align-items: center; gap: 20px;
    padding: 22px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: background .2s;
}
.feat-row:first-child { border-radius: var(--r) var(--r) 0 0; }
.feat-row:last-child { border-radius: 0 0 var(--r) var(--r); }
.feat-row:hover { background: var(--glass-hover); }

.feat-row-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, rgba(255, 157, 27, .1), rgba(255, 53, 53, .06));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--amber); font-size: 20px;
}

.feat-row h3 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.feat-row p { color: var(--text2); font-size: 14px; line-height: 1.55; }

/* ═══════════════════════════════════════════════
   TWO COLUMN
   ═══════════════════════════════════════════════ */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.content-block h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.content-block p { color: var(--text2); font-size: 15px; line-height: 1.72; margin-bottom: 16px; }

.content-block ul { list-style: none; margin: 16px 0; }
.content-block ul li {
    padding: 9px 0 9px 24px; position: relative;
    color: var(--text2); font-size: 15px; line-height: 1.6;
}
.content-block ul li::before {
    content: '';
    position: absolute; left: 0; top: 16px;
    width: 6px; height: 6px;
    background: var(--grad); border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   STAT BLOCKS (oversized numbers)
   ═══════════════════════════════════════════════ */

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.stat-block {
    text-align: center;
    padding: 32px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.stat-block::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 2px;
    background: var(--grad);
    border-radius: 0 0 2px 2px;
}

.stat-num {
    font-size: 36px; font-weight: 800;
    font-family: var(--mono);
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.1; margin-bottom: 6px;
}

.stat-label { font-size: 13px; color: var(--text3); font-weight: 500; }

/* ═══════════════════════════════════════════════
   MARQUEE (provider ticker)
   ═══════════════════════════════════════════════ */

.marquee {
    overflow: hidden;
    padding: 20px 0;
    margin: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex; align-items: center;
    gap: 40px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════ */

.table-wrap {
    overflow-x: auto;
    border-radius: var(--r);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(12px);
    margin: 24px 0;
}

.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }

.table-wrap th, .table-wrap td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }

.table-wrap th {
    font-weight: 600; font-size: 11px;
    text-transform: uppercase; letter-spacing: .8px;
    color: var(--text3); white-space: nowrap;
    background: rgba(255, 255, 255, .02);
}

.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: rgba(255, 255, 255, .02); }

.table-wrap td { color: var(--text2); }

/* ═══════════════════════════════════════════════
   BLOCKQUOTE
   ═══════════════════════════════════════════════ */

.quote {
    position: relative;
    padding: 24px 28px 24px 32px;
    margin: 32px 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    color: var(--text2);
    line-height: 1.72;
    font-size: 15px;
    backdrop-filter: blur(12px);
}
.quote::before {
    content: '';
    position: absolute; left: 0; top: 12px; bottom: 12px;
    width: 3px; border-radius: 3px;
    background: var(--grad);
}

/* ═══════════════════════════════════════════════
   TIMELINE (for instructions)
   ═══════════════════════════════════════════════ */

.timeline { position: relative; padding-left: 48px; }

.timeline::before {
    content: '';
    position: absolute; left: 17px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--amber) 0%, var(--red) 100%);
    opacity: .3;
    border-radius: 2px;
}

.tl-item {
    position: relative;
    padding: 0 0 36px 0;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
    position: absolute;
    left: -40px; top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 16px var(--glow-amber), 0 0 4px rgba(255, 157, 27, .5);
}

.tl-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg);
    border-radius: 50%;
}

.tl-item h3 {
    font-size: 17px; font-weight: 700; margin-bottom: 6px;
}

.tl-item p {
    color: var(--text2); font-size: 15px; line-height: 1.68;
}

/* ═══════════════════════════════════════════════
   BONUS TIERS (visual)
   ═══════════════════════════════════════════════ */

.tiers { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }

.tier {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    backdrop-filter: blur(12px);
    transition: border-color .2s;
}
.tier:hover { border-color: rgba(255, 157, 27, .2); }

.tier-num {
    font-family: var(--mono);
    font-size: 13px; font-weight: 700;
    color: var(--amber);
    padding: 6px 14px;
    background: rgba(255, 157, 27, .08);
    border-radius: 100px;
    text-align: center;
    white-space: nowrap;
}

.tier-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.tier-info p { font-size: 13px; color: var(--text3); }

.tier-value {
    font-family: var(--mono);
    font-size: 22px; font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════════ */

.calc {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 36px;
    max-width: 540px;
    margin: 40px 0;
    backdrop-filter: blur(16px);
}

.calc h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.calc h3 i { color: var(--amber); }

.calc-field {
    position: relative;
    margin-bottom: 8px;
}

.calc-field input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}
.calc-field input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 157, 27, .1);
}
.calc-field input::placeholder { color: var(--text3); }

.calc-hint { font-size: 13px; color: var(--text3); margin-bottom: 20px; padding-left: 20px; }

.calc-result {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.calc-result-item {
    text-align: center;
    padding: 18px 8px;
    background: rgba(0, 0, 0, .25);
    border-radius: var(--r);
    border: 1px solid var(--border);
}

.calc-result-label {
    font-size: 11px; color: var(--text3);
    text-transform: uppercase; letter-spacing: .8px;
    margin-bottom: 6px;
}

.calc-result-value {
    font-size: 18px; font-weight: 700;
    font-family: var(--mono);
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════════════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════════════ */

.cta-block {
    position: relative;
    border-radius: var(--r-xl);
    padding: 48px;
    text-align: center;
    margin: 48px 0;
    overflow: hidden;
    background: var(--bg3);
    border: 1px solid rgba(255, 157, 27, .15);
}

.cta-block::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 157, 27, .1), transparent 70%);
    pointer-events: none;
}

.cta-block h3 {
    font-size: 24px; font-weight: 800; margin-bottom: 12px;
    position: relative;
}
.cta-block p {
    color: var(--text2); margin-bottom: 28px; font-size: 16px;
    position: relative;
}
.cta-block .btn { position: relative; }

/* ═══════════════════════════════════════════════
   TAGS
   ═══════════════════════════════════════════════ */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag {
    padding: 6px 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text2);
}

/* ═══════════════════════════════════════════════
   SLOTS SCROLL
   ═══════════════════════════════════════════════ */

.slot-scroll {
    display: flex; gap: 16px;
    overflow-x: auto;
    padding: 4px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: #252548 transparent;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.slot-card {
    min-width: 220px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 24px;
    backdrop-filter: blur(12px);
    flex-shrink: 0;
    transition: transform .2s, border-color .3s;
}
.slot-card:hover { transform: translateY(-4px); border-color: rgba(255, 157, 27, .2); }

.slot-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(255, 157, 27, .1), rgba(255, 53, 53, .06));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    color: var(--amber); font-size: 20px;
}

.slot-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.slot-card p { font-size: 13px; color: var(--text3); }

/* ═══════════════════════════════════════════════
   SUPPORT CARDS (different sizes)
   ═══════════════════════════════════════════════ */

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.support-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform .25s, border-color .3s;
    display: flex; flex-direction: column; align-items: center;
}
.support-card:hover { transform: translateY(-4px); border-color: rgba(255, 157, 27, .2); }
.support-card.featured {
    background: linear-gradient(180deg, rgba(255, 157, 27, .06), var(--glass));
    border-color: rgba(255, 157, 27, .15);
    padding: 40px 24px;
}

.support-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(255, 157, 27, .12), rgba(255, 53, 53, .08));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--amber); font-size: 24px;
}

.support-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.support-card p { color: var(--text2); font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color .3s;
}
.faq-item.open { border-color: rgba(255, 157, 27, .2); }

.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; padding: 18px 22px;
    cursor: pointer; font-weight: 600; font-size: 15px;
    user-select: none; transition: color .2s;
}
.faq-question:hover { color: var(--amber); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--text3); transition: transform .3s, color .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--amber); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner { padding: 0 22px 18px; color: var(--text2); font-size: 14px; line-height: 1.72; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p { color: var(--text3); font-size: 14px; line-height: 1.65; margin-top: 16px; max-width: 300px; }

.footer h4 {
    font-family: var(--mono);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text3); margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text2); font-size: 14px; }
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
    padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}

.footer-copy { font-size: 13px; color: var(--text3); }
.footer-disc { font-size: 12px; color: var(--text3); max-width: 520px; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════ */

.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--grad); border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 53, 53, .25), 0 0 40px rgba(255, 157, 27, .1);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .3s, visibility .3s, transform .3s, box-shadow .3s;
    z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 8px 32px rgba(255, 53, 53, .4), 0 0 60px rgba(255, 157, 27, .15); }
.scroll-top svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .support-card.featured { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: var(--r);
        padding: 0 12px 0 16px;
    }
    .nav { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: block; }

    .hero { min-height: auto; padding: 120px 24px 60px; }
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 16px; }

    .sec { padding: 64px 0; }

    .split { grid-template-columns: 1fr; gap: 36px; }
    .bento { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .bento-tall { grid-row: auto; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .support-grid { grid-template-columns: 1fr; }

    .tier { grid-template-columns: 80px 1fr; gap: 12px; }
    .tier-value { grid-column: 1 / -1; text-align: center; }

    .cta-block { padding: 32px 20px; border-radius: var(--r); }
    .cta-block h3 { font-size: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .calc { padding: 24px; border-radius: var(--r); }
    .calc-result { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .hero { padding: 100px 16px 48px; }
    .hero h1 { font-size: 28px; }
    .container { padding: 0 16px; }
    .sec { padding: 48px 0; }
    .sec-title { font-size: 24px; }
    .glass-card { padding: 20px; }
    .stat-num { font-size: 28px; }
    .diag { height: 48px; }
    .scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
    .ticker-item { padding: 14px 24px; }
    .ticker-item strong { font-size: 16px; }
    .slot-scroll { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
}
