:root {
    --bg: #0a0a0c;
    --bg-alt: #08080a;
    --accent: #2f7bff;
    --accent-rgb: 47, 123, 255;
    --gold: #ffd93d;
    --text-strong: #f7f7f5;
    --text: #f4f4f4;
    --text-soft: #c3c3c8;
    --text-muted: #b6b6bc;
    --text-dim: #8a8a92;
    --text-dimmer: #6a6a72;
    --text-faint: #5a5a62;
    --line: rgba(255, 255, 255, 0.06);
    --line-strong: rgba(255, 255, 255, 0.08);
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    letter-spacing: -0.01em;
}
::selection { background: var(--accent); color: var(--bg); }
a { color: inherit; }
.container { max-width: 1100px; margin: 0 auto; width: 100%; }

@keyframes glowDrift {
    0%   { transform: translate(-8%, -6%) scale(1); }
    50%  { transform: translate(8%, 8%) scale(1.18); }
    100% { transform: translate(-8%, -6%) scale(1); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .35; transform: scale(.8); }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-shown { opacity: 1; transform: none; }

/* Progress bar */
.progress-track {
    position: fixed; top: 0; left: 0; right: 0;
    height: 2px; z-index: 60;
    background: rgba(255, 255, 255, 0.04);
}
.progress-fill {
    height: 100%; width: 0%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width .1s linear;
}

/* Nav */
.nav {
    position: fixed; top: 2px; left: 0; right: 0;
    z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    background: rgba(10, 10, 12, 0.6);
    border-bottom: 1px solid var(--line);
}
.nav-logo {
    display: flex; align-items: center; gap: 11px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; letter-spacing: 0.18em; font-weight: 500;
    color: var(--text); text-decoration: none;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 12px var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.12em;
    color: var(--text); background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px; padding: 7px 13px; cursor: pointer;
    display: flex; align-items: center; gap: 7px;
    transition: border-color .3s ease, color .3s ease;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn .dot { width: 5px; height: 5px; box-shadow: none; animation: none; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    text-decoration: none; cursor: pointer;
    padding: 15px 24px; border-radius: 100px;
    font-size: 15px; font-family: inherit; border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent); color: var(--bg);
    font-weight: 600; letter-spacing: -0.01em;
    transition: transform .3s ease, box-shadow .3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.3);
}
.btn-ghost {
    background: transparent; color: var(--text); font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: border-color .3s ease, color .3s ease;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn.sm { padding: 11px 18px; font-size: 13px; }

/* Hero */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 150px 32px 90px; overflow: hidden; text-align: center;
}
.hero-glow {
    position: absolute; top: 46%; left: 50%;
    width: 120vw; height: 120vh; margin-left: -60vw; margin-top: -60vh;
    background: radial-gradient(circle at 50% 40%, rgba(var(--accent-rgb), 0.14), transparent 45%);
    animation: glowDrift 18s ease-in-out infinite; pointer-events: none;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
    pointer-events: none;
}
.hero-inner { position: relative; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.2em; color: var(--text-dim);
    margin-bottom: 30px;
}
.eyebrow .status { display: flex; align-items: center; gap: 9px; color: var(--accent); }
.eyebrow .status .dot { width: 7px; height: 7px; box-shadow: 0 0 10px var(--accent); }
.eyebrow .sep { opacity: 0.4; }
.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem); font-weight: 600;
    line-height: 0.92; letter-spacing: -0.04em; color: var(--text-strong);
}
.hero h1 span { color: var(--accent); }
.hero-tagline {
    font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 400;
    color: var(--text-soft); margin: 26px auto 0; max-width: 640px;
    line-height: 1.45; text-wrap: pretty;
}
.cta-buttons {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    margin-top: 40px;
}
.vouches-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    letter-spacing: 0.1em; color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(255, 217, 61, 0.3); border-radius: 100px;
    padding: 9px 16px;
    transition: border-color .3s ease, background .3s ease;
}
.vouches-link:hover { border-color: var(--gold); background: rgba(255, 217, 61, 0.08); }

.bot-notice {
    max-width: 600px; margin: 30px auto 0;
    text-align: left;
    background: rgba(var(--accent-rgb), 0.06);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-left-width: 3px;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.92rem; line-height: 1.5; color: var(--text-soft);
}

/* Instant buy callout */
.instant {
    max-width: 560px; margin: 22px auto 0;
    background: rgba(var(--accent-rgb), 0.06);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-left-width: 3px;
    border-radius: 16px; padding: 22px 24px; text-align: left;
}
.instant strong { display: block; color: var(--text-strong); font-size: 1.05rem; margin-bottom: 6px; }
.instant p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; }
.instant code {
    font-family: 'JetBrains Mono', monospace; font-size: 0.86em;
    background: rgba(var(--accent-rgb), 0.14); color: var(--accent);
    padding: 2px 7px; border-radius: 6px; white-space: nowrap;
}

/* Sections */
.section { position: relative; padding: 100px 32px; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.16em; color: var(--accent);
    display: block; margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 500;
    letter-spacing: -0.03em; color: var(--text-strong);
}

/* Price highlight */
.price-card {
    position: relative;
    max-width: 560px; margin: 0 auto;
    background: var(--bg-alt);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 22px;
    padding: 44px 40px;
    text-align: center;
    box-shadow: 0 0 80px rgba(var(--accent-rgb), 0.08);
}
.price-vbucks {
    display: inline-flex; align-items: baseline; gap: 12px;
    font-size: clamp(2.8rem, 8vw, 4.4rem); font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}
.vbucks-num {
    color: #5fe0ef; /* fallback */
    background: linear-gradient(180deg, #eafdff 0%, #7fe7f3 42%, #1fb6d6 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 26px rgba(52, 214, 232, 0.35);
}
.vbucks-icon { height: 1.05em; width: auto; align-self: center; display: block; }
.price-amount {
    margin-top: 18px;
    font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 600; color: var(--text-strong);
}
.price-old { color: var(--text-dimmer); text-decoration: line-through; font-weight: 400; font-size: 0.7em; margin-left: 10px; }
.price-note {
    margin-top: 18px; font-size: 0.9rem; color: var(--text-dim); line-height: 1.5;
}
.price-note code {
    font-family: 'JetBrains Mono', monospace; font-size: 0.85em;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accent);
    padding: 2px 7px; border-radius: 6px;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step {
    background: var(--bg-alt);
    border: 1px solid var(--line-strong);
    border-radius: 18px; padding: 28px;
    transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.section.alt .step { background: rgba(255, 255, 255, 0.02); }
.step:hover { border-color: rgba(var(--accent-rgb), 0.4); transform: translateY(-4px); }
.step-num {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    color: var(--accent); margin-bottom: 16px; display: block;
}
.step h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-strong); margin-bottom: 10px; }
.step p { color: var(--text-dim); line-height: 1.55; font-size: 0.95rem; }
.step code, .inline-code {
    font-family: 'JetBrains Mono', monospace; font-size: 0.86em;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accent);
    padding: 2px 7px; border-radius: 6px; white-space: nowrap;
}

/* Payment methods */
.pay-grid {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    max-width: 760px; margin: 0 auto;
}
.pay-chip {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    color: var(--text-soft);
    border: 1px solid var(--line-strong); border-radius: 100px;
    padding: 11px 20px;
    transition: border-color .3s ease, color .3s ease;
}
.pay-chip:hover { border-color: var(--accent); color: var(--accent); }
.pay-chip .ticket {
    font-size: 0.78em; color: var(--text-dimmer); letter-spacing: 0.04em;
    margin-left: 4px;
}
/* Notes / fine print */
.notes { max-width: 640px; margin: 48px auto 0; text-align: center; }
.notes p {
    font-size: 0.88rem; color: var(--text-dimmer); line-height: 1.6;
}
.notes .warn {
    display: inline-block; margin-top: 14px;
    font-size: 0.85rem; color: var(--text-dim);
    border: 1px solid var(--line-strong); border-radius: 12px;
    padding: 14px 20px;
}

.notes-list {
    list-style: none;
    max-width: 560px; margin: 0 auto;
    text-align: left;
    display: flex; flex-direction: column; gap: 12px;
}
.notes-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem; line-height: 1.55; color: var(--text-soft);
}
.notes-list li::before {
    content: '•';
    position: absolute; left: 4px; top: -1px;
    color: var(--accent); font-weight: 700;
}

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 {
    font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 600;
    letter-spacing: -0.04em; color: var(--text-strong); margin-bottom: 18px;
    line-height: 1;
}
.cta-band p { color: var(--text-muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.55; }

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 30px 32px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    max-width: 1100px; margin: 0 auto;
}
.footer span {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: 0.08em; color: var(--text-dimmer);
}
.footer a {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: 0.08em; color: var(--text-dim); text-decoration: none;
    transition: color .3s ease;
}
.footer a:hover { color: var(--accent); }

@media (max-width: 600px) {
    .nav { padding: 14px 18px; }
    .nav-right { gap: 12px; }
    .nav .btn { display: none; }
    .hero { padding: 130px 22px 80px; }
    .section { padding: 80px 22px; }
    .price-card { padding: 34px 24px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; }
}
