/* ============================================================
   PILEPILOT — shared marketing stylesheet
   Brand: deep purple + gold/orange + ecstatic gradients
   Display: Fraunces / Body: Inter
   ============================================================ */

:root {
  --ink: #14051f;
  --ink-2: #2e1065;
  --primary: #5b21b6;
  --primary-2: #7c3aed;
  --accent: #fbbf24;
  --accent-2: #f97316;
  --pink: #ec4899;
  --emerald: #10b981;
  --cyan: #06b6d4;
  --muted: rgba(255,255,255,0.65);
  --muted-dark: #6b7280;
  --line: rgba(91,33,182,0.10);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --hero-grad: linear-gradient(135deg, #14051f 0%, #2e1065 50%, #5b21b6 100%);
}

/* ============ Campaign refresh ============ */
.campaign-hero {
  min-height: 760px;
  padding: 142px 40px 76px;
  background:
    linear-gradient(120deg, rgba(20,5,31,0.96), rgba(46,16,101,0.9)),
    url("assets/pilepilot-strategy-scan.png");
  background-size: cover;
  background-position: center;
}

.campaign-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(250,250,249,0), #fafaf9);
  pointer-events: none;
}

.campaign-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.campaign-hero-copy {
  max-width: 760px;
}

.campaign-hero-copy h1 {
  max-width: 760px;
}

.campaign-hero-visual {
  position: relative;
  border-radius: 26px;
  padding: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
  transform: rotate(1.5deg);
}

.campaign-hero-visual img {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.plain-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.plain-proof span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 800;
}

.scan-flow-section {
  padding-top: 88px;
}

.scan-flow-grid,
.message-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.scan-step,
.message-card,
.asset-card {
  background: #fff;
  border: 1px solid rgba(91,33,182,0.12);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(20,5,31,0.06);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-weight: 900;
}

.scan-step h3,
.message-card h3,
.asset-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.scan-step p,
.message-card p,
.asset-card p {
  color: var(--muted-dark);
  line-height: 1.55;
}

.campaign-page-hero {
  padding: 150px 40px 90px;
  color: #fff;
  background: linear-gradient(135deg, #14051f 0%, #2e1065 55%, #0f766e 100%);
}

.campaign-page-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.campaign-page-inner h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.campaign-page-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.campaign-page-inner img {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.campaign-band {
  background: linear-gradient(180deg, #14051f 0%, #2e1065 100%);
  color: #fff;
}

.campaign-band .section-head p {
  color: rgba(255,255,255,0.68);
}

.asset-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.asset-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.asset-card p {
  color: rgba(255,255,255,0.76);
}

.asset-card .asset-lead {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.email-sequence,
.offer-stack {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.email-sequence div,
.offer-stack div {
  background: #fff;
  border: 1px solid rgba(91,33,182,0.12);
  border-radius: 8px;
  padding: 18px 20px;
  color: #334155;
  box-shadow: 0 10px 28px rgba(20,5,31,0.05);
}

.offer-stack div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--ink);
}

.offer-stack span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #fef3c7;
  color: #92400e;
}

@media (max-width: 900px) {
  .campaign-hero-grid,
  .campaign-page-inner,
  .scan-flow-grid,
  .message-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .campaign-hero-visual {
    transform: none;
  }

  .campaign-page-hero {
    padding: 120px 20px 70px;
  }
}

@media (max-width: 520px) {
  .campaign-hero {
    padding: 120px 20px 70px;
  }

  .campaign-hero-visual {
    display: none;
  }

  .plain-proof span {
    width: 100%;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fafaf9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ NAV ============ */
nav.pp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(20,5,31,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
nav.pp-nav.light {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(91,33,182,0.08);
  color: var(--ink);
}
.brand {
  display: flex; align-items: center; gap: 11px;
  color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
}
nav.pp-nav.light .brand { color: var(--ink); }
.brand .mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 19px;
  box-shadow: 0 6px 20px rgba(251,191,36,0.32);
  transform: translateY(-1px);
}
nav.pp-nav .links {
  display: flex; gap: 30px; align-items: center;
  color: var(--muted); font-weight: 500; font-size: 14px;
}
nav.pp-nav.light .links { color: var(--muted-dark); }
nav.pp-nav .links a { transition: color .15s ease; }
nav.pp-nav .links a:hover { color: #fff; }
nav.pp-nav.light .links a:hover { color: var(--primary); }
nav.pp-nav .links a.active {
  color: #fff;
  position: relative;
}
nav.pp-nav.light .links a.active { color: var(--primary); }
nav.pp-nav .links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}
nav.pp-nav .cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(251,191,36,0.35);
  transition: transform .15s ease;
}
nav.pp-nav .cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  width: 38px; height: 38px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
nav.pp-nav.light .nav-toggle {
  background: rgba(91,33,182,0.08);
  border-color: rgba(91,33,182,0.16);
  color: var(--ink);
}

/* ============ HERO (dark) ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 40px 110px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(245,158,11,0.42), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(236,72,153,0.34), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(124,58,237,0.22), transparent 56%),
    var(--hero-grad);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
}
.orb-1 {
  width: 480px; height: 480px;
  background: conic-gradient(from 60deg, #fbbf24, #ec4899, #7c3aed, #06b6d4, #fbbf24);
  top: -180px; right: -120px;
  opacity: 0.4;
  animation: spin 30s linear infinite;
}
.orb-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  bottom: -100px; left: -80px;
  opacity: 0.5;
}
.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  top: 40%; left: 60%;
  opacity: 0.25;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 1;
}
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 32px;
}
.kicker .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(251,191,36,0.18);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.93;
  letter-spacing: -0.045em;
  max-width: 1100px;
  margin-bottom: 28px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #fbbf24 0%, #ec4899 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}
.hero p.tagline {
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero p.tagline strong { color: #fff; font-weight: 700; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 14px 36px rgba(251,191,36,0.4);
  transition: transform .15s ease;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 22px;
  border-radius: 14px;
  background: rgba(91,33,182,0.08);
  color: var(--primary);
  border: 1px solid rgba(91,33,182,0.18);
  font-weight: 600;
  font-size: 15px;
}
.btn-ghost:hover { background: rgba(91,33,182,0.14); }

/* ============ HERO STAT STRIP ============ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.stat { color: #fff; }
.stat .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat .lbl {
  font-size: 13px; font-weight: 500;
  color: var(--muted); line-height: 1.4;
}

/* ============ PAGE HERO (compact, for non-home pages) ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(245,158,11,0.36), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(236,72,153,0.28), transparent 38%),
    var(--hero-grad);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
}
.page-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, #fbbf24 0%, #ec4899 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.page-hero p.lede {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ GENERIC SECTION ============ */
.section {
  padding: 110px 40px;
  background: #fafaf9;
}
.section.alt { background: linear-gradient(180deg, #fafaf9 0%, #f5f3ff 100%); }
.section.white { background: #fff; }
.section.deep {
  background: var(--hero-grad);
  color: #fff;
}

.section-head {
  max-width: 1100px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .label {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245,158,11,0.14);
  color: #c2410c;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.section-head.purple .label {
  background: rgba(91,33,182,0.12);
  color: var(--primary);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section.deep .section-head h2 { color: #fff; }
.section-head h2 .grad {
  background: linear-gradient(135deg, #5b21b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.section.deep .section-head h2 .grad {
  background: linear-gradient(135deg, #fbbf24, #ec4899, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p {
  font-size: 19px; line-height: 1.55;
  color: var(--muted-dark);
  max-width: 700px;
  margin: 0 auto;
}
.section.deep .section-head p { color: var(--muted); }

/* ============ AGENTS GRID ============ */
.agents-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.agent-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(91,33,182,0.10);
}
.agent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(251,191,36,0.06));
  pointer-events: none;
}
.agent-card .emoji {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.agent-card .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 4px;
}
.agent-card .role {
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 16px;
}
.agent-card .desc {
  font-size: 15px; line-height: 1.55;
  color: #475569;
  margin-bottom: 18px;
}
.agent-card .replaces {
  font-size: 13px;
  color: var(--muted-dark);
  padding-top: 16px;
  border-top: 1px dashed rgba(91,33,182,0.12);
}
.agent-card .replaces b { color: var(--ink); }
.agent-card.coming {
  background: linear-gradient(135deg, #faf5ff 0%, #fff 100%);
}
.badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.agent-card.coming .badge {
  background: rgba(245,158,11,0.14);
  color: #c2410c;
}
.agent-card.live .badge {
  background: rgba(16,185,129,0.14);
  color: #047857;
  display: flex; align-items: center; gap: 6px;
}
.agent-card.live .badge::before {
  content: ""; width: 6px; height: 6px;
  background: #10b981; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.20);
}

/* ============ COMPARE CARDS (wordplay) ============ */
.compare {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.compare-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(91,33,182,0.10);
  box-shadow: 0 12px 32px rgba(91,33,182,0.05);
}
.compare-card .who {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 14px;
}
.compare-card .what {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.compare-card.theirs .what { color: #6b7280; }
.compare-card.ours {
  background: linear-gradient(135deg, #14051f 0%, #2e1065 60%, #5b21b6 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.compare-card.ours::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.35), transparent 70%);
  right: -60px; top: -60px;
  filter: blur(20px);
}
.compare-card.ours .who { color: var(--accent); }
.compare-card.ours .what { color: #fff; position: relative; z-index: 1; }
.compare-card.ours .what .grad {
  background: linear-gradient(135deg, #fbbf24, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ============ PRICING ============ */
.price-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 26px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(91,33,182,0.08); }
.price-card.featured {
  background: linear-gradient(135deg, #14051f 0%, #2e1065 60%, #5b21b6 100%);
  color: #fff;
  border: none;
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(46,16,101,0.25);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-3px); }
.price-card.featured::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.30), transparent 70%);
  right: -80px; top: -80px;
  filter: blur(20px);
}
.price-card .name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.price-card .for {
  font-size: 13px;
  color: var(--muted-dark);
  margin-bottom: 22px;
  min-height: 36px;
}
.price-card.featured .for { color: rgba(255,255,255,0.7); }
.price-card .amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.price-card .amount .currency { font-size: 26px; vertical-align: top; }
.price-card .amount .per { font-size: 14px; color: var(--muted-dark); font-family: var(--sans); font-weight: 500; }
.price-card.featured .amount .per { color: rgba(255,255,255,0.6); }
.price-card ul {
  list-style: none; padding: 0; margin-top: 24px;
  display: grid; gap: 10px;
  position: relative; z-index: 1;
}
.price-card li {
  font-size: 14px; line-height: 1.4;
  color: #475569;
  padding-left: 22px;
  position: relative;
}
.price-card.featured li { color: rgba(255,255,255,0.85); }
.price-card li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--emerald); font-weight: 800;
}
.price-card.featured li::before { color: var(--accent); }
.price-card .pop-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(251,191,36,0.4);
}
.price-card .pick {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(91,33,182,0.10);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  justify-content: center;
}
.price-card.featured .pick {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(251,191,36,0.36);
}

/* ============ MATH SECTION ============ */
.math-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.math-side { text-align: left; }
.math-side .label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 18px;
}
.math-side .stack { display: grid; gap: 10px; }
.math-side .item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: #fafaf9;
  border-radius: 12px;
  font-size: 15px;
}
.math-side.theirs .item { color: var(--muted-dark); }
.math-side.theirs .price { font-family: var(--serif); font-weight: 500; font-size: 18px; }
.math-side.theirs .total {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: var(--ink); font-weight: 800;
}
.math-side.ours .item { background: linear-gradient(135deg, #faf5ff, #fff); }
.math-side.ours .item .agent-name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.math-side.ours .price { font-family: var(--serif); font-weight: 600; color: var(--primary); font-size: 18px; }
.math-side.ours .total {
  background: linear-gradient(135deg, #14051f, #5b21b6);
  color: #fff;
  border: none;
}
.math-side.ours .total .price { color: var(--accent); font-size: 28px; }
.math-arrow {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--accent);
  line-height: 1;
}

/* ============ FEATURE DETAIL BLOCKS ============ */
.feature-detail {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-detail.reverse { direction: rtl; }
.feature-detail.reverse > * { direction: ltr; }
.feature-detail .copy .label {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(91,33,182,0.10);
  color: var(--primary);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 18px;
}
.feature-detail .copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.feature-detail .copy h3 em {
  font-style: italic;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}
.feature-detail .copy p {
  font-size: 17px; line-height: 1.6;
  color: #475569;
  margin-bottom: 18px;
}
.feature-detail .copy ul {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
  margin-top: 18px;
}
.feature-detail .copy ul li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #334155;
}
.feature-detail .copy ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-size: 11px; font-weight: 900;
  display: grid; place-items: center;
}

.mock-screen {
  background: linear-gradient(135deg, #14051f 0%, #2e1065 60%, #5b21b6 100%);
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(46,16,101,0.25);
  min-height: 360px;
}
.mock-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(251,191,36,0.25), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(236,72,153,0.20), transparent 40%);
  pointer-events: none;
}
.mock-screen .chrome {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; position: relative;
}
.mock-screen .chrome span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.mock-screen .chrome span:nth-child(1) { background: #ef4444; }
.mock-screen .chrome span:nth-child(2) { background: #fbbf24; }
.mock-screen .chrome span:nth-child(3) { background: #10b981; }
.mock-screen .body {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 20px;
  position: relative;
}
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  font-size: 13px;
}
.mock-row:last-child { border-bottom: none; }
.mock-row .label-line { color: rgba(255,255,255,0.75); }
.mock-row .val { font-family: var(--serif); font-weight: 600; color: #fff; }
.mock-row .tag {
  font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(251,191,36,0.18);
  color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.mock-row .tag.green {
  background: rgba(16,185,129,0.20);
  color: #6ee7b7;
}
.mock-screen .title-line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.mock-screen .num-big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ PROOF / P&L BLOCK ============ */
.proof-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(46,16,101,0.10);
  border: 1px solid var(--line);
}
.proof-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px dashed var(--line);
}
.proof-head h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.proof-head .stamp {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(91,33,182,0.08);
  padding: 6px 12px; border-radius: 999px;
}
.pnl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.pnl-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #f3f4f6;
}
.pnl-table td:last-child {
  text-align: right;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}
.pnl-table tr.section td {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding-top: 24px;
}
.pnl-table tr.section td:last-child { color: var(--muted-dark); }
.pnl-table tr.total td {
  border-top: 2px solid var(--ink);
  border-bottom: none;
  padding-top: 16px;
  font-weight: 700;
  color: var(--ink);
}
.pnl-table tr.total td:last-child {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--primary);
}
.pnl-table tr.net td {
  background: linear-gradient(135deg, #faf5ff, #fef3c7);
  font-weight: 800;
}
.pnl-table tr.net td:last-child {
  background: linear-gradient(135deg, #faf5ff, #fef3c7);
  font-size: 26px;
  color: var(--accent-2);
}

/* ============ EMAIL CAPTURE ============ */
.capture {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.capture form {
  display: flex; gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.capture input[type="email"] {
  flex: 1 1 280px;
  padding: 17px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 16px;
  font-family: var(--sans);
  backdrop-filter: blur(8px);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.capture input[type="email"]::placeholder { color: rgba(255,255,255,0.50); }
.capture input[type="email"]:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.16);
}
.capture .fine {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.capture.light input[type="email"] {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.capture.light input[type="email"]::placeholder { color: var(--muted-dark); }
.capture.light input[type="email"]:focus { border-color: var(--primary); }
.capture.light .fine { color: var(--muted-dark); }

.capture .thanks {
  display: none;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.06));
  border: 1px solid rgba(16,185,129,0.4);
  color: #6ee7b7;
  font-weight: 600;
}
.capture .thanks.show { display: block; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: 48px 40px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.trust-inner .lbl {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-dark);
  line-height: 1.4;
}
.trust-inner .items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust-item .badge-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(91,33,182,0.10), rgba(236,72,153,0.10));
  display: grid; place-items: center;
  font-size: 18px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item:hover { border-color: rgba(91,33,182,0.20); box-shadow: 0 14px 32px rgba(91,33,182,0.05); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  margin-top: 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}
.faq-item .answer p + p { margin-top: 12px; }

/* ============ FOUNDER (story) ============ */
.story {
  max-width: 760px;
  margin: 0 auto;
}
.story .avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  margin: 0 auto 28px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 44px;
  box-shadow: 0 16px 40px rgba(251,191,36,0.32);
}
.story h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 36px;
  color: var(--ink);
}
.story p {
  font-size: 18px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 22px;
}
.story p.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 32px;
}
.story blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
}
.story cite {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
  margin-top: 32px;
}
.story cite b { color: var(--ink); }

/* ============ FOUNDER NOTE (compact, for home) ============ */
.founder-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.founder-quote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
}
.founder-quote cite b { color: var(--ink); }

/* ============ FOOTER ============ */
footer.pp-footer {
  padding: 70px 40px 40px;
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.6;
}
footer.pp-footer .footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer.pp-footer .col h5 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
footer.pp-footer .col a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color .15s ease;
}
footer.pp-footer .col a:hover { color: var(--accent); }
footer.pp-footer .brand-block .brand { color: #fff; margin-bottom: 14px; }
footer.pp-footer .brand-block p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  line-height: 1.6;
}
footer.pp-footer .meta {
  max-width: 1240px;
  margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
footer.pp-footer .legal {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  max-width: 700px;
  line-height: 1.6;
}
footer.pp-footer .copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============ CPA-PAGE BITS ============ */
.feature-bullets {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bullet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.bullet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(91,33,182,0.08);
}
.bullet-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91,33,182,0.10), rgba(236,72,153,0.10));
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.bullet-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.bullet-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
}

/* Highlight numbers row */
.numbers-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.numbers-row .num-card {
  padding: 32px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.numbers-row .num-card .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.numbers-row .num-card .l {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.4;
}

/* ============ FINAL CTA ============ */
.final {
  padding: 100px 40px;
  background:
    radial-gradient(circle at 80% 30%, rgba(245,158,11,0.4), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(236,72,153,0.32), transparent 36%),
    var(--hero-grad);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}
.final-inner { position: relative; max-width: 880px; margin: 0 auto; }
.final h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 7vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.final h2 .grad {
  background: linear-gradient(135deg, #fbbf24 0%, #ec4899 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.final p {
  color: var(--muted);
  font-size: 19px; line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.pp-nav { padding: 14px 18px; }
  nav.pp-nav .links { display: none; }
  nav.pp-nav.open .links {
    display: flex; flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(20,5,31,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 22px 22px;
    gap: 14px;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  nav.pp-nav.light.open .links {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--line);
  }
  nav.pp-nav.open .links a { padding: 8px 0; font-size: 16px; }
  .nav-toggle { display: flex; }
  nav.pp-nav .cta { display: none; }
  nav.pp-nav.open .cta { display: inline-flex; margin-top: 6px; justify-content: center; }

  .hero { padding: 130px 20px 80px; }
  .page-hero { padding: 130px 20px 60px; }
  .section, .final { padding: 70px 20px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .compare { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr; gap: 24px; }
  .math-arrow { transform: rotate(90deg); justify-self: center; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .feature-detail { grid-template-columns: 1fr; gap: 30px; }
  .feature-detail.reverse { direction: ltr; }
  .proof-card { padding: 28px 20px; }
  footer.pp-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer.pp-footer .brand-block { grid-column: 1 / -1; }
  .trust-inner { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 520px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .pnl-table { font-size: 13px; }
  .pnl-table td { padding: 10px 6px; }
  footer.pp-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STRATEGY LIBRARY PAGES
   ============================================================ */
.strategy-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}

.strategy-breadcrumb {
  font-size: 13px;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-top: 90px;
}
.strategy-breadcrumb a { color: var(--primary); transition: color .15s ease; }
.strategy-breadcrumb a:hover { color: var(--accent-2); }
.strategy-breadcrumb .sep { color: rgba(91,33,182,0.35); margin: 0 8px; }

.strategy-hero {
  position: relative;
  margin: 0 -28px 56px;
  padding: 56px 40px 56px;
  border-radius: 32px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(245,158,11,0.38), transparent 32%),
    radial-gradient(circle at 14% 84%, rgba(236,72,153,0.32), transparent 38%),
    var(--hero-grad);
  box-shadow: 0 30px 80px rgba(46,16,101,0.20);
}
.strategy-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
  pointer-events: none;
}
.strategy-hero > * { position: relative; z-index: 1; }
.strategy-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(251,191,36,0.18);
  border: 1px solid rgba(251,191,36,0.32);
  color: var(--accent);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 22px;
}
.strategy-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.strategy-hero h1 .grad {
  background: linear-gradient(135deg, #fbbf24 0%, #ec4899 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.strategy-hook {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 720px;
}
.strategy-stats {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.strategy-stats .stat {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.strategy-stats .stat b {
  color: var(--accent);
  font-weight: 800;
  margin-right: 4px;
  letter-spacing: 0.02em;
}

.strategy-page section {
  margin-bottom: 56px;
}
.strategy-page section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 22px;
}
.strategy-page section h2 .grad {
  background: linear-gradient(135deg, #5b21b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.strategy-page section h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 24px 0 8px;
  letter-spacing: -0.01em;
}
.strategy-page p {
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}
.strategy-page strong { color: var(--ink); font-weight: 700; }

.strategy-pitch p:first-of-type {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  border-left: 4px solid var(--accent);
  padding: 6px 0 6px 22px;
  margin-bottom: 24px;
}

.strategy-example {
  background: linear-gradient(135deg, #faf5ff 0%, #fef3c7 100%);
  border: 1px solid rgba(91,33,182,0.10);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.strategy-example::before {
  content: "$";
  position: absolute;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 240px;
  line-height: 1;
  color: rgba(91,33,182,0.06);
  top: -40px; right: 20px;
  pointer-events: none;
}
.strategy-example > * { position: relative; }
.strategy-example h2 {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.strategy-example .who {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.strategy-example .scenario {
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 22px;
}
.strategy-example .scenario b { color: var(--ink); }
.strategy-example .result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed rgba(91,33,182,0.20);
}
.strategy-example .result-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(91,33,182,0.10);
}
.strategy-example .result-card .lbl {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 6px;
}
.strategy-example .result-card .val {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.strategy-example .result-card.win .val {
  background: linear-gradient(135deg, #5b21b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strategy-example .result-card.gold .val {
  background: linear-gradient(135deg, #c2410c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strategy-checklist ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  display: grid;
  gap: 12px;
}
.strategy-checklist ol li {
  counter-increment: step;
  padding: 18px 22px 18px 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  font-size: 16px;
  line-height: 1.55;
  color: #334155;
  transition: transform .15s ease, box-shadow .15s ease;
}
.strategy-checklist ol li:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 24px rgba(91,33,182,0.06);
}
.strategy-checklist ol li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 16px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(91,33,182,0.32);
}
.strategy-checklist ol li b { color: var(--ink); }
.strategy-checklist ol li code {
  background: rgba(91,33,182,0.08);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 13px;
  font-weight: 600;
}

.strategy-citations {
  background: var(--hero-grad);
  border-radius: 24px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.strategy-citations::before {
  content: "§";
  position: absolute;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 280px;
  line-height: 1;
  color: rgba(251,191,36,0.10);
  top: -60px; right: 20px;
  pointer-events: none;
}
.strategy-citations > * { position: relative; z-index: 1; }
.strategy-citations h2 { color: #fff; }
.strategy-citations h2 .grad {
  background: linear-gradient(135deg, #fbbf24, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strategy-citations ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.strategy-citations ul li {
  padding: 16px 20px 16px 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}
.strategy-citations ul li .code {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: -0.01em;
  background: rgba(251,191,36,0.12);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(251,191,36,0.20);
  white-space: nowrap;
}
.strategy-citations ul li b { color: #fff; font-weight: 700; }

.strategy-risks, .strategy-when-not {
  background: #fff;
  border-radius: 24px;
  padding: 32px 30px;
  border: 1px solid var(--line);
}
.strategy-risks h2::before {
  content: "⚠";
  margin-right: 10px;
  color: var(--accent-2);
}
.strategy-when-not h2::before {
  content: "⛔";
  margin-right: 10px;
}
.strategy-risks ul, .strategy-when-not ul {
  list-style: none; padding: 0;
  display: grid; gap: 12px;
}
.strategy-risks ul li, .strategy-when-not ul li {
  padding: 14px 18px 14px 44px;
  background: linear-gradient(135deg, #fafaf9, #fff);
  border-radius: 12px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  border-left: 3px solid var(--accent-2);
}
.strategy-when-not ul li { border-left-color: #ef4444; }
.strategy-risks ul li::before {
  content: "▸";
  position: absolute;
  left: 18px; top: 14px;
  color: var(--accent-2);
  font-weight: 800;
}
.strategy-when-not ul li::before {
  content: "✗";
  position: absolute;
  left: 18px; top: 14px;
  color: #ef4444;
  font-weight: 800;
}
.strategy-risks ul li b, .strategy-when-not ul li b { color: var(--ink); }

.strategy-cta {
  margin-top: 64px;
  padding: 48px 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.45), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(236,72,153,0.32), transparent 42%),
    var(--hero-grad);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.strategy-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}
.strategy-cta > * { position: relative; z-index: 1; }
.strategy-cta h2 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.strategy-cta h2 .grad {
  background: linear-gradient(135deg, #fbbf24, #ec4899, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.strategy-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 26px;
}
.strategy-cta .btn-primary { font-size: 17px; }
.strategy-cta .fine {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.strategy-page .disclaimer {
  margin-top: 48px;
  padding: 22px 26px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.20);
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-dark);
}
.strategy-page .disclaimer b { color: var(--ink); }

@media (max-width: 720px) {
  .strategy-page { padding: 30px 16px 60px; }
  .strategy-hero { margin: 0 -16px 40px; padding: 40px 24px 40px; border-radius: 24px; }
  .strategy-example { padding: 28px 22px; }
  .strategy-example .result { grid-template-columns: 1fr; }
  .strategy-citations { padding: 28px 22px; }
  .strategy-citations ul li { padding: 60px 18px 16px 18px; }
  .strategy-citations ul li .code { position: static; transform: none; display: inline-block; margin-bottom: 8px; }
  .strategy-checklist ol li { padding: 56px 18px 18px 18px; }
  .strategy-checklist ol li::before { top: 14px; left: 14px; }
  .strategy-cta { padding: 36px 22px; }
}

/* ============================================================
   STRATEGY HUB + QUIZ + CALCULATOR + LEAD MAGNET
   Appended by hub-page agent. Hub-specific selectors only —
   does not modify any classes defined above this line.
   ============================================================ */

/* strategy highlight on main index */
.strategy-highlight {
  padding: 110px 40px;
  background: linear-gradient(180deg, #fafaf9 0%, #faf5ff 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.strategy-highlight::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(251,191,36,0.18), transparent 70%);
  top: -200px; right: -150px;
  filter: blur(20px);
  pointer-events: none;
}
.strategy-highlight::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(236,72,153,0.14), transparent 70%);
  bottom: -160px; left: -100px;
  filter: blur(20px);
  pointer-events: none;
}
.strategy-highlight .container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.strategy-highlight .eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(251,191,36,0.32);
}
.strategy-highlight h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 18px;
}
.strategy-highlight h2 .grad-amber {
  background: linear-gradient(135deg, #fbbf24, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.strategy-highlight .lede {
  font-size: 18px;
  color: var(--muted-dark);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.strategy-highlight .lede strong { color: var(--ink); }
.strategy-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.strategy-preview-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 22px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.strategy-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 65%, rgba(251,191,36,0.10));
  pointer-events: none;
}
.strategy-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(91,33,182,0.14);
  border-color: rgba(91,33,182,0.20);
}
.strategy-preview-card .spc-emoji {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 14px;
}
.strategy-preview-card .spc-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.strategy-preview-card .spc-savings {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
}
.strategy-preview-card .spc-hook {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 14px;
}
.strategy-preview-card .spc-irc {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(91,33,182,0.10);
  color: var(--primary);
}
.strategy-highlight-cta {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.btn-large {
  padding: 19px 32px;
  font-size: 17px;
  border-radius: 16px;
}
.btn-large-sec {
  padding: 18px 28px;
  font-size: 16px;
  border-radius: 16px;
  background: rgba(91,33,182,0.10);
  color: var(--primary);
  border: 1px solid rgba(91,33,182,0.18);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-large-sec:hover { background: rgba(91,33,182,0.18); }

/* hub category grid */
.strategy-cat-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.strategy-cat-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.strategy-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--catglow, rgba(251,191,36,0.10)));
  pointer-events: none;
}
.strategy-cat-card.cat-realestate { --catglow: rgba(16,185,129,0.10); }
.strategy-cat-card.cat-comp { --catglow: rgba(124,58,237,0.10); }
.strategy-cat-card.cat-biz { --catglow: rgba(245,158,11,0.10); }
.strategy-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(91,33,182,0.14);
}
.strategy-cat-card .cat-emoji {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 18px;
}
.strategy-cat-card .cat-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.strategy-cat-card .cat-count {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.strategy-cat-card .cat-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
}
.strategy-cat-card .cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  gap: 8px;
}
.strategy-cat-card .cat-list li {
  font-size: 14px;
  color: #334155;
  padding-left: 22px;
  position: relative;
}
.strategy-cat-card .cat-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 800;
}
.strategy-cat-card .cat-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(91,33,182,0.18);
  width: 100%;
}

/* hub strategy table */
.strategy-section-title {
  max-width: 1240px;
  margin: 60px auto 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.025em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.strategy-section-title .emoji {
  font-size: 1.1em;
  line-height: 1;
}
.strategy-table-wrap {
  max-width: 1240px;
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow-x: auto;
  box-shadow: 0 14px 32px rgba(91,33,182,0.06);
}
.strategy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 900px;
}
.strategy-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding: 16px 14px;
  background: #faf5ff;
  border-bottom: 1px solid var(--line);
}
.strategy-table tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: top;
  color: #334155;
  line-height: 1.45;
}
.strategy-table tbody tr:hover { background: #fafaf9; }
.strategy-table a {
  color: var(--primary);
  text-decoration: none;
  transition: color .15s ease;
}
.strategy-table a:hover { color: var(--pink); text-decoration: underline; }
.strategy-table b { color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 15px; }
.irc-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(91,33,182,0.10);
  color: var(--primary);
  white-space: nowrap;
}
.risk {
  display: inline-block;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.risk.low  { background: rgba(16,185,129,0.14); color: #047857; }
.risk.med  { background: rgba(245,158,11,0.14); color: #c2410c; }
.risk.high { background: rgba(239,68,68,0.14); color: #b91c1c; }

/* quiz cta on hub */
.quiz-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #14051f 0%, #2e1065 60%, #5b21b6 100%);
  border-radius: 28px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(46,16,101,0.25);
}
.quiz-cta::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(251,191,36,0.30), transparent 70%);
  right: -100px; top: -100px;
  filter: blur(20px);
  pointer-events: none;
}
.quiz-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quiz-cta-copy .label {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(251,191,36,0.18);
  color: var(--accent);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.quiz-cta-copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.quiz-cta-copy h3 em {
  background: linear-gradient(135deg, #fbbf24, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.quiz-cta-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 480px;
}
.quiz-mock {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(10px);
}
.quiz-mock-q {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.quiz-mock-opts { display: grid; gap: 8px; }
.quiz-mock-opt {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
  font-weight: 500;
}
.quiz-mock-opt.sel {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(251,191,36,0.32);
}

/* calc cta on hub */
.calc-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(91,33,182,0.06);
}
.calc-cta .label {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(91,33,182,0.10);
  color: var(--primary);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.calc-cta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--ink);
}
.calc-cta h3 em {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.calc-cta p {
  color: var(--muted-dark);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* quiz page */
.quiz-container {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 38px;
  box-shadow: 0 24px 60px rgba(91,33,182,0.08);
}
.quiz-progress { margin-bottom: 32px; }
.quiz-progress-bar {
  height: 8px;
  background: rgba(91,33,182,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 999px;
  transition: width .3s ease;
}
.quiz-progress-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quiz-question {
  display: none;
  animation: quizFadeIn .3s ease;
}
.quiz-question.active { display: block; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-q-number {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.10em;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.quiz-q-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 28px;
}
.quiz-q-title em {
  background: linear-gradient(135deg, #5b21b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.quiz-options {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf9;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
  font-size: 16px;
  color: var(--ink);
}
.quiz-option:hover {
  border-color: rgba(91,33,182,0.30);
  background: #faf5ff;
}
.quiz-option input { accent-color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.quiz-option.selected {
  background: linear-gradient(135deg, rgba(251,191,36,0.18), rgba(249,115,22,0.10));
  border-color: var(--accent-2);
  box-shadow: 0 8px 22px rgba(251,191,36,0.18);
  transform: translateY(-1px);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.quiz-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.quiz-results { animation: quizFadeIn .4s ease; }
.quiz-results-head {
  text-align: center;
  margin-bottom: 36px;
}
.quiz-results-head .label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16,185,129,0.16);
  color: #047857;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 18px;
}
.quiz-results-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 42px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--ink);
}
.quiz-results-head h2 em {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.quiz-results-head p {
  color: var(--muted-dark);
  font-size: 16px;
}
.quiz-result-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 22px;
  background: #fafaf9;
  border-radius: 18px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.quiz-result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(91,33,182,0.08);
}
.result-rank {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(135deg, #fbbf24, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.result-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 8px;
}
.result-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.result-name a { color: var(--ink); }
.result-name a:hover { color: var(--primary); }
.result-why {
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 12px;
}
.result-savings {
  font-size: 14px;
  margin-bottom: 14px;
}
.result-savings-label {
  font-weight: 700;
  color: var(--muted-dark);
}
.result-savings-val {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
}
.quiz-results-cta {
  margin-top: 40px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(135deg, #14051f 0%, #5b21b6 100%);
  border-radius: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quiz-results-cta::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.32), transparent 70%);
  right: -60px; top: -60px;
  filter: blur(20px);
}
.quiz-results-cta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.quiz-results-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.quiz-results-cta .btn-primary,
.quiz-results-cta .btn-ghost { position: relative; z-index: 1; }
.quiz-results-cta .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
}
.quiz-results-cta .btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* calculator page */
.calc-shell {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
.calc-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  display: grid;
  gap: 22px;
  box-shadow: 0 14px 32px rgba(91,33,182,0.06);
}
.calc-field { display: grid; gap: 8px; }
.calc-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.calc-field input[type="number"],
.calc-field select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fafaf9;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.calc-field input[type="number"]:focus,
.calc-field select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91,33,182,0.10);
}
.calc-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}
.calc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fafaf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.calc-check:hover { border-color: rgba(91,33,182,0.30); background: #faf5ff; }
.calc-check input { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }

.calc-result {
  background: linear-gradient(135deg, #14051f 0%, #2e1065 60%, #5b21b6 100%);
  border-radius: 24px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: all .35s ease;
}
.calc-result.show {
  opacity: 1;
  max-height: 2000px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.calc-result::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,0.30), transparent 70%);
  right: -100px; top: -100px;
  filter: blur(20px);
  pointer-events: none;
}
.calc-result .label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(251,191,36,0.20);
  color: var(--accent);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.calc-result-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.calc-result-band {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.calc-result-breakdown {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px;
  position: relative; z-index: 1;
}
.calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.calc-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.calc-table th.r,
.calc-table td.r { text-align: right; }
.calc-table td {
  padding: 12px 6px;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}
.calc-table td.r {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
}
.calc-table tr.total td {
  border-top: 2px solid var(--accent);
  border-bottom: none;
  padding-top: 14px;
  color: #fff;
  font-size: 16px;
}
.calc-table tr.total td.r {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
}
.calc-note {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 2px;
}
.calc-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-top: 16px;
  position: relative; z-index: 1;
}

/* lead magnet page */
.lm-bullets {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.lm-bullets li {
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.lm-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: var(--ink);
  font-size: 12px; font-weight: 900;
  display: grid; place-items: center;
}
.lm-formcard {
  position: relative;
}
.lm-formcard-inner {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.40);
  position: relative;
  overflow: hidden;
}
.lm-pdfmock {
  margin: -32px -32px 24px;
  height: 220px;
  background: linear-gradient(135deg, #14051f 0%, #5b21b6 50%, #ec4899 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.lm-pdfmock::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.lm-pdfmock-cover {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.lm-pdfmock-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
}
.lm-pdfmock-brand .mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
}
.lm-pdfmock-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.lm-pdfmock-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 18px;
}
.lm-pdfmock-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(251,191,36,0.18);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lm-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-dark);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lm-form input[type="email"] {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fafaf9;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 14px;
  outline: none;
}
.lm-form input[type="email"]:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91,33,182,0.10);
}
.lm-fine {
  font-size: 12px;
  color: var(--muted-dark);
  margin-top: 14px;
  line-height: 1.5;
}
.lm-success {
  text-align: center;
}
.lm-success-emoji {
  font-size: 56px;
  margin-bottom: 12px;
}
.lm-success h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--ink);
}
.lm-success p {
  font-size: 15px;
  color: var(--muted-dark);
  margin-bottom: 18px;
  line-height: 1.55;
}
.lm-success #lmEmail {
  font-weight: 700;
  color: var(--primary);
}

/* hub responsive */
@media (max-width: 900px) {
  .strategy-highlight { padding: 70px 20px; }
  .strategy-cat-grid { grid-template-columns: 1fr; }
  .quiz-cta { padding: 32px 24px; }
  .quiz-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .calc-cta { padding: 32px 24px; }
  .quiz-container { padding: 28px 22px; border-radius: 22px; }
  .calc-form { padding: 26px 22px; }
  .calc-result { border-radius: 22px; }
  .lm-formcard-inner { padding: 24px; }
  .lm-pdfmock { margin: -24px -24px 20px; height: 180px; }
  .strategy-section-title { font-size: 24px; }
  .quiz-result-card { grid-template-columns: 1fr; gap: 12px; }
  .result-rank { font-size: 28px; }
}
@media (max-width: 520px) {
  .strategy-table { font-size: 12px; min-width: 720px; }
  .strategy-table thead th, .strategy-table tbody td { padding: 12px 10px; }
  .calc-result-num { font-size: 44px; }
  .quiz-options { gap: 8px; }
  .quiz-option { font-size: 14px; padding: 14px 16px; }
}

/* Campaign overrides must sit last so they beat the older homepage hero styles. */
.campaign-hero {
  min-height: 760px;
  padding: 142px 40px 76px;
  background:
    linear-gradient(120deg, rgba(20,5,31,0.96), rgba(46,16,101,0.9)),
    url("assets/pilepilot-strategy-scan.png");
  background-size: cover;
  background-position: center;
}

.campaign-hero .hero-inner {
  max-width: 1240px;
}

.campaign-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.campaign-hero-visual {
  border-radius: 26px;
  padding: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
  transform: rotate(1.5deg);
}

.campaign-hero-visual img {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.plain-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.plain-proof span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .campaign-hero-grid,
  .campaign-page-inner,
  .scan-flow-grid,
  .message-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .campaign-hero-visual {
    transform: none;
  }
}

@media (max-width: 520px) {
  .campaign-hero {
    padding: 120px 20px 70px;
  }

  .campaign-hero-visual {
    display: none;
  }
}

.hero .plain-proof {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.hero .plain-proof span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .campaign-hero-grid {
    display: block;
  }

  .campaign-hero-visual {
    display: none;
  }
}

/* ============================================================
   INDUSTRY LANDING PAGES (for-etsy-sellers, for-contractors,
   for-doctors, for-real-estate-investors, for-restaurant-owners,
   for-freelancers)
   ============================================================ */
.industry-hero {
  position: relative;
  padding: 140px 22px 90px;
  text-align: center;
  background:
    radial-gradient(1100px 600px at 18% 20%, rgba(251,191,36,0.18), transparent 60%),
    radial-gradient(900px 500px at 82% 80%, rgba(124,58,237,0.22), transparent 60%),
    linear-gradient(180deg, #14051f 0%, #1f0930 60%, #14051f 100%);
  color: #fff;
  overflow: hidden;
}
.industry-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(251,191,36,0.14);
  border: 1px solid rgba(251,191,36,0.32);
  color: #fbbf24;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.industry-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 0 auto 24px;
  color: #fff;
}
.industry-hero h1 .grad {
  background: linear-gradient(90deg, #fbbf24, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.industry-hero p.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  margin: 0 auto 36px;
}
.industry-hero .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Savings band */
.industry-savings-band {
  padding: 70px 22px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.industry-savings-band .eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: #78350f;
  margin-bottom: 18px;
}
.industry-savings-band h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  color: #14051f;
  letter-spacing: -0.01em;
  max-width: 880px;
  margin: 0 auto 24px;
}
.industry-savings-band .big-number {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 108px);
  line-height: 1;
  color: #14051f;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #14051f, #5b21b6 60%, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
}
.industry-savings-band .sub {
  font-size: 17px;
  color: #4b2407;
  max-width: 620px;
  margin: 8px auto 0;
}

/* Strategy cards */
.industry-strategies {
  padding: 90px 22px;
  background: #fff;
}
.industry-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.industry-strategy-card {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.industry-strategy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,191,36,0.07), rgba(124,58,237,0.05));
  opacity: 0;
  transition: opacity 0.18s ease;
}
.industry-strategy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(20,5,31,0.30);
  border-color: rgba(124,58,237,0.32);
}
.industry-strategy-card:hover::before { opacity: 1; }
.industry-strategy-card > * { position: relative; z-index: 1; }
.industry-strategy-card .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  color: rgba(124,58,237,0.30);
  line-height: 1;
  margin-bottom: 6px;
}
.industry-strategy-card .isc-emoji {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1;
}
.industry-strategy-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.industry-strategy-card .isc-savings {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #14051f;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.industry-strategy-card .isc-pitch {
  color: #475569;
  line-height: 1.55;
  font-size: 15px;
  margin: 0 0 16px;
}
.industry-strategy-card .isc-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.industry-strategy-card .isc-irc {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

/* Persona case study */
.industry-persona {
  padding: 90px 22px;
  background: linear-gradient(180deg, #faf5ff, #fef3c7);
}
.industry-persona-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.industry-persona-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 36px -22px rgba(20,5,31,0.22);
  position: sticky;
  top: 96px;
}
.industry-persona-sidebar .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: #14051f;
  font-size: 30px;
  margin-bottom: 14px;
}
.industry-persona-sidebar h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--ink);
}
.industry-persona-sidebar .role {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 18px;
}
.industry-persona-sidebar dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
  margin: 0 0 18px;
  font-size: 14px;
}
.industry-persona-sidebar dt { color: #6b7280; }
.industry-persona-sidebar dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.industry-persona-sidebar .saved {
  margin-top: 14px;
  padding: 16px;
  background: linear-gradient(135deg, #14051f, #5b21b6);
  color: #fff;
  border-radius: 14px;
  text-align: center;
}
.industry-persona-sidebar .saved .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fbbf24;
  font-weight: 800;
}
.industry-persona-sidebar .saved .amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.02em;
}
.industry-persona-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.industry-persona-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 18px;
}
.industry-persona-body p .grad {
  background: linear-gradient(135deg, #5b21b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Callout */
.industry-callout {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 4px solid #fbbf24;
  background: rgba(251,191,36,0.10);
  border-radius: 0 14px 14px 0;
  font-size: 16px;
  color: #14051f;
  line-height: 1.55;
}

/* FAQ */
.industry-faq {
  padding: 90px 22px;
  background: #fff;
}
.industry-faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.industry-faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.industry-faq-item:hover {
  border-color: rgba(124,58,237,0.32);
  box-shadow: 0 14px 30px -22px rgba(20,5,31,0.20);
}
.industry-faq-item h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.industry-faq-item p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* CTA */
.industry-cta {
  padding: 90px 22px;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(251,191,36,0.16), transparent 60%),
    radial-gradient(800px 500px at 18% 80%, rgba(236,72,153,0.18), transparent 60%),
    linear-gradient(135deg, #14051f, #2a0d4d);
  color: #fff;
  text-align: center;
}
.industry-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.industry-cta h2 .grad {
  background: linear-gradient(90deg, #fbbf24, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.industry-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 28px;
}

/* By-industry block on index */
.by-industry {
  padding: 90px 22px;
  background: linear-gradient(180deg, #fff 0%, #faf5ff 100%);
}
.by-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.by-industry-card {
  display: block;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.by-industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,0.32);
  box-shadow: 0 18px 36px -22px rgba(20,5,31,0.22);
}
.by-industry-card .emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.by-industry-card .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 4px;
  color: var(--ink);
}
.by-industry-card .desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0 0 10px;
}
.by-industry-card .arrow {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

@media (max-width: 760px) {
  .industry-persona-grid { grid-template-columns: 1fr; }
  .industry-persona-sidebar { position: static; }
  .industry-strategy-card .isc-irc { position: static; display: inline-block; margin-bottom: 8px; }
}

/* ============================================================
   FREE TAX SAVINGS CALCULATOR (savings-calculator.html)
   Lead-magnet replacement for the static PDF
   ============================================================ */
.sc-hero {
  padding: 130px 24px 80px;
}
.sc-hero h1 {
  max-width: 1080px;
  margin: 0 auto 22px;
}
.sc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(251,191,36,0.16);
  border: 1px solid rgba(251,191,36,0.34);
  color: #fbbf24;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.sc-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 12px rgba(251,191,36,0.7);
  animation: sc-pulse 1.8s ease-in-out infinite;
}
@keyframes sc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.4); }
}
.sc-section { padding-top: 70px; }

.sc-shell { max-width: 920px; }
.sc-form {
  position: relative;
  padding: 40px 36px;
  border-radius: 28px;
  border: 1px solid rgba(91,33,182,0.15);
  background:
    radial-gradient(800px 280px at 80% -20%, rgba(251,191,36,0.07), transparent 50%),
    radial-gradient(800px 280px at 0% 110%, rgba(236,72,153,0.06), transparent 50%),
    #fff;
  box-shadow: 0 28px 70px -28px rgba(20,5,31,0.22);
}
.sc-form .calc-field label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.sc-label-hint {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-dark);
  letter-spacing: 0;
}

/* Radio rows */
.sc-radio-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.sc-radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf9;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.15s ease;
  font-size: 15px;
}
.sc-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sc-radio:hover {
  border-color: rgba(91,33,182,0.34);
  background: #faf5ff;
}
.sc-radio:has(input:checked) {
  border-color: var(--primary);
  background: linear-gradient(135deg, #ede9fe, #fef3c7);
  box-shadow: 0 0 0 3px rgba(91,33,182,0.10);
}
.sc-radio:has(input:checked) span { color: var(--ink); }

/* Slider */
.sc-slider-row {
  display: grid;
  gap: 14px;
}
.sc-slider-readout {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #5b21b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  transition: color 0.18s ease;
}
#sc-income {
  --sc-fill: 24%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24 0%, #ec4899 var(--sc-fill), rgba(91,33,182,0.10) var(--sc-fill), rgba(91,33,182,0.10) 100%);
  outline: none;
  cursor: pointer;
}
#sc-income::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #fbbf24);
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(91,33,182,0.32);
  transition: transform 0.15s ease;
}
#sc-income::-webkit-slider-thumb:hover { transform: scale(1.12); }
#sc-income::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #fbbf24);
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(91,33,182,0.32);
}
.sc-slider-track-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
}
#sc-income-num {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fafaf9;
  outline: none;
  text-align: center;
  max-width: 280px;
  justify-self: center;
}
#sc-income-num:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91,33,182,0.10);
}

/* Bonus questions */
.sc-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.sc-bonus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fafaf9;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.sc-yn {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-yn input { display: none; }
.sc-yn label {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
  cursor: pointer;
  transition: all 0.15s ease;
}
.sc-yn label:hover { color: var(--primary); }
.sc-yn input:checked + label {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
}

/* The big CTA button */
.sc-cta-btn {
  width: 100%;
  padding: 22px 28px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ec4899 100%);
  color: #14051f;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 40px -16px rgba(236,72,153,0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: grid;
  gap: 4px;
}
.sc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px -16px rgba(236,72,153,0.6);
}
.sc-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: sc-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sc-shimmer {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.sc-cta-main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.sc-cta-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20,5,31,0.65);
  position: relative; z-index: 1;
}

/* Result panel */
.sc-result {
  padding-left: 36px;
  padding-right: 36px;
}
.sc-result-num {
  text-align: center;
  margin-bottom: 4px;
}
.sc-result .calc-result-band {
  text-align: center;
  margin-bottom: 28px;
}

/* Top-3 reveal */
.sc-top3-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 22px 14px;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.sc-top3-header {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sc-top3 {
  display: grid;
  gap: 8px;
}
.sc-top3-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  opacity: 0;
  transform: translateY(8px);
  animation: sc-row-in 0.5s ease forwards;
}
.sc-top3-row:last-child { border-bottom: none; }
@keyframes sc-row-in {
  to { opacity: 1; transform: translateY(0); }
}
.sc-t3-check {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #10b981);
  color: #14051f;
  font-weight: 900;
  font-size: 14px;
}
.sc-t3-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sc-t3-irc {
  font-family: var(--mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.sc-t3-amt {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Email gate */
.sc-gate {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px 28px 22px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  transition: opacity 0.35s ease, max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease;
  overflow: hidden;
}
.sc-gate.hide {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-color: transparent;
}
.sc-gate-hook {
  text-align: center;
  margin-bottom: 18px;
}
.sc-gate-emoji {
  font-size: 38px;
  margin-bottom: 10px;
}
.sc-gate-hook h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
}
.sc-gate-hook p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto;
}
.sc-gate-hook p strong { color: var(--accent); font-weight: 700; }
.sc-email-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 18px auto 0;
}
.sc-email-form input[type="email"] {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 16px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.sc-email-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.sc-email-form input[type="email"]:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.14);
}
.sc-gate-btn {
  white-space: nowrap;
  padding: 16px 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #14051f;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 14px 28px -14px rgba(249,115,22,0.6);
}
.sc-gate-btn:hover { transform: translateY(-1px); }
.sc-gate-fine {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.sc-gate .thanks {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(16,185,129,0.34);
  color: #6ee7b7;
  font-size: 14px;
  text-align: center;
}
.sc-gate .thanks.show { display: block; }

/* Full breakdown (post-gate) */
.sc-full {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s ease, max-height 0.45s ease;
  position: relative; z-index: 1;
}
.sc-full.show {
  opacity: 1;
  max-height: 8000px;
  margin-bottom: 18px;
}
.sc-full-header { text-align: center; margin-bottom: 22px; }
.sc-full-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(16,185,129,0.22);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sc-full-header h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}
.sc-full-header p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}
.sc-full-header p strong { color: var(--accent); }
.sc-full-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.sc-full-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 20px 22px;
  opacity: 0;
  transform: translateY(8px);
  animation: sc-row-in 0.45s ease forwards;
}
.sc-full-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.sc-full-emoji {
  font-size: 26px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
}
.sc-full-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sc-full-irc {
  font-family: var(--mono, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
}
.sc-full-amt {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.sc-full-why {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 10px;
}
.sc-full-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.sc-full-link:hover { opacity: 0.78; }

.sc-full-cta {
  margin-top: 18px;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(251,191,36,0.14), rgba(236,72,153,0.12));
  border: 1px solid rgba(251,191,36,0.28);
  border-radius: 20px;
  text-align: center;
}
.sc-full-cta h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}
.sc-full-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 18px;
}
.sc-full-cta .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #14051f;
  padding: 16px 26px;
  font-size: 16px;
  border: none;
  font-weight: 700;
}

/* Index hero CTA strip (Calculate your savings) */
.sc-index-cta {
  padding: 88px 24px;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(251,191,36,0.18), transparent 60%),
    radial-gradient(800px 500px at 18% 80%, rgba(236,72,153,0.18), transparent 60%),
    linear-gradient(135deg, #14051f, #2e1065 60%, #5b21b6);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sc-index-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
  pointer-events: none;
}
.sc-index-cta-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.sc-index-cta .eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(251,191,36,0.16);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(251,191,36,0.32);
}
.sc-index-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: #fff;
}
.sc-index-cta h2 .grad {
  background: linear-gradient(135deg, #fbbf24, #ec4899, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.sc-index-cta p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 28px;
}
.sc-index-cta .btn-primary {
  display: inline-grid;
  gap: 4px;
  padding: 18px 32px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbbf24, #f97316, #ec4899);
  color: #14051f;
  text-decoration: none;
  box-shadow: 0 20px 40px -16px rgba(236,72,153,0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.sc-index-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px -16px rgba(236,72,153,0.66);
}
.sc-index-cta .btn-primary .sub {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(20,5,31,0.65);
}
.sc-index-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 600;
}
.sc-index-cta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Mobile responsive */
@media (max-width: 720px) {
  .sc-hero { padding: 110px 18px 60px; }
  .sc-form { padding: 28px 20px; border-radius: 22px; }
  .sc-result { padding-left: 22px; padding-right: 22px; }
  .sc-form .calc-field label { font-size: 18px; }
  .sc-radio-row { grid-template-columns: 1fr; }
  .sc-bonus { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sc-email-form { grid-template-columns: 1fr; }
  .sc-top3-row { grid-template-columns: 24px 1fr; }
  .sc-top3-row .sc-t3-amt {
    grid-column: 1 / -1;
    text-align: right;
    font-size: 20px;
  }
  .sc-full-head { grid-template-columns: auto 1fr; }
  .sc-full-head .sc-full-amt { grid-column: 1 / -1; text-align: right; }
  .sc-trust { padding: 36px 18px; }
  .sc-trust .items { flex-direction: column; gap: 10px; }
}

.sc-trust {
  background: linear-gradient(180deg, #f5f3ff 0%, #fafaf9 100%);
  padding: 56px 24px;
}
