/**
 * Shared styles for the signup-flow pages: login, register, forgot/reset
 * password, and pricing. Replaces the near-identical inline <style> blocks
 * that used to live in each template.
 *
 * Visual language: a full-bleed, vivid multi-sport photo (static/images/
 * backgrounds/sports-venues-collage.jpg) sits behind a frosted glass card. A radial
 * scrim keeps the area directly behind the card legible while the rest of
 * the image stays bright and colorful. The old single cyan/mint accent is
 * replaced by a broader sport-inspired palette used across buttons, badges,
 * and card borders.
 */

:root {
    --auth-bg-base: #05070c;
    --court-orange: #ff8c42;
    --turf-green: #2ecc71;
    --diamond-red: #ff4d5e;
    --ace-lime: #c8ff4d;
    --brand-cyan: #00d4ff;
    --brand-violet: #7c5cff;
    --brand-mint: #00ff9d;
    --text-muted: rgba(255, 255, 255, 0.6);
}

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

html, body {
    background: var(--auth-bg-base);
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Full-bleed background layer (auth pages) ──────────────────────────── */

.auth-bg {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.auth-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(ellipse 60% 55% at 50% 55%, rgba(3,4,10,0.74) 0%, rgba(3,4,10,0.40) 45%, rgba(3,4,10,0) 72%),
        linear-gradient(180deg, rgba(3,4,10,0.55) 0%, rgba(3,4,10,0.12) 20%, rgba(3,4,10,0.12) 80%, rgba(3,4,10,0.62) 100%),
        url('/static/images/backgrounds/sports-venues-collage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Each auth page gets its own sport-themed backdrop instead of the shared
   collage, so the flow feels varied rather than repeating the same image. */
.page-register .auth-bg::before { background-image:
        radial-gradient(ellipse 60% 55% at 50% 55%, rgba(3,4,10,0.74) 0%, rgba(3,4,10,0.40) 45%, rgba(3,4,10,0) 72%),
        linear-gradient(180deg, rgba(3,4,10,0.55) 0%, rgba(3,4,10,0.12) 20%, rgba(3,4,10,0.12) 80%, rgba(3,4,10,0.62) 100%),
        url('/static/images/backgrounds/bg-basketball.jpg'); }

.page-login .auth-bg::before { background-image:
        radial-gradient(ellipse 60% 55% at 50% 55%, rgba(3,4,10,0.74) 0%, rgba(3,4,10,0.40) 45%, rgba(3,4,10,0) 72%),
        linear-gradient(180deg, rgba(3,4,10,0.55) 0%, rgba(3,4,10,0.12) 20%, rgba(3,4,10,0.12) 80%, rgba(3,4,10,0.62) 100%),
        url('/static/images/backgrounds/bg-football.jpg'); }

.page-forgot .auth-bg::before,
.page-reset .auth-bg::before { background-image:
        radial-gradient(ellipse 60% 55% at 50% 55%, rgba(3,4,10,0.74) 0%, rgba(3,4,10,0.40) 45%, rgba(3,4,10,0) 72%),
        linear-gradient(180deg, rgba(3,4,10,0.55) 0%, rgba(3,4,10,0.12) 20%, rgba(3,4,10,0.12) 80%, rgba(3,4,10,0.62) 100%),
        url('/static/images/backgrounds/bg-tennis.jpg'); }

.auth-page-wrap {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* Fixed nav is ~90-120px tall; top padding must clear it on every
       viewport so tall cards (register, with its badge + 3 fields +
       checkbox) never render partially behind the nav bar. */
    padding: 140px 20px 60px;
}

/* ── Glass card ─────────────────────────────────────────────────────────── */

.glass-card {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background:
        radial-gradient(circle 200px at 0% 0%, rgba(0,212,255,0.30), transparent 100%) padding-box,
        radial-gradient(circle 200px at 100% 100%, rgba(124,92,255,0.30), transparent 100%) padding-box,
        linear-gradient(135deg, rgba(14,17,26,0.84) 0%, rgba(6,9,16,0.92) 100%) padding-box,
        linear-gradient(135deg, var(--brand-cyan), var(--brand-violet)) border-box;
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-radius: 20px;
    padding: 44px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        0 0 80px rgba(0,212,255,0.14),
        0 0 120px rgba(124,92,255,0.12);
    opacity: 0;
    animation: cardEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Per-page gradient border + corner color washes, tying badge/glow/border
   into one consistent accent instead of a single flat card color. */
.page-register .glass-card {
    background:
        radial-gradient(circle 200px at 0% 0%, rgba(0,255,157,0.16), transparent 100%) padding-box,
        radial-gradient(circle 200px at 100% 100%, rgba(200,255,77,0.13), transparent 100%) padding-box,
        linear-gradient(135deg, rgba(14,17,26,0.84) 0%, rgba(6,9,16,0.92) 100%) padding-box,
        linear-gradient(135deg, var(--brand-mint), var(--ace-lime)) border-box;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        0 0 80px rgba(0,255,157,0.14),
        0 0 120px rgba(200,255,77,0.12);
}
.page-forgot .glass-card,
.page-reset .glass-card {
    background:
        radial-gradient(circle 200px at 0% 0%, rgba(255,140,66,0.17), transparent 100%) padding-box,
        radial-gradient(circle 200px at 100% 100%, rgba(255,77,94,0.17), transparent 100%) padding-box,
        linear-gradient(135deg, rgba(14,17,26,0.84) 0%, rgba(6,9,16,0.92) 100%) padding-box,
        linear-gradient(135deg, var(--court-orange), var(--diamond-red)) border-box;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        0 0 80px rgba(255,140,66,0.16),
        0 0 120px rgba(255,77,94,0.14);
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card contents fade/rise in just after the card shell, for a subtle staggered feel. */
.card-header, .glass-card form, .trial-badge, .divider, .link-row {
    opacity: 0;
    animation: contentRise 0.6s ease-out 0.22s forwards;
}
.glass-card form { animation-delay: 0.30s; }
.trial-badge { animation-delay: 0.26s; }
.divider { animation-delay: 0.38s; }
.link-row { animation-delay: 0.44s; }

@keyframes contentRise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gentle breathing glow on the icon badge to keep the card feeling alive. */
.card-icon-badge { animation: badgePulse 3.2s ease-in-out infinite; }
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 28px rgba(0,212,255,0.28), inset 0 0 16px rgba(0,212,255,0.10); }
    50% { box-shadow: 0 0 40px rgba(0,212,255,0.42), inset 0 0 20px rgba(0,212,255,0.16); }
}
.page-register .card-icon-badge {
    animation-name: badgePulseRegister;
}
@keyframes badgePulseRegister {
    0%, 100% { box-shadow: 0 0 28px rgba(200,255,77,0.28), inset 0 0 16px rgba(200,255,77,0.10); }
    50% { box-shadow: 0 0 40px rgba(200,255,77,0.42), inset 0 0 20px rgba(200,255,77,0.16); }
}
.page-forgot .card-icon-badge,
.page-reset .card-icon-badge {
    animation-name: badgePulseWarm;
}
@keyframes badgePulseWarm {
    0%, 100% { box-shadow: 0 0 28px rgba(255,77,94,0.28), inset 0 0 16px rgba(255,77,94,0.10); }
    50% { box-shadow: 0 0 40px rgba(255,77,94,0.42), inset 0 0 20px rgba(255,77,94,0.16); }
}

@media (prefers-reduced-motion: reduce) {
    .glass-card,
    .card-header, .glass-card form, .trial-badge, .divider, .link-row {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .card-icon-badge { animation: none; }
}

/* Diagonal glass "sheen" — a soft light reflection across the top-left,
   giving the card real dimensionality instead of a flat, single-tone face. */
.glass-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 20%, rgba(255,255,255,0) 42%);
    pointer-events: none;
}

/* Soft decorative glow tucked behind the card content (negative z-index
   keeps it beneath the in-flow text/form but above the card's own fill). */
.glass-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 240px; height: 240px;
    right: -90px; bottom: -100px;
    background: radial-gradient(circle, rgba(0,212,255,0.22), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}
.page-register .glass-card::after { background: radial-gradient(circle, rgba(200,255,77,0.20), transparent 70%); }
.page-forgot .glass-card::after,
.page-reset .glass-card::after { background: radial-gradient(circle, rgba(255,77,94,0.20), transparent 70%); }

h1 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }

/* ── Card header: icon badge + heading, centered ───────────────────────── */

.card-header { text-align: center; margin-bottom: 28px; }
.card-header h1 { margin-bottom: 8px; }
.card-header .subtitle { margin-bottom: 0; }

.card-icon-badge {
    width: 60px; height: 60px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(124,92,255,0.18));
    border: 1px solid rgba(0,212,255,0.35);
    box-shadow: 0 0 28px rgba(0,212,255,0.28), inset 0 0 16px rgba(0,212,255,0.10);
    font-size: 22px;
    color: var(--brand-cyan);
}
.page-register .card-icon-badge {
    background: linear-gradient(135deg, rgba(0,255,157,0.18), rgba(200,255,77,0.18));
    border-color: rgba(200,255,77,0.4);
    box-shadow: 0 0 28px rgba(200,255,77,0.28), inset 0 0 16px rgba(200,255,77,0.10);
    color: var(--ace-lime);
}
.page-forgot .card-icon-badge,
.page-reset .card-icon-badge {
    background: linear-gradient(135deg, rgba(255,140,66,0.18), rgba(255,77,94,0.18));
    border-color: rgba(255,77,94,0.4);
    box-shadow: 0 0 28px rgba(255,77,94,0.28), inset 0 0 16px rgba(255,77,94,0.10);
    color: var(--diamond-red);
}

/* ── Badges ─────────────────────────────────────────────────────────────── */

.trial-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, rgba(0,255,157,0.16), rgba(200,255,77,0.16));
    border: 1px solid rgba(200,255,77,0.35);
    color: var(--ace-lime); border-radius: 20px; padding: 5px 14px; font-size: 13px; font-weight: 700;
    margin-bottom: 28px;
}

/* ── Forms ──────────────────────────────────────────────────────────────── */

.form-group { margin-bottom: 18px; }
label {
    display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.6px;
}
input[type="email"], input[type="password"], input[type="text"] {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.15);
}
/* Chrome/Edge/Safari force their own light background on autofilled fields
   (the "white bar" look) — this can't be overridden with `background` alone,
   it needs a giant inset box-shadow trick to paint over their default. */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px rgba(20,24,34,0.92) inset;
    box-shadow: 0 0 0 1000px rgba(20,24,34,0.92) inset;
    caret-color: #fff;
    transition: background-color 9999s ease-in-out 0s;
}

/* ── Input icons & password show/hide toggle ───────────────────────────── */

.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-left: 42px; }
.input-icon-wrap.has-toggle input { padding-right: 42px; }

.input-icon-left {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.35); font-size: 14px; pointer-events: none;
    transition: color 0.2s;
}
.input-icon-wrap input:focus ~ .input-icon-left { color: var(--brand-cyan); }

.password-toggle {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    background: none; border: none; padding: 6px 8px; cursor: pointer;
    color: rgba(255,255,255,0.4); font-size: 14px;
    transition: color 0.2s;
}
.password-toggle:hover { color: rgba(255,255,255,0.85); }
.password-toggle:focus-visible { outline: 1px solid var(--brand-cyan); border-radius: 6px; }

.remember-row { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.remember-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand-cyan); }
.remember-row label { margin: 0; font-size: 13px; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.6); }

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn-primary {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-violet));
    color: #04060b;
    font-weight: 800;
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
    font-family: inherit;
}
.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,212,255,0.30);
}
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0; left: -75%; width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 125%; }

/* Per-page gradient variants (set via a class on <body>) */
.page-register .btn-primary {
    background: linear-gradient(135deg, var(--brand-mint), var(--ace-lime));
}
.page-register .btn-primary:hover { box-shadow: 0 8px 24px rgba(200,255,77,0.30); }

.page-forgot .btn-primary,
.page-reset .btn-primary {
    background: linear-gradient(135deg, var(--court-orange), var(--diamond-red));
}
.page-forgot .btn-primary:hover,
.page-reset .btn-primary:hover { box-shadow: 0 8px 24px rgba(255,77,94,0.30); }

.terms { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 16px; line-height: 1.6; }
.terms a { color: rgba(255,255,255,0.55); }

.divider { text-align: center; margin: 24px 0; color: rgba(255,255,255,0.35); font-size: 13px; }
.link-row { text-align: center; font-size: 14px; color: rgba(255,255,255,0.5); }
.link-row a { color: var(--brand-cyan); text-decoration: none; font-weight: 600; }

/* ── Alerts ─────────────────────────────────────────────────────────────── */

.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.alert-danger { background: rgba(255,77,94,0.16); border: 1px solid rgba(255,77,94,0.35); color: #ff8a95; }
.alert-success { background: rgba(0,255,157,0.14); border: 1px solid rgba(0,255,157,0.35); color: var(--brand-mint); }
.alert-info { background: rgba(0,212,255,0.14); border: 1px solid rgba(0,212,255,0.35); color: var(--brand-cyan); }
.alert-warning { background: rgba(255,204,0,0.14); border: 1px solid rgba(255,204,0,0.35); color: #ffcc00; }
.field-error { color: #ff8a95; font-size: 12px; margin-top: 5px; }

/* ── Pricing page ───────────────────────────────────────────────────────── */

.pricing-hero-bg {
    position: relative;
    background-image:
        radial-gradient(ellipse 70% 60% at 50% 38%, rgba(3,4,10,0.55) 0%, rgba(3,4,10,0.25) 50%, rgba(3,4,10,0) 75%),
        linear-gradient(180deg, rgba(3,4,10,0.35) 0%, rgba(3,4,10,0.15) 30%, rgba(3,4,10,0.68) 82%, var(--auth-bg-base) 100%),
        url('/static/images/backgrounds/bg-baseball.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-bottom: 24px;
}

.auth-toolbar {
    max-width: 1200px; margin: 0 auto; padding: 8px 24px 0;
    display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 16px;
}
.auth-toolbar a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.auth-toolbar a:hover { color: #fff; }

.hero { text-align: center; padding: 96px 24px 60px; }
.hero-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--ace-lime); margin-bottom: 16px; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.hero h1 span {
    background: linear-gradient(135deg, var(--court-orange), var(--diamond-red), var(--brand-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; line-height: 1.6; }

.billing-toggle-wrap { display: flex; justify-content: center; margin: -20px 24px 44px; }
.billing-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}
.billing-toggle-btn {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.billing-toggle-btn:hover { color: rgba(255,255,255,0.85); }
.billing-toggle-btn.active {
    background: linear-gradient(135deg, var(--court-orange), var(--diamond-red));
    color: #08050a;
    box-shadow: 0 4px 16px rgba(255,77,94,0.32);
}
.billing-toggle-btn.active:hover { color: #08050a; }
.billing-toggle-btn .save-badge {
    background: rgba(0,255,157,0.18);
    color: var(--brand-mint);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 10px;
    letter-spacing: 0.2px;
}
.billing-toggle-btn.active .save-badge {
    background: rgba(8,5,10,0.22);
    color: #08050a;
}
.price-note { font-size: 13px; color: var(--ace-lime); font-weight: 700; }

.pricing-grid { display: flex; justify-content: center; gap: 24px; padding: 0 24px 80px; flex-wrap: wrap; }

.plan-card {
    position: relative;
    border: 1px solid transparent;
    background:
        radial-gradient(circle 180px at 0% 0%, rgba(0,212,255,0.22), transparent 100%) padding-box,
        radial-gradient(circle 180px at 100% 100%, rgba(124,92,255,0.22), transparent 100%) padding-box,
        linear-gradient(135deg, rgba(14,17,26,0.80) 0%, rgba(6,9,16,0.90) 100%) padding-box,
        linear-gradient(135deg, rgba(0,212,255,0.5), rgba(124,92,255,0.5)) border-box;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-radius: 24px; padding: 40px 36px;
    width: 100%; max-width: 380px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
/* Glass sheen, same treatment as the auth cards, kept behind the static
   content via a negative z-index. */
.plan-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 20%, rgba(255,255,255,0) 42%);
    pointer-events: none;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,0.5); }
.plan-card.featured {
    background:
        radial-gradient(circle 180px at 0% 0%, rgba(255,140,66,0.26), transparent 100%) padding-box,
        radial-gradient(circle 180px at 100% 100%, rgba(255,77,94,0.26), transparent 100%) padding-box,
        linear-gradient(135deg, rgba(14,17,26,0.84) 0%, rgba(6,9,16,0.92) 100%) padding-box,
        linear-gradient(135deg, var(--court-orange), var(--diamond-red), var(--brand-violet), var(--brand-cyan)) border-box;
    box-shadow: 0 0 50px rgba(255,77,94,0.16), 0 0 90px rgba(0,212,255,0.14), 0 20px 50px rgba(0,0,0,0.5);
}
.plan-card.featured:hover {
    box-shadow: 0 0 62px rgba(255,77,94,0.22), 0 0 110px rgba(0,212,255,0.18), 0 26px 60px rgba(0,0,0,0.55);
}
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--court-orange), var(--diamond-red));
    color: #08050a; font-size: 12px; font-weight: 800;
    padding: 5px 18px; border-radius: 20px; white-space: nowrap;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255,77,94,0.35);
}

.plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.plan-price { font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-period { color: rgba(255,255,255,0.45); font-size: 15px; margin-bottom: 8px; }
.trial-note { font-size: 13px; color: var(--ace-lime); font-weight: 600; margin-bottom: 32px; }

.features { list-style: none; margin-bottom: 36px; }
.features li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px; color: rgba(255,255,255,0.78);
    line-height: 1.4;
}
.features li:last-child { border-bottom: none; }
.features .icon { color: var(--turf-green); width: 18px; flex-shrink: 0; margin-top: 1px; }

.btn-cta {
    display: block; width: 100%; text-align: center;
    padding: 15px; border-radius: 12px; font-size: 16px;
    font-weight: 800; cursor: pointer; text-decoration: none;
    border: none; font-family: inherit;
    transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-cta.primary {
    background: linear-gradient(135deg, var(--court-orange) 0%, var(--diamond-red) 35%, var(--brand-violet) 70%, var(--brand-cyan) 100%);
    color: #08050a;
}
.btn-cta.primary:hover { box-shadow: 0 10px 30px rgba(255,77,94,0.35); }
.btn-cta.outline { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.btn-cta.outline:hover { border-color: rgba(255,255,255,0.5); }

.faq { max-width: 700px; margin: 0 auto 80px; padding: 0 24px; }
.faq h2 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 36px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.faq-q { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.faq-a { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.pricing-grid + .alert,
.pricing-hero-bg .alert {
    padding: 14px 20px; border-radius: 12px; font-size: 14px; margin: 0 24px 32px; max-width: 480px; margin-inline: auto;
}
.pricing-hero-bg .alert-warning { background: rgba(255,204,0,0.14); border: 1px solid rgba(255,204,0,0.35); color: #ffcc00; text-align: center; }
.pricing-hero-bg .alert-success { background: rgba(0,255,157,0.14); border: 1px solid rgba(0,255,157,0.35); color: var(--brand-mint); text-align: center; }

@media (max-width: 480px) {
    .glass-card { padding: 36px 26px; }
    .hero { padding: 80px 20px 48px; }
}
