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

:root {
    --green: #16a34a;
    --green-dark: #14532d;
    --green-deeper: #0a2e18;
    --gold: #eab308;
    --gold-dim: #a17c06;
    --bg: #0a0f0d;
    --bg-card: rgba(20, 30, 24, 0.7);
    --bg-card-solid: #141e18;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #e8f0eb;
    --text-muted: #7c9a87;
    --radius: 16px;
    --radius-sm: 10px;
}

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

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

/* ---- Language toggle ---- */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 2px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 3px;
    border: 1px solid var(--glass-border);
}

.lang-toggle button {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
}

.lang-toggle button.active {
    background: var(--green);
    color: #fff;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.field-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--bg) 70%),
        linear-gradient(180deg, rgba(10,15,13,0.3) 0%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0 60px;
}

.hero-pill {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(22, 163, 74, 0.3);
    background: rgba(22, 163, 74, 0.08);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #a7f3d0 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 48px;
}

/* Watch mockup */
.watch-mockup {
    margin: 0 auto 48px;
    display: flex;
    justify-content: center;
}

.watch-bezel {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 12px;
    box-shadow:
        0 0 0 3px rgba(255,255,255,0.06),
        0 0 0 6px rgba(0,0,0,0.3),
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.watch-screen {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    gap: 2px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.ws-half {
    font-size: 0.6rem;
    color: #9ca3af;
    letter-spacing: 1px;
}

.ws-timer {
    font-size: 1.7rem;
    font-weight: 700;
    color: #facc15;
    line-height: 1;
}

.ws-teams {
    font-size: 0.55rem;
    color: #fff;
    display: flex;
    gap: 32px;
    margin-top: 4px;
}

.ws-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
}

.ws-pen {
    font-size: 0.55rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Hero badges */
.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-muted);
}

.hero-badge strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.hero-badge span {
    font-size: 0.75rem;
}

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

.features h2, .how-it-works h2, .faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 48px;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 680px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-col {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.feature-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.4;
}

.feature-col.premium {
    border-color: rgba(234, 179, 8, 0.25);
    background: rgba(30, 25, 10, 0.6);
}

.feature-col.premium::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.premium-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.feature-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
}

.feature-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-col.premium h3 {
    color: var(--gold);
}

.feature-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-muted);
}

.feature-col.premium .feature-price {
    color: var(--gold);
}

.feature-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.feature-col ul {
    list-style: none;
    margin-bottom: 28px;
}

.feature-col ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.feature-col ul li:last-child {
    border-bottom: none;
}

.feature-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.15);
    border: 1.5px solid var(--green);
}

.feature-col ul li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 18px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

.feature-col.premium ul li::before {
    background: rgba(234, 179, 8, 0.12);
    border-color: var(--gold);
}

.feature-col.premium ul li::after {
    border-color: var(--gold);
}

.feature-col.premium ul li.included::before,
.feature-col.premium ul li.included::after {
    display: none;
}

.feature-col.premium ul li.included {
    padding-left: 0;
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(234,179,8,0.1);
    padding-bottom: 14px;
    margin-bottom: 4px;
}

/* Buy button */
.btn-buy {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold) 0%, #ca8a04 100%);
    color: var(--bg);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(234, 179, 8, 0.2);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(234, 179, 8, 0.35);
}

.buy-note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* ---- How it works ---- */
.how-it-works {
    padding: 100px 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.how-it-works h2 {
    margin-bottom: 56px;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 680px) {
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
}

.step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    position: relative;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.step-icon {
    color: var(--green);
    margin-bottom: 8px;
}

.step-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.25);
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.step h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text);
}

.step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-arrow {
    color: var(--text-muted);
    opacity: 0.3;
    padding-top: 60px;
    flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq {
    padding: 100px 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.faq h2 {
    margin-bottom: 40px;
}

details {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: all 0.3s;
}

details[open] {
    background: var(--bg-card);
    border-color: rgba(22, 163, 74, 0.2);
}

summary {
    padding: 18px 24px;
    padding-right: 48px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    position: relative;
    transition: color 0.2s;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 300;
    transition: transform 0.2s;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- Footer ---- */
footer {
    text-align: center;
    padding: 40px 24px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

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

/* ---- Legal pages ---- */
.legal-page {
    min-height: 100vh;
    padding: 60px 0 80px;
    background: var(--bg);
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-page h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-page p,
.legal-page li {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--green);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-back {
    display: inline-block;
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.legal-update {
    font-size: 0.82rem;
    font-style: italic;
    margin-bottom: 24px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.85rem;
}

.legal-table th,
.legal-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.legal-table th {
    color: var(--text);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
