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

:root {
    --bg:         #07080c;
    --bg-card:    #0d0f16;
    --bg-elev:    #141722;
    --border:     #1c2033;
    --border-2:   #242840;
    --text:       #e8eaf0;
    --text-2:     #8b8fa3;
    --text-muted: #5a5e73;
    --accent:     #22c55e;
    --acc-dim:    rgba(34,197,94,0.10);
    --acc-glow:   rgba(34,197,94,0.20);
    --danger:     #ef4444;
    --danger-dim: rgba(239,68,68,0.10);
    --blue:       #3b82f6;
    --blue-dim:   rgba(59,130,246,0.10);
    --amber:      #f59e0b;
    --amber-dim:  rgba(245,158,11,0.10);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; }

.container { max-width: 880px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── Ambient Background ──────────────────── */
.ambient {
    position: fixed; top: -30%; left: 50%; transform: translateX(-50%);
    width: 1000px; height: 1000px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.04) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.ambient-ring {
    position: fixed; top: -30%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px; border-radius: 50%;
    border: 1px solid rgba(34,197,94,0.05); pointer-events: none; z-index: 0;
}

/* ── Nav ─────────────────────────────────── */
nav {
    padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border); flex-wrap: nowrap;
}
.logo {
    font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
    color: var(--text); letter-spacing: -0.5px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 7px;
}
.logo span { color: var(--accent); }
.logo img,
.logo .brand-mark { flex-shrink: 0; display: block; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-login {
    font-size: 13px; font-weight: 500; color: var(--text-2);
    text-decoration: none; padding: 8px 14px; border-radius: 8px;
    transition: color 0.15s;
}
.nav-login:hover { color: var(--text); }
.nav-cta {
    font-size: 13px; font-weight: 600; color: #000;
    background: var(--accent); padding: 8px 18px; border-radius: 8px;
    text-decoration: none; cursor: pointer; border: none; font-family: inherit;
    transition: background 0.15s;
}
.nav-cta:hover { background: #1fb854; }

/* ── Notification bell ───────────────────── */
.bell-btn {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--text-2); font-size: 15px; transition: border-color 0.15s;
    position: relative; flex-shrink: 0;
}
.bell-btn:hover { border-color: var(--accent); color: var(--accent); }
.bell-badge {
    position: absolute; top: -4px; right: -4px; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%; border: 2px solid var(--bg);
    display: none;
}
.bell-badge.active { display: block; }

/* ── Hero ────────────────────────────────── */
.hero { padding: 72px 0 56px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; color: var(--accent);
    background: var(--acc-dim); border: 1px solid rgba(34,197,94,0.2);
    padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-badge .pulse {
    width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
    font-size: clamp(38px, 6.5vw, 60px); font-weight: 700;
    line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 20px; max-width: 720px;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
    font-size: 18px; color: var(--text-2); max-width: 540px;
    line-height: 1.7; margin-bottom: 36px;
}

/* ── Waitlist Form ───────────────────────── */
.waitlist-form {
    display: flex; gap: 10px; max-width: 480px; margin-bottom: 16px;
}
.waitlist-input {
    flex: 1; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px; font-size: 14px;
    color: var(--text); font-family: inherit; outline: none;
    transition: border-color 0.15s;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-btn {
    background: var(--accent); color: #000; font-weight: 700; font-size: 14px;
    padding: 12px 22px; border-radius: 10px; border: none; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif; white-space: nowrap;
    transition: background 0.15s; min-width: 140px;
}
.waitlist-btn:hover { background: #1fb854; }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-status {
    font-size: 13px; color: var(--text-2); min-height: 20px; margin-bottom: 12px;
    text-align: center; max-width: 480px;
}
.waitlist-status.success { color: var(--accent); }
.waitlist-status.error   { color: var(--danger); }

.hero-secondary {
    display: flex; align-items: center; justify-content: flex-start; gap: 16px;
    font-size: 13px; color: var(--text-muted); margin-top: 8px;
}
.hero-beta-btn {
    background: var(--accent); color: #000;
    padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: 'Space Grotesk', sans-serif;
    border: none; transition: background 0.15s; letter-spacing: -0.2px;
}
.hero-beta-btn:hover { background: #1fb854; }

/* ── Problem/Solution ───────────────────── */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; padding: 40px 0 64px;
}
.split-card {
    padding: 28px 32px; border-radius: 16px;
    border: 1px solid var(--border); background: var(--bg-card);
}
.split-card.problem { border-color: rgba(239,68,68,0.2); }
.split-card.solution { border-color: rgba(34,197,94,0.15); }
.split-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 14px;
}
.split-card.problem .split-label { color: var(--danger); }
.split-card.solution .split-label { color: var(--accent); }
.split-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.split-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── Section Header ─────────────────────── */
.section-tag {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-muted); margin-bottom: 10px;
}
.section-h {
    font-size: clamp(26px, 4vw, 36px); font-weight: 700;
    letter-spacing: -1.5px; margin-bottom: 8px;
}
.section-sub { font-size: 16px; color: var(--text-2); line-height: 1.65; max-width: 520px; }

/* ── Product Preview ────────────────────── */
.product-section { padding: 64px 0; border-top: 1px solid var(--border); }

.product-features { display: flex; flex-direction: column; gap: 48px; margin-top: 48px; }

.product-feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.product-feature.reverse { direction: rtl; }
.product-feature.reverse > * { direction: ltr; }

.feature-info {}
.feature-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.feature-tag.green { color: var(--accent); background: var(--acc-dim); }
.feature-tag.blue  { color: var(--blue);   background: var(--blue-dim); }
.feature-tag.amber { color: var(--amber);  background: var(--amber-dim); }
.feature-tag.red   { color: var(--danger); background: var(--danger-dim); }
.feature-info h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.feature-info p  { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.feature-bullets li {
    font-size: 13px; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px;
}
.feature-bullets li::before { content: '→'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ── Mock UI Cards ──────────────────────── */
.mock-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px; overflow: hidden;
}
.mock-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.mock-title { font-size: 12px; font-weight: 600; color: var(--text-2); letter-spacing: 0.5px; text-transform: uppercase; }
.mock-badge {
    font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; padding: 3px 10px; border-radius: 100px;
}
.mock-badge.live { color: var(--accent); background: var(--acc-dim); }
.mock-badge.beta { color: var(--blue); background: var(--blue-dim); }

/* Trend row */
.trend-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px; border-radius: 8px; margin-bottom: 6px;
    background: var(--bg-elev); border: 1px solid var(--border);
    transition: border-color 0.15s;
}
.trend-row:last-child { margin-bottom: 0; }
.trend-row:hover { border-color: var(--accent); }
.trend-left  { display: flex; align-items: center; gap: 10px; }
.trend-dot   { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.trend-dot.hot    { background: var(--accent); animation: pulse 2s infinite; }
.trend-dot.rising { background: var(--blue); }
.trend-dot.cool   { background: var(--text-muted); }
.trend-name  { font-size: 13px; font-weight: 500; }
.trend-niche { font-size: 11px; color: var(--text-muted); }
.trend-score {
    font-size: 12px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
    padding: 3px 10px; border-radius: 100px;
}
.trend-score.high   { color: var(--accent); background: var(--acc-dim); }
.trend-score.medium { color: var(--blue); background: var(--blue-dim); }
.trend-score.low    { color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); }

/* Content studio mock */
.mock-post {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: 10px;
    padding: 14px; margin-bottom: 10px;
}
.mock-post:last-child { margin-bottom: 0; }
.mock-post-text { font-size: 12px; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.mock-post-meta { display: flex; align-items: center; justify-content: space-between; }
.mock-risk-badge {
    font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    padding: 2px 8px; border-radius: 100px;
}
.mock-risk-badge.safe { color: var(--accent); background: var(--acc-dim); }
.mock-risk-badge.warn { color: var(--amber); background: var(--amber-dim); }
.mock-engagement { font-size: 11px; color: var(--text-muted); }

/* Score meter */
.score-meter { margin-bottom: 12px; }
.score-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.score-bar   { height: 6px; background: var(--bg-elev); border-radius: 3px; overflow: hidden; }
.score-fill  { height: 100%; border-radius: 3px; }
.score-fill.green { background: var(--accent); }
.score-fill.blue  { background: var(--blue); }
.score-fill.amber { background: var(--amber); }

/* Export mock */
.export-row {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: 8px;
    margin-bottom: 6px;
}
.export-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.export-icon.csv   { background: var(--acc-dim); }
.export-icon.json  { background: var(--blue-dim); }
.export-icon.api   { background: var(--amber-dim); }
.export-name { font-size: 13px; font-weight: 500; flex: 1; }
.export-desc { font-size: 11px; color: var(--text-muted); }
.export-status { font-size: 11px; color: var(--accent); font-weight: 600; }

/* ── Capabilities Grid ──────────────────── */
.capabilities { padding: 64px 0; border-top: 1px solid var(--border); }
.cap-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 40px;
}
.cap-card {
    padding: 24px; border-radius: 14px; background: var(--bg-card);
    border: 1px solid var(--border); transition: border-color 0.2s;
}
.cap-card:hover { border-color: rgba(34,197,94,0.25); }
.cap-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; margin-bottom: 14px;
}
.ci-g { background: var(--acc-dim); }
.ci-b { background: var(--blue-dim); }
.ci-r { background: var(--danger-dim); }
.ci-a { background: var(--amber-dim); }
.cap-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.2px; }
.cap-card p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── Stats ───────────────────────────────── */
.stat-bar {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden;
    margin: 64px 0;
}
.stat-item { background: var(--bg-card); padding: 28px 24px; text-align: center; }
.stat-num {
    font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700;
    color: var(--accent); margin-bottom: 4px;
}
.stat-lbl { font-size: 13px; color: var(--text-muted); }

/* ── Pricing ─────────────────────────────── */
.pricing { padding: 64px 0; border-top: 1px solid var(--border); }
.pricing-disclaimer {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-muted);
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 5px 14px; border-radius: 100px; margin-bottom: 40px;
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 40px; }
.pricing-card {
    padding: 28px; border-radius: 16px;
    border: 1px solid var(--border); background: var(--bg-card);
    display: flex; flex-direction: column; position: relative;
}
.pricing-card.featured {
    border-color: rgba(34,197,94,0.4);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34,197,94,0.04) 100%);
}
.pricing-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: #000; background: var(--accent); padding: 3px 14px; border-radius: 100px;
    white-space: nowrap;
}
.pricing-tier {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); margin-bottom: 12px;
}
.pricing-price {
    font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700;
    letter-spacing: -1.5px; margin-bottom: 4px;
}
.pricing-price sub { font-size: 16px; vertical-align: super; font-weight: 400; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-desc { font-size: 14px; color: var(--text-2); margin-bottom: 20px; line-height: 1.6; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pricing-features li {
    font-size: 13px; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px;
}
.pricing-features li .check { color: var(--accent); flex-shrink: 0; }
.pricing-features li .dim   { color: var(--text-muted); }
.pricing-cta {
    margin-top: 24px; width: 100%; padding: 12px; border-radius: 10px;
    font-size: 14px; font-weight: 600; cursor: pointer; border: none;
    font-family: 'Space Grotesk', sans-serif; transition: background 0.15s, border-color 0.15s;
}
.pricing-cta.primary { background: var(--accent); color: #000; }
.pricing-cta.primary:hover { background: #1fb854; }
.pricing-cta.secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.pricing-cta.secondary:hover { border-color: var(--accent); color: var(--accent); }
.pricing-disclaimer-note {
    text-align: center; font-size: 13px; color: var(--text-muted);
    margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border);
}

/* ── CTA / Closing ───────────────────────── */
.cta-section { padding: 72px 0 80px; border-top: 1px solid var(--border); text-align: center; }
.cta-section h2 {
    font-size: clamp(28px, 4.5vw, 42px); font-weight: 700;
    letter-spacing: -2px; margin-bottom: 16px;
}
.cta-section p { font-size: 17px; color: var(--text-2); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-primary-btn {
    background: var(--accent); color: #000; font-weight: 700;
    font-size: 15px; padding: 14px 28px; border-radius: 10px;
    border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif;
    transition: background 0.15s;
}
.cta-primary-btn:hover { background: #1fb854; }
.cta-secondary-btn {
    background: transparent; color: var(--text-2); font-size: 14px;
    padding: 14px 24px; border-radius: 10px; border: 1px solid var(--border);
    cursor: pointer; font-family: inherit; transition: border-color 0.15s, color 0.15s;
}
.cta-secondary-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Footer ─────────────────────────────── */
footer {
    padding: 32px 0; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.footer-logo span { color: var(--accent); }
.footer-logo img,
.footer-logo .brand-mark { flex-shrink: 0; display: block; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ── Beta Modal ──────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(7,8,12,0.85); backdrop-filter: blur(6px);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--bg-card); border: 1px solid var(--border-2); border-radius: 20px;
    width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
    padding: 36px 40px; transform: translateY(12px); transition: transform 0.2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
    position: absolute; top: 16px; right: 16px; background: var(--bg-elev);
    border: 1px solid var(--border); border-radius: 8px; width: 32px; height: 32px;
    cursor: pointer; color: var(--text-2); font-size: 16px; display: flex;
    align-items: center; justify-content: center; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-header { margin-bottom: 24px; position: relative; padding-right: 32px; }
.modal-header h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 6px; }
.modal-header p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: var(--bg-elev); border: 1px solid var(--border);
    border-radius: 10px; padding: 10px 14px; font-size: 14px;
    color: var(--text); font-family: inherit; outline: none;
    transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group select option { background: var(--bg-elev); }
.modal-submit {
    width: 100%; background: var(--accent); color: #000; font-weight: 700;
    font-size: 15px; padding: 14px; border-radius: 10px; border: none;
    cursor: pointer; font-family: 'Space Grotesk', sans-serif;
    transition: background 0.15s; margin-top: 8px;
}
.modal-submit:hover { background: #1fb854; }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-status {
    font-size: 14px; text-align: center; padding: 14px; border-radius: 10px;
    margin-top: 12px; display: none;
}
.modal-status.success { display: block; background: var(--acc-dim); color: var(--accent); border: 1px solid rgba(34,197,94,0.2); }
.modal-status.error   { display: block; background: var(--danger-dim); color: var(--danger); border: 1px solid rgba(239,68,68,0.2); }

/* ── Notification Prompt ─────────────────── */
.notif-prompt {
    position: fixed; bottom: 24px; right: 24px; max-width: 320px;
    background: var(--bg-card); border: 1px solid var(--border-2);
    border-radius: 16px; padding: 20px; z-index: 500;
    transform: translateY(100px); opacity: 0; transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}
.notif-prompt.show { transform: translateY(0); opacity: 1; pointer-events: all; }
.notif-prompt h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.notif-prompt p  { font-size: 13px; color: var(--text-2); margin-bottom: 16px; line-height: 1.5; }
.notif-actions { display: flex; gap: 8px; }
.notif-enable {
    flex: 1; background: var(--accent); color: #000; font-weight: 600;
    font-size: 13px; padding: 8px; border-radius: 8px; border: none;
    cursor: pointer; font-family: inherit;
}
.notif-dismiss {
    background: transparent; color: var(--text-muted); font-size: 13px;
    padding: 8px 12px; border-radius: 8px; border: 1px solid var(--border);
    cursor: pointer; font-family: inherit;
}

/* ── Add to Home Screen Modal ────────────── */
.pwa-overlay {
    position: fixed; inset: 0; background: rgba(7,8,12,0.88); backdrop-filter: blur(8px);
    z-index: 1100; display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.pwa-overlay.open { opacity: 1; pointer-events: all; }
.pwa-modal {
    background: var(--bg-card); border: 1px solid var(--border-2); border-radius: 20px;
    width: 100%; max-width: 480px; padding: 32px 36px;
    transform: translateY(12px); transition: transform 0.25s;
}
.pwa-overlay.open .pwa-modal { transform: translateY(0); }
.pwa-modal-close {
    position: absolute; top: 16px; right: 16px; background: var(--bg-elev);
    border: 1px solid var(--border); border-radius: 8px; width: 32px; height: 32px;
    cursor: pointer; color: var(--text-2); font-size: 18px; display: flex;
    align-items: center; justify-content: center; line-height: 1;
}
.pwa-modal-close:hover { color: var(--text); }
.pwa-modal-header { position: relative; padding-right: 32px; margin-bottom: 20px; }
.pwa-modal-header h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 6px; }
.pwa-modal-header p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.pwa-steps { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.pwa-step { display: flex; align-items: flex-start; gap: 14px; }
.pwa-step-num {
    width: 28px; height: 28px; border-radius: 50%; background: var(--acc-dim);
    border: 1px solid rgba(34,197,94,0.3); display: flex; align-items: center;
    justify-content: center; font-size: 12px; font-weight: 700; color: var(--accent);
    flex-shrink: 0; margin-top: 1px;
}
.pwa-step-content { flex: 1; }
.pwa-step-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.pwa-step-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.pwa-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pwa-benefits { display: flex; flex-direction: column; gap: 8px; }
.pwa-benefit {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-2);
}
.pwa-benefit::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pwa-close-btn {
    margin-top: 24px; width: 100%; padding: 12px; background: var(--bg-elev);
    border: 1px solid var(--border); border-radius: 10px; color: var(--text);
    font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.15s;
}
.pwa-close-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Mobile ──────────────────────────────── */
@media (max-width: 720px) {
    .split { grid-template-columns: 1fr; }
    .cap-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .stat-bar { grid-template-columns: 1fr; }
    .product-feature { grid-template-columns: 1fr; }
    .product-feature.reverse { direction: ltr; }
    .hero { padding: 48px 0 40px; }
    .hero h1 { letter-spacing: -1.5px; }
    .waitlist-form { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .modal { padding: 28px 24px; }
    /* Nav stays on ONE line — hide CTA button, keep logo + bell + sign-in */
    nav { flex-wrap: nowrap; gap: 0; }
    .nav-cta { display: none; }
    footer { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
    .cap-grid { grid-template-columns: 1fr; }
}