:root {
    --bg: #050505;
    --bg-card: #0a0a0a;
    --bg-elevated: #111111;
    --text: #f0f0f0;
    --text-dim: #888888;
    --text-muted: #555555;
    --amber: #f59e0b;
    --accent: #22c55e;
    --accent-dim: #16a34a;
    --accent-glow: rgba(34, 197, 94, 0.4);
    --red: #ff4444;
    --border: #1a1a1a;
    --border-light: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
html, body { max-width: 100vw !important; overflow-x: hidden !important; }

.noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

/* ==================== NAV ==================== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0; background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; align-items: center; gap: 16px; }
.logo {
    display: flex; align-items: center; gap: 10px; font-weight: 700;
    font-size: 1.1rem; letter-spacing: -0.02em; text-decoration: none;
    color: var(--text); cursor: pointer; flex-shrink: 0;
}
.logo:hover { color: var(--text); }
.logo-icon { color: var(--accent); font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-link {
    color: var(--text-muted); text-decoration: none; font-size: 0.8125rem;
    font-weight: 500; transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); }
.nav-demo { color: var(--text-dim); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.nav-cta {
    background: var(--accent); color: var(--bg); padding: 9px 20px;
    font-size: 0.8125rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s; white-space: nowrap; border-radius: 2px;
}
.nav-cta:hover { background: var(--accent-dim); }

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--bg); padding: 16px 32px;
    font-size: 1rem; font-weight: 600; text-decoration: none; border: none;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary:hover {
    background: var(--accent-dim); transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost-hero {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-dim); text-decoration: none; font-size: 0.9375rem;
    font-weight: 500; padding: 16px 24px; border: 1px solid var(--border);
    transition: all 0.2s;
}
.btn-ghost-hero:hover { color: var(--text); border-color: var(--border-light); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    background: transparent; border: 1px solid var(--accent); color: var(--accent);
    padding: 14px 28px; font-size: 1rem; font-weight: 600; text-decoration: none;
    cursor: pointer; transition: all 0.2s; font-family: inherit; width: 100%;
}
.btn-outline:hover { background: rgba(34, 197, 94, 0.1); }

/* ==================== HERO ==================== */
.hero { padding: 140px 0 80px; position: relative; }
.hero .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 3.75rem; font-weight: 700; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 20px; }
.highlight { color: var(--accent); text-shadow: 0 0 60px var(--accent-glow); }
.hero-sub { font-size: 1.125rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 32px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.hero-free { font-size: 0.8125rem; color: var(--text-muted); }
.hero-glow {
    position: absolute; top: 10%; left: 60%; transform: translateX(-50%);
    width: 700px; height: 500px; background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.35; pointer-events: none; filter: blur(80px);
}

/* VSL Video */
.hero-video { position: relative; z-index: 1; }
.vsl-placeholder {
    aspect-ratio: 16/9; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; cursor: pointer; transition: border-color 0.2s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(34, 197, 94, 0.15);
}
.vsl-placeholder:hover { border-color: var(--accent); }
.vsl-play {
    width: 72px; height: 72px; background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    color: var(--bg); margin-bottom: 16px; transition: transform 0.2s;
}
.vsl-placeholder:hover .vsl-play { transform: scale(1.1); }
.vsl-placeholder p { font-size: 0.875rem; color: var(--text-muted); }

/* ==================== SECTIONS ==================== */
section { padding: 80px 0; width: 100%; }
.section-eyebrow {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent); margin-bottom: 16px;
}
.section-title {
    font-size: 2.75rem; font-weight: 700; line-height: 1.15;
    letter-spacing: -0.03em; margin-bottom: 48px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ==================== PROBLEM ==================== */
.problem { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--bg); border: 1px solid var(--border); padding: 32px; transition: border-color 0.2s; }
.problem-card:hover { border-color: var(--border-light); }
.problem-number { font-size: 0.75rem; font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.problem-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.problem-card p { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.65; }

/* ==================== PROOF STATS ==================== */
.proof-stats { background: var(--bg); border-bottom: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.proof-card { background: var(--bg-card); padding: 36px 32px; transition: background 0.3s; }
.proof-card:hover { background: var(--bg-elevated); }
.proof-card-stat { font-size: 3.5rem; font-weight: 700; color: var(--red); line-height: 1; letter-spacing: -0.04em; margin-bottom: 14px; }
.proof-card-plus { font-size: 2rem; vertical-align: super; line-height: 0; }
.proof-card-desc { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 12px; }
.proof-card-source { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }
.proof-bottom { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); text-align: center; }
.proof-punchline { font-size: 1.125rem; color: var(--text); max-width: 560px; margin: 0 auto; font-weight: 500; }

/* ==================== FEATURE SECTIONS ==================== */
.feature-section { border-bottom: 1px solid var(--border); }
.feature-section.alt { background: var(--bg-card); }
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-title {
    font-size: 2.25rem; font-weight: 700; line-height: 1.15;
    letter-spacing: -0.03em; margin-bottom: 16px;
}
.feature-desc { font-size: 1rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
    padding: 6px 0; font-size: 0.9375rem; color: var(--text-dim);
    display: flex; align-items: flex-start; gap: 10px;
}
.feature-list .check { color: var(--accent); font-weight: 700; flex-shrink: 0; font-size: 0.875rem; margin-top: 2px; }
.feature-cta {
    color: var(--accent); text-decoration: none; font-weight: 600;
    font-size: 0.9375rem; transition: color 0.2s;
}
.feature-cta:hover { color: var(--accent-dim); }
.feature-image { position: relative; }
.feature-image img {
    width: 100%; border-radius: 10px; border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); transition: transform 0.3s;
}
.feature-image img:hover { transform: translateY(-4px); }

/* ==================== AI FEATURE ==================== */
.ai-feature { background: var(--bg-card); border-top: 1px solid var(--border); }
.ai-intro {
    font-size: 1.125rem; color: var(--text-dim); max-width: 640px;
    line-height: 1.7; margin-top: -28px; margin-bottom: 48px;
}
.ai-showcase { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; }

/* AI Chat Demo */
.ai-chat-demo {
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.ai-demo-header {
    background: var(--bg-elevated); padding: 12px 16px; display: flex;
    align-items: center; gap: 8px; border-bottom: 1px solid var(--border);
}
.ai-demo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); }
.ai-demo-dot:first-child { background: #ef4444; }
.ai-demo-dot:nth-child(2) { background: #f59e0b; }
.ai-demo-dot:nth-child(3) { background: #22c55e; }
.ai-demo-title { margin-left: 8px; font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.ai-demo-messages { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.ai-demo-msg {
    padding: 12px 16px; border-radius: 10px; font-size: 0.875rem; line-height: 1.6; max-width: 90%;
}
.ai-demo-msg.user {
    background: var(--accent); color: var(--bg); align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.ai-demo-msg.assistant {
    background: var(--bg-elevated); color: var(--text-dim); align-self: flex-start;
    border: 1px solid var(--border); border-bottom-left-radius: 2px;
}
.ai-demo-msg.assistant strong { color: var(--text); }

/* AI Personas */
.ai-personas { display: flex; flex-direction: column; gap: 12px; }
.ai-persona {
    background: var(--bg); border: 1px solid var(--border); padding: 20px;
    border-radius: 8px; transition: border-color 0.2s;
}
.ai-persona:hover { border-color: var(--accent); }
.persona-icon { font-size: 1.5rem; margin-bottom: 8px; }
.ai-persona h4 { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.persona-role {
    font-size: 0.6875rem; color: var(--accent); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
}
.ai-persona p { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5; }

/* ==================== COMPARISON ==================== */
.comparison { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.klaviyo-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.klaviyo-card { background: #ffffff; border-radius: 12px; overflow: hidden; }
.klaviyo-panel { display: flex; flex-direction: column; }
.klaviyo-panel.before .klaviyo-card { border: 2px solid #ef4444; box-shadow: 0 4px 24px rgba(239, 68, 68, 0.15); }
.klaviyo-panel.after .klaviyo-card { border: 2px solid var(--accent); box-shadow: 0 4px 24px rgba(34, 197, 94, 0.2); }
.klaviyo-header { background: #1a1a2e; padding: 10px 16px; display: flex; align-items: center; gap: 12px; }
.klaviyo-logo { color: white; font-weight: 700; font-size: 0.875rem; }
.klaviyo-tab { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.klaviyo-status { margin-left: auto; font-size: 0.6875rem; padding: 4px 10px; border-radius: 4px; font-weight: 600; }
.klaviyo-status.bad { background: #ef4444; color: white; }
.klaviyo-status.good { background: var(--accent); color: white; }
.klaviyo-profile-header { padding: 16px; border-bottom: 1px solid #e5e7eb; display: flex; align-items: flex-start; gap: 12px; }
.klaviyo-avatar {
    width: 48px; height: 48px; background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 600; color: white; flex-shrink: 0;
}
.klaviyo-profile-info { flex: 1; min-width: 0; }
.klaviyo-name { font-size: 1rem; font-weight: 600; color: #111827; margin-bottom: 2px; }
.klaviyo-email { font-size: 0.75rem; color: #6b7280; margin-bottom: 8px; }
.klaviyo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.klaviyo-tag { font-size: 0.625rem; padding: 3px 8px; border-radius: 4px; font-weight: 500; }
.klaviyo-tag.subscribed { background: #d1fae5; color: #059669; }
.klaviyo-tag.hot { background: #fef3c7; color: #d97706; }
.klaviyo-tag.intent { background: #ede9fe; color: #7c3aed; }
.klaviyo-properties { padding: 12px 16px; }
.klaviyo-prop { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
.klaviyo-prop:last-child { border-bottom: none; }
.prop-label { font-size: 0.8125rem; color: #6b7280; }
.prop-value { font-size: 0.875rem; font-weight: 500; color: #111827; text-align: right; }
.prop-value.empty { color: #9ca3af; font-style: italic; font-weight: 400; }
.prop-value.code { font-family: 'SF Mono', Monaco, monospace; font-size: 0.75rem; background: #f3f4f6; padding: 3px 8px; border-radius: 4px; }
.prop-value.good { color: #059669; font-weight: 600; }
.prop-value.strong { font-size: 0.9375rem; }
.prop-value.score { display: flex; align-items: center; gap: 8px; }
.score-bar-mini { width: 48px; height: 6px; background: #e5e7eb; border-radius: 3px; overflow: hidden; }
.score-fill-mini { display: block; width: 94%; height: 100%; background: #10b981; border-radius: 3px; }
.klaviyo-activity { padding: 12px 16px; border-top: 1px solid #e5e7eb; }
.activity-title { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; margin-bottom: 10px; }
.activity-item-k { display: flex; align-items: center; gap: 10px; font-size: 0.8125rem; color: #374151; padding: 8px 0; }
.klaviyo-empty-state { background: #fef2f2; border-top: 1px solid #fecaca; padding: 20px 16px; text-align: center; }
.empty-bad { color: #dc2626; font-size: 0.8125rem; margin: 6px 0; font-weight: 500; }
.klaviyo-journey { padding: 14px 16px; background: #f0fdf4; border-top: 1px solid #bbf7d0; }
.journey-label { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #059669; margin-bottom: 10px; }
.journey-path { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 0.75rem; color: #374151; }
.journey-path span:not(.arrow) { background: white; padding: 4px 10px; border-radius: 4px; border: 1px solid #d1fae5; }
.journey-path .arrow { color: #9ca3af; font-size: 0.625rem; }
.journey-path .current { background: #10b981; border-color: #10b981; color: white; font-weight: 600; }

/* ==================== PRICING ==================== */
.pricing { background: var(--bg); border-bottom: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 780px; margin: 0 auto; }
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border); padding: 40px 32px;
    border-radius: 12px; position: relative; display: flex; flex-direction: column;
}
.pricing-card.paid { border-color: var(--accent); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--bg); padding: 4px 16px;
    font-size: 0.75rem; font-weight: 600; border-radius: 12px; white-space: nowrap;
}
.pricing-tier { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pricing-price { font-size: 3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pricing-unit { font-size: 1rem; font-weight: 400; color: var(--text-dim); }
.pricing-desc { font-size: 0.9375rem; color: var(--text-dim); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-features li {
    padding: 7px 0; font-size: 0.9375rem; color: var(--text-dim);
    border-bottom: 1px solid var(--border); padding-left: 24px; position: relative;
}
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-guarantee { font-size: 0.8125rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.pricing-math { text-align: center; margin-top: 36px; font-size: 0.9375rem; color: var(--text-dim); }
.pricing-math strong { color: var(--accent); }
.pricing-math-sub { font-size: 0.8125rem; color: var(--text-muted); margin-top: 6px; }
.pricing-demo-cta { text-align: center; margin-top: 28px; font-size: 0.9375rem; color: var(--text-muted); }
.pricing-demo-cta a { color: var(--accent); text-decoration: none; font-weight: 500; }
.pricing-demo-cta a:hover { text-decoration: underline; }

/* ==================== SETUP ==================== */
.setup { background: var(--bg); border-bottom: 1px solid var(--border); }
.setup-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    background: var(--bg-card); border: 1px solid var(--border); padding: 56px;
}
.setup-left h2 { font-size: 2rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.setup-left p { font-size: 1rem; color: var(--text-dim); line-height: 1.7; }
.setup-steps { display: flex; flex-direction: column; gap: 12px; }
.setup-step { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--bg); border: 1px solid var(--border); }
.step-num {
    width: 32px; height: 32px; background: rgba(34, 197, 94, 0.1); border: 1px solid var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.step-text { font-size: 0.9375rem; font-weight: 500; }

/* ==================== PLATFORMS ==================== */
.platforms { background: var(--bg-card); border-bottom: 1px solid var(--border); }
.platforms-sub { font-size: 1rem; color: var(--text-dim); max-width: 560px; line-height: 1.7; margin-top: -28px; margin-bottom: 40px; }
.platform-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-logo {
    padding: 10px 18px; background: var(--bg); border: 1px solid var(--border);
    border-radius: 6px; font-size: 0.8125rem; font-weight: 500; color: var(--text-muted);
    transition: border-color 0.2s;
}
.platform-logo.built { border-color: var(--accent); color: var(--accent); }
.platform-logo:hover { border-color: var(--border-light); }

/* ==================== FINAL CTA ==================== */
.final-cta { background: var(--bg); padding: 100px 0; text-align: center; }
.final-cta h2 { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; }
.final-cta p { font-size: 1.125rem; color: var(--text-dim); max-width: 560px; margin: 0 auto 36px; }
.final-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 2.75rem; }
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
    .feature-row.reverse > * { direction: ltr; }
    .feature-image { order: -1; }
    .ai-showcase { grid-template-columns: 1fr; }
    .ai-personas { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .ai-persona { flex: 1 1 calc(50% - 6px); min-width: 200px; }
    .problem-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .setup-box { grid-template-columns: 1fr; gap: 32px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .klaviyo-comparison { grid-template-columns: 1fr; gap: 32px; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    section { padding: 60px 0; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.25rem; }
    .section-title { font-size: 1.75rem; margin-bottom: 36px; }
    .feature-title { font-size: 1.75rem; }
    .btn-primary { padding: 14px 24px; font-size: 0.9375rem; width: 100%; justify-content: center; }
    .btn-ghost-hero { width: 100%; justify-content: center; }
    .hero-ctas { flex-direction: column; }
    .hero-free { text-align: center; }
    .nav-demo { display: none; }
    .nav-cta { padding: 8px 16px; font-size: 0.8125rem; }
    .logo { font-size: 1rem; }
    .solution-features { grid-template-columns: 1fr; }
    .ai-personas { flex-direction: column; }
    .ai-persona { flex: 1 1 100%; }
    .setup-box { padding: 28px; }
    .footer-inner { flex-direction: column; gap: 16px; }
    .proof-card { padding: 28px 24px; }
    .proof-card-stat { font-size: 3rem; }
    .final-cta h2 { font-size: 2rem; }
    .final-cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero h1 { font-size: 1.875rem; }
    .section-title { font-size: 1.375rem; }
    .feature-title { font-size: 1.375rem; }
    nav { padding: 12px 0; }
    .nav-cta { padding: 6px 12px; font-size: 0.75rem; }
    .logo span { display: none; }
    .setup-step { padding: 14px; gap: 12px; }
    .pricing-card { padding: 32px 20px; }
    .pricing-price { font-size: 2.25rem; }
    .proof-card-stat { font-size: 2.5rem; }
    .ai-chat-demo { font-size: 0.8125rem; }
    .klaviyo-header { flex-wrap: wrap; gap: 8px; }
    .klaviyo-status { margin-left: 0; width: 100%; text-align: center; }
    .journey-path span:not(.arrow) { padding: 3px 6px; font-size: 0.6875rem; }
}
