/* ==========================================================================
   PostBoard Media · Homepage (index.html) - page-unique CSS
   --------------------------------------------------------------------------
   Loaded AFTER /assets/site.css. Contains ONLY rules site.css does not
   already provide: the hero + card mockup, comparison columns, how-it-works
   grid, the math/ROI section, differentiators, rewards, offer table,
   pricing tabs + cards + bundles + retainer, FAQ internals, CTA banner,
   email-capture section, sticky mobile bar, plus small utility classes that
   replace former inline style="" attributes.

   Shared from site.css (NOT duplicated here): reset, :root tokens, layout
   primitives, .section-eyebrow/.section-title/.section-sub, buttons, focus
   ring, .pill, .announce, nav, mobile menu, the card-chassis radius+hover,
   forms, footer, keyframes, base responsive + reduced-motion.

   Contrast/brand rules applied here:
     - gold text on light surfaces uses --gold-ink / --gold-ink-2
     - mist used as TEXT becomes --slate (mist stays only for bars/dividers)
     - green/red text uses --green-ink / --red-ink
     - .cta-banner repainted to a NAVY gradient (gold is an accent only)
   ========================================================================== */


/* ==========================================================================
   UTILITY CLASSES (replace former inline style="" attributes)
   ========================================================================== */
.hero.pt-64 { padding-top: 64px; }

.math-note {
  color: var(--cream-60);
  font-size: var(--fs-xs);
  margin-top: 14px;
  font-weight: 300;
}

.scenario-line.mt-10 { margin-top: 10px; }

.offer-table .col-cat { width: 22%; }
.offer-table .col-weak { width: 34%; }
.offer-table .col-strong { width: 44%; }

.bundle-card.gold-border { border-color: var(--gold); }

.retainer-cta { margin-top: 20px; }

footer h5.mt-8 { margin-top: 8px; }


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 96px 28px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 2px solid var(--gold-08);
  border-radius: var(--radius-round);
}
.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--gold-12);
  border-radius: var(--radius-round);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--gold-40);
  border-radius: var(--radius-xs);
}
.hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.015em;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: var(--fs-md);
  color: var(--cream-82);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.55;
}
.hero-urgency {
  background: var(--gold-08);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: var(--fs-sm);
  color: var(--cream);
  font-weight: 400;
  max-width: 540px;
}
.hero-urgency strong { color: var(--gold); font-weight: 600; }
.hero-pills { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-cta-row { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.friction-note {
  font-size: var(--fs-xs);
  color: var(--cream-60);
  font-weight: 300;
  margin-top: 2px;
  letter-spacing: .01em;
}

/* Hero card mockup */
.hero-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gold-25);
  padding: 18px;
  transform: rotate(2deg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  grid-template-rows: auto repeat(4, 1fr) auto;
}
.hero-card-header {
  grid-column: 1/-1;
  text-align: center;
  padding: 4px 0;
  border-bottom: 1.5px solid var(--navy);
}
.hero-card-header .title { font-family: var(--serif); font-size: 1rem; color: var(--navy); font-weight: 400; }
.hero-card-header .sub {
  font-family: var(--mono);
  font-size: .54rem;
  color: var(--slate);
  letter-spacing: .1em;
  margin-top: 2px;
  text-transform: uppercase;
}
.hero-tile {
  background: var(--cream-2);
  border-radius: var(--radius-xs);
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .52rem;
  color: var(--slate);
  border: 1px solid var(--border);
  min-height: 0;
}
.hero-tile.highlighted {
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 12px var(--gold-40);
  transform: scale(1.04);
  z-index: 2;
  font-weight: 600;
}
.hero-tile .cat { font-weight: 700; font-size: .58rem; text-transform: uppercase; letter-spacing: .06em; }
.hero-tile .name { font-family: var(--serif); font-size: .7rem; color: var(--navy); line-height: 1.1; margin-top: 2px; }
.hero-tile.highlighted .name { color: var(--navy-deep); }
.hero-tile .offer { font-size: .5rem; color: var(--slate); margin-top: auto; font-weight: 500; }
.hero-tile.highlighted .offer { color: var(--navy-deep); }
.hero-card-footer {
  grid-column: 1/-1;
  text-align: center;
  font-family: var(--mono);
  font-size: .48rem;
  color: var(--slate);
  letter-spacing: .1em;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  text-transform: uppercase;
}


/* ==========================================================================
   SECTION PADDING (homepage uses 96px vertical rhythm)
   ========================================================================== */
section { padding: 96px 28px; }


/* ==========================================================================
   COMPARISON
   ========================================================================== */
.comparison-section { background: var(--cream); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.compare-col {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
}
.compare-col.postboard {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
  position: relative;
}
.compare-col.postboard::before {
  content: 'PostBoard';
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: var(--radius-xs);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compare-col h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.compare-col.typical h4 { color: var(--slate); }
.compare-list { list-style: none; }
.compare-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compare-col.postboard .compare-list li { border-color: var(--gold-25); }
.compare-list li:last-child { border-bottom: none; }
.compare-list .label {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .06em;
  min-width: 100px;
  font-weight: 500;
}
.compare-col.postboard .compare-list .label { color: var(--gold-soft); }
.compare-list .value { font-weight: 500; flex: 1; }
.compare-col.typical .compare-list .value { color: var(--slate); }
.compare-col.postboard .compare-list .value { color: var(--cream); }
.compare-col.postboard .compare-list .value strong { color: var(--gold); }


/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-section { background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.how-step {
  background: var(--cream);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.how-step-num {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  color: var(--gold-ink);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 10px;
}
.how-step p { font-size: var(--fs-sm); color: var(--slate); line-height: 1.5; font-weight: 300; }


/* ==========================================================================
   MATH / ROI
   ========================================================================== */
.math-section { background: var(--navy); color: var(--cream); padding-top: 96px; padding-bottom: 96px; }
.math-section .section-title { color: var(--cream); }
.math-section .section-title em { color: var(--gold); }
.math-section .section-eyebrow { color: var(--gold); }
.math-section .section-sub { color: var(--cream-70); }
.math-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.math-card {
  background: rgba(250,247,240,.04);
  padding: 36px;
  border: 1px solid var(--gold-25);
}
.math-card h4 {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.math-table { width: 100%; font-size: var(--fs-sm); }
.math-table tr { border-bottom: 1px solid rgba(250,247,240,.1); }
.math-table tr:last-child { border-bottom: none; }
.math-table td { padding: 12px 0; color: var(--cream-82); }
.math-table td:last-child { text-align: right; font-family: var(--mono); color: var(--cream); font-weight: 500; }
.math-table tr.total td { padding-top: 16px; font-weight: 600; }
.math-table tr.total td:first-child { color: var(--cream); }
.math-table tr.total td:last-child { color: var(--gold); font-size: var(--fs-md); }
.math-card .scenario-big {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin: 12px 0 4px;
}
.math-card .scenario-big-sub { color: var(--cream-70); font-size: var(--fs-sm); margin-bottom: 18px; font-weight: 300; }
.math-card .scenario-line { font-size: var(--fs-sm); margin-bottom: 8px; color: var(--cream-82); }
.math-card .scenario-highlight { color: var(--gold); font-weight: 500; }


/* ==========================================================================
   DIFFERENTIATORS
   ========================================================================== */
.diff-section { background: var(--cream); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}
.diff-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
}
.diff-card:hover { border-color: var(--gold); }
.diff-card .icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: var(--mono);
}
.diff-card h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 10px;
}
.diff-card p { font-size: var(--fs-sm); color: var(--slate); line-height: 1.55; font-weight: 300; }
.diff-card .stat {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--gold-ink);
  background: var(--gold-12);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  letter-spacing: .02em;
}


/* ==========================================================================
   REWARDS
   ========================================================================== */
.rewards-section { background: var(--white); position: relative; }
.rewards-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 64px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.rewards-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-25) 0%, transparent 70%);
  border-radius: var(--radius-round);
}
.rewards-inner .section-eyebrow { color: var(--gold); position: relative; z-index: 2; }
.rewards-inner h3 {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.rewards-inner h3 em { color: var(--gold); font-style: italic; }
.rewards-inner > p {
  color: var(--cream-82);
  max-width: 600px;
  margin-bottom: 32px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 32px;
}
.rewards-card {
  background: rgba(250,247,240,.06);
  padding: 24px;
  border: 1px solid var(--gold-25);
}
.rewards-card .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.rewards-card h5 { font-family: var(--serif); font-size: var(--fs-md); color: var(--cream); font-weight: 400; margin-bottom: 8px; }
.rewards-card p { font-size: var(--fs-xs); color: var(--cream-70); line-height: 1.5; font-weight: 300; }


/* ==========================================================================
   OFFER COACHING
   ========================================================================== */
.offer-section { background: var(--cream); }
.offer-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.offer-table { width: 100%; border-collapse: collapse; }
.offer-table thead th {
  background: var(--navy);
  color: var(--cream);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}
.offer-table tbody td {
  padding: 16px 20px;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border);
}
.offer-table tbody tr:last-child td { border-bottom: none; }
.offer-table tbody tr:hover { background: var(--cream-2); }
.offer-table .cat { font-weight: 600; color: var(--navy); }
.offer-table .weak { color: var(--slate); text-decoration: line-through; font-weight: 400; }
.offer-table .strong { color: var(--green-ink); font-weight: 500; }
.offer-callout {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(26,139,92,.08);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-sm);
  color: var(--slate);
}
.offer-callout strong { color: var(--green-ink); }


/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section { background: var(--white); }
.pricing-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--cream-2);
  border-radius: var(--radius-md);
  margin: 24px auto 40px;
  max-width: 460px;
}
.pricing-tab {
  flex: 1;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--slate);
  text-align: center;
  transition: all .2s;
}
.pricing-tab.active { background: var(--navy); color: var(--cream); }
.pricing-pane { display: none; }
.pricing-pane.active { display: block; animation: fadeIn .3s ease; }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.price-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, #FFF9EE 100%);
  box-shadow: var(--shadow-md);
}
.price-card .tier-label {
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  letter-spacing: .14em;
  color: var(--slate);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.price-card.featured .tier-label { color: var(--gold-ink); }
.price-card.featured .featured-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 6px;
}
.price-card .tagline { color: var(--slate); font-size: var(--fs-sm); margin-bottom: 24px; font-weight: 300; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-card .price .amount {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
}
.price-card .price .period { color: var(--slate); font-size: var(--fs-sm); font-weight: 400; }
.price-card .price-sub {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--slate);
  margin-bottom: 8px;
}
.price-card .price-highlight {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--gold-ink);
  background: var(--gold-12);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  margin-bottom: 20px;
}
.price-card .benefit-line {
  font-size: var(--fs-sm);
  color: var(--navy);
  font-weight: 500;
  margin: 16px 0 12px;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  line-height: 1.45;
}
.price-card ul { list-style: none; margin: 16px 0 24px; }
.price-card ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: var(--fs-sm);
  color: var(--slate);
  line-height: 1.45;
  font-weight: 400;
}
.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-round);
  background: var(--gold);
}
.price-card ul li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}
.price-card .cta-wrap { margin-top: 24px; }
.price-card .cta-wrap .btn { width: 100%; justify-content: center; }
.price-card .friction {
  font-size: var(--fs-xs);
  color: var(--slate);
  font-weight: 300;
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}

/* Bundle layout */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.bundle-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.bundle-card .tier-tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--gold-ink);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.bundle-card h4 { font-family: var(--serif); font-size: var(--fs-lg); color: var(--navy); font-weight: 400; margin-bottom: 6px; }
.bundle-card .b-price { font-family: var(--mono); font-size: var(--fs-md); color: var(--navy); font-weight: 600; margin-bottom: 14px; }
.bundle-card .b-tag { font-style: italic; color: var(--slate); font-size: var(--fs-xs); margin-bottom: 18px; font-weight: 300; }
.bundle-card ul { list-style: none; margin-top: auto; }
.bundle-card ul li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: var(--fs-xs);
  color: var(--slate);
  line-height: 1.4;
}
.bundle-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

.retainer-card {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 40px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.retainer-card .tier-tag { color: var(--gold-soft); }
.retainer-card h4 { color: var(--cream); font-size: var(--fs-xl); }
.retainer-card .b-price { color: var(--gold); font-size: var(--fs-md); }
.retainer-card .b-tag { color: var(--cream-82); font-size: var(--fs-base); }
.retainer-card .r-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.retainer-card .r-features li { color: var(--cream-82); font-size: var(--fs-xs); }
.retainer-card .r-features li::before { background: var(--gold); }


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--cream); }
.faq-wrap { max-width: 860px; margin: 32px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--serif);
  font-size: var(--fs-md);
  color: var(--navy);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background .2s;
}
.faq-q:hover { background: var(--cream-2); }
.faq-q .toggle {
  font-family: var(--mono);
  font-size: var(--fs-lg);
  color: var(--gold-ink);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 22px; }
.faq-a p { color: var(--slate); font-size: var(--fs-sm); line-height: 1.65; font-weight: 300; }


/* ==========================================================================
   CTA BANNER  (repainted: navy gradient, gold is accent only)
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: 80px 28px;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--cream);
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
  font-size: var(--fs-md);
  color: var(--cream-82);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .friction {
  margin-top: 16px;
  font-size: var(--fs-xs);
  color: var(--cream-70);
  font-weight: 400;
}


/* ==========================================================================
   EMAIL CAPTURE SECTION
   ========================================================================== */
.capture-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
}
.capture-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}
.capture-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  border-radius: 0 0 3px 3px;
}
.capture-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
}
.capture-toggle button {
  padding: 10px 18px;
  border-radius: var(--radius-xs);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--slate);
  transition: all .2s;
}
.capture-toggle button.active { background: var(--navy); color: var(--cream); }

.capture-pane { display: none; }
.capture-pane.active { display: block; animation: fadeIn .3s ease; }
.capture-pane h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.capture-pane h3 em { color: var(--gold-ink); font-style: italic; }
.capture-pane .lead {
  font-size: var(--fs-base);
  color: var(--slate);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 28px;
}


/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--navy);
  padding: 10px 12px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
  gap: 8px;
}
.sticky-mobile .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: var(--fs-xs);
  justify-content: center;
  letter-spacing: .01em;
}
.sticky-mobile .btn-blueprint {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.sticky-mobile .btn-blueprint:hover { background: var(--gold-12); }
/* Pricing button in the sticky bar: gold outline (was an inline style attr) */
.sticky-mobile .btn-pricing {
  color: var(--gold);
  border-color: var(--gold);
}


/* ==========================================================================
   RESPONSIVE (page-unique grids; nav/footer/section folds live in site.css)
   ========================================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 340px; margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .retainer-card { grid-template-columns: 1fr; gap: 24px; }
  .retainer-card .r-features { grid-template-columns: 1fr; }
  .rewards-inner { padding: 40px 28px; }
}

@media (max-width: 700px) {
  .hero { padding: 64px 20px 100px; }
  .hero-pills { gap: 6px; }
  section { padding: 64px 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-tabs { max-width: 100%; }
  .sticky-mobile { display: flex; }
  footer { padding-bottom: 90px; }
  .offer-table thead th:nth-child(2),
  .offer-table tbody td:nth-child(2) { display: none; }
  .cta-banner { padding: 56px 20px; }
}

/* Industries we serve (homepage vertical links) */
.industries-section { background: var(--white); }
.industries { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.industries a {
  font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: .02em;
  color: var(--navy); background: var(--cream-2);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 9px 16px;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.industries a:hover { border-color: var(--gold); color: var(--gold-ink); background: var(--white); }
