/* AlphaSeeq — Energy Intelligence Platform */

:root {
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dark: #9a7a2e;
    --bg: #080c14;
    --bg2: #0d1220;
    --bg3: #121928;
    --border: #1e2a40;
    --text: #e8edf5;
    --text-dim: #7a8aab;
    --green: #27ae60;
    --red: #e74c3c;
    --card: #0f1824;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ====== TICKER ====== */
#ticker-bar {
    background: #050810;
    border-bottom: 1px solid var(--border);
    height: 36px;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

#ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

#ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 500;
    border-right: 1px solid var(--border);
}

.ticker-symbol { color: var(--gold); font-weight: 600; }
.ticker-price { color: var(--text); }
.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }
.ticker-loading { color: var(--text-dim); font-size: 12px; padding: 0 20px; }

/* ====== NAV ====== */
#navbar {
    position: sticky;
    top: 0;
    background: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    height: 60px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { text-decoration: none; font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.logo-alpha { color: var(--text); }
.logo-seeq { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--gold) !important;
    color: #000 !important;
    padding: 7px 18px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta.active { background: var(--gold-dark) !important; }

.nav-marine {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 6px 14px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: background 0.2s, color 0.2s !important;
    white-space: nowrap;
}
.nav-marine:hover { background: var(--gold) !important; color: #000 !important; }

.nav-login {
    border: 1px solid var(--border) !important;
    color: var(--text-dim) !important;
    padding: 6px 14px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    transition: border-color 0.2s, color 0.2s !important;
    white-space: nowrap;
}
.nav-login:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

.nav-subscriber {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-subscriber-email {
    font-size: 12px;
    color: var(--text-dim);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-logout-btn {
    font-size: 11px;
    color: var(--text-dim);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    text-decoration: underline;
}
.nav-logout-btn:hover { color: var(--red); }

/* ====== HERO ====== */
#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8,12,20,0.97) 0%, rgba(8,12,20,0.85) 50%, rgba(8,12,20,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 720px;
    padding-left: 80px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}

#hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hstat { text-align: left; }
.hstat-num { display: block; font-size: 32px; font-weight: 700; color: var(--gold); }
.hstat-label { font-size: 12px; color: var(--text-dim); line-height: 1.4; }
.hstat-div { width: 1px; height: 40px; background: var(--border); }

.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary.large { padding: 16px 36px; font-size: 15px; }

.btn-ghost {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ====== SECTIONS ====== */
section { padding: 100px 0; }

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-sub {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* ====== PRICES ====== */
#prices-panel {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: border-color 0.2s;
}

.price-card:hover { border-color: var(--gold-dark); }

.price-card.skeleton {
    height: 100px;
    background: linear-gradient(90deg, var(--card) 25%, #1a2438 50%, var(--card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.pc-symbol { font-size: 11px; font-weight: 600; color: var(--text-dim); letter-spacing: 1px; margin-bottom: 4px; }
.pc-name { font-size: 13px; color: var(--text-dim); margin-bottom: 10px; }
.pc-price { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pc-change { font-size: 12px; font-weight: 600; }
.pc-change.up { color: var(--green); }
.pc-change.down { color: var(--red); }
.price-note { font-size: 11px; color: var(--text-dim); }

.price-group-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 20px 0 10px;
}

.price-group-label:first-child { margin-top: 0; }

.price-group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
    margin-bottom: 8px;
}

/* ====== METHODOLOGY ====== */
#methodology { background: var(--bg); }

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.method-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    transition: border-color 0.2s;
}

.method-card:hover { border-color: var(--gold-dark); }

.method-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.method-icon svg { width: 100%; height: 100%; }

.method-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.method-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.method-bullets { list-style: none; }
.method-bullets li {
    font-size: 13px;
    color: var(--text-dim);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.method-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 5px;
}

/* ====== TRACK RECORD ====== */
#track-record {
    background: var(--bg2);
}

.track-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.tf {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 7px 18px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.tf:hover, .tf.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
}

.track-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.track-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 900px;
}

.track-table thead {
    background: #0a1020;
    position: sticky;
    top: 0;
}

.track-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.track-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(30,42,64,0.5);
    color: var(--text-dim);
    white-space: nowrap;
}

.track-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.track-table tbody tr:last-child td { border-bottom: none; }

.td-commodity { font-weight: 600; color: var(--text); }
.td-call-bull { color: var(--green); font-weight: 600; }
.td-call-bear { color: var(--red); font-weight: 600; }
.td-price { font-family: 'Consolas', monospace; color: var(--text); }
.td-target { font-family: 'Consolas', monospace; }

.badge-correct {
    background: rgba(39,174,96,0.15);
    color: var(--green);
    border: 1px solid rgba(39,174,96,0.3);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-incorrect {
    background: rgba(231,76,60,0.12);
    color: var(--red);
    border: 1px solid rgba(231,76,60,0.3);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.badge-pending {
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* Redaction styles for active/pending calls */
.redact {
    display: inline-block;
    background: #2a3550;
    border-radius: 2px;
    height: 12px;
    vertical-align: middle;
    width: 60px;
}
.redact.wide { width: 100px; }
.redact.med  { width: 70px; }
.redact.full { width: 160px; }

.restricted-badge {
    display: inline-block;
    background: #c9a84c;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

.badge-open {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse-open 2s ease-in-out infinite;
}

@keyframes pulse-open {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pending-row td {
    opacity: 0.85;
}

.pending-row:hover td {
    background: rgba(201,168,76,0.04);
}

.track-summary {
    display: flex;
    gap: 40px;
    padding: 28px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.ts-item { display: flex; flex-direction: column; gap: 4px; }
.ts-num { font-size: 28px; font-weight: 700; }
.ts-num.green { color: var(--green); }
.ts-num.red { color: var(--red); }
.ts-num.gold { color: var(--gold); }
.ts-label { font-size: 12px; color: var(--text-dim); }

/* ====== PLATFORM ====== */
#intelligence { background: var(--bg); }

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.platform-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    opacity: 0;
    transition: opacity 0.2s;
}

.platform-card:hover { border-color: var(--gold-dark); }
.platform-card:hover::before { opacity: 1; }

.platform-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.platform-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ====== GALLERY ====== */
#gallery { padding: 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 4px;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    background-color: var(--bg3);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ====== ABOUT ====== */
#about { background: var(--bg2); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-badges {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.badge {
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    filter: brightness(0.85);
}

/* ====== CTA ====== */
#cta-section {
    background: linear-gradient(135deg, #0d1625 0%, #0a1020 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

#cta-section h2 { margin-bottom: 16px; }
#cta-section p { color: var(--text-dim); margin-bottom: 36px; font-size: 16px; }

/* ====== FOOTER ====== */
#footer {
    background: #050810;
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

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

.footer-logo { font-size: 22px; font-weight: 700; letter-spacing: 2px; margin-bottom: 14px; }

.footer-brand p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-links a, .footer-contact p {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.footer-bottom p:first-child {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 11px;
    color: #3a4a6a;
    line-height: 1.7;
}

/* ====== SUBSCRIBE PAGE ====== */
#subscribe-hero {
    background: var(--bg2);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

#subscribe-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 16px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.bt-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
}

.save-badge {
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 2px;
    margin-left: 6px;
}

.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--text-dim);
    border-radius: 50%;
    left: 3px;
    top: 3px;
    transition: transform 0.2s, background 0.2s;
}
input:checked + .toggle-slider { background: var(--gold-dark); }
input:checked + .toggle-slider::before { transform: translateX(20px); background: var(--gold); }

#plans { background: var(--bg); }

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

.plan-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.plan-card:hover { border-color: var(--gold-dark); transform: translateY(-2px); }

.plan-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, #14203a 0%, #0f1828 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 3px;
    white-space: nowrap;
}

.plan-header { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-name { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.plan-price { margin-bottom: 6px; }
.price-amt { font-size: 44px; font-weight: 700; color: var(--text); }
.plan-price span { font-size: 15px; color: var(--text-dim); }
.plan-billing { font-size: 12px; color: var(--text-dim); }
.price-annual.hidden, .price-monthly.hidden { display: none !important; }

.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(30,42,64,0.4);
    padding-left: 22px;
    position: relative;
    color: var(--text-dim);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li.yes { color: var(--text); }
.plan-features li.yes::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.plan-features li.no::before { content: '×'; position: absolute; left: 0; color: var(--border); }

.plan-btn {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.plan-btn:hover { background: var(--gold-dark); color: #000; }

.featured-btn {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
}

.featured-btn:hover { background: var(--gold-light) !important; }

.plans-note { text-align: center; font-size: 13px; color: var(--text-dim); }

/* ====== TRUST ====== */
#trust { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item { text-align: center; }
.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-item h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.trust-item p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* ====== FAQ ====== */
#faq { background: var(--bg); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 0;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }

.faq-a {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    padding-top: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a { max-height: 200px; }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .method-grid, .platform-grid, .about-grid, .plans-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-content { padding-left: 40px; }
    .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .plans-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .track-summary { flex-wrap: wrap; gap: 20px; }
}
