/* battlecards.css — /battlecards landing + result pages */

:root {
  --bg: #080810;
  --bg-card: #0f0f1a;
  --bg-card-hover: #141422;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(99, 102, 241, 0.35);
  --text: #e4e4e7;
  --text-muted: #71717a;
  --text-faint: #3f3f46;
  --accent: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.18);
  --accent-warm: #f59e0b;
  --success: #10b981;
  --danger: #f43f5e;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.bc-body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(99,102,241,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(245,158,11,0.04) 0%, transparent 70%);
}

/* ── Header ────────────────────────────────────────────────────────────── */
.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,16,0.9);
  backdrop-filter: blur(12px);
}
.bc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}
.bc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.bc-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.bc-nav a:hover { color: var(--text); }
.bc-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.bc-nav-cta:hover { opacity: 0.85; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.bc-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.bc-hero-label {
  display: inline-block;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.bc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.bc-hero-title em {
  font-style: italic;
  color: var(--accent);
}
.bc-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ── Form card ─────────────────────────────────────────────────────────── */
.bc-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.bc-form { display: flex; flex-direction: column; gap: 16px; }
.bc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bc-field { display: flex; flex-direction: column; gap: 6px; }
.bc-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bc-field input {
  background: #0a0a14;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.bc-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.bc-field input::placeholder { color: var(--text-faint); }

.bc-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bc-submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.bc-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.bc-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.bc-form-note { font-size: 12px; color: var(--text-faint); }
.bc-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(244,63,94,0.08);
  border: 1px solid rgba(244,63,94,0.25);
  border-radius: 8px;
  color: #fb7185;
  font-size: 13px;
}
.bc-error a { color: var(--accent); }

/* ── Sections explainer ──────────────────────────────────────────────── */
.bc-sections-explainer {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 24px;
}
.bc-section-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.bc-section-item {
  background: var(--bg-card);
  padding: 28px 24px;
  transition: background 0.2s;
}
.bc-section-item:hover { background: var(--bg-card-hover); }
.bc-section-icon {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
  font-style: italic;
}
.bc-section-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.bc-section-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Death / fix section ─────────────────────────────────────────────── */
.bc-death-section {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.bc-death-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
}
.bc-death-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
}
.bc-death-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bc-death-problem h3,
.bc-death-fix h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.bc-death-problem h3 { color: #f43f5e; }
.bc-death-fix h3 { color: var(--success); }
.bc-death-problem ul,
.bc-death-fix ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bc-death-problem li,
.bc-death-fix li { font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; line-height: 1.5; }
.bc-death-problem li::before { content: '✗'; position: absolute; left: 0; color: #f43f5e; }
.bc-death-fix li::before { content: '✓'; position: absolute; left: 0; color: var(--success); }
.bc-death-fix li em { font-style: italic; color: var(--text); }

/* ── Pricing strip ───────────────────────────────────────────────────── */
.bc-pricing-strip {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.bc-pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.bc-pricing-free,
.bc-pricing-pro {
  background: var(--bg-card);
  padding: 32px 28px;
}
.bc-pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.bc-pricing-badge--pro {
  background: rgba(99,102,241,0.1);
  border-color: var(--border-accent);
  color: var(--accent);
}
.bc-pricing-free p,
.bc-pricing-pro p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.bc-pricing-pro-link { font-size: 13px; color: var(--accent); text-decoration: none; }
.bc-pricing-pro-link:hover { text-decoration: underline; }

/* ── Trust strip ─────────────────────────────────────────────────────── */
.bc-trust-strip {
  text-align: center;
  padding: 40px 24px;
}
.bc-trust-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.bc-faq {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.bc-faq-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
}
.bc-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.bc-faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-faq-item summary::before {
  content: '+';
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s;
  text-align: center;
  line-height: 20px;
}
.bc-faq-item[open] summary::before { content: '−'; background: var(--accent-glow); }
.bc-faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  padding-left: 30px;
  line-height: 1.65;
}

/* ── Bottom CTA ──────────────────────────────────────────────────────── */
.bc-bottom-cta {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.04) 100%);
}
.bc-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.bc-bottom-cta p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.bc-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
}
.bc-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Result page ─────────────────────────────────────────────────────── */
.bc-result-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.bc-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.bc-result-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.bc-result-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.bc-result-urls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bc-url-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.bc-url-chip:hover { opacity: 0.8; }
.bc-url-chip--us {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--success);
}
.bc-url-chip--them {
  background: rgba(244,63,94,0.08);
  border: 1px solid rgba(244,63,94,0.25);
  color: #fb7185;
}
.bc-url-vs { font-size: 12px; color: var(--text-faint); }
.bc-result-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.bc-action-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.bc-action-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.bc-action-btn--share {
  background: rgba(99,102,241,0.1);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ── Card grid ───────────────────────────────────────────────────────── */
.bc-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
}
.bc-card--full { grid-column: 1 / -1; }
.bc-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.bc-card-body { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.bc-card-sub { font-size: 13px; color: var(--text-muted); }
.bc-pricing-val strong { color: var(--text); }

.bc-diff-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bc-diff-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.bc-diff-list li::before { content: '→'; position: absolute; left: 0; color: #f43f5e; font-size: 12px; }

.bc-counter-list { display: flex; flex-direction: column; gap: 14px; }
.bc-counter-item { }
.bc-counter-dim { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.bc-counter-response { font-size: 14px; color: var(--text); line-height: 1.55; }

.bc-objection-list { display: flex; flex-direction: column; gap: 20px; }
.bc-objection-item { }
.bc-objection-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.bc-objection-num {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent); white-space: nowrap; margin-top: 2px;
}
.bc-objection-text {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  font-style: italic; line-height: 1.5;
}
.bc-objection-response {
  font-size: 14px; color: var(--text); line-height: 1.65;
  padding-left: calc(12px + 60px);
}

.bc-trap-list { list-style: decimal; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.bc-trap-list li { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ── Email gate ──────────────────────────────────────────────────────── */
.bc-gate-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, var(--bg-card) 100%);
  border-color: var(--border-accent);
  text-align: center;
}
.bc-gate-inner { max-width: 480px; margin: 0 auto; padding: 12px 0; }
.bc-gate-icon { font-size: 28px; margin-bottom: 14px; }
.bc-gate-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.bc-gate-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.bc-gate-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.bc-gate-form input {
  background: #0a0a14;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 16px;
  outline: none;
  width: 260px;
  transition: border-color 0.2s;
}
.bc-gate-form input:focus { border-color: var(--accent); }
.bc-gate-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.bc-gate-btn:hover { opacity: 0.9; }
.bc-gate-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.bc-gate-error { margin-top: 12px; font-size: 13px; color: #fb7185; }

/* ── Result footer ───────────────────────────────────────────────────── */
.bc-result-footer {
  margin-top: 48px;
  padding: 28px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.bc-result-footer p { font-size: 14px; color: var(--text-muted); }
.bc-result-link { color: var(--accent); text-decoration: none; font-weight: 500; }
.bc-result-link:hover { text-decoration: underline; }

/* ── Not found ───────────────────────────────────────────────────────── */
.bc-notfound {
  text-align: center;
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bc-notfound h1 { font-family: var(--font-display); font-size: 32px; color: var(--text); }
.bc-notfound p { font-size: 16px; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.bc-footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.bc-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.bc-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.bc-footer-brand strong { color: var(--text); }
.bc-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.bc-footer-links a {
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-footer-links a:hover { color: var(--text-muted); }

/* ── Dot animation for spinner ───────────────────────────────────────── */
.btn-spinner { font-style: italic; color: rgba(255,255,255,0.7); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .bc-header { padding: 14px 20px; }
  .bc-nav { gap: 14px; }
  .bc-nav a:not(.bc-nav-cta) { display: none; }
  .bc-hero { padding: 56px 20px 40px; }
  .bc-form-card { padding: 20px; }
  .bc-form-row { grid-template-columns: 1fr; }
  .bc-section-row { grid-template-columns: 1fr; }
  .bc-death-cols { grid-template-columns: 1fr; gap: 24px; }
  .bc-pricing-inner { grid-template-columns: 1fr; }
  .bc-card-grid { grid-template-columns: 1fr; }
  .bc-result-header { flex-direction: column; }
  .bc-footer-inner { flex-direction: column; align-items: flex-start; }
  .bc-footer-links { gap: 14px; }
  .bc-death-inner { padding: 32px 20px; }
  .bc-objection-response { padding-left: 0; }
}
