/* ── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a26;
    --text: #e4e4ec;
    --text-sub: #8888a0;
    --accent: #00e5a0;
    --accent2: #00b8ff;
    --accent-glow: rgba(0, 229, 160, 0.15);
    --border: #2a2a3a;
    --radius: 12px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

body.no-scroll { overflow: hidden; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    color: var(--accent);
    font-size: 22px;
}

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

.nav-links a {
    font-size: 14px;
    color: var(--text-sub);
    transition: color 0.2s;
}

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

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-sub);
    transition: color 0.2s;
}

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

/* Language switch */
.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--bg3);
    border-radius: 8px;
    padding: 2px;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-sub);
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg);
}

.lang-btn:hover:not(.active) {
    color: var(--text);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: var(--bg);
    box-shadow: 0 4px 24px rgba(0, 229, 160, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 160, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--text-sub);
    background: var(--bg2);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 12px 24px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--accent-glow);
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 229, 160, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid rgba(0, 229, 160, 0.2);
    background: rgba(0, 229, 160, 0.05);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-sub);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-sub);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Section headers ──────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-sub);
}

/* ── App Showcase ─────────────────────────────────────────────────── */
.showcase {
    padding: 80px 0;
    background: var(--bg2);
}

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

.showcase-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-text > p {
    font-size: 16px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-list li {
    font-size: 14px;
    color: var(--text-sub);
    padding-left: 20px;
    position: relative;
}

.showcase-list li::before {
    content: "\2713";
    color: var(--accent);
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* Mockup window */
.mockup-window {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
    font-size: 12px;
    color: var(--text-sub);
}

.mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.mockup-label {
    font-size: 13px;
    color: var(--text-sub);
}

.mockup-toggle {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: var(--bg3);
    position: relative;
    transition: background 0.2s;
}

.mockup-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-sub);
    transition: all 0.2s;
}

.mockup-toggle.on {
    background: var(--accent);
}

.mockup-toggle.on::after {
    left: 18px;
    background: var(--bg);
}

.mockup-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.mockup-slider {
    width: 120px;
    height: 6px;
    background: var(--bg3);
    border-radius: 3px;
    overflow: hidden;
}

.mockup-slider-fill {
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 3px;
}

.mockup-value {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-glow);
    padding: 2px 10px;
    border-radius: 4px;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg3);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-sub);
    margin-top: 4px;
}

.mockup-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Pro Player ──────────────────────────────────────────────────── */
.pro-player {
    padding: 100px 0;
}

.pro-player-inner {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.pro-player-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 229, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pro-player-content {
    position: relative;
}

.pro-player-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(0, 229, 160, 0.2);
    background: rgba(0, 229, 160, 0.05);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-player-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pro-player-content > p {
    font-size: 16px;
    color: var(--text-sub);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.pro-player-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pro-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-stat-icon {
    font-size: 24px;
}

.pro-stat-text {
    font-size: 14px;
    font-weight: 500;
}

/* ── About / Creator ─────────────────────────────────────────────── */
.about {
    padding: 100px 0;
}

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

.avatar-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.about-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(0, 229, 160, 0.2);
    background: rgba(0, 229, 160, 0.05);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-text > p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-text > p strong {
    color: var(--text);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.about-tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid rgba(0, 229, 160, 0.2);
    background: rgba(0, 229, 160, 0.05);
}

/* ── Support section ─────────────────────────────────────────────── */
.support-section {
    padding: 60px 0;
    background: var(--bg2);
}

.support-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
}

.support-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.support-text {
    flex-grow: 1;
}

.support-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.support-text p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}

.support-inner .btn {
    flex-shrink: 0;
}

/* ── Features ─────────────────────────────────────────────────────── */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 229, 160, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-icon svg {
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.icon-glow-green { color: var(--accent); border-color: rgba(0, 229, 160, 0.2); background: rgba(0, 229, 160, 0.06); }
.icon-glow-blue { color: var(--accent2); border-color: rgba(0, 184, 255, 0.2); background: rgba(0, 184, 255, 0.06); }
.icon-glow-purple { color: #a78bfa; border-color: rgba(167, 139, 250, 0.2); background: rgba(167, 139, 250, 0.06); }
.icon-glow-pink { color: #f472b6; border-color: rgba(244, 114, 182, 0.2); background: rgba(244, 114, 182, 0.06); }
.icon-glow-orange { color: #fb923c; border-color: rgba(251, 146, 60, 0.2); background: rgba(251, 146, 60, 0.06); }
.icon-glow-red { color: #f87171; border-color: rgba(248, 113, 113, 0.2); background: rgba(248, 113, 113, 0.06); }
.icon-glow-yellow { color: #fbbf24; border-color: rgba(251, 191, 36, 0.2); background: rgba(251, 191, 36, 0.06); }
.icon-glow-cyan { color: #22d3ee; border-color: rgba(34, 211, 238, 0.2); background: rgba(34, 211, 238, 0.06); }
.icon-glow-gray { color: #94a3b8; border-color: rgba(148, 163, 184, 0.2); background: rgba(148, 163, 184, 0.06); }

.feature-card:hover .icon-glow-green { box-shadow: 0 0 20px rgba(0, 229, 160, 0.2); }
.feature-card:hover .icon-glow-blue { box-shadow: 0 0 20px rgba(0, 184, 255, 0.2); }
.feature-card:hover .icon-glow-purple { box-shadow: 0 0 20px rgba(167, 139, 250, 0.2); }
.feature-card:hover .icon-glow-pink { box-shadow: 0 0 20px rgba(244, 114, 182, 0.2); }
.feature-card:hover .icon-glow-orange { box-shadow: 0 0 20px rgba(251, 146, 60, 0.2); }
.feature-card:hover .icon-glow-red { box-shadow: 0 0 20px rgba(248, 113, 113, 0.2); }
.feature-card:hover .icon-glow-yellow { box-shadow: 0 0 20px rgba(251, 191, 36, 0.2); }
.feature-card:hover .icon-glow-cyan { box-shadow: 0 0 20px rgba(34, 211, 238, 0.2); }
.feature-card:hover .icon-glow-gray { box-shadow: 0 0 20px rgba(148, 163, 184, 0.2); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ── How it works ─────────────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg2);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: var(--bg);
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ── Plans ─────────────────────────────────────────────────────────── */
.plans {
    padding: 100px 0;
}

.currency-switch {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 40px;
    background: var(--bg3);
    border-radius: 8px;
    padding: 2px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.currency-btn {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-sub);
    transition: all 0.2s;
    font-family: inherit;
}

.currency-btn.active {
    background: var(--accent);
    color: var(--bg);
}

.currency-btn:hover:not(.active) {
    color: var(--text);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
}

.plan-popular {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 229, 160, 0.1);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(0, 229, 160, 0.03) 0%, var(--bg2) 40%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-sub);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-sub);
    border-bottom: 1px solid var(--border);
}

.plan-features li::before {
    content: "\2713  ";
    color: var(--accent);
    font-weight: 700;
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    background: var(--bg2);
}

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

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

.faq-item summary {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ── CTA ──────────────────────────────────────────────────────────── */
.cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 229, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta p {
    font-size: 18px;
    color: var(--text-sub);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-sub);
}

/* ── System Requirements ──────────────────────────────────────────── */
.requirements {
    padding: 100px 0;
    background: var(--bg);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.req-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
}

.req-card-recommended {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 229, 160, 0.08);
}

.req-recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.req-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.req-header h3 {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.req-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg3);
}

.req-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.req-badge-min {
    background: rgba(255, 200, 50, 0.12);
    color: #ffc832;
}

.req-badge-rec {
    background: rgba(0, 229, 160, 0.12);
    color: var(--accent);
}

.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.req-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(42, 42, 58, 0.5);
}

.req-list li:last-child {
    border-bottom: none;
}

.req-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
}

.req-value {
    font-size: 14px;
    color: var(--text);
    text-align: right;
}

.req-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.5;
}

.requirements-note {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-sub);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-sub);
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-sub);
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

/* ── Custom Plan ─────────────────────────────────────────────────── */
.custom-plan-section {
    margin-top: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.custom-plan-card {
    position: relative;
    background: var(--bg2);
    border: 1px solid rgba(0, 184, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    overflow: hidden;
}

.custom-plan-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 184, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.custom-plan-content {
    position: relative;
}

.custom-plan-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.25);
    background: rgba(255, 107, 107, 0.06);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.custom-plan-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.custom-plan-content > p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 24px;
}

.custom-plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.custom-feature {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent2);
    border: 1px solid rgba(0, 184, 255, 0.2);
    background: rgba(0, 184, 255, 0.05);
}

.custom-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 16px;
}

/* ── Lifetime Access (Em breve) ─────────────────────────────────── */
.lifetime-section {
    margin-top: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.lifetime-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.04) 0%, var(--bg2) 60%);
    border: 1px solid rgba(255, 184, 0, 0.28);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    overflow: hidden;
}

.lifetime-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 340px;
    background: radial-gradient(ellipse, rgba(255, 184, 0, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.lifetime-content {
    position: relative;
}

.lifetime-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #ffb800;
    border: 1px solid rgba(255, 184, 0, 0.35);
    background: rgba(255, 184, 0, 0.08);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lifetime-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
}

.lifetime-content > p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lifetime-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.lifetime-feature {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #ffb800;
    border: 1px solid rgba(255, 184, 0, 0.22);
    background: rgba(255, 184, 0, 0.05);
}

.lifetime-price {
    font-size: 26px;
    font-weight: 800;
    color: #ffb800;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

/* ── Game Packs ──────────────────────────────────────────────────── */
.game-packs-section {
    margin-top: 40px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent2);
    border: 1px solid rgba(0, 184, 255, 0.25);
    background: rgba(0, 184, 255, 0.06);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.game-pack-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.game-pack-card:hover {
    border-color: rgba(0, 184, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.game-pack-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--accent);
}

.game-pack-icon svg {
    stroke: var(--accent);
}

.game-pack-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.game-pack-card > p {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 16px;
}

.game-pack-card ul {
    list-style: none;
}

.game-pack-card ul li {
    font-size: 13px;
    color: var(--text-sub);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.game-pack-card ul li::before {
    content: "\2713";
    color: var(--accent);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.game-pack-more {
    border-style: dashed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.game-pack-more .game-pack-icon {
    font-size: 40px;
    color: var(--text-sub);
}

.game-packs-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-sub);
    margin-top: 24px;
}

/* ── Roadmap ─────────────────────────────────────────────────────── */
.roadmap {
    padding: 100px 0;
    background: var(--bg2);
}

.roadmap-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.roadmap-item {
    position: relative;
    margin-bottom: 40px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border);
}

.roadmap-done .roadmap-marker {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(0, 229, 160, 0.4);
}

.roadmap-active .roadmap-marker {
    background: var(--accent2);
    border-color: var(--accent2);
    box-shadow: 0 0 12px rgba(0, 184, 255, 0.4);
    animation: pulse-dot 2s infinite;
}

.roadmap-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.roadmap-done .roadmap-content {
    border-color: rgba(0, 229, 160, 0.2);
}

.roadmap-active .roadmap-content {
    border-color: rgba(0, 184, 255, 0.25);
}

.roadmap-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-sub);
    border: 1px solid var(--border);
}

.roadmap-done .roadmap-status {
    color: var(--accent);
    border-color: rgba(0, 229, 160, 0.25);
    background: rgba(0, 229, 160, 0.06);
}

.roadmap-active .roadmap-status {
    color: var(--accent2);
    border-color: rgba(0, 184, 255, 0.25);
    background: rgba(0, 184, 255, 0.06);
}

.roadmap-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.roadmap-content p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ── Vision ──────────────────────────────────────────────────────── */
.vision-section {
    padding: 100px 0;
}

.vision-inner {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.vision-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 184, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.vision-content {
    position: relative;
}

.vision-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent2);
    border: 1px solid rgba(0, 184, 255, 0.25);
    background: rgba(0, 184, 255, 0.06);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vision-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vision-content > p {
    font-size: 16px;
    color: var(--text-sub);
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

/* ── Responsive — Tablet ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 15px; }
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }

    .features, .how-it-works, .plans, .faq, .cta, .showcase, .pro-player, .about, .roadmap, .vision-section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }

    .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .showcase-text h2 { font-size: 28px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
    .plan-popular { transform: none; }
    .steps { grid-template-columns: 1fr; }

    .pro-player-inner { padding: 40px 24px; }
    .pro-player-content h2 { font-size: 28px; }
    .pro-player-stats { gap: 20px; }

    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-avatar { display: flex; justify-content: center; }
    .about-text h2 { font-size: 28px; }
    .about-tags { justify-content: center; }

    .game-packs-grid { grid-template-columns: repeat(2, 1fr); }
    .requirements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 48px auto 0; }
    .req-card { padding: 28px; }
    .roadmap-timeline { padding-left: 32px; }
    .roadmap-marker { left: -25px; }
    .vision-inner { padding: 40px 24px; }
    .vision-content h2 { font-size: 28px; }

    .support-inner { flex-direction: column; text-align: center; padding: 24px; }

    .footer-inner { justify-content: center; text-align: center; }
    .footer-links { justify-content: center; }

    .cta h2 { font-size: 28px; }
}

/* ── Responsive — Mobile ─────────────────────────────────────────── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero { padding: 100px 0 48px; }
    .hero h1 { font-size: 28px; }
    .hero-badge { font-size: 11px; }

    .features-grid { grid-template-columns: 1fr; }
    .game-packs-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .stat-value { font-size: 22px; }

    .feature-card { padding: 24px; }
    .step { padding: 24px 16px; }

    .plan-price { font-size: 36px; }
    .plan-card { padding: 28px 20px; }

    .pro-stat { flex-direction: column; text-align: center; }

    .cta h2 { font-size: 26px; }
    .cta p { font-size: 15px; }

    .avatar-ring { width: 120px; height: 120px; }
    .avatar-placeholder { font-size: 40px; }

    .btn-lg { padding: 12px 24px; font-size: 15px; }
}

/* ── Responsive — Very small ─────────────────────────────────────── */
@media (max-width: 360px) {
    .hero h1 { font-size: 24px; }
    .hero-stats { gap: 16px; }
    .stat-value { font-size: 20px; }
    .section-header h2 { font-size: 24px; }
}

/* ── Touch improvements ──────────────────────────────────────────── */
@media (hover: none) {
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
    .btn-primary:hover {
        transform: none;
    }
}

/* ── Safe area for notch phones ──────────────────────────────────── */
@supports (padding: env(safe-area-inset-top)) {
    .nav { padding-top: env(safe-area-inset-top); }
    .footer { padding-bottom: env(safe-area-inset-bottom); }
}
