/* ============================================================
   SandwichBoardAI — Master stylesheet
   Implements design tokens from the developer handoff verbatim.
   ============================================================ */

:root {
  /* Brand */
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-deep: #134E4A;
  --teal-light-bg: #F0FDFA;
  --teal-pale: #99F6E4;
  --teal-mint: #5EEAD4;
  --teal-tint: #CCFBF1;

  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-deep: #B45309;
  --amber-bg: #FEF3C7;
  --amber-50: #FFFBEB;

  --green: #10B981;
  --green-bg: #D1FAE5;
  --green-dark: #065F46;

  --red: #B91C1C;
  --red-bg: #FEF2F2;
  --red-border: #FECACA;

  --white: #FFFFFF;
  --gray-900: #0F172A;
  --gray-700: #334155;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;

  --footer-bg: #0F2A3E;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-cover: 8px 8px 0 var(--gray-200);
}

/* ============================================================
   Reset + base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--gray-900);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(36px, 5vw, 52px); line-height: 1.05; }
h2 { font-size: clamp(26px, 3.4vw, 34px); line-height: 1.1; }
h3 { font-size: clamp(20px, 2.4vw, 24px); }
p  { margin: 0 0 1em; }

.tabular { font-variant-numeric: tabular-nums; }

/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
}

.bg-gray-50    { background: var(--gray-50); }
.bg-teal-light { background: var(--teal-light-bg); }
.bg-teal-deep  { background: var(--teal-deep); color: var(--white); }
.bg-amber-50   { background: var(--amber-50); }

.amber-stripes-band {
  box-shadow: inset 0 6px 0 var(--amber), inset 0 -6px 0 var(--amber);
}

.amber-divider {
  width: 80px; height: 4px; background: var(--amber);
  margin: 0 auto 24px;
}
.amber-divider.left { margin: 0 0 24px; }
.amber-divider.light { background: var(--amber-light); }

.text-center { text-align: center; }
.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--gray-700);
  max-width: 760px;
}
.lead.center { margin-left: auto; margin-right: auto; }
.lead-amber { color: var(--amber-deep); font-weight: 700; }
.lead-bold  { color: var(--gray-900); font-weight: 700; }

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.kicker.amber { color: var(--amber-deep); }
.kicker.teal  { color: var(--teal-dark); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-amber  { background: var(--amber); color: #fff; }
.btn-amber:hover  { background: var(--amber-deep); color: #fff; }
.btn-teal   { background: var(--teal); color: #fff; }
.btn-teal:hover   { background: var(--teal-dark); color: #fff; }
.btn-ghost  { background: transparent; color: var(--teal); font-weight: 700; }
.btn-ghost:hover { text-decoration: underline; }
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-md  { padding: 14px 30px; font-size: 16px; }
.btn-lg  { padding: 22px 50px; font-size: 22px; }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   Pills / chips
   ============================================================ */

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pill-amber       { background: var(--amber); color: #fff; }
.pill-teal        { background: var(--teal); color: #fff; }
.pill-teal-deep   { background: var(--teal-deep); color: var(--amber-light); }
.pill-green       { background: var(--green-bg); color: var(--green-dark); }
.pill-tool {
  background: var(--gray-100); color: var(--gray-700);
  padding: 8px 18px; font-size: 15px; font-weight: 600;
}

/* ============================================================
   Top nav
   ============================================================ */

.nav {
  position: sticky; top: 0; z-index: 100;
  height: 80px;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.brand {
  color: var(--teal);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}
.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal-dark); font-weight: 700; }
.nav-links a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -14px;
  height: 2px; background: var(--teal);
}
.nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-cta:hover { background: var(--amber-deep); }
.hamburger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-900); margin: 5px 0; border-radius: 2px; }

@media (max-width: 900px) {
  .nav { height: auto; min-height: 70px; }
  .nav-inner { padding: 0 20px; flex-wrap: wrap; min-height: 70px; }
  .brand { font-size: 19px; }
  .nav-links {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 16px;
    border-top: 1px solid var(--gray-200);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--gray-100); }
  .nav-links a.active::after { display: none; }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; }
  .hamburger { display: block; margin-left: auto; }
}

/* ============================================================
   Hero — homepage variants
   ============================================================ */

.hero {
  background: var(--teal-light-bg);
  padding: 64px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 {
  font-size: clamp(36px, 4.4vw, 50px);
  margin: 14px 0 22px;
}
.hero .lead {
  font-size: clamp(15px, 1.4vw, 18px);
  margin-bottom: 28px;
}

.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.price-amt {
  font-size: 50px; font-weight: 800; color: var(--gray-900);
  letter-spacing: -0.025em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-suffix {
  color: var(--gray-700); font-size: 17px; font-weight: 500;
}
.price-trust {
  margin-top: 6px; margin-bottom: 26px;
  color: var(--green-dark); font-weight: 700; font-size: 15px;
}

/* ============================================================
   Report cover preview component
   ============================================================ */

.report-cover {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--gray-200);
  max-width: 480px;
  margin: 0 auto;
}
.report-cover.tilted { transform: rotate(-1.4deg); }
.report-cover .banner {
  background: var(--teal-deep);
  color: #fff;
  padding: 22px 28px 24px;
}
.report-cover .banner .kicker {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 700;
  text-transform: uppercase; color: var(--amber-light); margin-bottom: 12px;
}
.report-cover .banner .title {
  font-size: 22px; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em; color: #fff; margin-bottom: 8px;
}
.report-cover .banner .subtitle { color: var(--teal-pale); font-size: 13px; }

.report-cover .body {
  padding: 22px 28px 8px;
  display: flex; align-items: flex-start; gap: 18px;
}
.report-cover .body .left-col { flex: 1; min-width: 0; }
.report-cover .prepared-for-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--gray-500); margin-bottom: 4px;
}
.report-cover .business {
  font-size: 22px; font-weight: 700; color: var(--gray-900);
  letter-spacing: -0.01em; line-height: 1.15;
}
.report-cover .report-id {
  font-size: 11px; color: var(--gray-400); margin-top: 6px;
  font-variant-numeric: tabular-nums; letter-spacing: 0.04em;
}
.rank-box {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: 8px;
  padding: 6px 14px 8px;
  text-align: center;
  flex-shrink: 0;
  min-width: 92px;
}
.rank-box .rank {
  font-size: 24px; font-weight: 800; color: var(--red);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.rank-box .of {
  font-size: 10px; color: var(--red); font-weight: 600;
  margin-top: 4px;
}
.rank-box .ask {
  font-size: 8px; color: var(--red); margin-top: 1px;
}

.report-cover hr { border: 0; border-top: 1px solid var(--gray-200); margin: 16px 28px 14px; }
.report-cover .section-label {
  padding: 0 28px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--gray-500); margin-bottom: 8px;
}
.report-cover .ai-tools {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  padding: 0 28px 16px;
}
.report-cover .ai-tools .lead-text { font-size: 12px; color: var(--gray-700); margin-right: 4px; }
.report-cover .ai-tools .pill {
  background: var(--gray-100); color: var(--gray-700);
  border-radius: 9999px; padding: 4px 11px; font-size: 11px; font-weight: 600;
}
.report-cover .standings { padding: 0 28px 14px; }
.report-cover .standings .section-label-inline {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--gray-500); margin-bottom: 10px; line-height: 1.4;
}
.standing-row {
  display: grid;
  grid-template-columns: 42px 1fr 110px 88px;
  align-items: center; column-gap: 12px;
  padding: 8px 6px; border-radius: 5px;
  margin-bottom: 3px;
}
.standing-row.top-pick { background: var(--green-bg); }
.standing-row.you { background: var(--amber-bg); }
.standing-row.lump { background: var(--gray-50); border: 1px dashed var(--gray-200); }
.standing-row .num { color: var(--gray-500); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 13px; }
.standing-row.top-pick .num { color: var(--green-dark); }
.standing-row.you .num { color: var(--amber-deep); }
.standing-row .firm { font-weight: 600; color: var(--gray-900); font-size: 13px; }
.standing-row.lump .firm { color: var(--gray-600); font-weight: 600; }
.standing-row.you .firm { color: var(--amber-deep); font-weight: 700; }
.standing-row .firm .you-marker { color: var(--amber-deep); margin-left: 8px; font-weight: 700; }
.standing-row .bar-track { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.standing-row .bar { height: 100%; border-radius: 4px; background: var(--green); width: 92%; }
.standing-row .bar.blue { background: var(--teal); }
.standing-row .bar.amber { background: var(--amber-deep); }
.standing-row .bar.muted { background: var(--gray-400); }
.standing-row .tag {
  font-size: 10px; font-weight: 700; padding: 4px 8px;
  border-radius: 9999px; text-align: center; white-space: nowrap;
}
.tag.green { background: var(--green-bg); color: var(--green-dark); }
.tag.amber { background: var(--amber-bg); color: var(--amber-deep); }
.tag.muted { background: var(--gray-100); color: var(--gray-500); }

@media (max-width: 640px) {
  .standing-row {
    grid-template-columns: 34px 1fr 74px;
    column-gap: 8px;
  }
  .standing-row .tag {
    grid-column: 2 / -1;
    justify-self: start;
    margin-top: 4px;
  }
}

.report-cover .whats-inside { padding: 8px 28px 14px; }
.report-cover .whats-inside .section-label-inline {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--gray-500); margin-bottom: 8px;
}
.report-cover .whats-inside .panel { background: var(--gray-50); border-radius: 8px; padding: 12px 18px; }
.report-cover .whats-inside .panel ul { list-style: none; padding: 0; margin: 0; }
.report-cover .whats-inside .panel li {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px;
  font-size: 12px; color: var(--gray-700); padding: 4px 0; line-height: 1.45;
}
.report-cover .whats-inside .panel .check { color: #16A34A; font-weight: 800; font-size: 12px; margin-top: 2px; }

.report-cover .cover-foot {
  border-top: 1px solid var(--gray-200);
  padding: 10px 28px 12px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--gray-400);
}
.report-cover .cover-foot .conf { color: var(--red); font-weight: 700; }

/* ============================================================
   Mascot illustration
   ============================================================ */

.mascot {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.mascot-block {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.mascot-block img { width: 240px; max-width: 100%; margin: 0 auto; }
.mascot-tag {
  margin-top: 14px;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

/* ============================================================
   Stats grid
   ============================================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat-card .num {
  font-size: clamp(34px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-card .caption {
  font-size: 14px; color: var(--gray-700); line-height: 1.45;
}

/* ============================================================
   Numbered recommendations / steps
   ============================================================ */

.numbered-list { max-width: 920px; margin: 0 auto; list-style: none; padding: 0; }
.numbered-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.numbered-list .num {
  width: 60px; height: 60px;
  background: var(--teal); color: #fff;
  font-weight: 800; font-size: 22px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.numbered-list h3 {
  font-size: clamp(20px, 2vw, 23px);
  margin: 6px 0 8px;
}
.numbered-list p { color: var(--gray-700); margin: 0; }

/* ============================================================
   Founders cards
   ============================================================ */

.founders-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; margin-top: 32px;
}
@media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr; gap: 24px; } }
.founder-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 24px 24px;
}
.founder-card .headshot {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--gray-100);
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-weight: 700; font-size: 32px;
  font-family: serif;
}
.founder-card .name {
  font-size: 22px; font-weight: 700; color: var(--gray-900); margin: 0 0 4px;
}
.founder-card .title {
  font-size: 14px; font-weight: 700; color: var(--teal); margin-bottom: 12px;
}
.founder-card .bio { font-size: 14px; color: var(--gray-700); line-height: 1.55; }

/* ============================================================
   Pricing cards
   ============================================================ */

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 920px; margin: 32px auto 0;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pcard {
  background: #fff; border-radius: 14px;
  padding: 32px 28px; position: relative;
  border: 3px solid;
}
.pcard.amber { border-color: var(--amber); }
.pcard.teal  { border-color: var(--teal); }
.pcard::before {
  content: ''; position: absolute; left: -3px; right: -3px; top: -3px;
  height: 8px;
  border-top-left-radius: 14px; border-top-right-radius: 14px;
}
.pcard.amber::before { background: var(--amber); }
.pcard.teal::before  { background: var(--teal); }
.pcard h3 { font-size: 22px; margin-bottom: 14px; }
.pcard .price { font-size: 56px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.pcard.amber .price { color: var(--amber-deep); }
.pcard.teal  .price { color: var(--teal-deep); }
.pcard .price-suffix-sm { display: inline-block; vertical-align: 12px; font-size: 16px; color: var(--gray-500); margin-left: 8px; }
.pcard .features { list-style: none; padding: 0; margin: 0 0 26px; }
.pcard .features li {
  padding-left: 30px; position: relative; margin-bottom: 12px;
  color: var(--gray-700); font-size: 15px; line-height: 1.5;
}
.pcard.amber .features li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--amber-deep); font-weight: 800; font-size: 18px;
}
.pcard.teal .features li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--teal); font-weight: 800; font-size: 18px;
}
.popular-badge {
  position: absolute; top: -16px; right: 16px;
  background: var(--teal-deep); color: var(--amber-light);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  padding: 7px 14px; border-radius: 6px;
}

/* ============================================================
   Order Now bands
   ============================================================ */

.cta-band {
  background: var(--teal-deep);
  padding: 80px 0;
  text-align: center;
  box-shadow: inset 0 6px 0 var(--amber), inset 0 -6px 0 var(--amber);
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--teal-pale);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 720px; margin: 0 auto 28px;
}
.cta-band .trust {
  margin-top: 18px;
  color: var(--amber-light);
  font-weight: 700;
  font-size: 14px;
}
.cta-band .trust a { color: var(--amber-light); }

/* ============================================================
   Industry lookup band (cold homepage)
   ============================================================ */

.lookup-band { padding: 72px 0; text-align: center; background: var(--teal-deep); box-shadow: inset 0 6px 0 var(--amber), inset 0 -6px 0 var(--amber); }
.lookup-band h2 { color: #fff; margin-bottom: 14px; font-size: clamp(28px, 3.4vw, 36px); }
.lookup-band p { color: var(--teal-pale); max-width: 640px; margin: 0 auto 24px; }
.lookup-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  max-width: 880px; margin: 0 auto 14px;
}
@media (max-width: 768px) { .lookup-form { grid-template-columns: 1fr; } }
.lookup-form input {
  background: #fff; border: 0;
  padding: 18px 20px; border-radius: 10px;
  font-family: inherit; font-size: 16px; color: var(--gray-900);
}
.lookup-form input::placeholder { color: var(--gray-500); }
.lookup-note { color: var(--amber-light); font-size: 14px; font-weight: 600; margin-top: 10px; }

/* ============================================================
   Trust badges (cold homepage)
   ============================================================ */

.badges-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 36px auto 0; max-width: 980px;
}
@media (max-width: 900px) { .badges-grid { grid-template-columns: 1fr; } }
.badge-card { text-align: center; padding: 0 8px; }
.badge-img {
  width: 180px; height: 180px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.badge-card .label { font-size: 22px; font-weight: 700; color: var(--gray-900); margin: 0 0 4px; }
.badge-card .blurb { font-size: 15px; color: var(--gray-700); line-height: 1.55; max-width: 280px; margin: 0 auto; }

/* ============================================================
   Footer
   ============================================================ */

.foot { background: var(--footer-bg); color: #cbd5e1; padding: 36px 0 28px; font-size: 14px; }
.foot-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { color: #fff; font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.foot-tag { color: #94a3b8; margin-bottom: 14px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: #cbd5e1; text-decoration: none; font-size: 13px; }
.foot-copy { color: #64748B; font-size: 12px; }
@media (max-width: 700px) { .foot-copy { margin-top: 14px; } }

/* ============================================================
   Page-specific helpers picked up by individual pages
   ============================================================ */

.story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-grid .mascot-cell { display: flex; justify-content: center; }
}

/* ============================================================
   FAQ page
   ============================================================ */

.faq-hero { background: var(--teal-deep); padding: 80px 0; text-align: center; box-shadow: inset 0 6px 0 var(--amber), inset 0 -6px 0 var(--amber); }
.faq-hero h1 { color: #fff; }
.faq-hero .lead { color: var(--teal-pale); margin: 0 auto 14px; }
.faq-hero .lead-bold { color: var(--amber-light); font-weight: 700; }
.toc { padding: 36px 0 8px; border-bottom: 1px solid var(--gray-100); }
.toc-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.toc-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-light-bg); color: var(--teal-deep); border: 1px solid var(--teal-pale); padding: 10px 18px; border-radius: 9999px; font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; }
.toc-pill .num { background: var(--teal); color: #fff; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 9999px; font-variant-numeric: tabular-nums; }
.faq-section { margin-bottom: 64px; scroll-margin-top: 100px; }
.faq-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid var(--gray-200); }
.faq-section-num { width: 44px; height: 44px; background: var(--teal); color: #fff; font-weight: 800; font-size: 18px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.faq-section-title { font-size: 28px; font-weight: 700; color: var(--gray-900); letter-spacing: -0.02em; line-height: 1.15; }
.faq-section-blurb { color: var(--gray-500); font-size: 15px; margin-top: 4px; }
.qa { border: 1px solid var(--gray-200); border-radius: 10px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.qa-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 18px; font-weight: 700; color: var(--gray-900); letter-spacing: -0.01em; line-height: 1.35; padding: 20px 24px; cursor: pointer; user-select: none; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); width: 100%; text-align: left; border-left: 0; border-right: 0; border-top: 0; font-family: inherit; }
.qa-q:hover { background: var(--gray-100); }
.qa-q[aria-expanded="false"] { border-bottom: 0; }
.qa-q[aria-expanded="false"] + .qa-a { display: none; }
.qa-toggle { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; line-height: 1; transition: transform 0.2s ease; }
.qa-q[aria-expanded="true"] .qa-toggle { transform: rotate(45deg); }
.qa-a { color: var(--gray-700); font-size: 16px; line-height: 1.65; padding: 18px 24px 22px; }
.qa-a p { margin-bottom: 0.8em; }
.qa-a p:last-child { margin-bottom: 0; }
.qa-a strong { color: var(--gray-900); font-weight: 700; }
.qa-a a { color: var(--teal-dark); font-weight: 600; }

/* ============================================================
   Long-form content pages (Privacy, Terms, AI Disclaimer, Contact)
   ============================================================ */

.content-page { padding: 64px 24px 96px; }
.content-page .container { max-width: 800px; }
.content-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
.content-page .last-updated {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 32px;
}
.content-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.content-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.content-page p,
.content-page li {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 16px;
}
.content-page ul,
.content-page ol { padding-left: 24px; margin-bottom: 16px; }
.content-page li { margin-bottom: 6px; }
.content-page a { color: var(--teal-dark); font-weight: 600; }
.content-page a:hover { text-decoration: underline; }
.content-page strong { color: var(--gray-900); }
.content-page .btn { color: #fff; }
.content-page .btn:hover { color: #fff; }

/* ============================================================
   Order flow (compat shims for existing order.js / confirmation.js)
   ============================================================ */

/* Compact hero used on order/confirmation pages */
.hero--compact { padding: 56px 0 32px; text-align: center; }
.hero--compact h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.hero--compact p { font-size: 17px; color: var(--gray-700); margin: 0 auto 6px; max-width: 720px; }
.hero--compact p:last-child { margin-bottom: 0; }

/* Generic section wrapper */
.section { padding: 48px 0 64px; }
.section-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 24px;
  line-height: 1.55;
  max-width: 640px;
}

/* Legacy primary/link buttons map onto new design */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--amber-deep); color: #fff; text-decoration: none; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-link {
  background: transparent;
  color: var(--gray-700);
  border: 0;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  font-family: inherit;
}
.btn-link:hover { color: var(--gray-900); }

/* Order page layout */
.order-status { text-align: center; padding: 16px 0; color: var(--gray-500); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 768px) {
  .order-grid { grid-template-columns: 1fr; gap: 24px; }
}
.order-teaser img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-card, 0 8px 24px rgba(15, 23, 42, 0.1));
  background: var(--gray-100);
}
.order-options .order-company-name { color: var(--teal-dark); }
.order-options .section-title { margin-bottom: 8px; }
.order-options .section-subtitle { margin-bottom: 16px; }

.report-includes { margin-bottom: 24px; }
.report-includes h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 14px;
  margin-bottom: 4px;
}
.report-includes h3:first-child { margin-top: 0; }
.report-includes p {
  color: var(--gray-700);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.55;
}

.plan-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.plan-card {
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-card, 0 8px 24px rgba(15, 23, 42, 0.08));
}
.plan-card--report { border-color: var(--amber-light); }
.plan-card--subscription { border-color: var(--teal-pale); }
.plan-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.plan-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}
.plan-card p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
  margin: 8px 0 16px;
}
.plan-btn { width: 100%; }
.plan-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.payment-panel {
  margin-top: 36px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.payment-panel #card-container {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  min-height: 90px;
  border: 1px solid var(--gray-200);
}
.payment-panel .btn,
.payment-panel .btn-primary { margin-right: 12px; }

.payment-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 15px;
}
.payment-status.is-error { background: #fdecec; color: #9b1d1d; }

/* Order landing page */
.brand-ai { color: var(--teal); }

body.order-page {
  background: var(--gray-50);
  color: var(--gray-900);
  padding: 48px 40px;
}
.order-page .nav,
.order-page .foot { display: none; }
.order-landing-shell {
  max-width: 1500px;
  margin: 0 auto;
}
.order-landing-shell .order-status {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 32px;
}
.order-landing-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.order-report-pane {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}
.order-report-pane img {
  display: block;
  width: 100%;
  height: auto;
}
.order-right-column { padding-top: 4px; }
.order-landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.order-landing-brand {
  color: #0a1f3d;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  text-decoration: none;
  white-space: nowrap;
}
.order-landing-brand:hover { text-decoration: none; }
.order-landing-brand span { color: #ff6b35; }
.order-landing-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}
.order-landing-links a {
  color: #475569;
  text-decoration: none;
}
.order-landing-links a:hover {
  color: #0a1f3d;
  text-decoration: none;
}
.order-landing-eyebrow {
  display: inline-block;
  background: var(--amber-bg);
  color: #92400e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.order-landing-eyebrow span:not([hidden])::after { content: ' · '; }
.order-landing-headline {
  color: #0a1f3d;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}
.order-landing-headline span { color: #dc2626; }
.order-landing-sub {
  color: #475569;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 28px;
}
.order-landing-sub strong { color: var(--gray-900); }
.order-offer-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  margin-bottom: 28px;
  overflow: hidden;
}
.order-offer-headline {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.3px;
  padding: 22px 24px;
  text-align: center;
  text-transform: uppercase;
}
.order-offer-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 28px 18px;
}
.order-offer-item h3 {
  color: #0a1f3d;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.1px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.order-offer-item p {
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.order-offer-cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 32px 36px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.order-page .plan-options { display: block; }
.order-page .plan-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.order-offer-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.3px;
  padding: 22px 44px;
  text-decoration: none;
  white-space: nowrap;
}
.order-offer-btn:hover { box-shadow: 0 8px 22px rgba(255, 107, 53, 0.55); }
.order-offer-btn:disabled { cursor: not-allowed; opacity: 0.5; }
.order-offer-price {
  color: #0a1f3d;
  flex: 1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.order-offer-price strong {
  color: #ff6b35;
  font-size: 30px;
  font-weight: 900;
}
.order-content-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  padding: 28px 30px;
}
.order-content-card h2 {
  color: #0a1f3d;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.order-pill-grid,
.order-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.order-pill-grid { gap: 10px; }
.order-report-pill {
  align-items: center;
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.25;
  min-height: 56px;
  padding: 16px 22px;
  text-align: center;
}
.order-stat-grid { gap: 12px; }
.order-stat-card {
  align-items: center;
  background: linear-gradient(135deg, #0a1f3d 0%, #0d3b5c 100%);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(10, 31, 61, 0.3);
  display: flex;
  gap: 16px;
  min-height: 100px;
  padding: 20px 22px;
}
.order-stat-num {
  border-right: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  flex: 0 0 32%;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  padding-right: 14px;
  text-align: center;
}
.order-stat-num--long { font-size: 28px; }
.order-stat-label {
  color: var(--gray-100);
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.order-stat-label span {
  color: #4fd1c5;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 6px;
}
.order-guarantee-card {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.35);
  color: var(--white);
  margin-bottom: 20px;
  padding: 30px 36px;
  text-align: center;
}
.order-guarantee-card h2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.order-guarantee-promise {
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  padding: 10px 22px;
}
.order-guarantee-copy {
  color: #fff7ed;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 600px;
}
.order-right-footer {
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 500;
  padding-top: 14px;
  text-align: center;
}
.order-right-footer span {
  color: #475569;
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.order-page .payment-panel {
  background: var(--white);
  border-radius: 16px;
  margin: 0 0 24px;
}
@media (max-width: 1000px) {
  body.order-page { padding: 24px 20px; }
  .order-landing-layout,
  .order-pill-grid,
  .order-stat-grid { grid-template-columns: 1fr; }
  .order-offer-cta-row {
    flex-direction: column;
    gap: 20px;
    padding: 26px;
  }
  .order-landing-headline { font-size: 30px; }
  .order-landing-sub { font-size: 18px; }
}
@media (max-width: 640px) {
  body.order-page { padding: 0; }
  .order-landing-shell { max-width: none; }
  .order-report-pane,
  .order-offer-block,
  .order-content-card,
  .order-guarantee-card,
  .order-page .payment-panel { border-radius: 0; }
  .order-right-column { padding: 20px; }
  .order-landing-nav,
  .order-landing-links { align-items: flex-start; flex-direction: column; gap: 12px; }
  .order-offer-btn { width: 100%; }
  .order-stat-card { align-items: flex-start; flex-direction: column; }
  .order-stat-num {
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    padding: 0 0 12px;
    text-align: left;
  }
}

/* Confirmation page */
.confirmation-panel { text-align: center; padding: 16px 0; }
.confirmation-panel .section-title { margin-left: auto; margin-right: auto; }
.confirmation-panel .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* Homepage validation cleanup utilities */
.kicker-home { font-size: 13px; }
.lead-home-question { font-size: 19px; margin-bottom: 22px; }
.bar-w-78 { width: 78%; }
.bar-w-70 { width: 70%; }
.bar-w-61 { width: 61%; }
.bar-w-56 { width: 56%; }
.bar-w-28 { width: 28%; }
.section-flush-bottom { padding-bottom: 0; }
.story-grid-spaced { margin-bottom: 56px; }
.story-closing { font-weight: 700; color: var(--gray-900); font-size: 17px; }
.lead-spaced { margin-bottom: 32px; }
.tested-across-label { display: block; text-align: center; margin: 10px 0 18px; font-size: 12px; letter-spacing: 0.08em; color: var(--gray-500); font-weight: 700; text-transform: uppercase; }
.tool-pill-row, .market-pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.lead-bottom-lg { margin: 0 auto 36px; }
.lead-bottom-md { margin: 0 auto 32px; }
.section-rule { border: 0; border-top: 1px solid var(--gray-200); margin: 36px auto 28px; max-width: 920px; }
.center-narrow { text-align: center; max-width: 920px; margin: 0 auto; }
.example-note-title { font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 6px; }
.example-note-sub { color: var(--gray-500); font-weight: 600; margin-bottom: 22px; }
.market-stat-grid { grid-template-columns: repeat(3, 1fr); max-width: 700px; margin: 0 auto 32px; }
.market-pill-row { max-width: 980px; margin: 0 auto; }
.pill-market { background: var(--teal-tint); color: var(--teal-deep); }
.market-note { margin-top: 28px; color: var(--teal-deep); font-weight: 700; font-size: 18px; }
.founder-note-copy { max-width: 800px; margin: 0 auto; font-size: 17px; line-height: 1.65; color: var(--gray-700); }
.founder-note-link { color: var(--gray-900); font-weight: 700; margin: 18px 0 32px; }
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.guarantee-card { text-align: left; background: #fff; border-radius: 12px; padding: 22px 24px 24px; position: relative; }
.guarantee-card-teal { border: 2px solid var(--teal); }
.guarantee-card-amber { border: 2px solid var(--amber); }
.guarantee-card-deep { border: 2px solid var(--teal-deep); }
.guarantee-card-bar { position: absolute; left: -2px; right: -2px; top: -2px; height: 5px; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.guarantee-card-teal .guarantee-card-bar { background: var(--teal); }
.guarantee-card-amber .guarantee-card-bar { background: var(--amber); }
.guarantee-card-deep .guarantee-card-bar { background: var(--teal-deep); }
.guarantee-check { width: 40px; height: 40px; background: var(--green-bg); color: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-weight: 800; font-size: 18px; }
.guarantee-title { color: var(--teal-deep); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.guarantee-copy { margin: 0; color: var(--gray-700); font-size: 14px; line-height: 1.55; }
.badge-note { margin-top: 36px; color: var(--gray-500); font-weight: 700; font-size: 15px; }
.lead-no-bottom { margin: 0 auto; }
.lead-top-gap { margin: 18px auto 0; }
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: 1fr; } }
