/* Runline marketing site — landing page styles */

:root {
  --bg: #FAFAF7; --surface: #FFFFFF; --surface-2: #F4F3EE;
  --border: #E5E4DE; --border-strong: #C7C5BD;
  --text: #141414; --text-secondary: #5C5B54; --text-muted: #8B8A80;
  --accent: #3B4EFF; --accent-bg: #EAEDFF; --accent-text: #2C3ADB;
  --accent-dark: #2C3ADB;
  --success: #059669; --success-bg: #ECFDF5;
  --warning: #F59E0B; --warning-bg: #FEF3C7;
  --danger: #DC2626;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg); color: var(--text); line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

/* Accessible focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
  font-size: 13px; font-weight: 500;
}
.skip-link:focus { left: 0; }

/* Navigation */
nav.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.85); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; text-decoration: none; color: var(--text); }
.nav-brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link { text-decoration: none; color: var(--text-secondary); font-size: 13px; font-weight: 500; transition: color 0.15s; }
.nav-link:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: white; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: 500; border: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; transition: background 0.15s; }
.nav-cta:hover { background: var(--accent-dark); }

/* Hero */
.hero { padding: 80px 32px 56px; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-bg); color: var(--accent-text);
  padding: 6px 14px; border-radius: 20px; font-size: 12px;
  font-weight: 500; margin-bottom: 22px;
  font-family: var(--mono); letter-spacing: 0.3px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: 56px; font-weight: 600; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px; }
.hero h1 .rotator { color: var(--accent); display: inline-block; min-width: 260px; text-align: left; position: relative; }
.hero h1 .cursor { display: inline-block; width: 3px; height: 42px; background: var(--accent); vertical-align: -8px; animation: blink 0.8s infinite; margin-left: 2px; }
@keyframes blink { 0%, 50% { opacity: 1; } 50.1%, 100% { opacity: 0; } }

.hero p.sub { font-size: 18px; color: var(--text-secondary); max-width: 660px; margin: 0 auto 32px; line-height: 1.55; }

.hero-cta { display: flex; gap: 12px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.btn-primary-lg {
  background: var(--accent); color: white; padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(59, 78, 255, 0.25); text-decoration: none;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59, 78, 255, 0.35); }
.btn-ghost-lg {
  background: transparent; color: var(--text); padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500; border: 1px solid var(--border-strong); cursor: pointer;
  font-family: inherit; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background 0.15s;
}
.btn-ghost-lg:hover { background: var(--surface); }

.hero-features { display: flex; gap: 24px; justify-content: center; font-size: 13px; color: var(--text-secondary); flex-wrap: wrap; }
.hero-features span { display: flex; align-items: center; gap: 6px; }
.hero-features i { color: var(--success); }

/* Hero preview mockup */
.hero-preview { max-width: 900px; margin: 56px auto 0; padding: 0 32px; position: relative; }
.preview-frame {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); overflow: hidden; position: relative;
}
.preview-header {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-bottom: 1px solid var(--border); background: var(--surface-2); border-radius: 12px 12px 0 0;
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot-red { background: #FF5F57; }
.preview-dot-yellow { background: #FFBD2E; }
.preview-dot-green { background: #28C840; }
.preview-url {
  background: var(--surface); padding: 4px 12px; border-radius: 4px; font-size: 11px;
  color: var(--text-secondary); margin-left: 8px; font-family: var(--mono);
}
.preview-body { padding: 24px; min-height: 340px; background: var(--bg); }
.preview-body-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.preview-status {
  display: inline-flex; align-items: center; gap: 6px; background: var(--success-bg);
  color: var(--success); padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 500;
}
.preview-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 1.5s infinite; }
.preview-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.preview-metric { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.preview-metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.preview-metric-value { font-size: 20px; font-weight: 500; font-family: var(--mono); }
.preview-metric-delta { font-size: 10px; color: var(--success); margin-top: 2px; }
.preview-email {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 14px;
  font-size: 12px; line-height: 1.55; color: var(--text-secondary); border-left: 3px solid var(--accent);
}
.preview-email strong { color: var(--text); }
.preview-email-mark { background: var(--warning-bg); padding: 0 3px; border-radius: 2px; }
.preview-actions { display: flex; justify-content: flex-end; gap: 6px; margin-top: 10px; }
.preview-btn { padding: 5px 10px; border-radius: 4px; font-size: 10px; font-weight: 500; border: none; cursor: pointer; font-family: inherit; }
.preview-btn-primary { background: var(--success); color: white; }
.preview-btn-ghost { background: var(--surface-2); color: var(--text-secondary); }

/* Sections */
section { padding: 80px 32px; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--accent-text);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; text-align: center;
}
.section-title { font-size: 40px; font-weight: 600; letter-spacing: -0.8px; line-height: 1.15; text-align: center; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-secondary); text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* How it works */
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: transform 0.15s, box-shadow 0.15s; }
.step:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.step-num { display: inline-block; background: var(--accent-bg); color: var(--accent-text); font-family: var(--mono); font-weight: 600; font-size: 12px; padding: 4px 10px; border-radius: 6px; margin-bottom: 14px; }
.step-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Features */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
.feature:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: var(--border-strong); }
.feature.highlight { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-bg) 0%, var(--surface) 60%); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-bg); color: var(--accent-text); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Integrations */
.integrations-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.int-tab { padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; background: var(--surface); border: 1px solid var(--border); cursor: pointer; color: var(--text-secondary); transition: all 0.15s; font-family: inherit; }
.int-tab:hover { background: var(--surface-2); }
.int-tab.active { background: var(--accent-bg); border-color: var(--accent); color: var(--accent-text); }

.int-category { display: none; }
.int-category.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.int-cat-header { text-align: center; margin-bottom: 24px; }
.int-cat-title { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.int-cat-desc { font-size: 13px; color: var(--text-secondary); }

.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.int-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px; display: flex; align-items: flex-start; gap: 12px; transition: all 0.15s; }
.int-card:hover { border-color: var(--border-strong); }
.int-card.native { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-bg) 0%, var(--surface) 100%); }
.int-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.int-info { flex: 1; }
.int-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; display: flex; align-items: center; gap: 6px; }
.int-badge { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.3px; }
.int-badge.popular { background: var(--accent); color: white; }
.int-badge.free { background: var(--success); color: white; }
.int-badge.custom { background: var(--warning); color: white; }
.int-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.int-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-secondary); }
.int-note strong { color: var(--text); }

/* Integration icon colours */
.icon-apollo { background: #7B4FFF; } .icon-cognism { background: #1DBFCF; } .icon-lusha { background: #002E5D; }
.icon-clay { background: #10B981; } .icon-csv { background: #6B7280; } .icon-instantly { background: #FF6B4A; }
.icon-smartlead { background: #10B981; } .icon-lemlist { background: #6E4BE8; } .icon-smtp { background: #6B7280; }
.icon-google { background: #4285F4; } .icon-gmail { background: #EA4335; } .icon-outlook { background: #0078D4; }
.icon-imap { background: #6B7280; } .icon-hubspot { background: #FF7A59; } .icon-pipedrive { background: #1A1A1A; }
.icon-attio { background: #6366F1; } .icon-salesforce { background: #00A1E0; } .icon-nocrm { background: #6B7280; }
.icon-slack { background: #4A154B; } .icon-teams { background: #6264A7; } .icon-discord { background: #5865F2; }
.icon-email { background: #6B7280; } .icon-cal { background: #000; } .icon-calendly { background: #006BFF; }
.icon-webhook { background: #F59E0B; } .icon-api { background: #14B8A6; } .icon-hsmeetings { background: #FF7A59; }

/* USP comparison + trial cards */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.usp-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.usp-card.them { opacity: 0.9; }
.usp-card.us { border-color: var(--accent); }
.usp-card-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.usp-card-sub { font-size: 12px; color: var(--text-secondary); margin-bottom: 20px; }
.usp-list { list-style: none; }
.usp-list li { padding: 8px 0; font-size: 13px; display: flex; align-items: flex-start; gap: 8px; color: var(--text-secondary); border-bottom: 1px dashed var(--border); }
.usp-list li:last-child { border-bottom: none; }
.usp-list li i { flex-shrink: 0; margin-top: 3px; }
.us .usp-list li i { color: var(--success); }
.them .usp-list li i { color: var(--text-muted); }
.usp-brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.trial-note { text-align: center; margin-top: 24px; font-size: 12px; color: var(--text-muted); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.trial-note strong { color: var(--text); }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(59, 78, 255, 0.12); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; white-space: nowrap; }
.price-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.price-desc { font-size: 12px; color: var(--text-secondary); margin-bottom: 20px; min-height: 32px; }
.price-amount { font-size: 40px; font-weight: 600; letter-spacing: -1px; }
.price-amount .currency { font-size: 20px; color: var(--text-secondary); vertical-align: super; margin-right: 2px; }
.price-period { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.price-cta { display: block; text-align: center; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 500; text-decoration: none; margin-bottom: 20px; transition: opacity 0.15s; cursor: pointer; border: none; font-family: inherit; width: 100%; }
.price-cta.primary { background: var(--accent); color: white; }
.price-cta.secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.price-cta:hover { opacity: 0.9; }
.price-features { list-style: none; }
.price-features li { padding: 6px 0; font-size: 13px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; }
.price-features li i { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.price-features li.dim { color: var(--text-muted); }
.price-features li.dim i { color: var(--text-muted); }
.price-features .price-seat { font-family: var(--mono); font-size: 12px; }
.pricing-notes { text-align: center; margin-top: 40px; font-size: 14px; color: var(--text-secondary); line-height: 1.9; }
.pricing-notes strong { color: var(--text); }
.pricing-fineprint { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--text); padding: 18px 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-q:hover { background: var(--surface-2); }
.faq-q i { color: var(--accent); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 20px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* Final CTA */
.final-cta { background: var(--text); color: white; border-radius: 24px; padding: 60px 40px; text-align: center; margin: 40px auto; max-width: 900px; }
.final-cta h2 { font-size: 38px; font-weight: 600; letter-spacing: -0.7px; margin-bottom: 14px; }
.final-cta p { font-size: 16px; opacity: 0.75; max-width: 520px; margin: 0 auto 28px; }
.final-cta .btn-primary-lg { background: white; color: var(--text); box-shadow: none; }
.final-cta .btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.15); }

/* Footer */
footer { padding: 40px 32px; text-align: center; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }
footer a { color: var(--text-secondary); text-decoration: none; margin: 0 12px; }
footer a:hover { color: var(--text); }

/* Demo overlay */
.demo-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 200; display: none; }
.demo-overlay.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
.demo-container { background: var(--bg); width: 100vw; height: 100vh; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.demo-close {
  position: fixed; top: 12px; right: 12px; z-index: 210;
  background: rgba(0, 0, 0, 0.75); color: white; border: none; padding: 8px 14px; border-radius: 8px;
  cursor: pointer; font-family: inherit; font-size: 12px; display: inline-flex; align-items: center; gap: 5px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.demo-close:hover { background: rgba(0, 0, 0, 0.9); }
.demo-frame { flex: 1; border: none; background: var(--bg); width: 100%; height: 100vh; }

/* Role picker (inside overlay) */
.picker-wrap { max-width: 900px; width: 100%; margin: 0 auto; text-align: center; padding: 48px 20px; flex: 1; overflow-y: auto; }
.picker-eyebrow { font-family: var(--mono); font-size: 11px; color: var(--accent-text); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.picker-title { font-size: 40px; font-weight: 600; letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; }
.picker-sub { font-size: 15px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 40px; line-height: 1.55; }
.picker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.picker-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 20px; cursor: pointer; transition: all 0.2s; text-align: left; font-family: inherit; }
.picker-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--accent); }
.picker-emoji { font-size: 40px; margin-bottom: 12px; }
.picker-role { font-weight: 600; font-size: 17px; margin-bottom: 6px; color: var(--text); }
.picker-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 12px; min-height: 40px; }
.picker-cta { font-size: 12px; color: var(--accent-text); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.picker-hint { font-size: 12px; color: var(--text-muted); margin-top: 24px; }

/* Intro product tour ("What is Runline?") */
.intro-tour { display: none; flex: 1; align-items: center; justify-content: center; padding: 40px 20px; overflow-y: auto; }
.intro-tour.active { display: flex; animation: fadeIn 0.3s ease; }
.intro-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px; max-width: 520px; width: 100%; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.intro-eyebrow { font-family: var(--mono); font-size: 11px; color: var(--accent-text); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.intro-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--accent-bg); color: var(--accent-text); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; }
.intro-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.4px; margin-bottom: 12px; }
.intro-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; min-height: 76px; }
.intro-progress { display: flex; gap: 6px; justify-content: center; margin: 24px 0; }
.intro-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); transition: all 0.2s; }
.intro-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }
.intro-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.intro-nav { display: flex; gap: 8px; }
.intro-btn { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
.intro-skip { background: none; border: none; color: var(--text-muted); font-size: 13px; cursor: pointer; font-family: inherit; }
.intro-skip:hover { color: var(--text); }
.picker-replay { background: none; border: none; color: var(--accent-text); font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 4px; padding: 0; }
.picker-replay:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .intro-card { padding: 32px 22px; }
  .intro-card h3 { font-size: 20px; }
  .intro-card p { min-height: 96px; }

  .hero { padding: 56px 20px 40px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero h1 .rotator { min-width: 0; }
  .hero h1 .cursor { height: 30px; vertical-align: -4px; }
  .hero p.sub { font-size: 16px; }
  section { padding: 56px 20px; }
  .section-title { font-size: 28px; }
  .steps, .features, .pricing, .usp-grid, .int-grid { grid-template-columns: 1fr; }
  .preview-metrics { grid-template-columns: 1fr 1fr; }
  nav.top-nav { padding: 12px 20px; }
  .nav-links a.nav-link { display: none; }
  .final-cta { padding: 40px 24px; }
  .final-cta h2 { font-size: 26px; }
  .picker-grid { grid-template-columns: 1fr; }
  .picker-title { font-size: 28px; }
  .picker-desc { min-height: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero h1 .cursor { display: none; }
}
