@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');

/* ===== CSS Variables ===== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f5ff;
    --bg-dark: #061B31;
    --bg-dark-card: rgba(255,255,255,0.04);

    --text-primary: #061B31;
    --text-secondary: #4d5e72;
    --text-muted: #8896a4;

    --accent: #533AFD;
    --accent-hover: #4228f0;
    --accent-muted: rgba(83, 58, 253, 0.08);
    --accent-light: #ede9ff;

    --color-funding: #22c55e;
    --color-ma: #f59e0b;
    --color-exec: #3b82f6;

    --success: #22c55e;
    --error: #ef4444;

    --border: #e4e0f7;
    --border-on-dark: rgba(255,255,255,0.08);

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-max: 1200px;
    --section-padding: 112px;
    --section-padding-mobile: 64px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
}

/* ===== Reset ===== */
*, *::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-sans); font-size: 16px; line-height: 1.6; color: var(--text-primary); background: var(--bg-primary); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ===== Container ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 300ms ease, border-color 300ms ease;
}
.nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo:hover { opacity: 0.85; }
.logo-img { height: 32px; width: auto; object-fit: contain; }
.logo-text { font-weight: 800; font-size: 20px; color: var(--text-primary); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 150ms ease;
}
.nav-links a:not(.btn):hover { color: var(--text-primary); }

/* Nav over dark */
.nav.over-dark .logo-text { color: #fff; }
.nav.over-dark .logo-img { filter: brightness(0) invert(1); }
.nav.over-dark .nav-links a:not(.btn) { color: rgba(255,255,255,0.6); }
.nav.over-dark .nav-links a:not(.btn):hover { color: #fff; }
.nav.over-dark .btn-ghost { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.07); }
.nav.over-dark .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff; }
.nav.over-dark .mobile-menu-btn span { background: #fff; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 1px; transition: 150ms ease; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-sans);
    border-radius: var(--radius-md);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 150ms ease;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: linear-gradient(135deg, #533AFD 0%, #7c5cfc 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(83,58,253,0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #4228f0 0%, #6b4beb 100%);
    box-shadow: 0 8px 28px rgba(83,58,253,0.55);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: #ccc8f5; background: var(--bg-secondary); }
.btn-outline { background: transparent; color: var(--text-primary); border-color: #ccc8f5; }
.btn-outline:hover { background: var(--bg-secondary); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
    padding: 160px 0 96px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 80% at 5% 30%, rgba(83,58,253,0.55) 0%, transparent 60%),
        radial-gradient(ellipse 45% 55% at 90% 10%, rgba(180,60,255,0.28) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 75% 85%, rgba(255,70,130,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left { text-align: left; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(83,58,253,0.2);
    color: #b8a9ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(83,58,253,0.4);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.58);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: rgba(255,255,255,0.28); font-weight: 500; letter-spacing: 0.01em; }

/* ===== Demo Feed (Hero Visual) ===== */
.hero-right {
    display: flex;
    justify-content: flex-end;
}
.demo-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 380px;
}
.demo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 300ms ease, background 300ms ease;
    border-left-width: 3px;
}
.demo-card:hover { background: rgba(255,255,255,0.08); transform: translateX(-4px); }
.demo-card--funding { border-left-color: var(--color-funding); }
.demo-card--ma { border-left-color: var(--color-ma); }
.demo-card--exec { border-left-color: var(--color-exec); }

.demo-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.demo-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
}
.demo-pill--funding { background: rgba(34,197,94,0.18); color: #4ade80; }
.demo-pill--ma { background: rgba(245,158,11,0.18); color: #fbbf24; }
.demo-pill--exec { background: rgba(59,130,246,0.18); color: #60a5fa; }

.demo-time { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.demo-live {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--color-funding);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.demo-card-company {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.demo-card-detail {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ===== Section Titles ===== */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.035em;
    color: var(--text-primary);
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 64px;
    line-height: 1.65;
}

/* ===== Signals — Bento Grid ===== */
.signals {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}
.signals-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.signal-card {
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 250ms ease;
    position: relative;
    overflow: hidden;
}
.signal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #a78bfa);
    opacity: 0;
    transition: opacity 250ms ease;
}
.signal-card:hover { border-color: #ccc8f5; transform: translateY(-5px); box-shadow: 0 16px 48px rgba(83,58,253,0.11); }
.signal-card:hover::after { opacity: 1; }
.signal-card--featured { grid-row: span 2; display: flex; flex-direction: column; }
.signal-card--featured .signal-list { margin-top: 0; margin-bottom: 20px; }

.signal-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
    transition: background 250ms ease;
}
.signal-card:hover .signal-icon { background: var(--accent-light); }
.signal-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); letter-spacing: -0.025em; }
.signal-card--featured h3 { font-size: 24px; }
.signal-card > p { color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; line-height: 1.65; }
.signal-card--featured > p { font-size: 16px; max-width: 380px; }
.signal-list { display: flex; flex-direction: column; gap: 10px; }
.signal-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}
.signal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.55;
}

/* ===== Signal Live Feed (inside featured card) ===== */
.signal-live-feed {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.slf-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.slf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.slf-item:last-child { border-bottom: none; }
.slf-stage {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.slf-stage--a { background: rgba(59,130,246,0.12); color: #3b82f6; }
.slf-stage--b { background: rgba(34,197,94,0.12); color: #22c55e; }
.slf-stage--c { background: rgba(245,158,11,0.12); color: #f59e0b; }
.slf-co { flex: 1; font-weight: 600; color: var(--text-primary); }
.slf-amt { font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.slf-inv { font-size: 11px; color: var(--text-muted); margin-right: 6px; max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.slf-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.slf-stage--seed { background: rgba(168,85,247,0.12); color: #a855f7; }
.slf-stage--d { background: rgba(239,68,68,0.12); color: #ef4444; }

/* Signal Stage Distribution Bar */
.signal-stages-bar { margin: 20px 0; padding: 16px; background: var(--bg-secondary); border-radius: 12px; border: 1px solid var(--border); }
.ssb-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.ssb-total { font-weight: 600; color: var(--accent); text-transform: none; letter-spacing: 0; }
.ssb-track { display: flex; height: 10px; border-radius: 6px; overflow: hidden; gap: 2px; margin-bottom: 10px; }
.ssb-seg { display: flex; align-items: center; justify-content: center; border-radius: 4px; overflow: hidden; transition: opacity 200ms ease; cursor: default; }
.ssb-seg span { font-size: 8px; font-weight: 800; color: #fff; opacity: 0; transition: opacity 150ms; white-space: nowrap; }
.ssb-seg:hover span { opacity: 1; }
.ssb-seg--seed { background: #a855f7; }
.ssb-seg--a { background: #3b82f6; }
.ssb-seg--b { background: #22c55e; }
.ssb-seg--c { background: #f59e0b; }
.ssb-seg--d { background: #ef4444; }
.ssb-legend { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.ssb-legend span { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.ssb-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; font-style: normal; }
.ssb-dot--seed { background: #a855f7; }
.ssb-dot--a { background: #3b82f6; }
.ssb-dot--b { background: #22c55e; }
.ssb-dot--c { background: #f59e0b; }
.ssb-dot--d { background: #ef4444; }

/* Signal Icon Color Variants */
.signal-icon--ma { background: rgba(245,158,11,0.1); color: #f59e0b; }
.signal-icon--exec { background: rgba(59,130,246,0.1); color: #3b82f6; }

/* Signal Mini Feed (M&A + Executive cards) */
.signal-mini-feed { margin-top: auto; border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.smf-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-secondary); border-radius: 10px; border: 1px solid var(--border); }
.smf-badge { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; white-space: nowrap; letter-spacing: 0.02em; flex-shrink: 0; }
.smf-badge--acquired { background: rgba(245,158,11,0.12); color: #f59e0b; }
.smf-badge--merged { background: rgba(59,130,246,0.12); color: #3b82f6; }
.smf-badge--invested { background: rgba(34,197,94,0.12); color: #22c55e; }
.smf-detail { flex: 1; min-width: 0; }
.smf-detail strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.smf-detail span { font-size: 12px; color: var(--text-muted); }
.smf-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }

/* Executive mini feed avatar style */
.signal-mini-feed--exec .smf-item { align-items: flex-start; }
.smf-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #7c5cfc); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; letter-spacing: -0.02em; }
.smf-exec-detail { flex: 1; min-width: 0; }
.smf-exec-detail strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-primary); }
.smf-exec-detail span { font-size: 12px; color: var(--text-muted); }
.smf-exec-detail em { color: var(--text-muted); font-style: normal; font-weight: 500; }

/* ===== How It Works — Visual Steps ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}
.steps {
    margin-top: 64px;
    border-top: 1px solid var(--border);
}
.step {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}
.step-left { padding-right: 16px; }
.step-number {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    display: block;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}
.step-left h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); letter-spacing: -0.025em; }
.step-left p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }

/* ===== Mock Filter UI ===== */
.mock-filter-ui {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(83,58,253,0.1);
}
.mfu-header {
    background: var(--bg-secondary);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}
.mfu-dot { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; flex-shrink: 0; }
.mfu-dot--yellow { background: #f59e0b; }
.mfu-dot--green { background: #22c55e; }
.mfu-title { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-left: 8px; }
.mfu-group { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.mfu-group:last-child { border-bottom: none; }
.mfu-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.mfu-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mfu-chip {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    cursor: pointer;
}
.mfu-chip--on {
    background: var(--accent-muted);
    color: var(--accent);
    border-color: rgba(83,58,253,0.25);
}
.mfu-range-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.mfu-range-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; position: relative; }
.mfu-range-fill { position: absolute; left: 0; top: 0; width: 65%; height: 100%; background: linear-gradient(90deg, var(--accent), #a78bfa); border-radius: 2px; }

/* ===== Mock Channels UI ===== */
.mock-channels-ui {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(83,58,253,0.1);
}
.mcu-header {
    background: var(--bg-secondary);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.01em;
}
.mcu-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 150ms ease;
}
.mcu-row:last-child { border-bottom: none; }
.mcu-row--on { background: rgba(83,58,253,0.03); }
.mcu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-secondary);
    color: var(--text-muted);
}
.mcu-row--on .mcu-icon { background: var(--accent-muted); color: var(--accent); }
.mcu-info { flex: 1; }
.mcu-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 1px; }
.mcu-info span { font-size: 11px; color: var(--text-muted); }
.mcu-toggle {
    width: 40px;
    height: 22px;
    background: var(--border);
    border-radius: 11px;
    position: relative;
    flex-shrink: 0;
    transition: background 200ms ease;
}
.mcu-toggle--on { background: var(--accent); }
.mcu-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 200ms ease;
}
.mcu-toggle--on .mcu-knob { transform: translateX(18px); }

/* ===== Mock Email Compose ===== */
.mock-email-compose {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(83,58,253,0.1);
}
.mec-header {
    background: var(--bg-secondary);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}
.mec-controls { display: flex; gap: 6px; }
.mec-dot { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.mec-dot--y { background: #f59e0b; }
.mec-dot--g { background: #22c55e; }
.mec-title { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.mec-fields { border-bottom: 1px solid var(--border); }
.mec-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.mec-field:last-child { border-bottom: none; }
.mec-lbl { font-size: 11px; font-weight: 700; color: var(--text-muted); width: 48px; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.04em; }
.mec-val { color: var(--text-primary); font-weight: 500; }
.mec-body {
    padding: 16px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.75;
    min-height: 110px;
}
.mec-body p { margin-bottom: 10px; }
.mec-body p:last-of-type { margin-bottom: 0; }
.mec-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--accent);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.mec-alert-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(34,197,94,0.06);
    border-top: 1px solid rgba(34,197,94,0.15);
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.04em;
}

/* ===== Social Proof — Stats ===== */
.social-proof {
    padding: var(--section-padding) 0;
    background: #040e1c;
    position: relative;
    overflow: hidden;
}
.social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 15% 50%, rgba(83,58,253,0.28) 0%, transparent 65%),
        radial-gradient(ellipse 45% 60% at 85% 50%, rgba(180,60,255,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.social-proof .container { position: relative; z-index: 1; }
.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.stat {
    padding: 0 56px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-number {
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 12px;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.38);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

/* ===== Comparison ===== */
.comparison {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

/* We vs Them split */
.compare-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 48px;
}
.compare-block {
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    border: 1.5px solid var(--border);
}
.compare-block--them {
    background: var(--bg-secondary);
}
.compare-block--us {
    background: var(--bg-dark);
    border-color: var(--accent);
    position: relative;
    overflow: hidden;
}
.compare-block--us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(83,58,253,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.cblock-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.cblock-eyebrow--us { color: #a78bfa; }
.cblock-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.4;
}
.compare-block--us .cblock-title { color: #fff; }
.cblock-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    position: relative;
    z-index: 1;
}
.cblock-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.cblock-list strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.compare-block--us .cblock-list strong { color: #fff; }
.cblock-list span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
}
.compare-block--us .cblock-list span { color: rgba(255,255,255,0.55); }
.cb-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.cb-icon--bad { background: rgba(239,68,68,0.12); color: #f87171; }
.cb-icon--good { background: rgba(34,197,94,0.15); color: #4ade80; }

/* Feature Grid */
.compare-feature-grid {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 8px 40px rgba(83,58,253,0.06);
}
.cfg-header,
.cfg-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    border-bottom: 1px solid var(--border);
}
.cfg-row:last-child { border-bottom: none; }
.cfg-header {
    background: var(--bg-secondary);
}
.cfg-header > div {
    padding: 13px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
}
.cfg-row > div {
    padding: 16px 20px;
    font-size: 13.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border);
}
.cfg-row > div:last-child { border-right: none; }
.cfg-feature-col { font-weight: 600; color: var(--text-primary); }
.cfg-col--us {
    background: var(--accent-muted);
    border-left: 2px solid var(--accent) !important;
}
.cfg-header .cfg-col--us {
    background: var(--accent);
    color: #fff !important;
    font-weight: 800 !important;
}
.cfg-row:hover > div { background: var(--bg-secondary); }
.cfg-row:hover .cfg-col--us { background: var(--accent-muted); }
.cfg-bad { color: #f87171; font-weight: 600; }
.cfg-warn { color: #fbbf24; font-weight: 600; }
.cfg-ok { color: var(--text-secondary); font-weight: 500; }
.cfg-neutral { color: var(--text-muted); }
.cfg-win { color: var(--accent); font-weight: 700; }
.cfg-row--cta > div { padding: 14px 20px; background: var(--bg-secondary); }
.cfg-row--cta .cfg-col--us { background: var(--accent-muted); }
.btn-sm {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 8px;
}

/* ===== Pricing Hero ===== */
.pricing-hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(83,58,253,0.12);
    border: 1px solid rgba(83,58,253,0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.pricing-hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-hero-sub {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.55;
    font-weight: 500;
}
.pricing-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
}
.pricing-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.pricing-trust-row svg { color: #4ade80; }

/* Social Proof Bar */
.pricing-proof-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.ppb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.ppb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
    text-align: center;
}
.ppb-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 3px;
}
.ppb-stat span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.ppb-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Pricing card extras */
.pricing-tagline {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    margin-top: -12px;
}
.pricing-roi-callout {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(83,58,253,0.12), rgba(124,92,252,0.08));
    border: 1px solid rgba(83,58,253,0.2);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}
.roi-callout-icon { font-size: 16px; }
.pricing-roi-callout strong { color: var(--accent); }
.pricing-annual-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    margin-top: -16px;
}
.pricing-was {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: 4px;
}
.pricing-card-foot {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 12px;
}
.enterprise-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

/* ROI Strip */
.roi-strip {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.roi-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 50%, rgba(83,58,253,0.4) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 85% 40%, rgba(180,60,255,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.roi-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.roi-label-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 16px;
}
.roi-left h3 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.roi-left p {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    line-height: 1.7;
}
.roi-calc {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
}
.roi-calc-item {
    flex: 1;
    text-align: center;
}
.roi-calc-num {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.roi-calc-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    line-height: 1.4;
}
.roi-calc-item--result .roi-calc-num {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.roi-calc-item--result .roi-calc-desc { color: rgba(167,139,250,0.6); }
.roi-calc-op {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.gi-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-bottom: 4px;
}
.guarantee-item strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.guarantee-item span {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CTA — see below near Homepage Pricing ===== */

/* ===== Delivery Section ===== */
.delivery-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.delivery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 5% 50%, rgba(83,58,253,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 40% 55% at 90% 30%, rgba(180,60,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.delivery-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.delivery-left .section-label { color: #a78bfa; }
.delivery-left h2 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}
.delivery-left h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.delivery-left p {
    color: rgba(255,255,255,0.55);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}
.delivery-channels { display: flex; flex-direction: column; gap: 16px; }
.dc-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dc-icon--sms { background: rgba(34,197,94,0.18); color: #4ade80; }
.dc-icon--email { background: rgba(83,58,253,0.2); color: #a78bfa; }
.dc-icon--slack { background: rgba(245,158,11,0.18); color: #fbbf24; }
.dc-text strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.dc-text span { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Phone Wrap */
.delivery-right { display: flex; justify-content: center; }
.phone-wrap {
    position: relative;
    padding: 20px;
}

/* Phone Mockup */
.phone-mockup {
    width: 258px;
    background: #0d1525;
    border-radius: 44px;
    border: 6px solid #1e2d45;
    padding: 20px 16px 28px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 40px 80px rgba(0,0,0,0.6),
        0 8px 24px rgba(83,58,253,0.3);
}
.phone-notch {
    width: 72px;
    height: 8px;
    background: #1e2d45;
    border-radius: 4px;
    margin: 0 auto 20px;
}
.phone-screen { display: flex; flex-direction: column; }
.phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    padding: 0 4px;
}
.sms-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 14px;
}
.sms-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #7c5cfc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.sms-name { font-size: 13px; font-weight: 700; color: #fff; }
.sms-sub { font-size: 10px; color: rgba(255,255,255,0.35); }
.sms-convo { display: flex; flex-direction: column; gap: 10px; }
.sms-bubble {
    background: rgba(255,255,255,0.07);
    border-radius: 14px 14px 14px 3px;
    padding: 11px 13px;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}
.sms-bubble strong { color: #fff; }
.sms-cta { color: #60a5fa; font-weight: 600; display: block; margin-top: 4px; }
.sms-time-stamp { font-size: 10px; color: rgba(255,255,255,0.25); text-align: center; }

/* Email Notification Card (floating) */
.email-notif-card {
    position: absolute;
    right: -60px;
    bottom: 24px;
    width: 280px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
}
.enc-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px 10px;
    background: #f7f5ff;
    border-bottom: 1px solid #e4e0f7;
}
.enc-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.enc-meta { flex: 1; min-width: 0; }
.enc-from { font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 2px; }
.enc-subject { font-size: 12px; font-weight: 600; color: var(--text-primary); line-height: 1.35; }
.enc-badge {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.enc-preview {
    padding: 12px 16px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.enc-actions {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
}
.enc-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}
.enc-btn--ghost {
    background: transparent;
    color: var(--text-muted);
}

/* ===== Contact ===== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}
.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 52px;
    box-shadow: 0 8px 40px rgba(83,58,253,0.07);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    width: 100%;
    resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(83,58,253,0.12); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-status { font-size: 14px; font-weight: 600; flex: 1; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

/* ===== Footer ===== */
.footer { padding: 80px 0 40px; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-img { filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 14px; margin-top: 16px; max-width: 240px; line-height: 1.7; }
.footer-links h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 150ms ease; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ===== Pricing Hero ===== */
.pricing-hero {
    padding: 160px 0 64px;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 20% 40%, rgba(83,58,253,0.42) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(180,60,255,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.pricing-hero > .container { position: relative; z-index: 1; }
.pricing-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.035em; color: #fff; }
.pricing-hero p { color: rgba(255,255,255,0.55); font-size: 18px; }

/* Billing Toggle */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.toggle-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.35); cursor: pointer; transition: color 150ms ease; }
.toggle-label.active { color: rgba(255,255,255,0.85); }
.toggle-switch { width: 48px; height: 26px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.1); border-radius: 13px; position: relative; cursor: pointer; transition: background 150ms ease; }
.toggle-switch.active { background: var(--accent); border-color: var(--accent); }
.toggle-slider { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 150ms ease; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.toggle-switch.active .toggle-slider { transform: translateX(22px); }
.save-badge { background: rgba(255,255,255,0.1); color: #b8a9ff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px; margin-left: 8px; }

/* Pricing Cards */
.pricing-cards { padding: 56px 0 var(--section-padding); background: var(--bg-primary); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    transition: box-shadow 250ms ease, transform 250ms ease;
}
.pricing-card:hover { box-shadow: 0 12px 44px rgba(83,58,253,0.1); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--accent); border-width: 2px; transform: scale(1.03); box-shadow: 0 16px 52px rgba(83,58,253,0.2); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), #7c5cfc); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 18px; border-radius: 12px; letter-spacing: 0.02em; white-space: nowrap; }
.pricing-card-header { margin-bottom: 24px; }
.pricing-card-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); letter-spacing: -0.025em; }
.pricing-description { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.pricing-amount { margin-bottom: 32px; }
.pricing-amount .price { font-size: 54px; font-weight: 800; letter-spacing: -0.045em; color: var(--text-primary); }
.pricing-amount .period { color: var(--text-muted); font-size: 16px; font-weight: 500; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.pricing-features li.included svg { color: var(--accent); }
.pricing-features li.not-included { color: var(--text-muted); }
.pricing-features li.not-included svg { color: var(--border); }

/* Enterprise CTA */
.enterprise-cta {
    text-align: center;
    margin-top: 64px;
    padding: 64px 48px;
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.enterprise-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(83,58,253,0.4) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(180,60,255,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.enterprise-cta > * { position: relative; z-index: 1; }
.enterprise-cta h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; color: #fff; letter-spacing: -0.025em; }
.enterprise-cta p { color: rgba(255,255,255,0.5); margin-bottom: 28px; font-size: 16px; }

/* FAQ */
.faq { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 64px; }
.faq-item { background: var(--bg-primary); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); letter-spacing: -0.015em; }
.faq-item p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ===== Homepage Pricing Section ===== */
.home-pricing { padding: var(--section-padding) 0; background: var(--bg-dark); position: relative; overflow: hidden; }
.home-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 60%, rgba(83,58,253,0.25) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 90% 30%, rgba(180,60,255,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.home-pricing .container { position: relative; z-index: 1; }
.home-pricing .section-title { color: #fff; }
.home-pricing .section-subtitle { color: rgba(255,255,255,0.55); margin-bottom: 48px; }
.home-pricing .section-label { color: rgba(255,255,255,0.45); }
.gradient-text-accent {
    background: linear-gradient(90deg, var(--accent), #b46cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}
.home-pricing .billing-toggle { justify-content: center; }
.home-pricing .save-badge { background: rgba(255,255,255,0.08); color: #b8a9ff; }
.home-pricing .toggle-label { color: rgba(255,255,255,0.5); }
.home-pricing .toggle-label.active { color: #fff; }
.home-pricing .pricing-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.home-pricing .pricing-card:hover { background: rgba(255,255,255,0.06); }
.home-pricing .pricing-card.featured { background: #fff; border-color: var(--accent); }
.home-pricing .pricing-card.featured .pricing-card-header h3,
.home-pricing .pricing-card.featured .pricing-amount .price,
.home-pricing .pricing-card.featured .pricing-features li { color: var(--text-primary); }
.home-pricing .pricing-card-header h3 { color: #fff; }
.home-pricing .pricing-amount .price { color: #fff; }
.home-pricing .pricing-amount .period { color: rgba(255,255,255,0.4); }
.home-pricing .pricing-description { color: rgba(255,255,255,0.45); }
.home-pricing .pricing-features li { color: rgba(255,255,255,0.65); }
.home-pricing .pricing-features li.not-included { color: rgba(255,255,255,0.25); }
.home-pricing .pricing-features li.included svg { color: #7c5cfc; }
.home-pricing .pricing-features li.not-included svg { color: rgba(255,255,255,0.2); }
.home-pricing .btn-outline { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.home-pricing .btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.05); }
.btn-block { display: block; width: 100%; text-align: center; }
.home-pricing-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 28px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.home-pricing-trust span { font-size: 13px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 6px; }
.home-pricing-trust span svg { color: #22c55e; }
.hpt-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; margin-left: 8px; }
.hpt-link:hover { text-decoration: underline; }

/* ===== Homepage FAQ ===== */
.home-faq { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.home-faq .section-title { text-align: center; }
.home-faq .section-subtitle { text-align: center; }

/* ===== CTA Section ===== */
.cta { padding: var(--section-padding) 0; background: var(--bg-dark); position: relative; overflow: hidden; }
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 90% at 5% 50%, rgba(83,58,253,0.45) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 95% 50%, rgba(180,60,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.cta .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.cta-left h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; }
.cta-left h2 em { font-style: italic; background: linear-gradient(90deg, #b46cff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-left p { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.6; max-width: 400px; }
.cta-right { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; white-space: nowrap; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ===== About ===== */
.about-hero {
    padding: 160px 0 var(--section-padding);
    text-align: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 15% 40%, rgba(83,58,253,0.42) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 85% 30%, rgba(180,60,255,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.about-hero > .container { position: relative; z-index: 1; }
.about-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.03em; color: #fff; }
.about-hero p { color: rgba(255,255,255,0.55); }
.about-story { padding: 0 0 var(--section-padding); }
.story-content { font-size: 18px; line-height: 1.8; }
.story-content .lead { font-size: 22px; color: var(--text-primary); margin-bottom: 32px; font-weight: 600; letter-spacing: -0.02em; }
.story-content p { color: var(--text-secondary); margin-bottom: 24px; }
.story-content h2 { font-size: 30px; font-weight: 800; color: var(--text-primary); margin: 56px 0 24px; letter-spacing: -0.03em; }
.about-values { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.value-card { background: var(--bg-primary); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 36px; transition: all 250ms ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(83,58,253,0.1); border-color: #ccc8f5; }
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); letter-spacing: -0.02em; }
.value-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; }

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(6,27,49,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 24px 32px;
    z-index: 99;
}
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 13px 0; color: rgba(255,255,255,0.65); font-size: 16px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; }

/* ===== Error Pages ===== */
.error-page { min-height: 100vh; background: var(--bg-dark); }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .email-notif-card { right: -20px; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-left { text-align: center; }
    .hero-left .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-right { justify-content: center; }
    .demo-feed { max-width: 420px; }

    .signals-grid { grid-template-columns: 1fr; }
    .signal-card--featured { grid-row: auto; }

    .step { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
    .step-right { display: flex; justify-content: center; }
    .mock-filter-ui, .mock-channels-ui, .mock-email-compose { max-width: 500px; width: 100%; }

    .delivery-inner { grid-template-columns: 1fr; gap: 56px; }
    .delivery-right { justify-content: center; }
    .phone-wrap { display: flex; justify-content: center; }
    .email-notif-card { position: static; margin-top: 24px; width: 100%; max-width: 320px; }

    .proof-stats { grid-template-columns: 1fr; gap: 40px; }
    .stat { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 40px; }
    .stat:last-child { border-bottom: none; padding-bottom: 0; }

    .cta .container { grid-template-columns: 1fr; gap: 40px; }

    .compare-split { grid-template-columns: 1fr; }

    .compare-feature-grid { overflow-x: auto; }
    .cfg-header, .cfg-row { min-width: 640px; }

    .roi-strip-inner { grid-template-columns: 1fr; gap: 48px; }

    .guarantee-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .ppb-inner { flex-wrap: wrap; gap: 0; }
    .ppb-stat { padding: 16px 28px; }
    .ppb-divider { display: none; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; order: -1; }
    .pricing-card.featured:hover { transform: translateY(-4px); }

    .values-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: var(--section-padding-mobile); }
    .container { padding: 0 20px; }
    .nav-container { padding: 0 20px; }

    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding-top: 128px; padding-bottom: 80px; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .hero-cta .btn { max-width: 100%; }
    .hero-inner { gap: 48px; }
    .hero-left { text-align: left; }
    .hero-cta { align-items: flex-start; }

    .step-number { font-size: 48px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand p { max-width: 100%; }

    .enterprise-cta { padding: 40px 28px; }
    .pricing-hero { padding-top: 120px; }
    .about-hero { padding-top: 120px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 32px 24px; }
    .form-footer { flex-direction: column; align-items: stretch; }
    .form-footer .btn { width: 100%; }

    .phone-mockup { width: 230px; }

    .guarantee-grid { grid-template-columns: 1fr; gap: 28px; }

    .pricing-trust-row { gap: 16px; font-size: 12px; }

    .roi-calc { flex-direction: column; gap: 12px; text-align: center; padding: 28px 20px; }
    .roi-calc-op { transform: rotate(90deg); }

    .compare-block { padding: 28px 24px; }

    .faq-grid { grid-template-columns: 1fr; }

    .cta .container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 34px; }
    .stat-number { font-size: 52px; }
    .signal-card, .value-card, .pricing-card { padding: 28px; }
    .phone-mockup { width: 210px; }
}
