
: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;
  --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, #fbfcf7 0, #eef6f2 520px, #f8faf8 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[href$="offers.html"] {
  background: #112f35;
  color: #fff;
}
nav a[href$="offers.html"]: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, .95fr) 360px;
  gap: 34px;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 8px;
  padding: 28px 40px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(13, 24, 27, .95) 0%, rgba(15, 48, 54, .90) 54%, rgba(15, 111, 120, .38) 100%),
    url("hero.bmp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-strong);
}
.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: 650px;
  position: relative;
  z-index: 1;
}
.revenue-hero .eyebrow { color: #f0b36a; }
.hero-lede {
  max-width: 680px;
  font-size: 17px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.hero-cta-row, .hero-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 12px;
}
.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;
}
.trust-microcopy {
  max-width: 640px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.trust-microcopy.dark {
  color: var(--muted);
  max-width: 760px;
}
.hero-buy {
  background: linear-gradient(135deg, var(--gold), #ffd99b);
  color: #17201c;
  box-shadow: 0 14px 30px rgba(240,166,79,.24);
}
.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: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  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);
}
.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);
}
.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 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: 50px;
}
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);
}
.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;
}
.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: 42px;
  height: 42px;
  border-radius: 8px;
  background: #112f35;
  color: #fff;
  font-weight: 900;
}
.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%, #fbf3e4 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,.92);
  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 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 20px;
  padding: 34px;
  border: 1px solid rgba(207,222,217,.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5fbf8 55%, #fff5e6 100%);
  box-shadow: var(--shadow);
}
.offer-hero h1 {
  margin-top: 4px;
  max-width: 780px;
}
.offer-hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #d2e3de;
  border-radius: 8px;
  background: #102f35;
  color: #fff;
  box-shadow: 0 18px 42px rgba(16,47,53,.20);
}
.fast-offer-stack {
  display: grid;
  gap: 10px;
}
.fast-offer {
  display: grid;
  gap: 5px;
  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: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;
}
.fast-offer em {
  color: #ffd99b;
  font-weight: 800;
}
.buyer-mood-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 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;
}
.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;
}
.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; }
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); }
.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 {
  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;
}
.checkout-card h3, .checkout-card p { margin: 0; }
.checkout-card strong { color: var(--accent); font-size: 26px; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.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));
  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:has(.sticky-checkout-bar) {
  padding-bottom: 94px;
}
.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;
  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;
}
.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;
}
.tool-grid input, .tool-grid select, .field-stack textarea {
  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);
}
.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, .intent-strip, .conversion-path, .confidence-grid, .offer-hero, .decision-magnet, .magnet-panel, .buyer-mood-grid { grid-template-columns: 1fr; }
  .buy-intent-grid { grid-template-columns: 1fr; }
  .revenue-hero { min-height: auto; padding: 30px 24px; }
  .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; }
  .offer-hero { padding: 24px; }
  .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;
    padding: 9px;
  }
  body:has(.sticky-checkout-bar) {
    padding-bottom: 86px;
  }
  .sticky-checkout-copy {
    display: none;
  }
  .sticky-checkout-actions {
    justify-content: flex-start;
  }
  .sticky-checkout-offer {
    min-width: 176px;
  }
  th, td { padding: 9px; font-size: 14px; }
}
