/* ================================================================
   VoxCraft /beta page
   Inherits landing.css for header, hero scaffolding, buttons, the
   pricing-card / pricing-card-pro structure, features grid,
   final-cta, and footer. This file only adds:
   - Hero offer line under the subtitle
   - "Regular price" strikethrough treatment above the founder price
   - Grandfathering FAQ list
   ================================================================ */

/* --- Hero tweaks: tighten vertical rhythm without the mockup --- */
.beta-hero {
    min-height: auto;
    padding: 9rem 1.5rem 6rem;
}

/* Offer line that sits between subtitle and CTAs. Quieter than the
   subtitle, but anchors the founder context before the user clicks. */
.beta-hero-offer {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 540px;
    margin: -0.5rem auto 1.5rem;
}
.beta-hero-offer strong {
    color: var(--text);
    font-weight: 600;
}

/* ================================================================
   PRO CARD - founder treatment
   "Regular price $10/mo" sits above the big $6 price, struck through.
   ================================================================ */
.pricing-was {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.pricing-was-label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.6875rem;
    font-weight: 600;
}

.pricing-was-amount {
    position: relative;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-was-amount::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 55%;
    height: 1.5px;
    background: var(--diff-wrong);
    transform: rotate(-6deg);
    transform-origin: center;
    border-radius: 1px;
    opacity: 0.85;
}

/* ================================================================
   GRANDFATHERING FAQ
   ================================================================ */
.beta-faq {
    padding: 7rem 0;
    background: var(--bg-dark);
    border-top: 1px solid oklch(1 0 0 / 0.04);
    border-bottom: 1px solid oklch(1 0 0 / 0.04);
}

.beta-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beta-faq-item {
    background: var(--bg-card);
    border: 1px solid oklch(1 0 0 / 0.06);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    transition: border-color var(--transition);
}
.beta-faq-item:hover {
    border-color: oklch(1 0 0 / 0.1);
}

.beta-faq-q {
    font-family: var(--ff);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.beta-faq-a {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 640px) {
    .beta-hero {
        padding: 6rem 1.25rem 3rem;
    }

    .beta-hero-offer {
        font-size: 0.875rem;
    }

    .beta-faq {
        padding: 4rem 0;
    }

    .beta-faq-item {
        padding: 1.25rem 1.25rem;
    }
}
