/* =============================================================================
   WELLPREPD LANDING PAGE — styles.css
   Light/Dark theme, responsive, accessible
   ============================================================================= */

/* =============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
    /* Brand (fixed) */
    --brand-teal: #14B8A6;
    --brand-teal-hover: #0D9488;
    --brand-accent: #2DD4BF;
    --brand-success: #22C55E;
    --brand-navy: #0B1120;

    /* Light theme (default) */
    --surface: #FFFFFF;
    --surface-muted: #F3F4F6;
    --surface-subtle: #F8FAFC;
    --border: #E2E8F0;
    --border-strong: #CBD5E1;
    --text: #0B1120;
    --text-muted: #475569;
    --text-secondary: #64748B;
    --primary: #14B8A6;
    --primary-hover: #0D9488;
    --primary-subtle: rgba(20, 184, 166, 0.08);
    --accent: #2DD4BF;
    --on-primary: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.15);

    /* Typography */
    --font: 'Inter', system-ui, -apple-system, sans-serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: 150ms var(--ease-out);
    --transition-normal: 250ms var(--ease-out);
    --transition-theme: 400ms var(--ease-smooth);
}

[data-theme="dark"] {
    --surface: #111827;
    --surface-muted: #0B1120;
    --surface-subtle: #1E293B;
    --border: #1F2937;
    --border-strong: #374151;
    --text: #F8FAFC;
    --text-muted: #94A3B8;
    --text-secondary: #CBD5E1;
    --primary-subtle: rgba(20, 184, 166, 0.12);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(20, 184, 166, 0.2);
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--surface-muted);
    transition: color var(--transition-theme), background-color var(--transition-theme);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--on-primary);
    border-radius: 8px;
    z-index: 1000;
    font-weight: 500;
}
.skip-link:focus {
    top: 16px;
}

/* =============================================================================
   LAYOUT
   ============================================================================= */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================================================
   WELLPREPD LOGO
   ============================================================================= */

.wp-logo {
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    font-size: 1.6rem;
    display: inline-block;
    white-space: nowrap;
}

.wp-logo-sm {
    font-size: 1.3rem;
}

.wp-logo-well {
    color: var(--brand-teal);
    font-weight: 400;
}

.wp-logo-prep {
    color: var(--brand-teal-hover);
    font-weight: 600;
}

.wp-logo-d {
    color: var(--brand-teal-hover);
    position: relative;
    display: inline-block;
}

.wp-logo-d::after {
    content: "\2713";
    position: absolute;
    top: 36%;
    left: 62%;
    transform: translate(-50%, -50%);
    font-size: 0.72em;
    color: #F59E0B;
    font-weight: 900;
    pointer-events: none;
}

/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

.site-header.scrolled {
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-badge {
    border-radius: 8px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--surface-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2px;
    transition: background-color var(--transition-theme), border-color var(--transition-theme);
}

.lang-btn {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--on-primary);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Theme toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-subtle);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    color: var(--text);
    border-color: var(--border-strong);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Show/hide sun/moon icons based on theme */
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--on-primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--on-primary);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-subtle);
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-lg {
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
}

.header-signin {
    font-size: 13px;
    padding: 6px 16px;
}

/* =============================================================================
   SECTION SHARED
   ============================================================================= */

.section {
    padding: 100px 0;
    transition: background-color var(--transition-theme);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* =============================================================================
   HERO — Left-aligned, 100vh, narrative
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background-color: var(--surface-muted);
    transition: background-color var(--transition-theme);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .hero-glow {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.05) 40%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text);
    max-width: 720px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.status-active {
    background: var(--primary-subtle);
    color: var(--primary);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-teal);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(20, 184, 166, 0); }
}

/* =============================================================================
   TENSION — Editorial zigzag quotes
   ============================================================================= */

.section-tension {
    background-color: var(--surface);
}

.tension-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.tension-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.tension-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.tension-quotes {
    max-width: 720px;
    margin: 0 auto;
}

.tension-quote {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color var(--transition-theme);
}

.tension-quote:last-child {
    border-bottom: none;
}

.tension-quote-left {
    padding-right: 20%;
}

.tension-quote-right {
    padding-left: 20%;
    text-align: right;
}

.tq-text {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tq-effect {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================================================
   STANCE — Centered manifesto
   ============================================================================= */

.section-stance {
    background-color: var(--surface-muted);
    padding: 120px 0;
}

.stance-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.stance-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 24px;
}

.stance-quote {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    padding: 0;
    border: none;
}

.stance-answer {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 16px;
}

.stance-detail {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* =============================================================================
   AUDIENCE — Horizontal stacked cards with stat callouts
   ============================================================================= */

.section-audience {
    background-color: var(--surface);
}

.audience-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.audience-card {
    display: grid;
    grid-template-columns: 240px 1fr 200px;
    gap: 0;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .audience-card {
    background: var(--surface-subtle);
}

.audience-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.audience-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-subtle);
    color: var(--primary);
    flex-shrink: 0;
    transition: background-color var(--transition-theme), color var(--transition-theme);
}

.audience-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.audience-card-body {
    padding: 0 32px;
}

.audience-card-body p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.audience-card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 24px;
    border-left: 1px solid var(--border);
    transition: border-color var(--transition-theme);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 4px;
}

/* =============================================================================
   HOW IT WORKS — Timeline
   ============================================================================= */

.section-how {
    background-color: var(--surface-muted);
}

.section-how .section-header {
    margin-bottom: 120px;
}

.section-how .section-label {
    margin-bottom: 32px;
}

.how-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 110px;
}

/* Vertical timeline line */
.how-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
    transition: background-color var(--transition-theme);
}

.how-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding-bottom: 80px;
    position: relative;
}

.how-step:last-child {
    padding-bottom: 0;
}

.how-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: -110px;
    top: 0;
    width: 100px;
}

.how-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.how-step-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.how-step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    padding-top: 10px;
}

.how-step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.how-step-extra {
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =============================================================================
   SIGNAL STRIP — Visual break / pull-quote
   ============================================================================= */

.signal-strip {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--surface);
    transition: background-color var(--transition-theme), border-color var(--transition-theme);
}

.signal-text {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
    line-height: 1.5;
}

/* =============================================================================
   CLOSE / PRICING — Open signup + pricing cards
   ============================================================================= */

.section-close {
    background-color: var(--surface-muted);
}

.pricing-section {
    text-align: center;
}

.close-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.close-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.signup-cta {
    margin: 2rem auto;
    display: inline-block;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.btn-xl {
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 3rem auto 2rem;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-theme);
}

.pricing-card-popular {
    border-color: var(--accent, #2dd4bf);
    box-shadow: 0 0 0 1px var(--accent, #2dd4bf);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent, #2dd4bf);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-tier {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin: 1rem 0 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-sessions {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent, #2dd4bf);
    margin-bottom: 0.75rem;
}

.pricing-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1.5rem;
}

.pricing-signin {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.pricing-signin a {
    color: var(--accent, #2dd4bf);
    text-decoration: underline;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.site-footer {
    padding: 48px 0 32px;
    background: var(--surface-muted);
    border-top: 1px solid var(--border);
    transition: all var(--transition-theme);
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-company {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
    opacity: 0.7;
}

/* =============================================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger audience cards */
.audience-stack .audience-card.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.audience-stack .audience-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.audience-stack .audience-card.reveal:nth-child(1).visible { transition-delay: 0.05s; }
.audience-stack .audience-card.reveal:nth-child(2).visible { transition-delay: 0.15s; }
.audience-stack .audience-card.reveal:nth-child(3).visible { transition-delay: 0.25s; }

/* Stagger tension quotes */
.tension-quotes .tension-quote.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.tension-quotes .tension-quote.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.tension-quotes .tension-quote.reveal:nth-child(1).visible { transition-delay: 0.05s; }
.tension-quotes .tension-quote.reveal:nth-child(2).visible { transition-delay: 0.15s; }
.tension-quotes .tension-quote.reveal:nth-child(3).visible { transition-delay: 0.25s; }

/* Stagger how-steps */
.how-timeline .how-step.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.how-timeline .how-step.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-timeline .how-step.reveal:nth-child(1).visible { transition-delay: 0.05s; }
.how-timeline .how-step.reveal:nth-child(2).visible { transition-delay: 0.15s; }
.how-timeline .how-step.reveal:nth-child(3).visible { transition-delay: 0.25s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .audience-stack .audience-card.reveal,
    .tension-quotes .tension-quote.reveal,
    .how-timeline .how-step.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .status-dot {
        animation: none;
    }

    * {
        transition-duration: 0s !important;
    }
}

/* =============================================================================
   LEGAL PAGES (Privacy, Terms)
   ============================================================================= */

.legal-page {
    padding-top: 120px;
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.legal-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary-hover);
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

/* =============================================================================
   ABOUT PAGE
   ============================================================================= */

.about-hero {
    padding-top: 130px;
    padding-bottom: 40px;
    text-align: center;
}

.about-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-badge {
    border-radius: 16px;
    filter: drop-shadow(0 4px 20px rgba(20, 184, 166, 0.2));
}

[data-theme="dark"] .about-badge {
    filter: drop-shadow(0 4px 30px rgba(20, 184, 166, 0.3));
}

.about-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-story {
    background: var(--surface);
    transition: background-color var(--transition-theme);
}

.about-content-grid {
    max-width: 720px;
    margin: 0 auto;
}

.about-block h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.about-block h2:first-child {
    margin-top: 0;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-block ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.about-block ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.about-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.about-block strong {
    color: var(--text);
    font-weight: 600;
}

.about-block em {
    color: var(--primary);
    font-style: italic;
}

.about-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0;
    padding: 0;
    border: none;
    font-style: italic;
    letter-spacing: -0.01em;
}

.section-company {
    background: var(--surface-muted);
    transition: background-color var(--transition-theme);
}

.company-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    transition: all var(--transition-theme);
}

.company-info h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.company-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.company-details {
    font-size: 0.9rem;
    line-height: 1.8;
}

.company-contact {
    font-size: 0.875rem;
}

.company-info a {
    color: var(--primary);
}

.company-info a:hover {
    color: var(--primary-hover);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .audience-card {
        grid-template-columns: 200px 1fr 180px;
    }

}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 130px 0 72px;
    }

    .section {
        padding: 72px 0;
    }

    .section-stance {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Tension — full width on mobile */
    .tension-quote-left,
    .tension-quote-right {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    /* Audience — single column */
    .audience-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-card-body {
        padding: 0;
    }

    .audience-card-stat {
        flex-direction: row;
        gap: 12px;
        padding-left: 0;
        padding-top: 16px;
        border-left: none;
        border-top: 1px solid var(--border);
        justify-content: center;
    }

    /* How timeline — tighter */
    .how-timeline {
        padding-left: 48px;
    }

    .how-timeline::before {
        left: 17px;
    }

    .how-step-marker {
        left: -48px;
        width: 36px;
    }

    .how-step-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .how-step-name {
        font-size: 0.6rem;
    }

    /* Signal strip */
    .signal-text {
        font-size: 1.1rem;
    }

    /* Pricing — single column on mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .close-title {
        font-size: 1.4rem;
    }

    /* Legal & About */
    .legal-page {
        padding-top: 100px;
    }

    .legal-content h1 {
        font-size: 1.6rem;
    }

    .about-hero {
        padding-top: 110px;
    }

    .about-hero-title {
        font-size: 1.85rem;
    }

    .about-quote {
        font-size: 1.1rem;
    }

    .company-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .header-signin {
        display: none;
    }

    .wp-logo {
        font-size: 1.3rem;
    }

    .section {
        padding: 56px 0;
    }

    .section-stance {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .tension-title {
        font-size: 1.5rem;
    }

    .tension-quote {
        padding: 24px 0;
    }

    .audience-card {
        padding: 22px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .status-badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    .how-step-content h3 {
        font-size: 1.05rem;
    }
}

/* Large screens */
@media (min-width: 1280px) {
    .section-title {
        font-size: 2.25rem;
    }

    .tension-title {
        font-size: 2.25rem;
    }

    .close-title {
        font-size: 2rem;
    }
}
