/* ===============================================
   US Live Music Venues — /pricing
   Sales landing page. Reuses :root tokens from /css/styles.css.
   =============================================== */

.pricing-body main { display: block; }

/* ---------- HERO ---------- */
.pricing-hero {
    padding: 72px 0 56px;
    background:
        radial-gradient(80% 60% at 50% 0%, rgba(255, 61, 107, 0.18) 0%, transparent 60%),
        radial-gradient(60% 60% at 80% 30%, rgba(0, 224, 199, 0.10) 0%, transparent 60%),
        var(--bg);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.pricing-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 61, 107, 0.12);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pricing-h1 {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text) 0%, var(--text) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pricing-sub {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    line-height: 1.55;
}
.pricing-sub strong { color: var(--text); }

.pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    font-weight: 600;
}
.pill-price {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 22px;
    font-weight: 800;
}
.pill-divider { color: var(--border); }
.pill-alt { color: var(--text-muted); font-size: 15px; }

.pricing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 18px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--bg-elev-2);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    min-height: 44px;
}
.btn:hover, .btn:focus-visible {
    text-decoration: none;
    transform: translateY(-1px);
    outline: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    /* #0b0b10 reads as 11.67:1 on the mint half + 5.23:1 on the pink half;
       white was 1.68:1 on mint → WCAG AA fail. */
    color: #0b0b10;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 61, 107, 0.35);
}
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: 0 14px 38px rgba(255, 61, 107, 0.5); }
.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--bg-elev); border-color: var(--accent-2); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-xl { padding: 18px 36px; font-size: 18px; }

.pricing-reassure { color: var(--text-muted); font-size: 14px; margin: 8px 0 0; }

/* ---------- SECTIONS ---------- */
.pricing-section {
    padding: 72px 0;
    border-bottom: 1px solid var(--border);
}
.pricing-section-alt { background: var(--bg-elev); }

.section-h2 {
    text-align: center;
    font-size: clamp(26px, 4vw, 38px);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.section-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 17px;
    margin: 0 0 40px;
}

/* ---------- PROBLEM GRID ---------- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.problem-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: left;
    transition: transform .2s ease, border-color .2s ease;
}
.problem-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.problem-emoji { font-size: 36px; margin-bottom: 14px; }
.problem-card h3 { margin: 0 0 8px; font-size: 19px; }
.problem-card p { margin: 0; color: var(--text-muted); line-height: 1.55; }

/* ---------- FEATURE ROWS ---------- */
.feature-row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 40px 0;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-num {
    display: inline-block;
    font-family: var(--font-mono);
    color: var(--accent-2);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.feature-copy h3 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.feature-copy > p { color: var(--text-muted); font-size: 17px; margin: 0 0 16px; }
.feature-copy strong { color: var(--text); }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    position: relative;
    padding: 6px 0 6px 28px;
    color: var(--text);
}
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent-2);
    font-weight: 800;
}

/* feature illustrations */
.feature-art { display: flex; justify-content: center; }

.art-card {
    width: 320px;
    border-radius: var(--radius);
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.art-card-img {
    height: 140px;
    background:
        linear-gradient(135deg, rgba(255, 61, 107, 0.7) 0%, rgba(0, 224, 199, 0.7) 100%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 8px, transparent 8px, transparent 16px);
}
.art-card-body { padding: 16px; }
.art-line { height: 10px; border-radius: 4px; background: var(--bg-elev); margin-bottom: 8px; }
.art-line-strong { width: 70%; background: var(--text); opacity: 0.7; height: 14px; }
.art-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 224, 199, 0.14);
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

.art-map {
    width: 320px;
    height: 200px;
    border-radius: var(--radius);
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-map svg { width: 100%; height: auto; }

.art-csv {
    width: 360px;
    border-radius: var(--radius);
    background: #06060a;
    border: 1px solid var(--border);
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text);
    box-shadow: var(--shadow);
}
html[data-theme='light'] .art-csv { background: #f4f4f8; color: #15151b; }
.art-csv-row { padding: 4px 0; border-bottom: 1px dashed var(--border); }
.art-csv-row:last-child { border-bottom: none; }
.art-csv-head { color: var(--accent-2); font-weight: 700; }
.art-csv-more { color: var(--text-muted); font-style: italic; }

.art-mail {
    width: 360px;
    border-radius: var(--radius);
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.art-mail-head { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.art-mail-from { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.art-mail-subj { font-weight: 700; font-size: 14px; }
.art-mail-body { padding: 14px 16px; font-size: 13px; line-height: 1.55; color: var(--text); }
.art-mail-body p { margin: 0 0 8px; }
.art-link { color: var(--link); }

/* ---------- COMPARE TABLE ---------- */
.compare-table-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table th, .compare-table td {
    padding: 14px 18px;
    text-align: left;
}
.compare-table thead th {
    background: var(--bg-elev-2);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.compare-table thead th.compare-pro {
    background: linear-gradient(135deg, rgba(255, 61, 107, 0.18) 0%, rgba(0, 224, 199, 0.12) 100%);
    color: var(--accent);
}
.compare-table tbody th {
    font-weight: 500;
    color: var(--text);
}
.compare-table td { width: 110px; text-align: center; }
.compare-table td.compare-pro { color: var(--accent-2); font-weight: 700; font-size: 18px; }
.compare-table tr { border-top: 1px solid var(--border); }
.compare-table tbody tr:hover { background: var(--bg-elev-2); }

/* ---------- PRICING CARD ---------- */
.pricing-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}
.pricing-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 224, 199, 0.14);
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.pricing-card-title { margin: 14px 0 28px; font-size: clamp(22px, 3vw, 30px); }
.pricing-card-prices {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.price-block { text-align: center; }
.price-block-main { padding-bottom: 8px; }
.price-num {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.price-per { color: var(--text-muted); font-size: 15px; margin-top: 4px; }
.price-note { color: var(--text-muted); font-size: 13px; margin-top: 6px; }
.price-save { color: var(--accent-2); font-weight: 600; }
.price-or {
    align-self: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
    padding: 0 8px;
}
.pricing-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-card-list li {
    position: relative;
    padding: 8px 0 8px 32px;
    border-top: 1px solid var(--border);
}
.pricing-card-list li:first-child { border-top: none; }
.pricing-card-list li::before {
    content: "✓";
    position: absolute; left: 4px; top: 8px;
    color: var(--accent-2);
    font-weight: 800;
}
.pricing-card-cta { width: 100%; max-width: 360px; justify-content: center; margin-bottom: 0; }
.pricing-card-cta-row {
    display: flex; flex-direction: column; gap: 10px;
    align-items: center; margin-bottom: 18px;
}
.pricing-card-cta-annual {
    background: var(--bg-elev-2);
    color: var(--text);
    border: 1px solid var(--accent-2);
    box-shadow: none;
    font-weight: 600;
}
.pricing-card-cta-annual:hover {
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: 0 14px 38px rgba(0, 224, 199, 0.4);
}
.pricing-card-reassure { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.55; }
.pricing-card-reassure strong { color: var(--text); }

/* ---------- STATS ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.stat-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
}
.stat-num {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}
.stat-label { color: var(--text-muted); margin-top: 6px; font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 760px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 22px;
    transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--accent-2); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--accent);
    transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    background:
        radial-gradient(80% 60% at 50% 100%, rgba(0, 224, 199, 0.15) 0%, transparent 60%),
        radial-gradient(60% 60% at 20% 50%, rgba(255, 61, 107, 0.10) 0%, transparent 60%),
        var(--bg);
    text-align: center;
}
.final-h2 {
    font-size: clamp(28px, 5vw, 46px);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.final-sub { color: var(--text-muted); font-size: 17px; margin: 0 0 32px; }

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

.waitlist-form {
    max-width: 720px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 2fr 1.4fr auto;
    gap: 10px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
    align-items: center;
}
.form-row input[type="email"],
.form-row select {
    width: 100%;
    background: var(--bg-elev-2);
    color: var(--text);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 16px;
    min-height: 44px;
}
.form-row input[type="email"]:focus,
.form-row select:focus {
    outline: 2px solid var(--accent-2);
    outline-offset: 0;
    border-color: var(--accent-2);
}
.form-row button[type="submit"] {
    border-radius: var(--radius-sm);
    padding: 14px 26px;
    white-space: nowrap;
}
.form-error {
    min-height: 20px;
    color: var(--accent);
    font-size: 14px;
    margin: 10px 0 0;
    text-align: left;
    padding: 0 4px;
}
.form-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin: 12px 0 0;
}

.waitlist-success {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-elev);
    border: 1px solid var(--accent-2);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
}
.success-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.waitlist-success h3 { margin: 0 0 8px; font-size: 22px; }
.waitlist-success p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.55; }
.waitlist-success strong { color: var(--text); }

.waitlist-fallback {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-elev);
    border: 1px solid var(--accent-warn);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.waitlist-fallback p { margin: 0 0 16px; color: var(--text); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .problem-grid { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
    .feature-row-reverse { direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .pricing-hero { padding: 48px 0 36px; }
    .pricing-section { padding: 48px 0; }
    .pricing-card { padding: 28px 20px; }
    .pricing-card-prices { gap: 14px; }
    .price-or { padding: 0; font-size: 13px; }
    .compare-table th, .compare-table td { padding: 10px 12px; font-size: 14px; }
    .compare-table td { width: 70px; }
    .art-card, .art-map, .art-csv, .art-mail { width: 100%; max-width: 360px; }
}
