/* ============================================================
   PCH Deals · landing page styles
   Warm paper base, confident orange, two espresso-dark bands.
   ============================================================ */

:root {
  --paper: #FCF8F1;
  --card: #FFFFFF;
  --ink: #231913;
  --ink-soft: #5C4A39;
  --muted: #7C6A58;
  --line: #EEE1D0;
  --line-strong: #E2D1BC;

  --orange: #F26F0D;
  --orange-bright: #FF8A2B;
  --orange-deep: #D95B04;
  --orange-text: #BC5106;
  --orange-tint: #FFEDDA;
  --orange-faint: #FFF6EB;
  --peach: #FFD9B4;
  --gold: #E9A20C;
  --live: #E5484D;

  --dark: #221510;
  --dark-2: #2E1D12;
  --dark-card: rgba(255, 255, 255, 0.055);
  --dark-line: rgba(255, 255, 255, 0.13);
  --dark-text: #F8EFE3;
  --dark-muted: #C7B29C;
  --orange-on-dark: #FF9A4D;

  --font-display: "Bricolage Grotesque", "Avenir Next", sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", sans-serif;

  --radius-lg: 22px;
  --radius: 16px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(48, 31, 18, 0.06), 0 4px 14px -8px rgba(48, 31, 18, 0.1);
  --shadow-md: 0 2px 4px rgba(48, 31, 18, 0.05), 0 16px 36px -18px rgba(48, 31, 18, 0.22);
  --shadow-lg: 0 4px 8px rgba(48, 31, 18, 0.05), 0 32px 64px -28px rgba(48, 31, 18, 0.3);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--peach); color: var(--ink); }
[id] { scroll-margin-top: 92px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 10px; font-weight: 600; transition: top 0.2s;
}
.skip-link:focus-visible { top: 12px; }

:focus-visible {
  outline: 3px solid rgba(242, 111, 13, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }

.ic { width: 1.1em; height: 1.1em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mono { font-variant-numeric: tabular-nums; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 5.6vw, 4.35rem); font-weight: 800; line-height: 1.01; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.9rem); line-height: 1.08; }
h3 { font-size: 1.28rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--orange-text);
  margin-bottom: 16px;
}
.eyebrow .ic { width: 0.95rem; height: 0.95rem; }
.eyebrow-light { color: var(--orange-on-dark); }

.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.6; color: var(--ink-soft); max-width: 54ch; }
.lede-balance { text-wrap: balance; }
.dark-section .lede { color: var(--dark-muted); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 44px;
}
.section-head-center { flex-direction: column; align-items: center; text-align: center; }
.head-note { color: var(--muted); font-size: 0.98rem; max-width: 24ch; text-align: right; padding-bottom: 6px; }
.head-disclosure { font-size: 0.78rem; color: var(--muted); opacity: 0.72; text-align: right; max-width: 34ch; padding-bottom: 10px; text-wrap: balance; }
.section-head-center .head-disclosure { text-align: center; max-width: none; padding-bottom: 0; margin-top: 10px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.98rem; color: var(--orange-text);
  text-decoration: none; padding-bottom: 6px; white-space: nowrap;
}
.link-arrow .ic { transition: transform 0.25s; }
.link-arrow:hover .ic { transform: translateX(4px); }
.link-arrow-light { color: var(--orange-on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 650; font-size: 0.96rem; line-height: 1;
  padding: 0.85em 1.5em; border-radius: 999px; border: 0;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn .ic { width: 1em; height: 1em; }

.btn-primary {
  background: linear-gradient(180deg, var(--orange-bright), var(--orange) 55%, #E45F04);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 24px -10px rgba(230, 96, 7, 0.65);
}
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 30px -10px rgba(230, 96, 7, 0.75); transform: translateY(-1px); }
.btn-primary .ic { transition: transform 0.25s; }
.btn-primary:hover .ic { transform: translateX(3px); }

.btn-outline { background: rgba(255, 255, 255, 0.6); border: 1.5px solid var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange-text); background: #fff; }

.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { background: var(--orange-tint); color: var(--ink); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }

.btn-light { background: #fff; color: var(--orange-deep); box-shadow: 0 12px 28px -12px rgba(60, 20, 0, 0.5); }
.btn-light:hover { transform: translateY(-1px); background: var(--orange-faint); }

.btn-lg { font-size: 1.03rem; padding: 1em 1.65em; }
.btn-block { width: 100%; }
.btn-card {
  width: 100%; margin-top: 13px; font-size: 0.88rem; padding: 0.78em 1em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.btn-card:hover { transform: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 8px 18px -8px rgba(230, 96, 7, 0.6); }

/* ---------- Topbar ---------- */
.topbar { background: var(--dark); color: #E4D4C0; font-size: 0.86rem; }
.topbar p { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; padding: 9px 16px; }
.topbar strong { font-weight: 650; }
.topbar a { color: var(--orange-on-dark); font-weight: 650; text-underline-offset: 3px; }
.topbar a:hover { color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 248, 241, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(48, 31, 18, 0.35); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo { display: block; height: 44px; width: auto; }
.brand-mark { width: 38px; height: 38px; }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-word em { font-style: normal; margin-left: 1px; }

.nav-links { display: flex; gap: 28px; margin-inline: auto; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; padding: 6px 0; transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 0; }
.signin { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; padding: 6px 0; transition: color 0.15s; }
.signin:hover { color: var(--ink); }

.menu-btn {
  display: none; width: 42px; height: 42px; border: 1.5px solid var(--line-strong);
  border-radius: 12px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-btn .ic { width: 20px; height: 20px; }
.menu-btn .ic-close { display: none; }
.nav-open .menu-btn .ic-menu { display: none; }
.nav-open .menu-btn .ic-close { display: block; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu a { text-decoration: none; font-weight: 600; font-size: 1.05rem; padding: 12px 0; color: var(--ink); }
.mobile-menu .btn { margin-top: 10px; }
.nav-open .mobile-menu { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(820px 480px at 8% -12%, rgba(255, 138, 43, 0.24), transparent 62%),
    radial-gradient(720px 500px at 94% 4%, rgba(255, 176, 102, 0.26), transparent 60%),
    radial-gradient(600px 400px at 55% 118%, rgba(255, 210, 165, 0.3), transparent 65%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); background-size: 180px;
  opacity: 0.14; mix-blend-mode: multiply;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: 48px; align-items: center; padding: 72px 0 96px;
}
.hero-copy .lede { margin-top: 22px; text-wrap: balance; }
.hl { position: relative; color: var(--orange-deep); }
.hl-swash {
  position: absolute; left: -2%; right: -2%; bottom: -0.16em;
  width: 104%; height: 0.22em; color: var(--orange);
  opacity: 0.45; stroke-linecap: round;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-checks {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px;
  padding: 0; list-style: none;
}
.hero-checks li { display: flex; align-items: center; gap: 9px; font-size: 0.93rem; font-weight: 600; color: var(--ink-soft); }
.hero-checks .ic { width: 1rem; height: 1rem; color: var(--orange-deep); stroke-width: 2.6; }
.flag { width: 1.35em; height: 0.96em; flex: none; border-radius: 2px; box-shadow: 0 1px 3px rgba(35, 25, 19, 0.18); }
.hero-disclosure {
  position: absolute; left: 0; bottom: 26px; margin: 0;
  font-size: 0.78rem; color: var(--muted); opacity: 0.72;
}

/* Hero stage collage */
.hero-stage { position: relative; height: 540px; }
.stage-card { position: absolute; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.stage-main {
  width: min(320px, 78%); right: 0; top: 56px;
  transform: rotate(2.2deg);
  border: 1px solid var(--line);
  overflow: hidden;
  animation: floatY 7s ease-in-out infinite;
}
.stage-main .tile { height: 216px; border-radius: 0; }
.stage-main-body { padding: 18px 20px 20px; }

.stage-sold {
  left: 0; top: 6px; transform: rotate(-3deg);
  display: flex; align-items: center; gap: 12px;
  background: var(--dark); color: var(--dark-text);
  padding: 14px 18px; border-radius: 14px;
  animation: floatY 8s ease-in-out 0.6s infinite;
}
.stage-sold .ic { color: var(--orange-on-dark); width: 1.25rem; height: 1.25rem; }
.stage-sold strong { display: block; font-size: 0.88rem; }
.stage-sold span { font-size: 0.8rem; color: var(--dark-muted); }

.stage-live {
  left: -8px; bottom: 30px; width: 244px;
  transform: rotate(-2deg); padding: 18px 20px;
  border: 1px solid var(--line);
  animation: floatY 6.4s ease-in-out 1.1s infinite;
}
.stage-live .prod-name { margin: 8px 0 10px; }
.stage-bid { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stage-bid .bid-amount { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--orange-deep); }
.stage-timer { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 650; color: var(--ink-soft); background: var(--orange-tint); padding: 6px 10px; border-radius: 999px; }
.stage-timer .ic { width: 0.9rem; height: 0.9rem; color: var(--orange-deep); }
.stage-timer .countdown { font-variant-numeric: tabular-nums; }

.burst {
  position: absolute; right: -10px; bottom: 226px; width: 116px; height: 116px;
  color: var(--orange); display: grid; place-items: center;
  transform: rotate(9deg);
  filter: drop-shadow(0 14px 22px rgba(230, 96, 7, 0.4));
  animation: floatY 5.6s ease-in-out 0.3s infinite;
}
.burst svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.burst span {
  position: relative; color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.06rem; line-height: 1.05; text-align: center;
  text-transform: uppercase; letter-spacing: 0.02em;
}

@keyframes floatY {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* ---------- Ticker ---------- */
.ticker {
  display: flex; align-items: center;
  background: #fff; border-block: 1px solid var(--line);
}
.ticker-label {
  flex: none; display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink); padding: 16px 26px; border-right: 1px solid var(--line);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--live);
  box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.5);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.45); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(229, 72, 77, 0); }
}
.marquee {
  overflow: hidden; flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: scrollX 90s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 48px; padding-right: 48px; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.tick { font-size: 0.93rem; color: var(--muted); white-space: nowrap; }
.tick strong { color: var(--ink); font-weight: 650; }
.tick em { font-style: normal; color: var(--orange-text); font-weight: 700; }

/* ---------- Sections rhythm ---------- */
.deals { padding: 96px 0 8px; }
.cats { padding: 72px 0 104px; }
.how { padding: 104px 0 72px; background: #fff; border-top: 1px solid var(--line); }
.quotes { padding: 64px 0 104px; background: linear-gradient(180deg, #FFFFFF, var(--paper)); }
.faq { padding: 96px 0 112px; background: #fff; border-top: 1px solid var(--line); }
.cta-final { padding: 0 0 120px; background: linear-gradient(180deg, #fff, var(--paper) 30%); }

.dark-section { position: relative; background: var(--dark); color: var(--dark-text); overflow: hidden; }
.dark-section::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); background-size: 180px; opacity: 0.16;
}
.dark-section h2 { color: var(--dark-text); }

/* ---------- Categories ---------- */
.cat-row {
  display: flex; gap: 12px; overflow-x: auto; padding: 4px 4px 20px;
  scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.cat-chip {
  flex: 1 0 128px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cat-chip:hover { transform: translateY(-3px); border-color: var(--peach); box-shadow: var(--shadow-md); }
.cat-ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--orange-faint); color: var(--orange-deep);
  display: grid; place-items: center;
}
.cat-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cat-name { font-weight: 650; font-size: 0.98rem; color: var(--ink); }
.cat-count { font-size: 0.82rem; color: var(--muted); margin-top: -6px; }

/* ---------- Deal cards ---------- */
.deal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.deal-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.deal-card .tile { flex: none; }
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.tile { position: relative; display: grid; place-items: center; height: 188px; border-radius: 0; overflow: hidden; }
.tile-a { background: linear-gradient(140deg, #FFE9D3, #FFD3A6); }
.tile-b { background: linear-gradient(140deg, #FFF3DF, #FFE0B4); }
.tile-c { background: linear-gradient(140deg, #F4ECE0, #E7D9C6); }
.tile-d { background: linear-gradient(140deg, #33210F, #4A2F16); }
.tile-e { background: linear-gradient(140deg, #F9EBD1, #EFD4A4); }
.p-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 7.5%; box-sizing: border-box;
  filter: drop-shadow(0 16px 20px rgba(70, 35, 8, 0.25));
}
.tile-d .p-img { filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5)); }

.pill {
  position: absolute; top: 12px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 5px 10px; border-radius: 999px;
}
.pill-off { left: 12px; background: rgba(255, 255, 255, 0.94); color: var(--orange-deep); box-shadow: var(--shadow-sm); }
.pill-note { right: 12px; background: var(--dark); color: var(--dark-text); }
.pill-hot { background: var(--orange); color: #fff; }

.deal-body { display: flex; flex-direction: column; flex: 1; padding: 15px 18px 18px; }
.deal-body .btn-card { margin-top: auto; }
.deal-body .price-row { margin-bottom: 13px; }
.prod-name { font-weight: 650; font-size: 0.97rem; line-height: 1.35; color: var(--ink); }
.rating { display: flex; align-items: center; gap: 5px; font-size: 0.83rem; font-weight: 600; color: var(--ink-soft); margin-top: 7px; }
.verified { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; font-weight: 600; color: var(--ink-soft); margin-top: 7px; }
.vbadge { width: 1rem; height: 1rem; flex: none; color: var(--orange); }
.rating span { color: var(--muted); font-weight: 500; }
.star { width: 0.92rem; height: 0.92rem; color: var(--gold); stroke: none; }
.rating-row { gap: 2px; }

.price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 9px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-weight: 800; font-size: 1.42rem; letter-spacing: -0.01em; }
.was { color: var(--muted); font-size: 0.9rem; }
.ship { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 650; color: var(--orange-text); background: var(--orange-faint); padding: 4px 9px; border-radius: 999px; }
.ship .ic { width: 0.85rem; height: 0.85rem; }

.stock { margin-top: 12px; }
.stock span {
  display: block; height: 6px; border-radius: 999px;
  background:
    linear-gradient(90deg, var(--orange-bright), var(--orange-deep)) 0 0 / var(--w, 50%) 100% no-repeat,
    var(--orange-tint);
}
.stock em { display: block; font-style: normal; font-size: 0.76rem; font-weight: 650; color: var(--orange-text); margin-top: 6px; }

/* ---------- Perks strip ---------- */
.perks {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 56px 0 0; padding: 0; list-style: none;
}
.perks li {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px;
}
.perks .ic { width: 24px; height: 24px; color: var(--orange-deep); stroke-width: 1.8; }
.perks strong { display: block; font-size: 0.94rem; }
.perks span { font-size: 0.84rem; color: var(--muted); }

/* ---------- Credit band ---------- */
.credit {
  background:
    radial-gradient(760px 460px at 88% 12%, rgba(242, 111, 13, 0.28), transparent 62%),
    radial-gradient(600px 400px at -6% 100%, rgba(242, 111, 13, 0.14), transparent 60%),
    var(--dark);
}
.credit-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 72px; align-items: center; padding: 116px 0;
}
.coupon-wrap { position: relative; display: grid; place-items: center; }
.coupon-glow {
  position: absolute; inset: 12% 6%;
  background: rgba(242, 111, 13, 0.4); filter: blur(70px); border-radius: 50%;
}
.coupon {
  position: relative; z-index: 1; width: min(430px, 100%);
  display: flex; border-radius: 22px; transform: rotate(-4deg);
  background: linear-gradient(135deg, #FF9E3F, #F06504 70%);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: floatY 7.5s ease-in-out infinite;
}
.coupon::before, .coupon::after {
  content: ""; position: absolute; right: 86px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--dark); transform: translateX(50%);
}
.coupon::before { top: -12px; }
.coupon::after { bottom: -12px; }
.coupon-main { flex: 1; padding: 34px 30px 30px; color: #fff; }
.coupon-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; opacity: 0.9; }
.coupon-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(4.6rem, 8vw, 6.4rem); line-height: 1; margin: 8px 0 10px; letter-spacing: -0.03em; }
.coupon-amount sup { font-size: 0.42em; vertical-align: 0.85em; margin-right: 2px; }
.coupon-sub { font-size: 0.92rem; opacity: 0.92; max-width: 24ch; }
.coupon-stub {
  width: 86px; border-left: 2px dashed rgba(255, 255, 255, 0.55);
  display: grid; place-items: center;
}
.coupon-stub span {
  writing-mode: vertical-rl; font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.32em; font-size: 0.82rem; color: rgba(255, 255, 255, 0.85);
}

.credit-steps { list-style: none; padding: 0; margin: 30px 0 34px; display: flex; flex-direction: column; gap: 16px; }
.credit-steps li { display: flex; align-items: center; gap: 16px; }
.credit-steps li > span {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--dark-line); color: var(--orange-on-dark);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.credit-steps strong { display: block; font-size: 1rem; color: var(--dark-text); }
.credit-steps em { font-style: normal; font-size: 0.88rem; color: var(--dark-muted); }
.fine { font-size: 0.82rem; color: var(--dark-muted); margin-top: 14px; }
.fine a { color: inherit; text-underline-offset: 3px; }

/* ---------- Live bits (hero auction card) ---------- */
.live-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--live);
}
.bid-amount { transition: color 0.3s; }
.bump { animation: bumpPop 0.55s ease; }
@keyframes bumpPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.16); color: var(--orange); }
  100% { transform: scale(1); }
}

/* ---------- How it works ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  list-style: none; padding: 0; margin: 0;
}
.steps li { position: relative; border-top: 2px solid var(--line); padding-top: 24px; }
.steps li::before {
  content: ""; position: absolute; top: -2px; left: 0;
  width: 56px; height: 2px; background: var(--orange);
}
.step-num {
  display: inline-block; font-family: var(--font-display); font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.12em; color: var(--orange-deep);
  margin-bottom: 12px;
}
.steps h3 { margin-bottom: 9px; }
.steps p { color: var(--muted); font-size: 0.99rem; line-height: 1.62; }


/* ---------- Heritage ---------- */
.heritage {
  background:
    radial-gradient(700px 460px at 0% 0%, rgba(242, 111, 13, 0.2), transparent 60%),
    var(--dark);
}
.heritage-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 72px; align-items: center; padding: 116px 0;
}
.heritage-copy .lede { margin-top: 20px; }
.heritage-copy .link-arrow { margin-top: 26px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  background: var(--dark-card); border: 1px solid var(--dark-line);
  border-radius: 18px; padding: 26px 24px;
}
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 2.6vw, 2.45rem); line-height: 1; color: var(--orange-on-dark); letter-spacing: -0.02em; }
.stat > span { display: block; margin-top: 8px; font-size: 0.9rem; color: var(--dark-muted); }

/* ---------- Quotes ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; display: flex; flex-direction: column;
}
.quote-card .rating-row { margin-bottom: 16px; }
.quote-card blockquote { font-size: 1.04rem; line-height: 1.6; color: #40342A; margin-bottom: 22px; }
.quote-card figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 0.82rem;
}
.av-a { background: linear-gradient(135deg, #FFD9B4, #FF9A4D); color: #7A3708; }
.av-b { background: var(--dark); color: var(--orange-on-dark); }
.av-c { background: linear-gradient(135deg, #FFEDDA, #FFC98F); color: #96490B; }
.quote-card figcaption strong { display: block; font-size: 0.94rem; }
.quote-card figcaption span:not(.avatar) { display: block; font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.faq-intro .lede { margin: 14px 0 22px; font-size: 1.02rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 2px; cursor: pointer; list-style: none;
  font-weight: 650; font-size: 1.04rem; color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-text); }
.faq-item summary .ic { flex: none; width: 1.15rem; height: 1.15rem; color: var(--muted); transition: transform 0.3s, color 0.2s; }
.faq-item[open] summary { color: var(--orange-text); }
.faq-item[open] summary .ic { transform: rotate(180deg); color: var(--orange-deep); }
.faq-body { overflow: hidden; }
.faq-body p { padding: 0 2px 22px; color: var(--muted); font-size: 0.98rem; line-height: 1.66; max-width: 62ch; }
.faq-item[open] .faq-body p { animation: faqIn 0.35s ease; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- The big check (also used on /check) ---------- */
.cta-check-wrap { display: grid; place-items: center; }
.cta-check {
  position: relative; width: min(720px, 100%);
  background:
    repeating-linear-gradient(0deg, rgba(242, 111, 13, 0.04) 0 1px, transparent 1px 8px),
    #FFFDF8;
  border: 1px solid var(--line-strong); border-radius: 18px;
  padding: 32px 38px 20px; transform: rotate(-1.2deg);
  box-shadow: var(--shadow-lg);
}
.check-top { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.check-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark-sm { width: 36px; height: 36px; flex: none; }
.check-brand strong { display: block; font-family: var(--font-display); font-size: 1rem; line-height: 1.2; }
.check-brand span { font-size: 0.78rem; color: var(--muted); }
.check-no { text-align: right; font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.check-no span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; color: var(--muted); margin-top: 3px; }
.check-payline {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  border-bottom: 2px solid var(--ink); padding-bottom: 12px;
}
.check-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.check-payee { font-family: "Caveat", "Bradley Hand", cursive; font-size: 2.5rem; line-height: 0.9; color: var(--ink); }
.check-amount {
  margin-left: auto; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem;
  color: var(--orange-deep); background: var(--orange-faint);
  border: 1.5px solid var(--peach); border-radius: 10px; padding: 3px 14px;
}
.check-words { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: 0.95rem; color: var(--ink-soft); }
.check-words span { flex: 1; border-bottom: 1.5px dashed var(--line-strong); }
.check-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-top: 30px; }
.check-memo { font-size: 0.92rem; color: var(--ink-soft); }
.check-memo .check-label { margin-right: 6px; }
.check-sig {
  font-family: "Caveat", "Bradley Hand", cursive; font-size: 2.1rem; line-height: 1; color: var(--ink);
  transform: rotate(-3deg); border-bottom: 1.5px solid var(--line-strong); padding: 0 20px 4px;
}
.check-micr { margin-top: 18px; font-family: "SF Mono", ui-monospace, Menlo, monospace; font-size: 0.85rem; letter-spacing: 0.32em; color: var(--muted); }
.cta-check-actions { text-align: center; margin-top: 34px; }
.cta-check-actions .fine { color: var(--muted); margin-top: 14px; }

/* ---------- Prize shelf collage (final CTA) ---------- */
.cta-collage {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, #FFF9F1, #FFEBD4);
  border: 1px solid #F4CFA4; border-radius: 32px;
  padding: 100px 32px 92px;
}
.cta-collage h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 800; }
.cta-collage > p { color: var(--ink-soft); font-size: 1.06rem; max-width: 44ch; margin: 14px auto 30px; text-wrap: balance; }
.cta-collage .fine { color: var(--muted); margin-top: 16px; }
.float { position: absolute; pointer-events: none; filter: drop-shadow(0 18px 22px rgba(70, 35, 8, 0.28)); }
.f1 { width: 118px; top: 40px; left: 6%; transform: rotate(-10deg); }
.f2 { width: 88px; top: 46px; right: 7%; transform: rotate(9deg); }
.f3 { width: 150px; bottom: 34px; left: 4.5%; transform: rotate(6deg); }
.f4 { width: 140px; bottom: 30px; right: 5%; transform: rotate(-7deg); }
.f5 { width: 132px; top: -34px; left: 24%; transform: rotate(12deg); }

/* ---------- Scroll nudge ---------- */
.nudge {
  position: fixed; z-index: 120; right: 24px; bottom: 24px; width: 372px;
  background: var(--dark); color: var(--dark-text);
  border: 1px solid rgba(242, 111, 13, 0.35); border-radius: 24px;
  padding: 22px 22px 24px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.55), 0 0 60px -18px rgba(242, 111, 13, 0.55);
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nudge.show { opacity: 1; transform: none; }
.nudge { cursor: pointer; }
.nudge-close {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--dark-line); background: rgba(0, 0, 0, 0.25);
  color: var(--dark-muted); cursor: pointer; display: grid; place-items: center;
}
.nudge-close:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.nudge-close .ic { width: 11px; height: 11px; }
.mini-check {
  background:
    repeating-linear-gradient(0deg, rgba(242, 111, 13, 0.05) 0 1px, transparent 1px 7px),
    #FFFDF8;
  color: var(--ink);
  border-radius: 14px; padding: 16px 18px 13px;
  transform: rotate(1.6deg);
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.55);
  animation: checkWiggle 3.4s ease-in-out infinite;
}
@keyframes checkWiggle {
  0%, 100% { transform: rotate(-1.3deg) translateY(0); }
  50% { transform: rotate(1.3deg) translateY(-3px); }
}
.mini-check-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mini-mark { width: 26px; height: 27px; }
.mini-no { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--ink-soft); }
.mini-payline { display: flex; align-items: baseline; gap: 10px; border-bottom: 1.5px solid var(--ink); padding-bottom: 8px; }
.mini-payee { font-family: "Caveat", "Bradley Hand", cursive; font-size: 1.7rem; line-height: 0.9; }
.mini-amount {
  margin-left: auto; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  color: var(--orange-deep); background: var(--orange-faint);
  border: 1px solid var(--peach); border-radius: 8px; padding: 2px 9px;
}
.mini-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 9px; }
.mini-memo { font-size: 0.76rem; color: var(--ink-soft); }
.mini-memo .check-label { margin-right: 4px; }
.mini-sig { font-family: "Caveat", "Bradley Hand", cursive; font-size: 1.25rem; line-height: 1; transform: rotate(-3deg); }
.nudge-title { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: #fff; margin-top: 16px; }
.nudge-sub { font-size: 0.9rem; color: var(--dark-muted); margin: 2px 0 14px; }
.nudge-btn {
  width: 100%; font-size: 1.08rem;
  animation: nudgeGlow 2.2s ease-in-out infinite;
}
@keyframes nudgeGlow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 26px -8px rgba(242, 111, 13, 0.7); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 40px -4px rgba(255, 138, 43, 0.95); }
}
@media (max-width: 640px) {
  .nudge {
    right: 0; left: 0; bottom: 0; width: auto;
    border-radius: 24px 24px 0 0; border-left: 0; border-right: 0; border-bottom: 0;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
    transform: translateY(100%);
  }
  .nudge.show { transform: none; }
}

/* ---------- /check page ---------- */
.check-page { min-height: 100svh; display: flex; flex-direction: column; }
.check-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(820px 480px at 10% -10%, rgba(255, 138, 43, 0.22), transparent 62%),
    radial-gradient(720px 500px at 92% 6%, rgba(255, 176, 102, 0.24), transparent 60%),
    radial-gradient(640px 420px at 50% 115%, rgba(255, 210, 165, 0.35), transparent 65%),
    var(--paper);
}
.check-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); background-size: 180px;
  opacity: 0.13; mix-blend-mode: multiply;
}
.check-nav { display: flex; justify-content: center; padding: 36px 16px 0; }
.check-main {
  flex: 1; width: min(780px, 100% - 48px); margin-inline: auto;
  text-align: center; padding: 52px 0 64px;
}
.check-main h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); margin: 6px 0 16px; }
.check-main .lede { margin: 0 auto 48px; }
.check-page .cta-check { margin-inline: auto; text-align: left; animation: floatY 8s ease-in-out infinite; }
.check-foot { text-align: center; padding: 26px 16px 36px; font-size: 0.8rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--dark-muted); padding: 76px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 44px; }
.footer .brand-word { color: #fff; }
.brand-logo-footer { display: block; height: 48px; width: auto; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; margin: 10px 0 22px; max-width: 30ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--dark-line); color: var(--dark-muted);
  display: grid; place-items: center;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.socials a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.45); transform: translateY(-2px); }
.socials .ic { width: 17px; height: 17px; stroke-width: 1.8; }
.footer-head { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; }
.footer-grid nav a {
  display: block; font-size: 0.92rem; text-decoration: none;
  padding: 6px 0; color: var(--dark-muted); transition: color 0.15s;
}
.footer-grid nav a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--dark-line); margin-top: 52px; padding-top: 26px;
  font-size: 0.82rem; color: #A08A72;
}

/* ---------- Reveal animations (JS-gated) ---------- */
body.js .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) var(--d, 0s);
}
body.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .deal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-grid nav:last-child { grid-column: 2 / -1; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; padding: 56px 0 80px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-cta, .hero-checks { justify-content: center; }
  .hero-stage { height: 480px; max-width: 560px; margin-inline: auto; width: 100%; }
  .stage-main { right: 12px; }
  .hero-disclosure { left: 50%; transform: translateX(-50%); width: max-content; max-width: calc(100% - 24px); text-align: center; bottom: 18px; }
  .nav-links, .nav .signin { display: none; }
  .menu-btn { display: flex; margin-right: -7px; }
  .nav .nav-actions { gap: 12px; margin-left: auto; }
  .credit-grid, .heritage-grid, .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .coupon-wrap { order: 2; }
  .steps { gap: 28px; }
  .quote-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
  .section-head-center { align-items: center; }
  .head-note { text-align: left; max-width: none; padding-bottom: 0; }
  .head-disclosure { text-align: left; max-width: none; padding-bottom: 0; }
  .perks { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .deal-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .ticker-label { padding: 14px 18px; }
}

@media (max-width: 560px) {
  .container { width: min(1180px, 100% - 36px); }
  .hero-grid { padding: 44px 0 64px; }
  .hero-stage { height: 508px; }
  .stage-main { width: min(300px, 88%); right: 0; top: 40px; }
  .stage-live { width: 232px; bottom: 0; left: 0; }
  .burst { width: 96px; height: 96px; bottom: 310px; right: -6px; }
  .burst span { font-size: 0.9rem; }
  .btn-lg { width: 100%; }
  .hero-cta { flex-direction: column; }
  .brand-logo { height: 34px; }
  .deal-grid { grid-template-columns: 1fr 1fr; }
  .tile { height: 148px; }
  .deal-card .pill-note { display: none; }
  .deal-body { padding: 12px 14px 15px; }
  .prod-name { font-size: 0.9rem; }
  .price { font-size: 1.24rem; }
  .perks { grid-template-columns: 1fr; }
  .float { display: none; }
  .cta-collage { padding: 72px 24px 64px; }
  .cta-check { transform: none; padding: 24px 20px 16px; }
  .check-payee { font-size: 2rem; }
  .check-amount { font-size: 1.5rem; }
  .check-sig { font-size: 1.7rem; padding: 0 10px 3px; }
  .check-micr { letter-spacing: 0.2em; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid nav:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Screenshot/test hook: ?noanim ---------- */
html.noanim { scroll-behavior: auto; }
html.noanim *, html.noanim *::before, html.noanim *::after { animation: none !important; transition: none !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track, .stage-main, .stage-sold, .stage-live, .burst, .coupon, .live-dot, .check-page .cta-check, .mini-check, .nudge-btn { animation: none; }
  .bump { animation: none; }
  body.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .deal-card, .cat-chip { transition: none; }
}
