/* home.css — landing page only (index.html).
 *
 * Kept out of styles.css deliberately: styles.css is loaded by all eight pages
 * plus the SSR'd venue/genre/state/city pages, and adding landing-only rules
 * there risks regressions on surfaces this file never touches.
 *
 * Every colour here comes from a custom property defined in styles.css. Nothing
 * is hardcoded, which is what makes the light theme work for free —
 * html[data-theme='light'] redefines the tokens and this file follows.
 */

/* ── Shared scaffolding ───────────────────────────────────────────── */

.home main {
    display: block;
}

.home section {
    padding: clamp(56px, 8vw, 104px) 0;
    border-bottom: 1px solid var(--border);
}

.home-narrow {
    max-width: 760px;
}

.home-section-title {
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 0 0 12px;
}

.home-section-sub {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 62ch;
    margin: 0 0 36px;
}

.home-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 18px;
}

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

/* ── Hero ─────────────────────────────────────────────────────────── */

.home-hero {
    /* The glow is decorative and sits behind everything. Radial rather than an
       image so it re-tints with the theme instead of needing a second asset. */
    background:
        radial-gradient(920px 420px at 50% -10%,
            color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%),
        var(--bg);
}

.home-hero-inner {
    max-width: 860px;
}

.home-hero h1 {
    font-size: clamp(34px, 6.2vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
    margin: 0 0 20px;
}

.home-lede {
    color: var(--text-muted);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.7;
    max-width: 60ch;
    margin: 0 0 32px;
}

.home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.home-cta-center {
    justify-content: center;
}

.btn-lg {
    padding: 14px 26px;
    font-size: 15px;
}

/* Stats. definition list so the label/figure pairing is real structure rather
   than two stacked divs that happen to look related. */
.home-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 0;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.home-stat dt {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.home-stat dd {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--accent-2);
    font-variant-numeric: tabular-nums;
}

/* ── Video ────────────────────────────────────────────────────────── */

.home-video-frame {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elev);
    box-shadow: var(--shadow);
}

.home-video {
    display: block;
    width: 100%;
    height: auto;
}

.home-video-sound {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elev-2);
    color: var(--text);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.home-video-sound:hover {
    border-color: var(--accent);
}

.home-video-sound:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ── Surface cards ────────────────────────────────────────────────── */

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

.home-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elev);
    transition: border-color 0.15s ease;
}

.home-card:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
}

.home-card-kicker {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin: 0;
}

.home-card h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin: 0;
}

.home-card-body {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.home-card-link {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--link);
    text-decoration: none;
}

.home-card-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-card-link::after {
    content: " →";
}

/* ── Steps ────────────────────────────────────────────────────────── */

.home-steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.home-steps li {
    counter-increment: step;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elev);
}

.home-steps li::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 12px;
}

.home-steps h3 {
    font-size: 19px;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

.home-steps p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

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

.home-price-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.home-price {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elev);
}

.home-price-featured {
    border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
}

.home-price-name {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 10px;
}

.home-price-figure {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
    font-variant-numeric: tabular-nums;
}

.home-price-figure span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.home-price-note {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.home-fineprint {
    margin-top: 24px;
    font-size: 14px;
}

.home-fineprint a {
    color: var(--link);
}

/* ── FAQ ──────────────────────────────────────────────────────────── */

.home-faq-list {
    margin: 0;
    border-top: 1px solid var(--border);
}

.home-faq-list > div {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.home-faq-list dt {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.home-faq-list dd {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.home-faq-list dd a {
    color: var(--link);
}

/* ── Final CTA + footer ───────────────────────────────────────────── */

.home-final {
    text-align: center;
}

.home-final h2 {
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-wrap: balance;
    margin: 0 0 32px;
}

.home-foot-tagline {
    font-size: 17px;
    margin: 0 0 18px;
}

.accent-inline { color: var(--accent); }
.accent-inline2 { color: var(--accent-2); }

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 18px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Motion ───────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .home-card,
    .home-video-sound {
        transition: none;
    }
}
