/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --bg: #f5efe4;
  --bg-warm: #ede4d2;
  --surface: #fbf6ec;
  --ink: #1d1c19;
  --ink-soft: #3a3833;
  --muted: #7a766c;
  --line: #d9d0bf;
  --line-soft: #e6dccb;
  --forest: #2a3d2f;
  --forest-deep: #1a2a1f;
  --terracotta: #c2674a;
  --terracotta-soft: #d98a6e;
  --cream-card: #fff9ee;
  --gold: #b78d3a;

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Helpers ───────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.divider { height: 1px; background: var(--line-soft); width: 100%; }

/* ─── Promo bar ─────────────────────────────────────────── */
.promo-bar {
  background: var(--forest-deep);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 32px;
  text-align: center;
}
.promo-bar .pill {
  background: var(--terracotta);
  color: #fff;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.promo-bar .countdown {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f4e9c8;
}
.promo-bar .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.35); border-radius: 50%; }

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--forest);
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px solid var(--bg);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
}
.logo .tld { color: var(--muted); font-style: italic; font-weight: 400; }
.nav {
  display: flex; gap: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--terracotta); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-deep);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.header-cta:hover { background: var(--terracotta); transform: translateY(-1px); }
.header-cta .arrow { width: 14px; height: 14px; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 84px 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, #efe6d2 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 20%, #e8dcc4 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--forest-deep);
  margin: 18px 0 24px;
}
.hero h1 .italic { font-style: italic; font-weight: 300; color: var(--terracotta); }
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 8px; background: rgba(194,103,74,0.22);
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta .check { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { color: var(--forest); }

/* ─── Code reveal card ──────────────────────────────────── */
.code-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 30px 50px -30px rgba(42,61,47,0.25),
    0 8px 20px -10px rgba(42,61,47,0.12);
}
.code-card::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  pointer-events: none;
}
.code-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.code-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest-deep);
  color: var(--bg);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
}
.code-card-tag .dot-live {
  width: 6px; height: 6px;
  background: #6ec27b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(110,194,123,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110,194,123,0.6); }
  70% { box-shadow: 0 0 0 6px rgba(110,194,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,194,123,0); }
}
.code-card-verified {
  font-size: 12px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.code-card-verified svg { color: var(--forest); }
.code-card .discount-big {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  display: flex; align-items: baseline; gap: 4px;
}
.code-card .discount-big .pct { font-size: 36px; color: var(--terracotta); margin-left: 4px; transform: translateY(-12px); }
.code-card .discount-big .off { font-size: 24px; color: var(--muted); margin-left: 10px; font-style: italic; font-weight: 300; }
.code-card .applies {
  margin-top: 6px;
  font-size: 14px; color: var(--ink-soft);
}
.code-reveal-row {
  margin-top: 22px;
  display: flex; gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  align-items: center;
}
.code-blur {
  flex: 1;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--forest-deep);
  padding: 10px 18px;
  position: relative;
  user-select: none;
}
.code-blur.locked { filter: blur(6px); cursor: pointer; }
.code-blur .copied {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  background: var(--forest-deep); color: var(--bg);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em;
  opacity: 0; transition: opacity .2s, transform .2s;
}
.code-blur.copied-visible .copied { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.reveal-btn, .activate-btn {
  background: var(--forest-deep);
  color: var(--bg);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.reveal-btn:hover, .activate-btn:hover { background: var(--terracotta); }
.code-card .activate-row {
  margin-top: 12px;
  display: flex; gap: 10px;
}
.code-card .activate-row .activate-btn { flex: 1; justify-content: center; padding: 16px; font-size: 14px; }
.code-card .activate-row .copy-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.code-card .activate-row .copy-btn:hover { background: var(--forest-deep); color: var(--bg); border-color: var(--forest-deep); }
.code-card .fine { font-size: 11.5px; color: var(--muted); margin-top: 14px; text-align: center; }

.code-card .terms-row {
  margin-top: 24px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}
.code-card .terms-row strong { display: block; color: var(--ink); font-size: 13px; margin-bottom: 2px; font-weight: 600; }

/* ─── Press strip ───────────────────────────────────────── */
.press {
  padding: 32px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.press-inner {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.press-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
}
.press-logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  opacity: 0.75;
}
.press-logo.uppercase { text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--sans); font-weight: 700; font-size: 13px; }
.press-logo.italic { font-style: italic; }

/* ─── Section base ──────────────────────────────────────── */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin: 14px 0 16px;
}
.section-head h2 .italic { font-style: italic; color: var(--terracotta); font-weight: 300; }
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ─── How it works ──────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: 0 20px 40px -20px rgba(42,61,47,0.25);
}
.how-step .num {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 300;
  color: var(--terracotta);
  font-style: italic;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 18px 0 10px;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}
.how-step p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── Categories ────────────────────────────────────────── */
.cats {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  cursor: pointer;
  transition: transform .25s;
  isolation: isolate;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
}
.cat-card .ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
}
.cat-card .placeholder-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 2;
}
.cat-card h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  position: relative;
  z-index: 2;
}
.cat-card .sub {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 2;
}
.cat-card .arrow-pill {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  background: rgba(255,255,255,0.95);
  color: var(--forest-deep);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  position: relative; z-index: 2;
  transition: background .2s, color .2s;
}
.cat-card:hover .arrow-pill { background: var(--terracotta); color: #fff; }

/* Placeholders — stripey */
.ph-1 { background: repeating-linear-gradient(45deg, #c2b08a, #c2b08a 12px, #b7a47e 12px, #b7a47e 24px); }
.ph-2 { background: repeating-linear-gradient(45deg, #6a7a6e, #6a7a6e 12px, #5e6e62 12px, #5e6e62 24px); }
.ph-3 { background: repeating-linear-gradient(45deg, #c2674a, #c2674a 12px, #b35d40 12px, #b35d40 24px); }
.ph-4 { background: repeating-linear-gradient(45deg, #8e8773, #8e8773 12px, #847d6a 12px, #847d6a 24px); }
.ph-5 { background: repeating-linear-gradient(45deg, #b8a385, #b8a385 12px, #ac987a 12px, #ac987a 24px); }
.ph-6 { background: repeating-linear-gradient(45deg, #3a4a3e, #3a4a3e 12px, #324239 12px, #324239 24px); }

/* ─── Special eligibility ───────────────────────────────── */
.eligibility {
  background: var(--bg-warm);
}
.elig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.elig-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.elig-card:hover { border-color: var(--forest); transform: translateY(-2px); }
.elig-card .icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--forest-deep);
  margin-bottom: 16px;
}
.elig-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.elig-card .group { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.elig-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.elig-card .pill-link {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest-deep);
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color .2s;
}
.elig-card .pill-link:hover { color: var(--terracotta); }

/* ─── Why ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-visual .placeholder-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px;
  background: rgba(255,255,255,0.9); color: var(--forest-deep);
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.why ul.facts {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 18px;
}
.why ul.facts li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.why ul.facts li:last-child { border-bottom: none; }
.why ul.facts strong {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  display: block; margin-bottom: 4px;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.why ul.facts span { font-size: 14.5px; color: var(--ink-soft); }
.why ul.facts .marker {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--terracotta);
  padding-top: 4px;
}

/* ─── Reviews ───────────────────────────────────────────── */
.reviews { background: var(--forest-deep); color: var(--bg); }
.reviews .section-head h2 { color: var(--bg); }
.reviews .section-head h2 .italic { color: var(--terracotta-soft); }
.reviews .section-head p { color: rgba(245,239,228,0.7); }
.reviews .eyebrow { color: rgba(245,239,228,0.55); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rev-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}
.rev-stars { color: #f0c873; letter-spacing: 4px; font-size: 15px; margin-bottom: 14px; }
.rev-card blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.rev-card .who {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: rgba(245,239,228,0.7);
}
.rev-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px;
  font-family: var(--sans);
}
.rev-card .verified-tag {
  font-size: 11px; color: #9ec998;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 2px;
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 820px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { list-style: none; }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  transition: color .2s;
  cursor: pointer;
  user-select: none;
}
.faq-q:hover { color: var(--terracotta); }
.faq-q .plus {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  font-family: var(--sans); font-weight: 300;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-q .plus { background: var(--forest-deep); color: var(--bg); border-color: var(--forest-deep); transform: rotate(45deg); }
.faq-a {
  padding: 0 4px 24px;
  animation: faqOpen .25s ease-out;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-a p { margin: 0 0 12px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; max-width: 640px; }
.faq-a p strong { color: var(--forest-deep); }

/* ─── Final CTA ─────────────────────────────────────────── */
.final-cta {
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(194,103,74,0.18) 0%, transparent 60%),
    var(--bg-warm);
  padding: 120px 0;
}
.final-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.final-inner h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--forest-deep);
  margin: 18px 0 24px;
}
.final-inner h2 .italic { font-style: italic; color: var(--terracotta); font-weight: 300; }
.final-inner p { font-size: 17px; color: var(--ink-soft); max-width: 480px; margin-bottom: 28px; }
.cta-stack { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--forest-deep);
  color: var(--bg);
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border: 1.5px solid var(--forest-deep);
  padding: 16.5px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--forest-deep); color: var(--bg); }

.final-receipt {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 40px -20px rgba(42,61,47,0.18);
}
.receipt-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 12px; margin-bottom: 14px;
}
.receipt-head h5 { font-family: var(--serif); font-size: 19px; margin: 0; font-weight: 500; color: var(--forest-deep); }
.receipt-head span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.receipt-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.receipt-line.savings { color: var(--terracotta); font-weight: 600; }
.receipt-total {
  border-top: 1.5px solid var(--ink);
  padding-top: 10px; margin-top: 10px;
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 22px;
  color: var(--forest-deep); font-weight: 500;
}
.receipt-foot { margin-top: 14px; font-size: 11px; color: var(--muted); text-align: center; letter-spacing: 0.04em; }

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: var(--forest-deep);
  color: rgba(245,239,228,0.75);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
footer h6 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.55);
  margin: 0 0 16px;
  font-weight: 600;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
footer a { transition: color .2s; }
footer a:hover { color: var(--terracotta-soft); }
footer .logo { color: var(--bg); }
footer .logo .tld { color: rgba(245,239,228,0.6); }
footer .blurb { margin-top: 14px; max-width: 320px; font-size: 13px; line-height: 1.6; color: rgba(245,239,228,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 12px; color: rgba(245,239,228,0.5);
  flex-wrap: wrap;
}
.affil-disclosure {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(245,239,228,0.7);
  margin-bottom: 32px;
}

/* ─── Sticky CTA bar ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--forest-deep);
  color: var(--bg);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.35);
  z-index: 100;
  transition: transform .35s ease;
  font-size: 14px;
  max-width: calc(100vw - 32px);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta .label { display: flex; align-items: center; gap: 10px; }
.sticky-cta .pill {
  background: var(--terracotta); color: #fff;
  padding: 3px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
}
.sticky-cta .activate-btn {
  background: var(--bg);
  color: var(--forest-deep);
  padding: 10px 18px;
  font-size: 13px;
}
.sticky-cta .activate-btn:hover { background: var(--terracotta); color: #fff; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-grid, .why-grid, .final-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-grid, .elig-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 64px 0; }
  .how-grid, .elig-grid, .rev-grid, .cat-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
  .code-card { padding: 24px; }
  .code-card .discount-big { font-size: 56px; }
  .promo-bar-inner { font-size: 11px; gap: 10px; padding: 8px 16px; flex-wrap: wrap; }
}


/* ─── Hero offer (no-code version) ──────────────────────── */
.hero-cta-row {
  display: flex; align-items: center; gap: 22px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}
.btn-primary.big { padding: 20px 32px; font-size: 15.5px; }
.btn-primary.full { width: 100%; justify-content: center; padding: 18px; font-size: 14.5px; }
.text-link {
  font-size: 14px;
  color: var(--forest-deep);
  font-weight: 500;
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color .2s;
}
.text-link:hover { color: var(--terracotta); }

.hero-offer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-card);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 30px 60px -30px rgba(42,61,47,0.3),
    0 8px 20px -10px rgba(42,61,47,0.12);
  border: 1px solid var(--line);
}
.offer-image {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #ccc1a8;
}
.offer-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.18) 100%);
}
.offer-stamp {
  position: absolute;
  right: 24px; top: 50%; transform: translateY(-50%);
  width: 170px; height: 170px;
  display: grid; place-items: center;
  z-index: 2;
}
.stamp-rotate {
  position: absolute; inset: 0;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp-inner {
  position: relative; z-index: 2;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--cream-card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.25);
}
.stamp-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.stamp-big {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.03em;
  margin-top: 2px;
  display: inline-flex; align-items: baseline;
}
.stamp-pct {
  font-size: 22px;
  color: var(--terracotta);
  margin-left: 2px;
  transform: translateY(-8px);
}
.stamp-off {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0;
}

.offer-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px 0;
}
.offer-card-body {
  padding: 18px 24px 24px;
}
.no-code-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.no-code-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.no-code-row span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Stamp glyph fix when textPath rotates */
.offer-stamp svg { display: block; }

/* Mobile tweaks */
@media (max-width: 1000px) {
  .offer-stamp { width: 140px; height: 140px; right: 14px; }
  .offer-stamp svg { width: 140px; height: 140px; }
  .stamp-inner { width: 96px; height: 96px; }
  .stamp-big { font-size: 38px; }
}
@media (max-width: 640px) {
  .offer-stamp { width: 120px; height: 120px; right: 10px; }
  .offer-stamp svg { width: 120px; height: 120px; }
  .stamp-inner { width: 80px; height: 80px; }
  .stamp-big { font-size: 32px; }
  .stamp-off { font-size: 9.5px; }
}

/* Hide unused placeholder-tag chips on cat cards */
.cat-card .placeholder-tag { display: none; }
.why-visual .placeholder-tag { display: none; }


/* ─── Skip link (a11y) ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px; left: 8px;
  background: var(--forest-deep);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: 6px;
  z-index: 200;
  font-size: 14px;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ─── Focus states (a11y) ───────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Mobile-first refinements ──────────────────────────── */

/* Mid-tablet ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .wrap { padding: 0 24px; }
  .header-inner { padding: 16px 24px; }
  .nav { gap: 24px; font-size: 13.5px; }
}

@media (max-width: 1000px) {
  /* Hero offer image taller on stacked layout for visual weight */
  .offer-image { aspect-ratio: 16/10; }
}

/* Tablet ───────────────────────────────────────────────── */
@media (max-width: 840px) {
  section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 0; }
  .hero .wrap { padding: 56px 24px 48px !important; }
  .hero-cta-row { gap: 16px; margin: 24px 0 24px; }
  .hero-meta { gap: 16px 18px; font-size: 12.5px; }
  .nav { display: none; }
  .header-cta { padding: 9px 14px; font-size: 12.5px; }
  .promo-bar-inner { gap: 10px; padding: 9px 16px; font-size: 12px; flex-wrap: wrap; }
  .promo-bar .dot { display: none; }
  .final-receipt { padding: 22px; }
}

/* Phone ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 15px; }

  /* Header — denser, prioritize the CTA */
  .header-inner { padding: 14px 18px; gap: 12px; }
  .logo { font-size: 15px; gap: 8px; min-width: 0; }
  .logo span:last-child {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 180px;
  }
  .logo-mark { width: 26px; height: 26px; flex-shrink: 0; }
  .header-cta {
    padding: 10px 14px; font-size: 12.5px;
    min-height: 40px;
  }
  .header-cta .arrow { width: 12px; height: 12px; }

  /* Promo bar — tighter, no countdown wrapping fight */
  .promo-bar-inner { padding: 8px 14px; font-size: 11.5px; gap: 8px; line-height: 1.3; }
  .promo-bar .pill { font-size: 9.5px; padding: 2px 7px; }
  .promo-bar-inner > span:nth-child(2) {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Hero */
  .hero .wrap { padding: 40px 18px 40px !important; }
  .hero h1 { font-size: 44px; line-height: 1.0; }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-primary { justify-content: center; min-height: 52px; }
  .btn-primary.big { padding: 18px; font-size: 15px; }
  .hero-cta-row .text-link { text-align: center; padding: 8px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .hero-meta { gap: 12px 18px; font-size: 12.5px; }

  /* Hero offer — keep the stamp visible but compact */
  .offer-image { aspect-ratio: 5/4; }
  .offer-stamp { width: 110px; height: 110px; right: 12px; top: 50%; }
  .offer-stamp svg { width: 110px; height: 110px; }
  .stamp-inner { width: 76px; height: 76px; }
  .stamp-big { font-size: 28px; }
  .stamp-pct { font-size: 14px; transform: translateY(-4px); }
  .stamp-eyebrow { font-size: 8px; letter-spacing: 0.12em; }
  .stamp-off { font-size: 8.5px; }
  .offer-card-head, .offer-card-body { padding-left: 18px; padding-right: 18px; }
  .no-code-row { padding: 14px; gap: 10px; }
  .no-code-row strong { font-size: 16px; }
  .no-code-row span { font-size: 12.5px; }

  /* How it works — single column readable */
  .how-grid { gap: 14px; }
  .how-step { padding: 24px; }
  .how-step .num { font-size: 52px; }
  .how-step h3 { font-size: 21px; }
  .how-step p { font-size: 14.5px; }

  /* Categories */
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card { padding: 16px; aspect-ratio: 3/4; }
  .cat-card h4 { font-size: 20px; }
  .cat-card .sub { font-size: 11.5px; }
  .cat-card .arrow-pill { padding: 6px 10px; font-size: 11px; margin-top: 10px; }

  /* Eligibility */
  .elig-card { padding: 22px 20px; }
  .elig-card h4 { font-size: 19px; }
  .elig-card p { font-size: 14px; }

  /* Why */
  .why-grid { gap: 32px; }
  .why-visual { aspect-ratio: 4/3; }
  .why ul.facts li { grid-template-columns: 24px 1fr; gap: 12px; padding-bottom: 14px; }
  .why ul.facts strong { font-size: 17px; }
  .why ul.facts span { font-size: 14px; }

  /* Reviews */
  .rev-grid { gap: 14px; }
  .rev-card { padding: 22px; }
  .rev-card blockquote { font-size: 17px; }

  /* FAQ — bigger touch target */
  .faq-q { padding: 20px 4px; font-size: 17px; gap: 14px; min-height: 64px; }
  .faq-q .plus { width: 26px; height: 26px; font-size: 16px; flex-shrink: 0; }
  .faq-a p { font-size: 14.5px; line-height: 1.6; }

  /* Final CTA */
  .final-cta { padding: 72px 0; }
  .final-inner h2 { font-size: 38px; line-height: 1.05; }
  .final-inner p { font-size: 15.5px; }
  .cta-stack { gap: 10px; flex-direction: column; align-items: stretch; }
  .btn-ghost { padding: 15px 20px; text-align: center; min-height: 52px; }
  .final-receipt { padding: 20px; }
  .receipt-head h5 { font-size: 17px; }
  .receipt-total { font-size: 19px; }

  /* Footer */
  .footer-grid { gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11.5px; }
  .affil-disclosure { padding: 14px; font-size: 12px; }

  /* Sticky CTA — compact, doesn't cover content */
  .sticky-cta {
    bottom: 16px;
    padding: 8px 8px 8px 16px;
    gap: 12px;
    font-size: 12.5px;
    border-radius: 999px;
  }
  .sticky-cta .label { gap: 8px; }
  .sticky-cta .pill { font-size: 9.5px; padding: 2px 7px; }
  .sticky-cta .activate-btn { padding: 8px 14px; font-size: 12px; min-height: 36px; }

  /* All tappable buttons — ensure 44px min tap target */
  .pill-link { min-height: 44px; display: inline-flex; align-items: center; }
  .header-cta, .btn-primary, .activate-btn, .btn-ghost { min-height: 44px; }

  /* Press strip */
  .press { padding: 22px 0; }
  .press-inner { gap: 22px; }
  .press-logo { font-size: 14px; }
  .press-logo.uppercase { font-size: 11px; }
  .press-label { font-size: 14px; width: 100%; text-align: center; margin-bottom: 4px; }
}

/* Very small phone ──────────────────────────────────────── */
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .section-head h2 { font-size: 32px; }
  .final-inner h2 { font-size: 32px; }
  .header-cta .arrow { display: none; }
}

/* Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ─── Logo responsive variants ──────────────────────────── */
.logo-text { display: inline-flex; align-items: baseline; gap: 0; white-space: nowrap; }
.logo-short, .logo-mini { display: none; }
.logo-full { display: inline; }

@media (max-width: 640px) {
  .logo { font-size: 16px; gap: 8px; }
  .logo-full { display: none; }
  .logo-short { display: inline; }
  .logo .tld { font-size: 13px; }
}
@media (max-width: 420px) {
  .logo-short { display: none; }
  .logo-full, .logo-mini { display: none; }
  .logo-text::before {
    content: "Cozy Earth";
    font-family: var(--serif);
    font-weight: 500;
  }
  .logo .tld { display: none; }
  .logo { font-size: 15px; }
}

/* Remove the old logo span max-width clip — handled by variants now */
@media (max-width: 640px) {
  .logo span:last-child {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }
}


/* ─── Category pill variants ────────────────────────────── */
.pill-short { display: none; }
.pill-full { display: inline; }
@media (max-width: 840px) {
  .pill-full { display: none; }
  .pill-short { display: inline; }
}
@media (max-width: 420px) {
  .pill-short { display: none; }
  .cat-card .arrow-pill { padding: 6px 10px; font-size: 11.5px; }
  .cat-card .arrow-pill::before {
    content: "20% off";
  }
}
