/*
 * Altveraltd — "Vault" design system for the public site (marketing + auth).
 * Dark ink/glass canvas with a gold + emerald duotone. The logged-in product
 * (dashboard + admin, dashboard-theme.css) stays on a separate light "elite"
 * palette by design — this file governs the pre-login surface only.
 */

:root {
    --void: #05070B;
    --void-2: #0B0F17;
    --void-3: #111826;
    --glass: rgba(255, 255, 255, 0.045);
    --glass-2: rgba(255, 255, 255, 0.07);
    --glass-line: rgba(255, 255, 255, 0.10);
    --glass-line-strong: rgba(255, 255, 255, 0.18);

    --gold: #E4B559;
    --gold-dim: #9C7A34;
    --gold-soft: rgba(228, 181, 89, 0.14);
    --emerald: #29E6A6;
    --emerald-soft: rgba(41, 230, 166, 0.12);
    --violet: #7C6CFF;
    --coral: #FF7A6B;

    --ink: #F5F7F5;
    --ink-muted: #93A099;
    --ink-faint: #5C6A63;

    /* legacy aliases still referenced by existing bt-* components */
    --bg: var(--void);
    --bg-elevated: var(--void-2);
    --surface: rgba(255, 255, 255, 0);
    --surface-1: var(--void-2);
    --surface-2: var(--void-3);
    --border: var(--glass-line);
    --border-strong: var(--glass-line-strong);
    --text: var(--ink);
    --text-muted: var(--ink-muted);
    --text-faint: var(--ink-faint);
    --accent: var(--gold);
    --accent-2: var(--emerald);
    --accent-soft: var(--gold-soft);
    --accent-2-soft: var(--emerald-soft);

    --success: #29E6A6;
    --danger: #FF7A6B;
    --warning: #E4B559;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 0 1px rgba(228, 181, 89, 0.20), 0 20px 60px -20px rgba(228, 181, 89, 0.30);

    --font-display: "Fraunces", "Georgia", "Iowan Old Style", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.bt-theme {
    background: var(--void);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.bt-theme h1, .bt-theme h2, .bt-theme h3, .bt-theme h4, .bt-theme h5 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-wrap: balance;
}

.bt-theme a { text-decoration: none; color: inherit; }
.bt-theme ::selection { background: var(--gold); color: #1a1206; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.grad-text {
    background: linear-gradient(100deg, var(--gold), #F3D98B 45%, var(--gold));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Google Translate widget ---------- */
.bt-lang-switch { display: flex; align-items: center; }
.bt-lang-switch .goog-te-gadget { font-family: var(--font-body) !important; font-size: 0 !important; color: transparent !important; }
.bt-lang-switch .goog-te-gadget-simple {
    background: var(--glass); border: 1px solid var(--glass-line) !important;
    border-radius: 8px; padding: 7px 10px; display: inline-flex; align-items: center;
}
.bt-lang-switch .goog-te-gadget-simple .goog-te-menu-value span { color: var(--text-muted) !important; font-size: 13px !important; }
.bt-lang-switch img { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
@media (max-width: 900px) { .bt-lang-switch { display: none; } }

/* ---------- preloader ---------- */
.bt-preloader {
    position: fixed; inset: 0; z-index: 200; background: var(--void);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.bt-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.bt-preloader__mark { width: 40px; height: 40px; position: relative; z-index: 1; animation: bt-preloader-pulse 1.6s ease-in-out infinite; }
.bt-preloader__ring {
    position: absolute; width: 84px; height: 84px; border-radius: 50%;
    border: 2px solid var(--glass-line); border-top-color: var(--gold); border-right-color: var(--gold);
    animation: bt-preloader-spin 0.9s linear infinite;
}
@keyframes bt-preloader-spin { to { transform: rotate(360deg); } }
@keyframes bt-preloader-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.92); } }
@media (prefers-reduced-motion: reduce) {
    .bt-preloader__ring { animation: none; }
    .bt-preloader__mark { animation: none; }
}

/* ---------- ambient mesh + grain ---------- */
.bt-mesh { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bt-mesh::before, .bt-mesh::after, .bt-mesh .blob { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); }
.bt-mesh::before { width: 640px; height: 640px; background: var(--gold); top: -220px; left: -160px; opacity: 0.14; }
.bt-mesh::after { width: 560px; height: 560px; background: var(--violet); bottom: -200px; right: -140px; opacity: 0.12; }
.bt-mesh .blob { width: 520px; height: 520px; background: var(--emerald); top: 30%; right: 8%; opacity: 0.09; animation: bt-drift 22s ease-in-out infinite; }
@keyframes bt-drift { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-60px,40px); } }
.bt-grain {
    position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.bt-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.bt-section { padding: 88px 0; position: relative; z-index: 2; }
.bt-section--tight { padding: 60px 0; }
.bt-section--alt { background: rgba(255,255,255,0.015); }
.bt-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
    font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald);
}
.bt-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.bt-section-title { font-size: clamp(25px, 3vw, 36px); margin-bottom: 14px; }
.bt-section-lead { color: var(--text-muted); font-size: 15px; max-width: 600px; }
.bt-center { text-align: center; margin-left: auto; margin-right: auto; }
.bt-mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ---------- network / node background ---------- */
.bt-network-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bt-network-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.bt-network-bg .node { fill: var(--gold); }
.bt-network-bg .edge { stroke: var(--glass-line-strong); stroke-width: 1; }
.bt-grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
}
@keyframes bt-pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.bt-network-bg .node { animation: bt-pulse 3.6s ease-in-out infinite; transform-origin: center; }
.bt-network-bg .edge { animation: bt-fade-in 1.6s ease both; }
@keyframes bt-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---------- scroll reveal ---------- */
.bt-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); }
.bt-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .bt-reveal { opacity: 1; transform: none; transition: none; }
    .bt-network-bg .node, .bt-network-bg .edge, .bt-mesh .blob { animation: none; }
}
.bt-nav.is-scrolled { border-bottom-color: var(--glass-line); background: rgba(5,7,11,0.86) !important; }

/* ---------- buttons ---------- */
.bt-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
    padding: 12px 24px; border-radius: var(--radius-sm); border: 1px solid transparent;
    cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap; position: relative; overflow: hidden;
}
.bt-btn:hover { transform: translateY(-1px); }
.bt-btn-primary, .bt-btn-gold {
    background: linear-gradient(135deg, var(--gold), #C99A3D);
    color: #1a1206;
    box-shadow: 0 0 0 1px rgba(228,181,89,0.3), 0 16px 34px -14px rgba(228,181,89,0.55);
}
.bt-btn-primary::before, .bt-btn-gold::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 45%, transparent 60%);
    transform: translateX(-120%); transition: transform .6s ease;
}
.bt-btn-primary:hover::before, .bt-btn-gold:hover::before { transform: translateX(120%); }
.bt-btn-primary:hover, .bt-btn-gold:hover { box-shadow: 0 0 0 1px rgba(228,181,89,0.45), 0 20px 40px -12px rgba(228,181,89,0.7); color: #1a1206; }
.bt-btn-ghost, .bt-btn-glass { background: var(--glass); border-color: var(--glass-line); color: var(--text); backdrop-filter: blur(8px); }
.bt-btn-ghost:hover, .bt-btn-glass:hover { background: var(--glass-2); border-color: var(--glass-line-strong); color: var(--text); }
.bt-btn-block { width: 100%; }
.bt-btn-sm { padding: 9px 18px; font-size: 12.5px; }

/* ---------- cards ---------- */
.bt-card {
    background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative;
}
.bt-card--hover { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.bt-card--hover:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.bt-icon-tile {
    width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
    background: var(--gold-soft); color: var(--gold); font-size: 18px; margin-bottom: 16px;
}
.bt-icon-tile.em { background: var(--emerald-soft); color: var(--emerald); }

/* ---------- navbar ---------- */
.bt-nav {
    position: sticky; top: 0; left: 0; right: 0; z-index: 80;
    background: rgba(5, 7, 11, 0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent; transition: border-color .3s ease, background .3s ease;
}
.bt-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.bt-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--text); }
.bt-logo__mark { width: 30px; height: 30px; flex-shrink: 0; }
.bt-logo__mark svg { width: 100%; height: 100%; }
.bt-nav__links { display: flex; align-items: center; gap: 32px; }
.bt-nav__links a { color: var(--ink); font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; transition: color .15s ease; position: relative; padding: 4px 0; }
.bt-nav__links a:hover { color: var(--gold); }
.bt-nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.bt-nav__links a:hover::after { transform: scaleX(1); }
.bt-nav__actions { display: flex; align-items: center; gap: 12px; }
.bt-nav__toggle { display: none; }

/* burger + mobile drawer */
.bt-burger { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--glass-line); background: var(--glass); align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.bt-burger span, .bt-burger span::before, .bt-burger span::after { content: ""; display: block; width: 16px; height: 1.5px; background: var(--ink); position: relative; transition: transform .25s ease, opacity .2s ease; }
.bt-burger span::before { position: absolute; top: -5px; }
.bt-burger span::after { position: absolute; top: 5px; }
.bt-burger.open span { background: transparent; }
.bt-burger.open span::before { transform: translateY(5px) rotate(45deg); }
.bt-burger.open span::after { transform: translateY(-5px) rotate(-45deg); }
.bt-mobile-menu {
    display: none; position: fixed; inset: 72px 0 0 0; background: var(--void);
    z-index: 999; padding: 24px; flex-direction: column; gap: 4px; overflow-y: auto;
    transform: translateY(-8px); visibility: hidden; pointer-events: none;
    transition: transform .25s ease, visibility 0s linear .25s;
}
.bt-mobile-menu.open {
    transform: none; visibility: visible; pointer-events: auto;
    transition: transform .25s ease, visibility 0s linear 0s;
}
.bt-mobile-menu a { padding: 16px 4px; font-size: 17px; font-weight: 600; letter-spacing: 0.01em; border-bottom: 1px solid var(--glass-line); color: var(--ink); transition: color .15s ease; }
.bt-mobile-menu a:hover, .bt-mobile-menu a:active { color: var(--gold); }
.bt-mobile-menu .mm-cta { display: flex; gap: 12px; margin-top: 18px; }
.bt-mobile-menu .mm-cta .bt-btn { flex: 1; }
@media (max-width: 900px) {
    .bt-nav__links { display: none; }
    .bt-nav__actions .bt-btn-ghost, .bt-nav__actions .bt-btn-glass { display: none; }
    .bt-burger { display: flex; }
    .bt-mobile-menu { display: flex; }
}

/* ---------- footer ---------- */
.bt-footer { border-top: 1px solid var(--border); padding: 52px 0 26px; }
.bt-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.bt-footer__col h5 { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 15px; }
.bt-footer__col a { display: block; color: var(--text-muted); font-size: 13.5px; margin-bottom: 9px; transition: color .15s; }
.bt-footer__col a:hover { color: var(--gold); }
.bt-pay-badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.bt-pay-badge { font-family: var(--font-mono); font-size: 10.5px; border: 1px solid var(--border); border-radius: 5px; padding: 5px 9px; color: var(--text-muted); }
.bt-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 11.5px; font-family: var(--font-mono); flex-wrap: wrap; gap: 10px; }
@media (max-width: 800px) { .bt-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .bt-footer__grid { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.bt-field { margin-bottom: 18px; }
.bt-field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
.bt-input, .bt-select, select.bt-input, textarea.bt-input {
    width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong);
    color: var(--text); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14.5px; font-family: var(--font-body);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.bt-input:focus, .bt-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.bt-input::placeholder { color: var(--text-faint); }
.bt-auth-card { max-width: 440px; width: 100%; margin: 0 auto; }

/* alert box on dark glass — light coral text reads on the translucent red fill */
.alert-box { background: rgba(255,122,107,0.10); border: 1px solid rgba(255,122,107,0.3); color: #FCA5A0; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 20px; }

/* ---------- badges / stats ---------- */
.bt-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.bt-badge--success { background: rgba(41,230,166,0.14); color: var(--success); }
.bt-badge--warning { background: rgba(228,181,89,0.14); color: var(--warning); }
.bt-badge--danger { background: rgba(255,122,107,0.14); color: var(--danger); }
.bt-badge--muted { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.bt-badge--gold { background: var(--gold-soft); color: var(--gold); }

.bt-stat { text-align: center; }
.bt-stat__value { font-family: var(--font-display); font-size: 34px; font-weight: 500; color: var(--text); }
.bt-stat__label { color: var(--text-muted); font-size: 13.5px; margin-top: 4px; }

.bt-muted { color: var(--text-muted); }
.bt-divider { height: 1px; background: var(--border); border: none; margin: 0; }

/* ==================================================================
   Homepage-specific components (hero chart, ticker, steps, features,
   ledger table, vault visual, stats band, FAQ, CTA band)
   ================================================================== */

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px; }
.hero-stat b { display: block; font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--gold); }
.hero-stat span { color: var(--text-faint); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

.chart-card {
    background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.02)); border: 1px solid var(--glass-line);
    border-radius: 12px; padding: 20px 20px 16px; backdrop-filter: blur(18px);
    box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06); position: relative;
}
.chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; flex-wrap: wrap; gap: 8px; }
.chart-head .pair { font-family: var(--font-display); font-size: 18px; }
.chart-head .px { font-family: var(--font-mono); font-size: 21px; color: var(--emerald); }
.chart-sub { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 12px; }
.chart-sub b { color: var(--emerald); font-weight: 600; }
canvas#candles { width: 100%; height: 170px; display: block; }
.chart-foot { display: flex; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--glass-line); font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); flex-wrap: wrap; gap: 6px; }
.chart-foot .live { display: flex; align-items: center; gap: 6px; color: var(--emerald); }
.chart-foot .live i { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: bt-pulse2 2s ease-in-out infinite; }
@keyframes bt-pulse2 { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.ticker-strip { border-top: 1px solid var(--glass-line); border-bottom: 1px solid var(--glass-line); background: rgba(255,255,255,0.02); overflow: hidden; position: relative; z-index: 2; }
.ticker-track { display: flex; gap: 40px; padding: 14px 0; width: max-content; animation: bt-scroll-left 32s linear infinite; }
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
@keyframes bt-scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12.5px; white-space: nowrap; color: var(--text-muted); }
.tick b { color: var(--text); font-weight: 600; }
.tick .up { color: var(--emerald); } .tick .down { color: var(--coral); }

.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.trust-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--glass-line); border: 1px solid var(--glass-line); border-radius: 10px; overflow: hidden; }
.step { background: var(--void-2); padding: 26px 22px; position: relative; }
.step .num { font-family: var(--font-mono); font-size: 12px; color: var(--gold-dim); letter-spacing: 0.08em; margin-bottom: 12px; }
.step h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.step::after { content: "→"; position: absolute; right: -11px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: var(--void); border: 1px solid var(--glass-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gold); z-index: 2; }
.step:last-child::after { display: none; }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: var(--glass); border: 1px solid var(--glass-line); border-radius: 10px; padding: 24px; backdrop-filter: blur(10px); transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.feature:hover { transform: translateY(-3px); border-color: var(--glass-line-strong); background: var(--glass-2); }
.feature-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: var(--gold-soft); color: var(--gold); }
.feature-icon svg { width: 18px; height: 18px; }
.feature.em .feature-icon { background: var(--emerald-soft); color: var(--emerald); }
.feature h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; color: var(--text); }
.feature p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }

.ledger { display: flex; flex-direction: column; gap: 1px; background: var(--glass-line); border-radius: 10px; overflow: hidden; border: 1px solid var(--glass-line); }
.lrow { display: grid; grid-template-columns: 1.3fr 1fr 0.8fr 0.9fr auto; align-items: center; gap: 16px; padding: 20px 24px; background: var(--void-2); position: relative; transition: background .25s ease; }
.lrow.head { background: rgba(255,255,255,0.03); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); padding: 13px 24px; }
.lrow.data:hover { background: #121826; }
.lrow.data::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: background .25s, box-shadow .25s; }
.lrow.data:hover::before { background: var(--emerald); box-shadow: 0 0 12px var(--emerald); }
.lrow.featured { background: linear-gradient(90deg, rgba(228,181,89,0.10), rgba(228,181,89,0.02)); }
.lrow.featured::before { background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.plan-name { font-family: var(--font-display); font-size: 18px; color: var(--text); }
.plan-name small { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.plan-tag { display: inline-block; font-family: var(--font-mono); font-size: 9.5px; background: var(--gold); color: #1a1206; padding: 2px 7px; border-radius: 3px; margin-left: 8px; vertical-align: middle; }
.pfig { font-family: var(--font-mono); font-size: 14px; color: var(--text-muted); }
.pfig .lbl { display: block; font-size: 10px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; font-family: var(--font-body); }
.prate { font-family: var(--font-mono); font-size: 23px; font-weight: 600; color: var(--emerald); }
.lrow.featured .prate { color: var(--gold); text-shadow: 0 0 18px rgba(228,181,89,0.5); }
.lrow .bt-btn { padding: 9px 16px; font-size: 12px; }

.stats-band { background: linear-gradient(180deg, rgba(228,181,89,0.06), transparent); border-top: 1px solid var(--glass-line); border-bottom: 1px solid var(--glass-line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--glass-line); border: 1px solid var(--glass-line); border-radius: 10px; overflow: hidden; }
.stat-tile { background: var(--void-2); padding: 28px 22px; text-align: center; }
.stat-tile b { display: block; font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: var(--gold); text-shadow: 0 0 24px rgba(228,181,89,0.35); margin-bottom: 6px; }
.stat-tile span { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; }

.vault-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.vault-visual { position: relative; aspect-ratio: 1/1; max-width: 360px; margin: 0 auto; }
.vault-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--glass-line); }
.vault-ring:nth-child(2) { inset: 14%; border-color: var(--glass-line-strong); }
.vault-ring:nth-child(3) { inset: 28%; border: 1px solid var(--gold); box-shadow: 0 0 40px rgba(228,181,89,0.25); }
.vault-core { position: absolute; inset: 38%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #F3D98B, var(--gold) 55%, #7A5A22); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 60px rgba(228,181,89,0.4); }
.vault-core svg { width: 34%; height: 34%; color: #241a08; }
.vault-orbit { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); animation: bt-orbit 9s linear infinite; top: 50%; left: 50%; margin: -5px; }
.vault-orbit.b { animation-duration: 13s; animation-direction: reverse; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
@keyframes bt-orbit { from { transform: rotate(0deg) translateX(175px) rotate(0deg); } to { transform: rotate(360deg) translateX(175px) rotate(-360deg); } }
.vault-list { display: flex; flex-direction: column; gap: 22px; }
.vault-item { display: flex; gap: 16px; }
.vault-item .vi-num { font-family: var(--font-mono); font-size: 12px; color: var(--gold-dim); flex-shrink: 0; width: 26px; padding-top: 3px; }
.vault-item h4 { font-family: var(--font-display); font-size: 16.5px; margin: 0 0 6px; color: var(--text); font-weight: 500; }
.vault-item p { margin: 0; font-size: 13.5px; color: var(--text-muted); }

.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--glass-line); border: 1px solid var(--glass-line); border-radius: 10px; overflow: hidden; }
.faq-item { background: var(--void-2); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-size: 15px; font-family: var(--font-display); }
.faq-q .plus { font-family: var(--font-mono); color: var(--gold); font-size: 18px; flex-shrink: 0; transition: transform .25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p { margin: 0; padding: 0 22px 20px; font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

.cta-band { text-align: center; background: linear-gradient(135deg, rgba(228,181,89,0.12), rgba(41,230,166,0.05)); border: 1px solid var(--glass-line); border-radius: 16px; padding: 60px 36px; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 460px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* light dashboard teaser panel inside a dark page */
.dash-wrap { background: var(--ink); border-radius: 12px; padding: 2px; }
.dash-mock { background: #F4F6F2; border-radius: 10px; overflow: hidden; color: #101E1A; }
.dash-mock-head { background: #101E1A; color: #F1F4EF; padding: 15px 20px; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11.5px; flex-wrap: wrap; gap: 6px; }
.dash-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(16,30,26,0.1); }
.dash-tile { background: #F4F6F2; padding: 20px; }
.dash-tile .lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7a72; margin-bottom: 9px; display: block; }
.dash-tile .val { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: #101E1A; }
.dash-tile .val.up { color: #1B6B52; } .dash-tile .val.gold { color: #A8792F; }
.dash-note { text-align: center; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: 16px; }

@media (max-width: 1020px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vault-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 680px) {
    .bento { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .lrow { grid-template-columns: 1fr; gap: 10px; padding: 18px; }
    .lrow.head { display: none; }
    .lrow .bt-btn { width: 100%; margin-top: 6px; }
    .dash-tiles { grid-template-columns: 1fr; }
    .cta-band { padding: 40px 22px; }
    .hero-stats { gap: 22px; }
    .vault-orbit { display: none; }
}
@media (max-width: 420px) {
    .stats-grid { grid-template-columns: 1fr; }
}
