/* ExecSignals — styles.css v1 */

:root {
    --bg-dark: #0C0F1A;
    --bg-card: #111827;
    --bg-card-hover: #1A2235;
    --accent: #D4A054;
    --accent-dim: #B8863E;
    --accent-glow: rgba(212, 160, 84, 0.12);
    --accent-subtle: rgba(212, 160, 84, 0.06);
    --text-primary: #F8FAFC;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    --signal-growth: #06D6A0;
    --signal-team: #60A5FA;
    --signal-urgency: #D4A054;
    --error: #EF4444;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(212, 160, 84, 0.15);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --score-exceptional: #D4A054;
    --score-strong: #5B8DEF;
    --score-solid: #E2A84B;
    --score-baseline: #94A3B8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ─── Header ─── */
.site-header {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    z-index: 100;
}
.header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.site-logo span { color: var(--accent); }

/* Desktop nav */
.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover { color: var(--text-primary); }
.nav-cta {
    background: var(--accent) !important;
    color: var(--bg-dark) !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
    background: var(--accent-dim) !important;
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
    padding: 80px 0 48px;
    text-align: center;
}
.hero-label {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-accent);
    margin-bottom: 24px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero stats row */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}
.hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Who this is for */
.who-for {
    text-align: center;
    margin-bottom: 16px;
}
.who-for-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.who-for-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.who-for-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 6px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
}

/* ─── Section headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}
.section-divider {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 24px;
    border-radius: 1px;
    opacity: 0.5;
}

/* ─── Score legend ─── */
.score-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0;
}
.score-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.score-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}
.score-legend-dot.exceptional { background: var(--score-exceptional); }
.score-legend-dot.strong { background: var(--score-strong); }
.score-legend-dot.solid { background: var(--score-solid); }
.score-legend-dot.baseline { background: var(--score-baseline); }

/* ─── Lead cards ─── */
.sample-leads { margin: 0 0 80px; }
.lead-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 12px;
    transition: border-color 0.2s, transform 0.15s;
    position: relative;
}
.lead-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}
.lead-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.lead-card-info { flex: 1; }
.lead-rank {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.lead-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 4px;
}
.lead-company {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.lead-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.lead-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.signal-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.signal-badge.growth {
    background: rgba(6, 214, 160, 0.1);
    color: var(--signal-growth);
    border: 1px solid rgba(6, 214, 160, 0.2);
}
.signal-badge.team {
    background: rgba(96, 165, 250, 0.1);
    color: var(--signal-team);
    border: 1px solid rgba(96, 165, 250, 0.2);
}
.signal-badge.urgency {
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

/* Score badge */
.score-badge {
    min-width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.score-badge .score-num {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
}
.score-badge .score-lbl {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.score-exceptional {
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
}
.score-exceptional .score-num { color: var(--score-exceptional); }
.score-exceptional .score-lbl { color: rgba(212, 160, 84, 0.7); }
.score-strong {
    background: rgba(91, 141, 239, 0.1);
    border: 1px solid rgba(91, 141, 239, 0.2);
}
.score-strong .score-num { color: var(--score-strong); }
.score-strong .score-lbl { color: rgba(91, 141, 239, 0.6); }

/* Blurred leads */
.lead-card.blurred {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}
.blur-overlay {
    text-align: center;
    padding: 32px 0;
}
.blur-overlay-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: background 0.2s, transform 0.15s;
}
.blur-overlay-cta:hover {
    background: var(--accent-dim);
    transform: translateY(-1px);
}
.blur-overlay p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Freshness badges */
.freshness-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    margin-left: 8px;
}
.freshness-badge.fresh {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.freshness-badge.recent {
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}
.freshness-badge.standard {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

/* Lead signal note */
.lead-note {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
    padding-left: 12px;
    border-left: 2px solid var(--border-accent);
    line-height: 1.5;
}

/* Lead company signals */
.lead-company-signals {
    display: inline-flex;
    gap: 8px;
    margin-left: 10px;
}
.company-signal {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    padding: 1px 7px;
    border-radius: 3px;
    border: 1px solid var(--border);
}

/* ─── Value props ─── */
.value-section { margin: 80px 0; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}
.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Market Intelligence ─── */
.market-intel { margin: 80px 0; }
.intel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.intel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.intel-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.intel-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}
.intel-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
}
.intel-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.intel-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.intel-stat-row:last-child { border-bottom: none; }
.intel-stat-row .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.intel-stat-row .value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}
.intel-stat-row .value.up { color: var(--signal-growth); }
.intel-stat-row .value.down { color: var(--error); }
.intel-big-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.intel-big-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.intel-card-full { grid-column: 1 / -1; }

/* Mini bar chart */
.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: 12px;
}
.mini-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.mini-bar .mini-bar-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Blurred geo preview */
.geo-blur-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}
.geo-blur-content {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}
.geo-blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 12px 0;
    background: linear-gradient(transparent, var(--bg-card) 60%);
}
.geo-blur-text {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

/* ─── Email preview ─── */
.email-preview-section { margin: 80px 0; }
.email-preview-frame {
    max-width: 580px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}
.email-preview-toolbar {
    background: #1E293B;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toolbar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.toolbar-dot:first-child { background: #EF4444; }
.toolbar-dot:nth-child(2) { background: #F59E0B; }
.toolbar-dot:nth-child(3) { background: #06D6A0; }
.toolbar-subject {
    margin-left: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.email-preview-content {
    background: #ffffff;
    padding: 0;
}
.ep-header {
    background: var(--bg-dark);
    padding: 18px 24px;
    text-align: center;
}
.ep-brand {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ep-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
}
.ep-body { padding: 20px 24px; }
.ep-stat-row {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
}
.ep-stat { text-align: center; }
.ep-stat .num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0C0F1A;
}
.ep-stat .num.green { color: #06D6A0; }
.ep-stat .lbl {
    font-size: 0.6rem;
    color: #888;
    text-transform: uppercase;
}
.ep-leads-header {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}
.ep-lead {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.ep-lead-rank {
    font-size: 0.65rem;
    color: #D4A054;
    font-weight: 700;
}
.ep-lead-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0C0F1A;
}
.ep-lead-meta {
    font-size: 0.75rem;
    color: #888;
}
.ep-more {
    text-align: center;
    padding: 16px;
    color: #888;
    font-size: 0.8rem;
}
.ep-cta-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--accent);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}
.ep-cta-link:hover { text-decoration: underline; }

/* ─── Signal distribution ─── */
.signal-dist { margin: 80px 0; }
.signal-bar-group {
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.signal-bar-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
}
.signal-bar-track {
    height: 32px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    overflow: hidden;
}
.signal-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0;
}
.signal-bar-fill.green { background: linear-gradient(90deg, #06D6A0, #04A57D); }
.signal-bar-fill.blue { background: linear-gradient(90deg, #5B8DEF, #3B6FD9); }
.signal-bar-fill.amber { background: linear-gradient(90deg, #D4A054, #B8863E); }
.signal-bar-count {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: right;
}

/* Seniority + Function mini-grids */
.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.breakdown-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.breakdown-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 16px;
}
.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.breakdown-row:last-child { border-bottom: none; }
.breakdown-row .label { color: var(--text-secondary); }
.breakdown-row .value {
    font-family: var(--font-mono);
    color: var(--accent);
}

/* ─── Scoring section ─── */
.scoring-section { margin: 80px 0; }
.scoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.scoring-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}
.scoring-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.scoring-card .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.scoring-card .icon.amber {
    background: var(--accent-glow);
    color: var(--accent);
}
.scoring-card .icon.blue {
    background: rgba(91, 141, 239, 0.1);
    color: #5B8DEF;
}
.scoring-card .icon.green {
    background: rgba(6, 214, 160, 0.1);
    color: var(--signal-growth);
}
.scoring-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.scoring-item:last-child { border-bottom: none; }
.scoring-item .pts {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--accent);
    font-size: 0.85rem;
}

/* ─── Pricing ─── */
.pricing-section {
    margin: 80px 0;
    text-align: center;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 480px;
    margin: 40px auto 0;
}
.pricing-amount {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}
.pricing-amount span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}
.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 12px 0 28px;
}
.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.pricing-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-cta-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-section { margin: 80px 0; }
.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.faq-answer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── CTA section ─── */
.cta-section {
    margin: 80px 0;
    text-align: center;
}
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 640px;
    margin: 0 auto;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 12px;
}
.cta-box > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto 12px;
}
.cta-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.cta-input:focus {
    outline: none;
    border-color: var(--accent);
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-btn {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.cta-btn:hover {
    background: var(--accent-dim);
    transform: translateY(-1px);
}
.cta-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.cta-fine-print {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.cta-success {
    display: none;
    padding: 20px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
}
.cta-success h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.cta-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ─── Footer ─── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
}
.footer-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--text-primary); }

/* ─── Legal pages (Privacy, Terms) ─── */
.legal-content {
    max-width: 720px;
    margin: 60px auto 80px;
    padding: 0 24px;
}
.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.legal-content .legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 32px 0 12px;
}
.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.legal-content ul {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}
.legal-content a {
    color: var(--accent);
    text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

/* ─── 404 page ─── */
.error-page {
    text-align: center;
    padding: 120px 24px;
}
.error-page h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.error-page p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.error-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.error-page a:hover { text-decoration: underline; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav { display: none; }
    .menu-toggle { display: block; }

    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .lead-card-top { flex-direction: column; }
    .signal-bar-group { grid-template-columns: 100px 1fr 40px; }
    .scoring-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .intel-grid { grid-template-columns: 1fr; }
    .breakdown-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 12px; }
    .cta-form { flex-direction: column; }
    .pricing-card { padding: 32px 24px; }
}

/* Mobile nav overlay */
@media (max-width: 768px) {
    .nav.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark);
        z-index: 105;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
    .nav.mobile-active a {
        font-size: 1.2rem;
    }
    .nav.mobile-active .nav-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
}
