/* The Campaign Flow — Global Styles */
:root {
  --bg:          #0f1419;
  --surface:     #1a222d;
  --surface2:    #232d3a;
  --border:      #2a3544;
  --text:        #e8ecf1;
  --muted:       #9aa8b8;
  --accent:      #f59e0b;
  --accent2:     #f97316;
  --accent-glow: rgba(245, 158, 11, 0.25);
  --green:       #10b981;
  --red:         #ef4444;
  --radius:      12px;
  --radius-lg:   20px;
  --max:         1000px;
  --font:        "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow:      0 4px 24px rgba(0,0,0,.45);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,20,25,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-size: 1.15rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 700; font-size: .85rem;
  padding: 8px 20px; border-radius: 8px; border: none; cursor: pointer;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .88; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.language-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255,255,255,.03);
}
.language-tab {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.language-tab:hover {
  color: var(--text);
  text-decoration: none;
}
.language-tab.active {
  color: #000;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.nav-back-site {
  font-size: .8rem; color: var(--muted); font-weight: 600;
  padding: 7px 12px; border-radius: 7px;
  border: 1px solid var(--border);
  transition: color .15s, border-color .15s;
  max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

@media (max-width: 720px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-right {
    justify-content: flex-start;
    width: 100%;
  }
  .language-tabs {
    max-width: 100%;
    overflow-x: auto;
  }
}
.nav-back-site:hover { color: var(--text); border-color: var(--accent); text-decoration: none; }

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,.08), transparent);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3);
  color: var(--accent); font-size: .78rem; font-weight: 600;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.15rem; color: var(--muted);
  max-width: 600px; margin: 0 auto 40px;
}
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 800; font-size: 1rem;
  padding: 14px 36px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 32px var(--accent-glow); }
.btn-ghost {
  background: transparent;
  color: var(--muted); font-size: .95rem;
  padding: 14px 24px; border-radius: 10px;
  border: 1px solid var(--border); cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-trust {
  display: flex; gap: 28px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; color: var(--muted);
}
.trust-icon { color: var(--green); font-size: 1rem; }

/* ── Funnel / Wizard ── */
.funnel-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(26,34,45,.5), transparent);
}
.funnel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.funnel-header { text-align: center; margin-bottom: 36px; }
.funnel-header h2 { font-size: 1.7rem; font-weight: 800; margin: 0 0 8px; }
.funnel-header p  { color: var(--muted); margin: 0; font-size: .95rem; }

.step-indicator {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 36px;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); transition: background .3s;
}
.step-dot.active  { background: var(--accent); }
.step-dot.done    { background: var(--green); }

.step { display: none; }
.step.visible { display: block; animation: fadeUp .25s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

.step label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--muted); margin-bottom: 8px; text-transform: uppercase;
  letter-spacing: .5px;
}
.step-q { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0 0 14px; }
.step input, .step textarea, .step select {
  width: 100%; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); font-size: .97rem; font-family: var(--font);
  padding: 12px 14px; outline: none; resize: vertical;
  transition: border-color .2s;
}
.step input:focus, .step textarea:focus, .step select:focus {
  border-color: var(--accent);
}
.step textarea { min-height: 80px; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.choice-card,
.subtype-chip {
  text-align: left;
  background: var(--surface2);
  border: 2px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .2s, transform .2s, background .2s;
}
.choice-card {
  min-height: 142px;
  padding: 18px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.choice-card:hover,
.subtype-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(245,158,11,.55);
}
.choice-card.selected,
.subtype-chip.selected {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(245,158,11,.12), var(--surface2));
}
.choice-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(245,158,11,.14);
  color: var(--accent);
  font-size: 1rem;
}
.choice-card strong,
.subtype-chip strong {
  display: block;
  font-size: .98rem;
}
.choice-card small,
.subtype-chip small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.4;
}
.subtype-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.subtype-chip {
  min-height: 88px;
  padding: 13px 14px;
}

.platform-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 4px;
}
.optional-creative {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}
.optional-creative input,
.optional-creative select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font-size: .92rem;
  font-family: var(--font);
  padding: 11px 13px;
  outline: none;
}
.optional-creative input:focus,
.optional-creative select:focus {
  border-color: var(--accent);
}
.platform-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2); border: 2px solid var(--border);
  border-radius: 9px; padding: 12px 14px;
  cursor: pointer; font-size: .92rem; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.platform-btn.selected { border-color: var(--accent); color: var(--text); }
.platform-icon { font-size: 1.3rem; }

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
}
.btn-next, .btn-back {
  padding: 11px 28px; border-radius: 9px;
  font-size: .92rem; font-weight: 700; cursor: pointer;
  border: none; transition: opacity .15s;
}
.btn-next { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #000; }
.btn-next:hover { opacity: .88; }
.btn-back { background: var(--surface2); color: var(--muted); border: 1px solid var(--border); }
.btn-back:hover { color: var(--text); }

.step-counter { font-size: .8rem; color: var(--muted); }

/* ── Generating State ── */
.generating-overlay {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 20px; padding: 60px 20px; text-align: center;
}
.generating-overlay.visible { display: flex; }
.gen-spinner {
  width: 56px; height: 56px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.gen-status { color: var(--muted); font-size: .95rem; min-height: 24px; }
.gen-agents {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.agent-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 99px; padding: 6px 14px;
  font-size: .78rem; color: var(--muted);
  transition: border-color .3s, color .3s;
}
.agent-chip.active { border-color: var(--accent); color: var(--accent); }
.agent-chip.done   { border-color: var(--green); color: var(--green); }
.agent-led {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: pls 1.2s infinite;
}
.agent-chip.done .agent-led { animation: none; }
@keyframes pls { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ── Pricing Grid ── */
.pricing-section { padding: 80px 0; }
.pricing-section h2 { text-align: center; font-size: 1.9rem; font-weight: 800; margin: 0 0 10px; }
.pricing-sub { text-align: center; color: var(--muted); margin: 0 0 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(245,158,11,.08), var(--surface));
}
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-size: .72rem; font-weight: 800;
  padding: 3px 12px; border-radius: 99px;
}
.price-amount {
  font-size: 2.4rem; font-weight: 900; color: var(--accent); line-height: 1;
  margin: 8px 0 4px;
}
.price-period { font-size: .8rem; color: var(--muted); }
.price-title { font-size: 1.05rem; font-weight: 700; margin: 14px 0 8px; }
.price-desc { font-size: .87rem; color: var(--muted); margin: 0 0 20px; line-height: 1.5; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: var(--muted); margin-bottom: 8px;
}
.price-features li::before { content: "✓"; color: var(--green); flex-shrink: 0; font-weight: 700; }
.btn-buy {
  width: 100%; padding: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 800; font-size: .9rem;
  border: none; border-radius: 8px; cursor: pointer;
  transition: opacity .15s;
}
.btn-buy:hover { opacity: .88; }
.btn-buy.ghost {
  background: transparent;
  border: 1px solid var(--accent); color: var(--accent);
}
.btn-buy.ghost:hover { background: rgba(245,158,11,.08); }

/* ── Social Share ── */
.share-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin: 32px 0 0;
}
.share-text { flex: 1; min-width: 200px; }
.share-text strong { display: block; font-size: .97rem; margin-bottom: 3px; }
.share-text span { font-size: .82rem; color: var(--muted); }
.share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-share {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 8px;
  font-size: .83rem; font-weight: 700; cursor: pointer; border: none;
  transition: opacity .15s;
}
.btn-share:hover { opacity: .88; }
.btn-share.twitter  { background: #1d9bf0; color: #fff; }
.btn-share.linkedin { background: #0a66c2; color: #fff; }
.btn-share.copy     { background: var(--surface2); color: var(--muted); border: 1px solid var(--border); }

/* ── How it Works ── */
.how-section { padding: 80px 0; }
.how-section h2 { text-align: center; font-size: 1.9rem; font-weight: 800; margin: 0 0 56px; }
.how-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; position: relative;
}
.how-step { text-align: center; }
.how-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how-step h3 { font-size: 1.02rem; font-weight: 700; margin: 0 0 8px; }
.how-step p  { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── Social Proof ── */
.proof-section { padding: 64px 0; background: var(--surface); }
.proof-section h2 { text-align: center; font-size: 1.5rem; font-weight: 800; margin: 0 0 40px; }
.proof-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.proof-stars { color: var(--accent); font-size: .85rem; margin-bottom: 10px; }
.proof-body  { font-size: .9rem; color: var(--muted); margin: 0 0 14px; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 10px; }
.proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.proof-name   { font-size: .85rem; font-weight: 700; }
.proof-role   { font-size: .77rem; color: var(--muted); }

/* ── Footer ── */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}

/* ── Deck Page ── */
.deck-hero {
  padding: 60px 0 40px;
  text-align: center;
}
.deck-hero h1 { font-size: 2rem; font-weight: 800; margin: 0 0 10px; }
.deck-hero p  { color: var(--muted); margin: 0; }

.positioning-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.positioning-box h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--accent); margin: 0 0 10px; }
.positioning-box p  { margin: 0; font-size: 1.05rem; line-height: 1.7; }

.ads-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-bottom: 48px;
}
.ad-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.ad-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.ad-image-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--surface2);
}
.ad-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-watermark {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: rgba(0,0,0,.12);
}
.wm-repeat {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-around; align-items: center;
  transform: rotate(-28deg) scale(1.6);
  gap: 4px;
}
.wm-repeat span {
  color: rgba(255,255,255,.18);
  font-size: .58rem; font-weight: 800; letter-spacing: 3px;
  white-space: nowrap; user-select: none;
  text-transform: uppercase;
}
.wm-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.78);
  color: rgba(255,255,255,.88);
  font-size: .68rem; font-weight: 700;
  padding: 5px 10px; border-radius: 5px;
  letter-spacing: .4px;
  backdrop-filter: blur(4px);
}
.ad-copy { padding: 18px 18px 22px; }
.ad-headline { font-size: 1.05rem; font-weight: 800; margin: 0 0 8px; }
.ad-body     { font-size: .88rem; color: var(--muted); margin: 0 0 12px; line-height: 1.55; }
.ad-cta      {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-size: .78rem; font-weight: 800;
  padding: 6px 16px; border-radius: 6px;
}

.unlock-banner {
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(249,115,22,.08));
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  margin-bottom: 40px;
}
.unlock-banner h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 8px; }
.unlock-banner p  { color: var(--muted); margin: 0 0 24px; font-size: .95rem; }
.unlock-actions   { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-unlock {
  padding: 12px 28px; border-radius: 9px;
  font-size: .9rem; font-weight: 800; cursor: pointer; border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  transition: opacity .15s;
}
.btn-unlock:hover { opacity: .88; }
.btn-unlock.ghost {
  background: transparent;
  border: 1px solid var(--accent); color: var(--accent);
}
.btn-unlock.ghost:hover { background: rgba(245,158,11,.08); }

/* ── Checkout Modal ── */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 500;
  align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 440px; width: 100%; margin: 20px;
  animation: fadeUp .2s ease;
}
.modal h3 { font-size: 1.3rem; font-weight: 800; margin: 0 0 6px; }
.modal p  { color: var(--muted); font-size: .9rem; margin: 0 0 22px; }
.modal input {
  width: 100%; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); font-size: .97rem; padding: 12px 14px;
  outline: none; margin-bottom: 16px; font-family: var(--font);
  transition: border-color .2s;
}
.modal input:focus { border-color: var(--accent); }
.modal-actions { display: flex; gap: 10px; }
.btn-cancel {
  flex: 1; padding: 11px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); font-weight: 700; cursor: pointer;
}
.btn-confirm {
  flex: 2; padding: 11px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 800; border: none; cursor: pointer;
  transition: opacity .15s;
}
.btn-confirm:hover { opacity: .88; }
.price-tag {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: var(--accent); font-weight: 800; font-size: 1.1rem;
  padding: 4px 12px; border-radius: 6px; margin-bottom: 20px;
}

/* ── Compare CTA Bar ── */
.compare-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(139,92,246,.06));
  border: 1px solid rgba(59,130,246,.25);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 20px;
}
.compare-cta-bar strong { display: block; font-size: .93rem; margin-bottom: 2px; }
.compare-cta-bar span   { font-size: .8rem; color: var(--muted); }
.btn-compare-link {
  display: inline-block; white-space: nowrap;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff; font-weight: 800; font-size: .85rem;
  padding: 10px 20px; border-radius: 8px;
  transition: opacity .15s;
}
.btn-compare-link:hover { opacity: .88; text-decoration: none; }

/* ── Email Sample Capture ── */
.email-capture-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.email-capture-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.email-capture-icon { font-size: 1.5rem; flex-shrink: 0; }
.email-capture-text { flex: 1; min-width: 180px; }
.email-capture-text strong { display: block; font-size: .93rem; margin-bottom: 2px; }
.email-capture-text span   { font-size: .8rem; color: var(--muted); }
.email-capture-form  { display: flex; gap: 8px; flex-wrap: wrap; }
.email-capture-form input {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: .88rem;
  padding: 9px 12px; outline: none; width: 210px;
  transition: border-color .2s; font-family: var(--font);
}
.email-capture-form input:focus { border-color: var(--accent); }
.btn-email-sample {
  padding: 9px 18px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 800; font-size: .85rem;
  border: none; cursor: pointer; white-space: nowrap;
  transition: opacity .15s;
}
.btn-email-sample:hover { opacity: .88; }
.btn-email-sample:disabled { opacity: .55; cursor: default; }
.email-capture-sent {
  display: none;
  color: var(--green); font-size: .9rem; font-weight: 600;
  padding: 4px 0;
}
.sent-check { margin-right: 5px; }

/* ── Pilot Notices ── */
.pilot-alert {
  background: #fef3c7;
  border: 2px solid #dc2626;
  border-radius: var(--radius);
  color: #7f1d1d;
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: 0 0 0 rgba(220,38,38,0);
  animation: pilotPulse 1.2s ease-in-out infinite;
}
.pilot-alert strong {
  display: block;
  color: #dc2626;
  font-size: clamp(1.4rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.1;
}
.pilot-alert span {
  display: block;
  margin-top: 8px;
  font-size: .95rem;
  font-weight: 800;
}
@keyframes pilotPulse {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 0 0 rgba(220,38,38,0);
  }
  50% {
    filter: brightness(1.12);
    box-shadow: 0 0 30px rgba(220,38,38,.28);
  }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .funnel-card { padding: 28px 20px; }
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 1.9rem; }
  .choice-grid,
  .subtype-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }
}
