
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800;900&family=Newsreader:opsz,wght@6..72,700;6..72,800&display=swap");
:root {
  color-scheme: light;
  --ink: #141b1d;
  --muted: #5c6a70;
  --line: #d7e2df;
  --paper: #ffffff;
  --wash: #f1f5f2;
  --accent: #0f6f78;
  --accent-2: #b86224;
  --accent-3: #23465f;
  --gold: #f0a64f;
  --coral: #d96f54;
  --rose: #bd465c;
  --plum: #59436d;
  --success: #227652;
  --soft: #f7efe4;
  --shadow: 0 18px 50px rgba(22, 35, 34, .12);
  --shadow-strong: 0 28px 80px rgba(16, 31, 32, .22);
  --sans: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display: Newsreader, Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
::selection { background: #f4c987; color: #14211e; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf2 0, #edf7f4 390px, #f8faf6 100%);
  line-height: 1.55;
}
a { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(240,166,79,.55);
  outline-offset: 3px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 52px;
  border-bottom: 1px solid rgba(215,226,223,.86);
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(22,35,34,.06);
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 17px;
}
.brand::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, var(--accent) 0%, #1b9aa4 52%, var(--gold) 53%, var(--gold) 100%);
  box-shadow: 0 10px 22px rgba(15,111,120,.22);
}
nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
}
nav a {
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 700;
}
nav a:hover { background: #eef6f3; color: var(--accent); }
nav a.is-active {
  background: #112f35;
  color: #fff;
}
nav a.is-active:hover {
  background: #174850;
  color: #fff;
}
nav .nav-buy {
  background: linear-gradient(135deg, var(--gold), #ffd99b);
  color: #17201c;
  box-shadow: 0 10px 24px rgba(240,166,79,.20);
}
nav .nav-buy:hover {
  background: linear-gradient(135deg, #f4b765, #ffe1aa);
  color: #17201c;
}
main { max-width: 1240px; margin: 0 auto; padding: 24px 32px 56px; }
.disclosure-strip {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff9ed;
  font-size: 13px;
  border-radius: 6px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(184,98,36,.08);
}
.hero, .product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 34px;
  align-items: center;
  min-height: 430px;
}
.revenue-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 455px);
  gap: 34px;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 8px;
  padding: 28px 34px;
  color: #fff;
  background-image:
    linear-gradient(100deg, rgba(7, 18, 22, .99) 0%, rgba(13, 45, 49, .96) 38%, rgba(31, 88, 89, .80) 58%, rgba(189, 70, 92, .42) 80%, rgba(240, 166, 79, .38) 100%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 34%),
    url("hero.bmp");
  background-position: center;
  background-size: cover;
  box-shadow: 0 36px 96px rgba(16, 31, 32, .30), inset 0 1px 0 rgba(255,255,255,.20);
}
.revenue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 38%);
  pointer-events: none;
  z-index: 0;
}
.revenue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255,255,255,.08) 58% 58.4%, transparent 58.4%),
    linear-gradient(135deg, transparent 0 70%, rgba(240,166,79,.16) 70% 70.5%, transparent 70.5%);
  pointer-events: none;
  z-index: 0;
}
.revenue-hero img { display: none; }
.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero-copy::before {
  content: "";
  display: block;
  width: 118px;
  height: 4px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--plum));
}
.revenue-hero .eyebrow { color: #f0b36a; }
.hero-lede {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.42;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.hero-decision-note {
  max-width: 660px;
  margin: 6px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,217,155,.22);
  border-left: 4px solid #ffd99b;
  border-radius: 8px;
  background: rgba(9, 24, 27, .28);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}
.hero-pressure-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 760px;
  margin: 18px 0 6px;
}
.hero-pressure-strip a {
  display: grid;
  gap: 3px;
  min-height: 62px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.105);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.hero-pressure-strip a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,217,155,.50);
  background: rgba(255,255,255,.16);
}
.hero-pressure-strip span {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-pressure-strip strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.15;
}
.hero-pressure-strip em {
  color: #ffd99b;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.hero-cta-row, .hero-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 8px;
}
.hero-proof-row {
  gap: 12px;
  margin-top: 20px;
}
.hero-proof-row span {
  min-width: 140px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.84);
}
.hero-proof-row strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.buy-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 6px;
}
.buy-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
}
.buy-signal-row strong {
  color: #ffd99b;
  font-size: 15px;
}
.buyer-trigger-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}
.buyer-trigger-strip article {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid #cbded9;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfa 64%, #fff6e8 100%);
  box-shadow: 0 14px 34px rgba(22,35,34,.08);
  overflow: hidden;
}
.buyer-trigger-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--rose));
}
.buyer-trigger-strip span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.buyer-trigger-strip strong {
  display: block;
  margin: 8px 0 7px;
  font-size: 18px;
  line-height: 1.12;
}
.buyer-trigger-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.checkout-psychology-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 24px;
}
.checkout-psychology-strip article {
  position: relative;
  min-height: 132px;
  padding: 17px;
  border: 1px solid #c8ddd7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 58%, #fff6ea 100%);
  box-shadow: 0 13px 32px rgba(22,35,34,.08);
  overflow: hidden;
}
.checkout-psychology-strip article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--rose));
}
.checkout-psychology-strip span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-psychology-strip strong {
  display: block;
  margin: 8px 0 7px;
  font-size: 18px;
  line-height: 1.12;
}
.checkout-psychology-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.trust-microcopy {
  max-width: 640px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  margin: 8px 0 0;
}
.trust-microcopy.dark {
  color: var(--muted);
  max-width: 760px;
}
.hero-buy {
  background: linear-gradient(135deg, var(--gold), #ffdf9f);
  color: #17201c;
  box-shadow: 0 14px 30px rgba(240,166,79,.24);
}
.revenue-hero .button {
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 900;
}
.button.ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.hero-offer-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.11)),
    rgba(14, 34, 38, .38);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}
.hero-offer-panel strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
}
.hero-offer-panel p {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.panel-fineprint {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
}
.hero-checkout-shelf {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  max-width: none;
  margin: 8px 0 24px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17,47,53,.96), rgba(26,74,76,.94) 55%, rgba(89,67,109,.88));
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(16,31,32,.16);
}
.shelf-head {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 14px;
  border-radius: 7px;
  background: linear-gradient(155deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
}
.shelf-head span, .shelf-offer span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.shelf-head strong {
  color: #ffd99b;
  font-size: 28px;
  line-height: 1;
}
.shelf-head em, .shelf-offer em {
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-style: normal;
}
.shelf-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.shelf-offer {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  background: rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.shelf-offer:hover {
  transform: translateY(-1px);
  border-color: rgba(255,217,155,.46);
  background: rgba(255,255,255,.16);
}
.shelf-offer strong {
  color: #fff;
  line-height: 1.15;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.shelf-offer em {
  color: #ffd99b;
  font-weight: 900;
}
.shelf-more {
  background: rgba(255,217,155,.16);
}
.buy-now-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(15,111,120,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,247,244,.92)),
    radial-gradient(circle at 85% 20%, rgba(240,166,79,.28), transparent 32%);
  box-shadow: var(--shadow);
}
.buy-now-hero h1 {
  max-width: 760px;
  color: var(--ink);
}
.buy-now-hero .hero-lede {
  color: var(--muted);
}
.buy-now-hero .button.secondary.ghost {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--line);
  box-shadow: none;
}
.live-pay-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(155deg, #142b31, #0f6f78);
  box-shadow: var(--shadow-strong);
}
.live-pay-panel > span {
  color: #ffd99b;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.live-pay-panel strong {
  font-size: 25px;
  line-height: 1.05;
}
.live-pay-panel p {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.buy-intent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.buy-intent-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(15,111,120,.18);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 36px rgba(22,35,34,.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.buy-intent-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240,166,79,.62);
  box-shadow: var(--shadow);
}
.buy-intent-card span {
  color: var(--accent-2);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.buy-intent-card strong {
  font-size: 18px;
  line-height: 1.15;
}
.buy-intent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.buy-intent-card em {
  align-self: end;
  color: var(--success);
  font-style: normal;
  font-weight: 900;
}
.panel-kicker {
  color: #ffd99b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.price-line span {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.price-line em {
  color: rgba(255,255,255,.74);
  font-style: normal;
  font-weight: 800;
}
.assurance-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.assurance-list li::before {
  content: "+";
  color: #ffd99b;
  font-weight: 900;
  margin-right: 8px;
}
.hero-choice-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.10)),
    rgba(10, 29, 34, .48);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 64px rgba(0,0,0,.22);
}
.choice-panel-head {
  display: grid;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.choice-panel-head span {
  color: #ffd99b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.choice-panel-head strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.04;
}
.choice-panel-head p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.hero-choice-list {
  display: grid;
  gap: 7px;
}
.hero-choice-card {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 66px;
  padding: 10px 12px 10px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.hero-choice-card::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: #ffd99b;
}
.hero-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255,217,155,.52);
  background: rgba(255,255,255,.16);
}
.hero-choice-primary {
  background: linear-gradient(145deg, rgba(255,217,155,.20), rgba(255,255,255,.12));
  border-color: rgba(255,217,155,.42);
}
.hero-choice-card span {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-choice-card strong {
  color: #fff;
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.hero-choice-card p {
  display: none;
}
.hero-choice-card em {
  color: #ffd99b;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.choice-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 2px;
}
.choice-proof-grid span {
  display: grid;
  gap: 2px;
  min-height: 52px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(9, 24, 27, .32);
}
.choice-proof-grid strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.15;
}
.choice-proof-grid em {
  color: rgba(255,255,255,.65);
  font-style: normal;
  font-size: 11px;
  line-height: 1.25;
}
.hero img, .product-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #dfe9e8;
}
h1 {
  font-family: var(--display);
  font-size: 66px;
  line-height: .96;
  margin: 8px 0 18px;
  letter-spacing: 0;
}
.revenue-hero h1 {
  font-size: 46px;
}
.revenue-hero h1 span {
  color: #ffd99b;
  text-shadow: 0 10px 34px rgba(240,166,79,.24);
}
h2 { font-size: 24px; margin-top: 30px; letter-spacing: 0; }
h3 { font-size: 20px; margin: 4px 0 8px; letter-spacing: 0; }
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  margin: 4px 6px 4px 0;
  box-shadow: 0 8px 20px rgba(15, 111, 120, .16);
  overflow-wrap: anywhere;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 111, 120, .18);
}
.button.secondary { background: #f7faf9; color: var(--accent); border: 1px solid var(--line); box-shadow: none; }
.button.secondary.ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.button-row.compact .button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 13px;
}
.section-heading {
  margin-top: 34px;
}
.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}
.decision-router {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  margin: 22px 0 26px;
  padding: 24px;
  border: 1px solid #c7ddd6;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbf8 44%, #fff1df 68%, #f7eef6 100%);
  box-shadow: 0 20px 52px rgba(22,35,34,.11);
}
.router-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}
.router-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: 32px;
  line-height: 1.06;
}
.router-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}
.router-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.router-proof span {
  display: grid;
  gap: 2px;
  min-height: 68px;
  align-content: center;
  padding: 10px;
  border: 1px solid #d8e6e1;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.router-proof strong {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.1;
}
.router-proof em {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  line-height: 1.25;
}
.router-console {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(16,47,53,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}
.router-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.router-step-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.router-step-grid select {
  width: 100%;
  min-height: 44px;
  min-width: 0;
  border: 1px solid #c8ddd7;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.router-result {
  display: grid;
  gap: 11px;
  align-content: start;
  min-height: 250px;
  padding: 18px;
  border: 1px solid #c8ddd7;
  border-radius: 8px;
  background:
    linear-gradient(150deg, #102f35 0%, #16454b 58%, #5a436c 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(16,47,53,.20);
}
.router-result > span {
  color: #ffd99b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.router-result strong {
  font-size: 25px;
  line-height: 1.06;
  overflow-wrap: anywhere;
}
.router-result p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.router-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.router-price span {
  color: #ffd99b;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.router-price em {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}
.router-result .button.secondary {
  color: #102f35;
  border-color: rgba(255,255,255,.74);
}
.router-anxiety {
  padding-top: 4px;
  font-size: 13px;
}
.purchase-moment {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(250px, .56fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin: 10px 0 24px;
  padding: 24px;
  border: 1px solid #cbded9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbf8 45%, #fff5e7 72%, #f7eef6 100%);
  box-shadow: 0 20px 54px rgba(22,35,34,.11);
  overflow: hidden;
}
.purchase-moment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(15,111,120,.08) 0 1px, transparent 1px 24px),
    linear-gradient(90deg, rgba(255,255,255,.72), transparent 52%);
  pointer-events: none;
  z-index: 0;
}
.purchase-moment > * {
  position: relative;
  z-index: 1;
}
.moment-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 10px;
}
.moment-copy h2 {
  margin: 0;
  max-width: 420px;
  font-size: 31px;
  line-height: 1.05;
}
.moment-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
}
.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.moment-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 178px;
  padding: 17px;
  border: 1px solid rgba(15,111,120,.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfa 68%, #fff8ed 100%);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(22,35,34,.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.moment-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral), var(--plum));
}
.moment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,111,120,.42);
  box-shadow: 0 20px 44px rgba(22,35,34,.13);
}
.moment-card span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.moment-card strong {
  font-size: 19px;
  line-height: 1.12;
}
.moment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.moment-card em {
  align-self: end;
  color: var(--success);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.moment-card-hot {
  border-color: rgba(255,217,155,.38);
  background:
    linear-gradient(150deg, #112f35 0%, #16454b 60%, #59436d 100%);
  color: #fff;
}
.moment-card-hot span,
.moment-card-hot p {
  color: rgba(255,255,255,.76);
}
.moment-card-hot strong {
  color: #fff;
}
.moment-card-hot em {
  color: #ffd99b;
}
.moment-card-free {
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fbf8 64%, #f7eef6 100%);
}
.confidence-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}
.confidence-ribbon article {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid #cbded9;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f9fcfa 62%, #fff5e7 100%);
  box-shadow: 0 14px 34px rgba(22,35,34,.08);
  overflow: hidden;
}
.confidence-ribbon article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral), var(--plum));
}
.confidence-ribbon span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.confidence-ribbon strong {
  display: block;
  margin: 8px 0 7px;
  font-size: 18px;
  line-height: 1.14;
}
.confidence-ribbon p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.intent-strip {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 22px 0 24px;
  padding: 24px;
  border: 1px solid #cbded9;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbf7 64%, #fff7ec 100%);
  box-shadow: 0 16px 46px rgba(27, 45, 42, .10);
}
.intent-strip h2 { margin: 2px 0 0; }
.revenue-nudge {
  background: linear-gradient(135deg, #ffffff 0%, #eef8f4 52%, #fff4e2 100%);
  border-color: #bfd9d1;
}
.revenue-nudge .trust-microcopy {
  margin: 10px 0 0;
  font-size: 13px;
}
.playbook-conversion-strip {
  display: grid;
  gap: 18px;
  margin: 22px 0 24px;
  padding: 24px;
  border: 1px solid #cbded9;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf8 58%, #fff3e5 100%);
  box-shadow: 0 16px 44px rgba(27, 45, 42, .09);
}
.playbook-conversion-strip h2 {
  margin: 2px 0 0;
}
.playbook-conversion-strip .trust-microcopy {
  max-width: 760px;
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.intent-tile {
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 16px;
  border: 1px solid #d5e5df;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6fbf8);
  color: var(--ink);
  text-decoration: none;
}
.conversion-tile {
  min-height: 164px;
  align-content: start;
  border-color: #c8ded7;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfa 62%, #fff8ee 100%);
}
.intent-tile:hover {
  border-color: rgba(15,111,120,.45);
  box-shadow: 0 12px 28px rgba(15,111,120,.12);
}
.intent-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.intent-tile span, .intent-tile em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.intent-tile strong { line-height: 1.2; }
.intent-tile em { color: var(--success); font-weight: 750; }
.conversion-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.conversion-path article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22,35,34,.07);
}
.conversion-path span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #112f35, #0f6f78);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}
.conversion-path h3 {
  margin-top: 0;
}
.conversion-path p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 10px;
}
.confidence-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(22,35,34,.07);
}
.confidence-grid span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.confidence-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 19px;
}
.confidence-grid p {
  margin: 0;
  color: var(--muted);
}
.decision-magnet {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  margin: 24px 0;
  padding: 24px;
  border: 1px solid #c8ddd7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #102f35 0%, #16454b 48%, #fff1df 48.1%, #ffffff 100%);
  box-shadow: 0 18px 46px rgba(16,47,53,.13);
}
.magnet-copy {
  display: grid;
  align-content: center;
  color: #fff;
}
.magnet-copy .eyebrow { color: #ffd99b; }
.magnet-copy h2 {
  margin: 4px 0 10px;
  font-size: 30px;
  line-height: 1.08;
}
.magnet-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.magnet-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.magnet-panel article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 178px;
  padding: 16px;
  border: 1px solid rgba(16,47,53,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(16,47,53,.08);
}
.magnet-panel span, .mood-card span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.magnet-panel strong {
  font-size: 18px;
  line-height: 1.15;
}
.magnet-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.offer-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
  margin-bottom: 8px;
  padding: 28px;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(105deg, rgba(7,18,22,.98) 0%, rgba(13,45,49,.91) 42%, rgba(45,73,67,.62) 64%, rgba(189,70,92,.34) 100%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 34%),
    url("hero.bmp");
  background-position: center;
  background-size: cover;
  color: #fff;
  box-shadow: 0 34px 92px rgba(16,31,32,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.offer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 56%, rgba(255,255,255,.08) 56% 56.35%, transparent 56.35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 74px);
  pointer-events: none;
  z-index: 0;
}
.offer-hero > div,
.offer-hero-panel {
  position: relative;
  z-index: 1;
}
.offer-hero h1 {
  margin-top: 4px;
  max-width: 780px;
  font-size: 56px;
  line-height: .98;
  color: #fff;
  text-shadow: 0 20px 54px rgba(0,0,0,.34);
}
.offer-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-weight: 650;
}
.offer-hero .eyebrow {
  color: #ffd99b;
}
.offer-hero .trust-microcopy.dark {
  padding: 10px 12px;
  border-left: 4px solid #ffd99b;
  background: rgba(7,18,22,.26);
  color: rgba(255,255,255,.76);
}
.offer-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  max-width: 760px;
}
.offer-proof-row span {
  display: grid;
  gap: 2px;
  min-height: 66px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.80);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.offer-proof-row strong {
  color: #ffd99b;
  font-size: 18px;
  line-height: 1.08;
}
.offer-hero-panel {
  display: grid;
  align-self: start;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  background: rgba(7,18,22,.74);
  color: #fff;
  box-shadow: 0 24px 58px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.fast-offer-stack {
  display: grid;
  gap: 10px;
}
.fast-offer {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}
.fast-offer-primary {
  min-height: 128px;
  padding: 15px;
  border-color: rgba(255,217,155,.48);
  background:
    linear-gradient(145deg, rgba(255,217,155,.22), rgba(255,255,255,.11));
  box-shadow: 0 18px 38px rgba(0,0,0,.20);
}
.fast-offer:hover {
  background: rgba(255,255,255,.14);
}
.fast-offer span, .fast-offer em {
  color: rgba(255,255,255,.72);
  font-style: normal;
  font-size: 12px;
}
.fast-offer strong {
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.fast-offer em {
  color: #ffd99b;
  font-weight: 800;
}
.fast-offer b {
  justify-self: start;
  align-self: end;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #ffd99b;
  color: #102f35;
  font-size: 12px;
  line-height: 1;
}
.fast-offer-more {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255,217,155,.44);
  border-radius: 7px;
  background: rgba(255,217,155,.14);
  color: #ffd99b;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.offer-ladder {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 16px 0 24px;
  padding: 22px;
  border: 1px solid #c8ddd7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5fbf8 46%, #fff2df 100%);
  box-shadow: 0 18px 46px rgba(22,35,34,.10);
}
.ladder-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}
.ladder-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.06;
}
.ladder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ladder-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 176px;
  padding: 18px;
  border: 1px solid #d2e3dd;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(22,35,34,.07);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.ladder-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral));
}
.ladder-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,111,120,.44);
  box-shadow: 0 18px 42px rgba(22,35,34,.12);
}
.ladder-card span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.ladder-card strong {
  font-size: 22px;
  line-height: 1.08;
}
.ladder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.ladder-card-hot {
  color: #fff;
  border-color: rgba(255,217,155,.38);
  background: linear-gradient(150deg, #102f35 0%, #16454b 58%, #59436d 100%);
}
.ladder-card-hot span,
.ladder-card-hot p {
  color: rgba(255,255,255,.76);
}
.ladder-card-hot strong {
  color: #ffd99b;
}
.buyer-mood-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 24px;
}
.mood-card {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid #d3e3dd;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 68%, #fff6e9 100%);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(22,35,34,.07);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.mood-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,111,120,.44);
  box-shadow: 0 16px 38px rgba(22,35,34,.12);
}
.mood-card strong {
  font-size: 18px;
  line-height: 1.15;
}
.mood-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.mood-card em {
  align-self: end;
  color: var(--success);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}
#active-checkout {
  scroll-margin-top: 92px;
}
main :where(section[id], article[id], div[id], h2[id], h3[id]) {
  scroll-margin-top: 92px;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.link-card, .product-card, .article, .side-note {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
}
.link-card {
  min-height: 148px;
  padding: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.link-card:hover, .product-card:hover, .checkout-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,111,120,.42);
  box-shadow: 0 14px 34px rgba(18, 38, 35, .10);
}
.link-card span, .link-card em { display: block; color: var(--muted); font-size: 13px; font-style: normal; }
.link-card strong { display: block; margin: 8px 0; }
.cards { display: grid; gap: 16px; }
.product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22,35,34,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold), var(--coral));
}
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; background: #e8eeee; }
.digital-badge {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 6px;
  background:
    linear-gradient(160deg, #fff4df, #eef8f5 72%);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 38px;
  font-weight: 800;
}
.buyer-service-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
  padding: 22px;
}
.buyer-service-strip h2 { margin-top: 0; }
.buyer-service-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.buyer-service-link {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}
.buyer-service-link span {
  color: var(--accent);
  font-weight: 800;
}
.buyer-service-link div {
  display: grid;
  gap: 2px;
}
.buyer-service-link strong { font-size: 14px; }
.buyer-service-link em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}
.digital-template-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.digital-template-strip h2 { margin-top: 0; }
.template-action-panel {
  display: grid;
  gap: 10px;
  min-height: 180px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  padding: 18px;
}
.template-action-panel strong {
  font-size: 18px;
  line-height: 1.25;
}
.template-action-panel span {
  color: var(--accent);
  font-size: 24px;
  font-weight: 800;
}
.template-cover {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}
.template-cover span, .template-cover em { color: var(--muted); font-style: normal; }
.template-cover strong { font-size: 34px; line-height: 1.1; color: var(--accent); }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
}
.content-grid > *,
.article,
.side-note {
  min-width: 0;
}
.article, .side-note { padding: 22px; }
.narrow { max-width: 820px; margin: 0 auto; }
table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; background: #fff; }
th, td { border-bottom: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: 13px; }
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll table {
  margin-bottom: 12px;
}
details { border-top: 1px solid var(--line); padding: 12px 0; }
summary { cursor: pointer; font-weight: 700; }
.ad-placeholder {
  border: 1px dashed #8ea0a5;
  background: #f5f7f6;
  color: var(--muted);
  padding: 24px 12px;
  text-align: center;
  border-radius: 6px;
}
.muted { color: var(--muted); font-size: 13px; }
.page-title { padding: 34px 0 16px; }
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 8px 0 22px;
}
.status-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 18px;
}
.status-card span, .status-card em { display: block; color: var(--muted); font-size: 13px; font-style: normal; }
.status-card strong { display: block; font-size: 28px; margin: 5px 0; color: var(--accent); }
.share-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 18px;
  align-items: center;
  margin: 18px 0 24px;
  padding: 20px;
  border: 1px solid rgba(240,166,79,.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbf8 62%, #fff8ed 100%);
  box-shadow: 0 14px 36px rgba(22,35,34,.08);
}
.share-panel h2 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.1;
}
.share-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.share-actions .button {
  margin: 0;
}
.checkout-desk {
  border: 1px solid #c8ddd7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 62%, #fff8ed 100%);
  padding: 26px;
  margin: 20px 0 24px;
  box-shadow: 0 18px 48px rgba(20, 42, 38, .10);
}
.checkout-desk-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}
.checkout-desk-head h2 { margin: 0 0 6px; }
.checkout-desk-head .eyebrow {
  grid-row: 1 / span 2;
  align-self: start;
}
.checkout-desk-head h2, .checkout-desk-head p:last-child {
  grid-column: 2;
}
.checkout-desk-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}
.checkout-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.checkout-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(22,35,34,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  overflow: visible;
}
.checkout-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral));
}
.checkout-card > * {
  position: relative;
  z-index: 1;
}
.checkout-card h3, .checkout-card p { margin: 0; }
.checkout-card strong { color: var(--accent); font-size: 26px; }
.checkout-card-soft {
  background:
    linear-gradient(160deg, #102f35 0%, #16454b 64%, #213f46 100%);
  color: #fff;
}
.checkout-card-soft p,
.checkout-card-soft .eyebrow {
  color: rgba(255,255,255,.76);
}
.checkout-card-soft h3,
.checkout-card-soft strong {
  color: #fff;
}
.checkout-card-soft strong {
  color: #ffd99b;
}
.request-only-desk {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #fff5f1 100%);
  border-color: #d7dbe8;
}
.pending-checkout-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}
.priority-reason {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  background: #edf7f3;
  color: #214d47;
  font-size: 12px;
  font-weight: 800;
}
.slot-card.is-hidden {
  display: none;
}
.is-hidden {
  display: none !important;
}
.slot-card-grid {
  align-items: stretch;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.button-row .button {
  margin: 0;
}
.sticky-checkout-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(1120px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(17,47,53,.96);
  color: #fff;
  box-shadow: 0 20px 54px rgba(10, 24, 27, .26);
  backdrop-filter: blur(16px);
}
body.checkout-bar-managed .sticky-checkout-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
body.checkout-bar-managed .sticky-checkout-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
body:has(.sticky-checkout-bar) {
  padding-bottom: 132px;
}
.sticky-checkout-copy {
  display: grid;
  gap: 2px;
}
.sticky-checkout-copy span {
  color: #ffd99b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.sticky-checkout-copy strong {
  font-size: 16px;
  line-height: 1.15;
}
.sticky-checkout-copy em {
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-style: normal;
}
.sticky-checkout-actions {
  display: flex;
  gap: 8px;
  min-width: 0;
  align-items: stretch;
  justify-content: flex-end;
  overflow-x: auto;
  padding-bottom: 1px;
}
.sticky-checkout-offer, .sticky-checkout-more {
  flex: 0 0 auto;
  display: grid;
  gap: 2px;
  min-width: 155px;
  max-width: 220px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 7px;
  background: rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
}
.sticky-checkout-offer:hover, .sticky-checkout-more:hover {
  background: rgba(255,255,255,.16);
}
.sticky-checkout-offer span, .sticky-checkout-offer em {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-style: normal;
}
.sticky-checkout-offer strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.18;
}
.sticky-checkout-offer em {
  color: #ffd99b;
  font-weight: 900;
}
.sticky-checkout-more {
  place-items: center;
  min-width: 96px;
  color: #102f35;
  background: #ffd99b;
  border-color: #ffd99b;
  font-weight: 900;
}
.copy-box {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  background: #f7faf9;
  padding: 14px;
  border-radius: 6px;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
}
.question-builder-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}
.generated-copy {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  min-height: 320px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 68%, #fff7eb 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
}
.tool-action-panel {
  border-color: #c8ddd7;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 58%, #fff4e4 100%);
  box-shadow: 0 14px 36px rgba(22,35,34,.08);
}
.tool-upgrade-panel {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(15,111,120,.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #113139 0%, #126c72 62%, #173f46 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(17,49,57,.18);
}
.tool-upgrade-panel span,
.tool-upgrade-panel em,
.tool-upgrade-panel p {
  color: rgba(255,255,255,.78);
}
.tool-upgrade-panel span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.tool-upgrade-panel strong {
  display: block;
  margin: 3px 0 6px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}
.tool-upgrade-panel p {
  margin: 0;
}
.tool-upgrade-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.tool-upgrade-proof span {
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  background: rgba(255,255,255,.09);
}
.tool-upgrade-proof strong {
  margin: 0;
  color: #ffd99b;
  font-size: 14px;
}
.tool-upgrade-proof em {
  display: block;
  font-size: 11px;
  font-style: normal;
  text-transform: none;
}
.tool-upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool-upgrade-actions .button {
  margin: 0;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 16px 0;
}
.tool-grid label, .checklist label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  min-width: 0;
}
.tool-grid input, .tool-grid select, .field-stack textarea {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field-stack {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.field-stack textarea {
  width: 100%;
  resize: vertical;
}
.request-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.result-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 8px;
  padding: 16px;
  margin: 18px 0;
}
.result-box span {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.fit-readiness span {
  font-size: 22px;
  color: #0f4c5c;
}
.sponsor-fit-shell .generated-copy {
  min-height: 360px;
}
.sponsor-fit-shell .checklist input {
  width: 18px;
  height: 18px;
}
.checklist {
  display: grid;
  gap: 12px;
}
.checklist label {
  grid-template-columns: 22px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-size: 15px;
}
footer { border-top: 1px solid var(--line); padding: 24px clamp(18px, 4vw, 54px); color: var(--muted); background: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 820px) {
  .site-header { align-items: center; padding: 12px 16px; gap: 12px; }
  .brand { flex: 0 0 auto; }
  nav {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 2px;
  }
  nav a { flex: 0 0 auto; white-space: nowrap; }
  main { padding: 18px 16px 44px; }
  .hero, .product-hero, .revenue-hero, .buy-now-hero, .content-grid, .product-card, .buyer-service-strip, .digital-template-strip, .decision-router, .router-step-grid, .router-proof, .purchase-moment, .moment-grid, .confidence-ribbon, .intent-strip, .conversion-path, .confidence-grid, .offer-hero, .offer-proof-row, .decision-magnet, .magnet-panel, .buyer-mood-grid, .buyer-trigger-strip, .checkout-psychology-strip, .offer-ladder, .ladder-grid, .question-builder-shell { grid-template-columns: 1fr; }
  .buy-intent-grid { grid-template-columns: 1fr; }
  .revenue-hero { min-height: auto; padding: 24px 20px; gap: 16px; }
  .revenue-hero h1 { font-size: 36px; line-height: 1; }
  .revenue-hero .hero-lede { font-size: 16px; }
  .revenue-hero .button { width: 100%; margin-right: 0; }
  .hero-pressure-strip { grid-template-columns: 1fr; margin-top: 14px; }
  .hero-pressure-strip a { min-height: auto; }
  .hero-cta-row .button.secondary:not(.ghost) { display: none; }
  .hero-checkout-shelf { display: none; }
  .hero-choice-panel { padding: 14px; }
  .hero-choice-list, .choice-proof-grid { grid-template-columns: 1fr; }
  .choice-proof-grid { gap: 7px; }
  .choice-proof-grid span { min-height: auto; }
  .hero-choice-card { min-height: auto; }
  .buy-signal-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 12px 0 8px;
  }
  .buy-signal-row span {
    display: grid;
    align-content: center;
    gap: 2px;
    min-height: 58px;
    padding: 8px;
    font-size: 11px;
    line-height: 1.2;
  }
  .buy-signal-row strong {
    display: block;
    font-size: 14px;
  }
  .trust-microcopy { margin-bottom: 0; font-size: 12px; line-height: 1.35; }
  .decision-router { padding: 18px; }
  .router-copy h2 { font-size: 26px; }
  .router-result { min-height: auto; padding: 16px; }
  .router-result strong { font-size: 22px; }
  .router-price span { font-size: 30px; }
  .moment-copy { padding: 0; }
  .moment-copy h2 { font-size: 26px; }
  .hero-checkout-shelf, .shelf-offers { grid-template-columns: 1fr; }
  .shelf-head { min-height: 96px; }
  .buy-signal-row span { flex: 1 1 150px; border-radius: 8px; }
  .decision-magnet {
    background: linear-gradient(180deg, #102f35 0%, #16454b 42%, #ffffff 42.1%, #fff8ee 100%);
  }
  .hero-offer-panel { align-self: auto; }
  .hero-lede { font-size: 17px; }
  .hero-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-proof-row span {
    min-width: 0;
    padding: 10px;
  }
  .hero-proof-row strong { font-size: 22px; }
  h1 { font-size: 40px; }
  .buy-now-hero {
    padding: 24px 20px;
    gap: 18px;
  }
  .buy-now-hero h1 {
    font-size: 36px;
    line-height: 1;
  }
  .buy-now-hero .hero-lede {
    font-size: 16px;
    line-height: 1.45;
  }
  .buy-now-hero .hero-cta-row .button {
    width: 100%;
    margin-right: 0;
  }
  .share-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .share-panel h2 {
    font-size: 24px;
  }
  .share-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .share-actions .button {
    width: 100%;
  }
  .live-pay-panel {
    padding: 18px;
  }
  .live-pay-panel strong {
    font-size: 22px;
  }
  .live-pay-panel p {
    font-size: 14px;
    line-height: 1.35;
  }
  .price-line {
    align-items: center;
    padding: 10px 0;
  }
  .price-line span {
    font-size: 30px;
  }
  .offer-hero {
    min-height: auto;
    padding: 22px 20px;
    gap: 16px;
    overflow: visible;
  }
  .offer-hero > div {
    min-width: 0;
  }
  .offer-hero h1 {
    font-size: 39px;
    line-height: 1;
    overflow-wrap: break-word;
  }
  .offer-hero > div > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.42;
  }
  .offer-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .offer-proof-row span {
    min-height: auto;
    padding: 8px;
    font-size: 11px;
  }
  .offer-proof-row strong {
    font-size: 15px;
  }
  .offer-hero-panel {
    padding: 14px;
  }
  .fast-offer {
    min-height: auto;
  }
  .conversion-path article { grid-template-columns: 42px minmax(0, 1fr); min-height: auto; }
  .checkout-desk-head { grid-template-columns: 1fr; }
  .checkout-desk-head .eyebrow, .checkout-desk-head h2, .checkout-desk-head p:last-child {
    grid-column: auto;
    grid-row: auto;
  }
  .sticky-checkout-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 8px;
    width: min(430px, calc(100vw - 16px));
    max-height: none;
    padding: 9px;
  }
  body:has(.sticky-checkout-bar) {
    padding-bottom: 108px;
  }
  .sticky-checkout-copy {
    display: none;
  }
  .sticky-checkout-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 7px;
    justify-content: flex-start;
    overflow: visible;
  }
  .sticky-checkout-actions .sticky-checkout-offer:nth-of-type(n+2) {
    display: none;
  }
  .sticky-checkout-offer, .sticky-checkout-more {
    min-width: 0;
    max-width: none;
    padding: 8px 9px;
  }
  .responsive-table {
    min-width: 0;
  }
  th, td { padding: 9px; font-size: 14px; }
}
@media (max-width: 640px) {
  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 24px rgba(15, 76, 92, 0.08);
  }
  .responsive-table td {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
    gap: 10px;
    border: 0;
    padding: 8px 0;
    overflow-wrap: anywhere;
  }
  .responsive-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
  }
  .table-scroll table:not(.responsive-table) {
    min-width: 620px;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding: 10px 8px;
    gap: 8px;
  }
  .brand {
    max-width: 184px;
    font-size: 16px;
  }
  nav {
    min-width: 0;
  }
  main {
    padding-left: 8px;
    padding-right: 8px;
  }
  .disclosure-strip {
    width: min(100%, 330px);
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: break-word;
  }
  .buy-now-hero,
  .checkout-desk {
    width: min(100%, 374px);
    margin-left: 0;
    margin-right: auto;
  }
  .buy-now-hero {
    padding: 20px 14px;
  }
  .offer-hero {
    padding: 18px 14px;
    gap: 12px;
  }
  .offer-hero h1 {
    max-width: 310px;
    font-size: 30px;
    line-height: 1.05;
  }
  .offer-hero > div > p:not(.eyebrow) {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.38;
  }
  .offer-hero .trust-microcopy.dark,
  .offer-hero .offer-proof-row {
    display: none;
  }
  .offer-hero-panel {
    padding: 14px;
  }
  .fast-offer-stack .fast-offer:nth-of-type(n+2) {
    display: none;
  }
  .fast-offer-more {
    display: flex;
  }
  .buy-now-hero h1 {
    font-size: 32px;
    overflow-wrap: break-word;
  }
  .live-pay-panel,
  .checkout-card {
    min-width: 0;
  }
  .price-line {
    display: grid;
    justify-content: start;
    justify-items: start;
    gap: 4px;
  }
  .price-line em {
    overflow-wrap: anywhere;
  }
  .checkout-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  }
  .checkout-card {
    overflow: visible;
  }
  .checkout-card .button-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .tool-upgrade-proof {
    grid-template-columns: 1fr;
  }
  .tool-upgrade-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .tool-upgrade-actions .button {
    width: 100%;
  }
  .sticky-checkout-bar {
    left: 8px;
    right: auto;
    width: min(374px, calc(100vw - 16px));
    transform: none;
  }
  body.checkout-bar-managed .sticky-checkout-bar {
    transform: translateY(14px);
  }
  body.checkout-bar-managed .sticky-checkout-bar.is-visible {
    transform: translateY(0);
  }
  .sticky-checkout-actions {
    grid-template-columns: minmax(0, 1fr) 84px;
  }
  .sticky-checkout-offer strong,
  .sticky-checkout-offer span,
  .sticky-checkout-offer em {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.checkout-bar-managed .sticky-checkout-bar {
    transition: none;
  }
}
