/* ══════════════════════════════════════════════════════════════
   U Soccer League — Landing
   Paleta: dark + verde neón (en línea con el logo y el panel)
   ══════════════════════════════════════════════════════════════ */

:root {
    --bg:          #0b0d10;
    --bg-2:        #111418;
    --surface:     #161b21;
    --surface-2:   #1c232b;
    --border:      #2a333d;
    --text:        #e8edf2;
    --text-dim:    #9aa7b4;
    --green:       #84cc16;   /* lima */
    --green-2:     #16a34a;   /* verde */
    --green-3:     #4ade80;   /* claro */
    --white:       #ffffff;
    --radius:      16px;
    --maxw:        1140px;
    --shadow:      0 20px 60px rgba(0, 0, 0, .45);
    --glow:        0 0 40px rgba(132, 204, 22, .35);
}

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

html { scroll-behavior: smooth; }

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.accent { color: var(--green); }

.eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.icon { width: 18px; height: 18px; fill: currentColor; }

/* ── Botones ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .95rem;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-ghost {
    background: rgba(132, 204, 22, .12);
    color: var(--green);
    border-color: rgba(132, 204, 22, .3);
}
.btn-ghost:hover { background: var(--green); color: #0b0d10; transform: translateY(-2px); box-shadow: var(--glow); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 13, 16, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.brand-logo { height: 46px; width: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: color .18s ease;
}
.nav-link:hover { color: var(--text); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(22, 163, 74, .18), transparent 60%),
        radial-gradient(900px 500px at 0% 20%, rgba(132, 204, 22, .10), transparent 55%),
        var(--bg);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin-bottom: 20px;
}
.hero-sub {
    color: var(--text-dim);
    font-size: 1.12rem;
    max-width: 520px;
    margin-bottom: 30px;
}
.hero-sub strong { color: var(--text); }

/* Store badges */
.store-cta { display: inline-flex; flex-direction: column; align-items: center; }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badges.center { justify-content: center; }
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
    transition: border-color .18s ease, transform .18s ease;
}
.store-badge:hover { border-color: rgba(132, 204, 22, .5); transform: translateY(-2px); }
.store-icon { width: 26px; height: 26px; fill: var(--text); }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge-text small { font-size: .68rem; color: var(--text-dim); }
.store-badge-text strong { font-size: 1.05rem; font-weight: 700; }
.soon-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(132, 204, 22, .14);
    color: var(--green);
    border: 1px solid rgba(132, 204, 22, .35);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* ── Phone mockup ─────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }
.phone {
    position: relative;
    width: 270px;
    height: 545px;
    background: linear-gradient(160deg, #1a2129, #0e1216);
    border: 2px solid #2c3742;
    border-radius: 42px;
    padding: 14px;
    box-shadow: var(--shadow), var(--glow);
    animation: float 5s ease-in-out infinite;
}
.phone-notch {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 22px;
    background: #0b0d10;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}
.phone-screen {
    width: 100%; height: 100%;
    border-radius: 30px;
    background:
        radial-gradient(500px 300px at 50% 0%, rgba(132, 204, 22, .18), transparent 60%),
        linear-gradient(180deg, #12171d, #0c1014);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px;
}
.phone-logo { width: 78%; max-width: 190px; filter: drop-shadow(0 8px 24px rgba(132, 204, 22, .3)); }
.phone-tag {
    font-family: 'Oswald', sans-serif;
    letter-spacing: .3em;
    font-size: .7rem;
    color: var(--green);
    text-transform: uppercase;
}
.phone-pill {
    width: 80%; height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    margin-top: 4px;
}
.phone-pill.short { width: 55%; background: rgba(132, 204, 22, .18); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ── Features ─────────────────────────────────────────────── */
.features { padding: 90px 0; background: var(--bg-2); }
.section-head { text-align: center; margin-bottom: 54px; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(132, 204, 22, .45);
    background: var(--surface-2);
}
.feature-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 13px;
    background: rgba(132, 204, 22, .12);
    margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--green); }
.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin-bottom: 8px;
}
.feature-card p { color: var(--text-dim); font-size: .96rem; }
.feature-card.is-featured {
    background: linear-gradient(160deg, rgba(22, 163, 74, .16), rgba(132, 204, 22, .06));
    border-color: rgba(132, 204, 22, .5);
}
.feature-card.is-featured .feature-icon { background: var(--green); }
.feature-card.is-featured .feature-icon svg { fill: #0b0d10; }

/* ── MVP band ─────────────────────────────────────────────── */
.mvp-band {
    padding: 80px 0;
    background:
        radial-gradient(700px 300px at 100% 50%, rgba(132, 204, 22, .16), transparent 60%),
        var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.mvp-inner {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 40px;
    align-items: center;
}
.mvp-copy p { color: var(--text-dim); font-size: 1.08rem; max-width: 620px; margin-top: 16px; }
.mvp-stars { display: flex; gap: 6px; justify-content: flex-end; }
.mvp-stars svg { width: clamp(32px, 5vw, 54px); height: clamp(32px, 5vw, 54px); fill: var(--green); filter: drop-shadow(0 4px 14px rgba(132, 204, 22, .4)); }
.mvp-stars svg:nth-child(4) { fill: rgba(132, 204, 22, .45); }
.mvp-stars svg:nth-child(5) { fill: rgba(132, 204, 22, .25); }

/* ── Download ─────────────────────────────────────────────── */
.download { padding: 90px 0; text-align: center; background: var(--bg-2); }
.download-sub { color: var(--text-dim); font-size: 1.1rem; margin: 14px 0 30px; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-bottom { text-align: center; }
.footer-bottom .container {
    padding-top: 34px;
    padding-bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-logo { height: 42px; width: auto; }
.footer-bottom span { color: var(--text-dim); font-size: .85rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-copy { display: flex; flex-direction: column; align-items: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .store-badges { justify-content: center; }
    .mvp-inner { grid-template-columns: 1fr; text-align: center; }
    .mvp-copy p { margin-left: auto; margin-right: auto; }
    .mvp-stars { justify-content: center; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .nav-link { display: none; }
    .hero { padding: 56px 0 64px; }
    .features, .download, .mvp-band { padding: 64px 0; }
    .feature-grid { grid-template-columns: 1fr; }
}
