/* =====================================================
   WELCOME PAGE – HERO 2 & SECTIONS (custom_hero.css)
===================================================== */

/* =====================================================
   BUTTONS
===================================================== */
.btn-ghost {
    background: transparent;
    color: var(--c-text);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 0.5px solid var(--c-border-strong);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover {
    background: var(--c-surface);
}
.btn-lg {
    padding: 11px 24px;
    font-size: 14.5px;
    border-radius: 10px;
    font-weight: 600;
}

/* =====================================================
   HERO 2 – ASYMMETRIC LAYOUT
===================================================== */
.hero2 {
    padding: 88px 56px 120px;
    background: var(--c-bg);
}
.hero2-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
}
/* Left Column */
.hero2-left {
    display: flex;
    flex-direction: column;
}
.hero2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 207, 179, 0.15);
    color: var(--c-hero2-accent);
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
    border: 1px solid rgba(45, 207, 179, 0.2);
    width: fit-content;
}
html.light .hero2-badge {
    background: rgba(26, 171, 147, 0.12);
    border-color: rgba(26, 171, 147, 0.2);
}
.hero2-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-hero2-accent);
    box-shadow: 0 0 3px var(--c-hero2-accent);
}
.hero2-h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 76px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.028em;
    color: var(--c-hero2-ink);
    margin-bottom: 36px;
}
.hero2-h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--c-hero2-accent);
}
.hero2-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--c-hero2-muted);
    max-width: 460px;
    margin-bottom: 36px;
}
.hero2-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}
.hero2-btn-primary {
    background: var(--c-hero2-accent);
    color: var(--c-hero2-ink);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 0 var(--c-hero2-accent-deep);
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
}
.hero2-btn-primary:hover {
    background: var(--c-hero2-accent-deep);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 171, 147, 0.33);
}
.hero2-btn-secondary {
    background: transparent;
    color: var(--c-hero2-ink);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--c-hero2-line);
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
}
.hero2-btn-secondary:hover {
    background: var(--c-hero2-card-bg);
    border-color: var(--c-hero2-ink);
}
/* Trust Row */
.hero2-trust-row {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--c-hero2-muted);
    flex-wrap: wrap;
}
.hero2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero2-check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(45, 207, 179, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-hero2-accent);
    flex-shrink: 0;
}
html.light .hero2-check-icon {
    background: rgba(26, 171, 147, 0.12);
}

/* Right Column – Flow Diagram */
.hero2-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero2-diagram {
    display: grid;
    grid-template-columns: 1fr 60px 1.25fr;
    gap: 0;
    align-items: flex-start;
    justify-items: stretch;
}
.hero2-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    justify-content: flex-start;
}
.hero2-column-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-hero2-muted);
    align-self: flex-start;
    margin-bottom: 8px;
}
/* Source & Insight Cards */
.hero2-card {
    background: var(--c-hero2-card-bg);
    border: 1px solid var(--c-hero2-line);
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.15s ease;
}
.hero2-source-card {
    flex-direction: row;
}
.hero2-source-card:hover {
    transform: translateX(-3px);
}
.hero2-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero2-card-text {
    flex: 1;
    min-width: 0;
}
.hero2-card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-hero2-ink);
    line-height: 1.3;
}
.hero2-card-sub {
    font-size: 11.5px;
    color: var(--c-hero2-muted);
    line-height: 1.3;
}
.hero2-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 3px rgba(34, 197, 94, 0.15);
    flex-shrink: 0;
}
/* Insight Cards */
.hero2-insight-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    border-left: 3px solid transparent;
    gap: 4px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hero2-insight-card:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(15, 22, 20, 0.06);
}
html.light .hero2-insight-card:hover {
    box-shadow: 0 6px 18px rgba(15, 22, 20, 0.06);
}
.hero2-insight-high {
    border-left-color: var(--c-hero2-warm-deep);
}
.hero2-insight-med {
    border-left-color: var(--c-hero2-accent);
}
.hero2-insight-low {
    border-left-color: var(--c-hero2-muted);
}
.hero2-insight-priority {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
    align-self: flex-start;
}
.hero2-insight-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-hero2-ink);
    line-height: 1.3;
}
.hero2-insight-impact {
    font-size: 11.5px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--c-hero2-muted);
    line-height: 1.3;
}
/* Processor SVG */
.hero2-processor {
    width: 60px;
    height: 280px;
}

/* Mobile Divider (replaces processor on small screens) */
.hero2-diagram-divider {
    display: none;
}
/* PDF Footer Chip */
.hero2-pdf-chip {
    background: var(--c-hero2-bg-soft);
    border: 1px solid var(--c-hero2-line);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-hero2-ink);
}
.hero2-pdf-name {
    font-weight: 500;
}
.hero2-pdf-meta {
    font-size: 11.5px;
    color: var(--c-hero2-muted);
    margin-left: 4px;
}

/* =====================================================
   PAIN / SOLUTION
===================================================== */
.pain-section {
    background: var(--c-surface2);
    border-top: 0.5px solid var(--c-border);
    border-bottom: 0.5px solid var(--c-border);
    transition: background 0.25s;
}
.pain-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.pain-col {
    padding: 0 40px 0 0;
}
.pain-col + .pain-col {
    padding: 0 0 0 40px;
    border-left: 0.5px solid var(--c-border);
}
.pain-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pain-eyebrow.negative {
    color: var(--c-pain-eyebrow-neg);
}
.pain-eyebrow.positive {
    color: var(--c-accent-text);
}
.pain-eyebrow-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pain-eyebrow-icon.neg {
    background: var(--c-pain-icon-neg-bg);
}
.pain-eyebrow-icon.pos {
    background: var(--c-accent-dim);
}
.pain-eyebrow-icon svg {
    width: 10px;
    height: 10px;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.pain-eyebrow-icon.neg svg {
    stroke: var(--c-pain-icon-neg-stroke);
}
.pain-eyebrow-icon.pos svg {
    stroke: var(--c-accent);
}
.pain-col h2 {
    font-family: 'Lora', serif;
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
}
.pain-col.left h2 {
    color: var(--c-pain-h2);
}
.pain-col.right h2 {
    color: var(--c-text);
}
.pain-col p {
    font-size: 15px;
    line-height: 1.75;
}
.pain-col.left p {
    color: var(--c-pain-p);
}
.pain-col.right p {
    color: var(--c-muted);
}
.pain-col.right p strong {
    color: var(--c-text);
    font-weight: 500;
}
.pain-bullets {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pain-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--c-pain-li);
}
.pain-bullets li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--c-pain-bullet-border);
    flex-shrink: 0;
    margin-top: 2px;
}
.solution-bullets {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.solution-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--c-muted);
}
.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c-accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.check-icon svg {
    width: 9px;
    height: 9px;
    stroke: var(--c-accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* =====================================================
   CONNECTS WITH
===================================================== */
.logos {
    border-top: 0.5px solid var(--c-border);
    border-bottom: 0.5px solid var(--c-border);
    padding: 24px 40px;
    text-align: center;
    background: var(--c-surface2);
    transition: background 0.25s;
}
.logos p {
    font-size: 11.5px;
    color: var(--c-muted);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.logo-chip {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
}

/* =====================================================
   FEATURES
===================================================== */
.section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.section-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--c-accent-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
h2 {
    font-family: 'Lora', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    color: var(--c-text);
}
.section-sub {
    font-size: 15px;
    color: var(--c-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 52px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.feature-card {
    background: var(--c-surface);
    border: 0.5px solid var(--c-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.15s, background 0.25s;
}
.feature-card:hover {
    border-color: var(--c-border-strong);
}
.feature-icon {
    width: 36px;
    height: 36px;
    background: var(--c-accent-dim);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-card h3 {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--c-text);
}
.feature-card p {
    font-size: 13.5px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* =====================================================
   HOW IT WORKS
===================================================== */
.how {
    background: var(--c-surface2);
    padding: 80px 40px;
    transition: background 0.25s;
}
.how-inner {
    max-width: 900px;
    margin: 0 auto;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 52px;
}
.step {
    background: var(--c-surface);
    border: 0.5px solid var(--c-border);
    border-radius: 16px;
    padding: 24px 20px;
    transition: background 0.25s;
}
.step-num {
    width: 28px;
    height: 28px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-step-num-color);
    margin-bottom: 16px;
}
.step h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--c-text);
}
.step p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
}
.step.step-muted {
    opacity: 0.65;
    border-style: dashed;
}
.step.step-muted .step-num {
    background: transparent;
    border: 1.5px solid var(--c-accent);
    color: var(--c-accent);
}

/* =====================================================
   MISSIONS
===================================================== */
.missions-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin-top: 48px;
}
.mission-card {
    border: 0.5px solid var(--c-border);
    background: var(--c-surface);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.15s, background 0.25s;
}
.mission-card:hover {
    border-color: var(--c-accent);
}
.mc-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.mc-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-mc-tag-color);
    background: var(--c-accent-dim);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    border: 0.5px solid var(--c-mc-tag-border);
}
.mc-credits {
    font-size: 11px;
    color: var(--c-muted);
    white-space: nowrap;
}
.mission-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.35;
}
.mission-card p {
    font-size: 12.5px;
    color: var(--c-muted);
    line-height: 1.6;
}
.mc-source {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.mc-pill {
    font-size: 11px;
    background: var(--c-mc-pill-bg);
    border: 0.5px solid var(--c-border);
    padding: 2px 7px;
    border-radius: 4px;
    color: var(--c-muted);
}

/* =====================================================
   FREE TOOL TEASER
===================================================== */
.free-tool-teaser {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px 80px;
}
.free-tool-teaser-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--c-accent-dim);
    border: 0.5px solid var(--c-accent);
    border-radius: 20px;
    padding: 44px 52px;
    box-shadow: 0 4px 32px rgba(45, 207, 179, 0.08);
}
.free-tool-teaser-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.free-tool-teaser-text strong {
    color: var(--c-text);
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}
.free-tool-teaser-text span {
    color: var(--c-muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 500px;
}
.free-tool-teaser .btn-primary {
    padding: 11px 26px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =====================================================
   PRICING
===================================================== */
.pricing-wrap {
    background: var(--c-surface2);
    padding: 80px 40px;
    transition: background 0.25s;
}
.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 48px;
}
.price-card {
    position: relative;
    background: var(--c-surface);
    border: 0.5px solid var(--c-border);
    border-radius: 16px;
    padding: 28px 22px;
    transition: background 0.25s;
    overflow: hidden;
}
.price-card.featured {
    border: 1.5px solid var(--c-accent);
}
.price-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--c-text);
}
.price-credits {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 20px;
}
.price-amount {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    color: var(--c-text);
}
.price-note {
    font-size: 11.5px;
    color: var(--c-muted);
}
.pricing-bonus-note {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.pricing-bonus-note svg {
    flex-shrink: 0;
    opacity: 0.7;
}
.popular-badge {
    position: absolute;
    top: 18px;
    right: -30px;
    transform: rotate(35deg);
    background: var(--c-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 42px;
    pointer-events: none;
    white-space: nowrap;
}

/* =====================================================
   WAITLIST
===================================================== */
.waitlist-wrap {
    padding: 80px 40px;
    text-align: center;
}
.waitlist-inner {
    max-width: 560px;
    margin: 0 auto;
}
.waitlist-inner h2 {
    font-family: 'Lora', serif;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    color: var(--c-text);
}
.waitlist-inner .sub {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}
.waitlist-email-row {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}
.waitlist-email-row input[type="email"] {
    flex: 1;
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid var(--c-border-strong);
    background: var(--c-surface);
    color: var(--c-text);
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s, background 0.15s;
}
.waitlist-email-row input[type="email"]::placeholder {
    color: var(--c-muted);
}
.waitlist-email-row input[type="email"]:focus {
    border-color: var(--c-accent);
}
#waitlistSubmit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Survey */
.waitlist-survey {
    text-align: left;
    margin-bottom: 20px;
}
.waitlist-survey-label {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}
.waitlist-survey-label .optional {
    font-size: 11.5px;
    opacity: 0.65;
}
.survey-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.survey-chips input[type="radio"] {
    display: none;
}
.survey-chips label {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 20px;
    border: 1px solid var(--c-border-strong);
    background: var(--c-surface);
    color: var(--c-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    user-select: none;
}
.survey-chips label:hover {
    border-color: var(--c-accent);
    color: var(--c-text);
}
.survey-chips input[type="radio"]:checked + label {
    border-color: var(--c-accent);
    background: var(--c-accent-dim);
    color: var(--c-accent-text);
}

/* Privacy note */
.waitlist-privacy {
    font-size: 12px;
    color: var(--c-muted);
    opacity: 0.7;
    line-height: 1.6;
}

/* Error message */
.waitlist-error {
    display: none;
    font-size: 13px;
    color: #f87171;
    margin-bottom: 10px;
    text-align: left;
}
.waitlist-error.visible {
    display: block;
}

/* Success state */
.waitlist-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 48px 32px;
    border-radius: 16px;
    border: 1px solid rgba(45, 207, 179, 0.25);
    background: var(--c-accent-dim);
}
.waitlist-success.visible {
    display: flex;
}
.waitlist-success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--c-accent);
}
.waitlist-success-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.waitlist-success h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--c-text);
}
.waitlist-success p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 340px;
}

/* =====================================================
   CTA
===================================================== */
.cta-section {
    max-width: 660px;
    margin: 0 auto;
    padding: 88px 40px;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--c-text);
}
.cta-section p {
    color: var(--c-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* =====================================================
   FOOTER OVERRIDE (welcome uses surface2 background)
===================================================== */
footer {
    background: var(--c-surface2);
    transition: background 0.25s;
}
.footer-copy {
    font-size: 12.5px;
}

/* =====================================================
   SMOOTH SCROLL
===================================================== */
html {
    scroll-behavior: smooth;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
    .hero2-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero2-h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }
    .nav-links a.nav-anchor {
        display: none;
    }
    .hero2 {
        padding: 60px 24px 52px;
    }
    .hero2-h1 {
        font-size: 44px;
        margin-bottom: 24px;
    }
    .hero2-sub {
        font-size: 16px;
        max-width: 100%;
    }
    .hero2-diagram {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero2-processor {
        display: none;
    }
    .hero2-diagram-divider {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 24px;
        margin: 8px 0;
    }
    .hero2-diagram-divider::before {
        content: '';
        width: 2px;
        height: 16px;
        border-left: 2px dotted var(--c-hero2-accent);
    }
    .hero2-column {
        width: 100%;
    }
    .hero2-trust-row {
        gap: 16px;
    }
    .pain-inner {
        grid-template-columns: 1fr;
        padding: 52px 24px;
    }
    .pain-col {
        padding: 0 0 40px 0 !important;
        border-left: none !important;
        border-bottom: 0.5px solid var(--c-border);
    }
    .pain-col + .pain-col {
        padding-top: 40px !important;
        border-bottom: none;
    }
    .section {
        padding: 60px 24px;
    }
    .how {
        padding: 60px 24px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .missions-wrap {
        padding: 60px 24px;
    }
    .free-tool-teaser {
        padding: 0 24px 64px;
    }
    .free-tool-teaser-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
        gap: 24px;
    }
    .pricing-wrap {
        padding: 60px 24px;
    }
    .waitlist-wrap {
        padding: 60px 24px;
    }
    .waitlist-email-row {
        flex-direction: column;
    }
    #waitlistSubmit {
        width: 100%;
        justify-content: center;
    }
    .cta-section {
        padding: 60px 24px;
    }
    footer {
        padding: 24px 20px;
    }
    .logos {
        padding: 20px 24px;
    }
}
