/* ============================================================
   SABON FORMULA LAB — premium landing page
   Design tokens, components, sections
   ============================================================ */

:root {
  /* palette */
  --bg: #FAFAF7;
  --bg-soft: #F2F1EC;
  --card: #FFFFFF;
  --ink: #161A1D;
  --ink-2: #3C4347;
  --muted: #6B7278;
  --line: #E7E5DE;
  --line-2: rgba(22, 26, 29, .08);
  --acc: #0E7A5A;
  --acc-2: #0F9B70;
  --acc-dark: #0A4A38;
  --acc-soft: #E4F1EB;
  --gold: #C6A15B;
  --gold-2: #E4CD9C;
  --dark: #10150F;
  --dark-2: #182019;
  --dark-3: #0B0F0B;
  --white: #FFFFFF;

  /* type */
  --f-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* shape & depth */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-1: 0 1px 2px rgba(16, 21, 15, .05), 0 8px 24px -14px rgba(16, 21, 15, .16);
  --shadow-2: 0 2px 6px rgba(16, 21, 15, .06), 0 30px 60px -28px rgba(16, 21, 15, .28);
  --shadow-3: 0 2px 8px rgba(16, 21, 15, .08), 0 40px 90px -30px rgba(16, 21, 15, .42);

  --wrap: 1200px;
  --pad: clamp(20px, 4vw, 40px);
  --section: clamp(84px, 10vw, 132px);
  --header-h: 84px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: rgba(14, 122, 90, .18); }

:focus-visible { outline: 3px solid rgba(14, 122, 90, .55); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 10px;
}
.skip-link:focus { left: 8px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
main { display: block; }

/* ---------- typography helpers ---------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.em { font-style: italic; color: var(--acc); }
.section-head { margin-bottom: clamp(38px, 5vw, 60px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  max-width: 560px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .18em;
  color: var(--acc); margin-bottom: 16px;
}
.eyebrow__icon { font-size: 1rem; }
.eyebrow--light { color: var(--gold-2); }

.hl { font-style: inherit; }
.hl--grad {
  background: linear-gradient(100deg, var(--acc-dark) 0%, var(--acc) 48%, var(--acc-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl--dark { color: var(--acc); }
.hl--bright {
  background: linear-gradient(100deg, #8FE7C0, #35BE8F);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl--gold {
  background: linear-gradient(100deg, #F0DCA8, #E9CE8F 55%, #D3AF62);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  --bg-btn: var(--acc);
  --fg-btn: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .02em;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--bg-btn); color: var(--fg-btn);
  box-shadow: 0 12px 28px -14px rgba(16, 21, 15, .4), inset 0 1px 0 rgba(255, 255, 255, .18);
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -16px rgba(16, 21, 15, .45), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn:active { transform: scale(.98); }
.btn span[aria-hidden] { font-size: 1.05em; transition: transform .25s; }
.btn:hover span[aria-hidden] { transform: translateX(3px); }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn--small { padding: 10px 18px; font-size: .83rem; }
.btn--block { display: flex; width: 100%; }
.btn--accent { --bg-btn: var(--acc); }
.btn--gold { --bg-btn: var(--gold); color: #221A07; box-shadow: 0 14px 30px -14px rgba(198, 161, 91, .7), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn--gold:hover { box-shadow: 0 20px 40px -16px rgba(198, 161, 91, .75), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn--light { --bg-btn: #fff; --fg-btn: var(--ink); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); box-shadow: none; }
.btn--ghost:hover { border-color: var(--ink); background: rgba(22, 26, 29, .04); box-shadow: none; }

/* ---------- announcement bar ---------- */
.topbar { background: var(--ink); color: #F4F3ED; position: relative; z-index: 120; overflow: hidden; }
.topbar::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(14, 122, 90, .35), rgba(198, 161, 91, .25), transparent);
  animation: sheen 7s linear infinite;
}
@keyframes sheen { 0% { transform: translateX(-100%);} 60%, 100% { transform: translateX(100%);} }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; padding-block: 6px; }
.topbar__dot { position: relative; width: 8px; height: 8px; flex: 0 0 auto; }
.topbar__dot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
  animation: ping 2s cubic-bezier(0, 0, .2, 1) infinite;
}
.topbar__dot::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: #22c55e; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55);} 70%, 100% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0);} }
.topbar__text { font-size: .82rem; letter-spacing: .06em; text-align: center; font-family: var(--f-display); }
.topbar__text strong { font-weight: 700; }
.topbar__sub { font-weight: 500; color: rgba(244, 243, 237, .72); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, .72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.is-scrolled {
  background: rgba(250, 250, 247, .86);
  box-shadow: 0 10px 34px -22px rgba(16, 21, 15, .3);
  border-bottom-color: var(--line-2);
}
.nav-row { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); min-height: var(--header-h); transition: min-height .3s; }
.is-scrolled .nav-row { min-height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 6px 12px rgba(10, 74, 56, .25)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--f-display); font-weight: 800; letter-spacing: .06em; font-size: 1.02rem; }
.brand__tag { font-size: .58rem; letter-spacing: .32em; color: var(--acc); font-weight: 600; margin-top: 3px; }

.site-nav { display: flex; gap: clamp(14px, 1.8vw, 26px); margin-inline: auto; }
.site-nav a {
  font-family: var(--f-display); font-weight: 600; font-size: .83rem; letter-spacing: .1em;
  color: var(--ink-2); padding: 8px 2px; position: relative; transition: color .2s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--acc); border-radius: 2px; transition: right .3s cubic-bezier(.2, .8, .2, 1);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; position: relative; z-index: 60; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  margin: 5px auto; transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(250, 250, 247, .98);
  border-bottom: 1px solid var(--line-2);
  box-shadow: 0 30px 50px -20px rgba(16, 21, 15, .25);
  padding: 10px var(--pad) 26px;
  opacity: 0; transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none; transition: opacity .25s, transform .25s, visibility .25s;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; max-width: 560px; margin-inline: auto; }
.mobile-menu nav a:not(.btn) { font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; padding: 12px 4px; border-bottom: 1px solid var(--line-2); }
.mobile-menu nav .btn { margin-top: 16px; }

/* ---------- reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1); transition-delay: calc(var(--d, 0) * 90ms); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   BOOKS (CSS 3D)
   ============================================================ */
.bk {
  --th: calc(var(--w) * .075);
  position: relative;
  width: var(--w);
  height: calc(var(--w) * 1.46);
  perspective: 1400px;
  perspective-origin: 50% 30%;
  container-type: inline-size; /* lets small thumbnails drop the cover art */
}
.bk__3d {
  position: relative; width: 100%; height: 100%; z-index: 1;
  transform-style: preserve-3d;
  transform: rotateX(calc(var(--rx, 4) * 1deg)) rotateY(calc(var(--ry, -24) * 1deg));
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}
.bk__face { position: absolute; inset: 0; backface-visibility: visible; }
/* rear cover: softly lit cloth/paper with a darker far edge */
.bk__face--back {
  transform: translateZ(calc(var(--th) * -1));
  border-radius: 6px 10px 10px 6px;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(255, 255, 255, .5), transparent 55%),
    radial-gradient(140% 100% at 15% 100%, rgba(0, 0, 0, .18), transparent 60%),
    linear-gradient(155deg, #e8e4d9, #c9c5b8 70%, #b4b0a3);
  box-shadow: inset 0 0 0 1px rgba(22, 26, 29, .1), inset 0 0 34px rgba(22, 26, 29, .18);
}
/* spine: colored like the cover, with hinge shading and head/tail bands */
.bk__face--spine {
  left: 0; width: var(--th); height: 100%; top: 0;
  transform-origin: 0 50%;
  transform: rotateY(90deg);
  border-radius: 3px;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .16) 7%, rgba(255, 255, 255, .12) 9%,
      transparent 16%, transparent 84%, rgba(0, 0, 0, .22) 92%, rgba(0, 0, 0, .42) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, .42) 0, rgba(0, 0, 0, .14) 22%,
      transparent 42%, rgba(255, 255, 255, .16) 55%, transparent 72%,
      rgba(0, 0, 0, .3) 100%),
    linear-gradient(180deg, var(--cov-sp1, #6d6a60), var(--cov-sp2, #4a4841));
  box-shadow: inset 0 0 2px rgba(0, 0, 0, .4);
}
/* page block: crisp stacked-sheet lines whose spacing follows the book's real thickness */
.bk__face--pages {
  left: 100%; width: var(--th); height: 99%; top: .5%;
  transform-origin: 0 50%;
  transform: rotateY(90deg);
  background:
    repeating-linear-gradient(90deg,
      rgba(146, 139, 122, 0) 0 calc(var(--th) * .16),
      rgba(146, 139, 122, .55) calc(var(--th) * .16) calc(var(--th) * .2),
      rgba(255, 255, 255, .5) calc(var(--th) * .2) calc(var(--th) * .34),
      rgba(255, 255, 255, 0) calc(var(--th) * .34) calc(var(--th) * .52),
      rgba(146, 139, 122, .22) calc(var(--th) * .52) calc(var(--th) * .58),
      rgba(255, 255, 255, 0) calc(var(--th) * .58) calc(var(--th) * 1)),
    linear-gradient(180deg, #fdfaf2, #f2ecdc 55%, #ddd5c1);
  border-radius: 0 5px 5px 0;
  box-shadow: inset 0 0 6px rgba(120, 116, 104, .28), inset 0 2px 3px rgba(255, 255, 255, .7), inset 0 -2px 3px rgba(120, 116, 104, .3);
}
.bk__face--front {
  border-radius: 5px 9px 9px 5px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .22),
    inset 0 0 0 2px rgba(255, 255, 255, .05),
    inset 0 0 46px rgba(0, 0, 0, .18),
    inset -1px 0 2px rgba(255, 255, 255, .12);
}

/* ground shadow: tight dark contact + wide soft falloff */
.bk__floor {
  position: absolute; left: 50%; top: 96%; width: 130%; height: 9%;
  transform: translateX(-50%);
  background:
    radial-gradient(46% 46% at 50% 50%, rgba(16, 21, 15, .55), rgba(16, 21, 15, .18) 55%, rgba(16, 21, 15, 0) 78%),
    radial-gradient(90% 90% at 50% 50%, rgba(16, 21, 15, .16), rgba(16, 21, 15, 0) 72%);
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

/* ---- cover interior ---- */
.cov {
  --ink: #F7F4EA;
  --ink-dim: rgba(247, 244, 234, .62);
  --gold-line: rgba(222, 196, 140, .55);
  position: absolute; inset: 0;
  color: var(--ink);
  font-size: calc(var(--w) * .082);
  background: var(--bg1, #0C523F);
  display: flex;
  flex-direction: column;
}
/* theme gradients */
.cov--dish { --bg1: #0B4E3C; --bg2: #0E5F47; --ink: #F6F1E2; --ink-dim: rgba(246, 241, 226, .68); --accent: #E6C988; --gold-line: rgba(230, 201, 136, .4); }
.cov--det { --bg1: #17283C; --bg2: #203650; --ink: #F1F4F8; --ink-dim: rgba(241, 244, 248, .6); --accent: #A9D3E8; --gold-line: rgba(169, 211, 232, .4); }
.cov--fab { --bg1: #EFE9E4; --bg2: #E2D8D2; --ink: #3A3138; --ink-dim: rgba(58, 49, 56, .55); --accent: #B3927A; --gold-line: rgba(139, 108, 84, .35); }
.cov--cleaner { --bg1: #F3E8D8; --bg2: #E7D3B5; --ink: #3C352A; --ink-dim: rgba(60, 53, 42, .58); --accent: #C98F3B; --gold-line: rgba(140, 100, 40, .3); }
.cov--body { --bg1: #7C4134; --bg2: #9A5542; --ink: #FBEFE3; --ink-dim: rgba(251, 239, 227, .66); --accent: #F2D3A8; --gold-line: rgba(242, 211, 168, .42); }
.cov--hand { --bg1: #0F5044; --bg2: #14705C; --ink: #F4F3EA; --ink-dim: rgba(244, 243, 234, .66); --accent: #E8D4A0; --gold-line: rgba(232, 212, 160, .45); }
.cov--foam { --bg1: #DCE9E2; --bg2: #C7DDD2; --ink: #23483C; --ink-dim: rgba(35, 72, 60, .55); --accent: #2E7D66; --gold-line: rgba(46, 125, 102, .32); }
.cov--laundry { --bg1: #1B2E44; --bg2: #24405E; --ink: #EEF3F8; --ink-dim: rgba(238, 243, 248, .62); --accent: #A8CFE6; --gold-line: rgba(168, 207, 230, .38); }

.cov__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  flex: 1;
  padding: .8em .72em .68em;
  font-size: 1em;
}
.cov__inner::before { /* hairline frame */
  content: ""; position: absolute; inset: .42em; pointer-events: none;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
}
.cov__head { display: flex; align-items: center; justify-content: space-between; gap: .5em; padding-inline: .14em; }
.cov__brand { font-family: var(--f-display); font-weight: 800; letter-spacing: .06em; font-size: .5em; opacity: .92; white-space: nowrap; }
.cov__pdf {
  font-family: var(--f-display); font-weight: 800; font-size: .38em; letter-spacing: .1em;
  border: 1px solid var(--gold-line); color: var(--accent);
  padding: .32em .55em; border-radius: 99px; white-space: nowrap;
}
.cov__mid { margin-top: auto; }
.cov__cat {
  font-family: var(--f-display); font-weight: 800; letter-spacing: .22em;
  font-size: .48em; color: var(--accent); display: block;
}
.cov__name {
  margin-top: .22em;
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.5em; line-height: 1.06; letter-spacing: -.015em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}
.cov__name b { font-weight: 800; }
.cov__name .l2 { color: var(--accent); }
.cov__rule { margin: .5em 0 .4em; height: 1px; background: linear-gradient(90deg, var(--gold-line), transparent 85%); }
.cov__foot { display: flex; align-items: center; justify-content: space-between; gap: .5em; padding-inline: .14em; }
.cov__foottext {
  font-family: var(--f-display); font-weight: 700; letter-spacing: .14em;
  font-size: .42em; color: var(--ink-dim); white-space: nowrap;
}
.cov__id {
  font-family: var(--f-display); font-weight: 700; letter-spacing: .06em; font-size: .42em; color: var(--ink-dim);
  white-space: nowrap;
}
/* decorative motif behind title */
.cov__motif { position: absolute; right: -.3em; bottom: -.6em; width: 46%; aspect-ratio: 1; opacity: .5; pointer-events: none; z-index: 0; }
.cov--dish .cov__motif, .cov--body .cov__motif { background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(255, 255, 255, .28) 31%, transparent 40%, transparent 52%, rgba(255, 255, 255, .2) 53%, transparent 63%); }
.cov--det .cov__motif { background: repeating-radial-gradient(circle at 50% 60%, transparent 0 6px, rgba(168, 207, 230, .3) 6.5px 7px); }
.cov--fab .cov__motif { background: radial-gradient(circle, rgba(179, 146, 122, .35) 0 6px, transparent 7px); background-size: 34px 34px; border-radius: 50%; }
.cov--hand .cov__motif { background: radial-gradient(circle, rgba(232, 212, 160, .4) 0 2px, transparent 3px); background-size: 18px 18px; border-radius: 50%; }
.cov--cleaner .cov__motif { background: conic-gradient(from 40deg, transparent 0 30deg, rgba(201, 143, 59, .35) 32deg 44deg, transparent 46deg 90deg, rgba(201, 143, 59, .3) 92deg 100deg, transparent 102deg 150deg, rgba(201, 143, 59, .35) 152deg 166deg, transparent 168deg); border-radius: 50%; }
.cov--foam .cov__motif { background: radial-gradient(circle at 50% 50%, transparent 32%, rgba(46, 125, 102, .35) 33%, transparent 42%, transparent 60%, rgba(46, 125, 102, .25) 61%, transparent 70%); }

/* hand-drawn scene band (coverart.js) — sits between brand and title */
.cov__art {
  position: relative;
  margin: .5em .14em .12em;
  height: 4em;
  z-index: 1;
  filter: drop-shadow(0 .18em .5em rgba(0, 0, 0, .22));
}
.cov__art svg { display: block; width: 100%; height: 100%; overflow: visible; }
/* small books (cart thumbs, quick-buy popup, bestseller) stay clean & typographic */
@container (max-width: 149px) {
  .cov__art { display: none; }
}

/* spine tints — book spine is colored like its cover (via :has) */
.bk:has(.cov--dish)   { --cov-sp1: #06301F; --cov-sp2: #0E5F47; }
.bk:has(.cov--det)    { --cov-sp1: #0C1A28; --cov-sp2: #203650; }
.bk:has(.cov--fab)    { --cov-sp1: #A6907C; --cov-sp2: #E2D8D2; }
.bk:has(.cov--cleaner){ --cov-sp1: #9A7C4E; --cov-sp2: #E7D3B5; }
.bk:has(.cov--body)   { --cov-sp1: #4E251C; --cov-sp2: #9A5542; }
.bk:has(.cov--hand)   { --cov-sp1: #08372E; --cov-sp2: #14705C; }
.bk:has(.cov--foam)   { --cov-sp1: #7FA394; --cov-sp2: #C7DDD2; }
.bk:has(.cov--laundry){ --cov-sp1: #0C1A28; --cov-sp2: #24405E; }

/* --- realism overlays (stacked above the flat gradient, below the grain) --- */
.cov::before { /* fine multi-scale paper speckle */
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, .1) 1px, transparent 1.4px),
    radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1.2px),
    radial-gradient(rgba(0, 0, 0, .07) 1px, transparent 1.4px),
    radial-gradient(rgba(0, 0, 0, .05) 1px, transparent 1.2px);
  background-size: 17px 17px, 9px 9px, 23px 23px, 11px 11px;
  background-position: 0 0, 3px 5px, 8px 12px, 2px 8px;
  opacity: .3;
  mix-blend-mode: overlay;
}
.cov::after { /* theme gradient + soft studio light */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 46% at 76% 8%, rgba(255, 255, 255, .28), transparent 60%),
    radial-gradient(30% 26% at 22% 4%, rgba(255, 255, 255, .14), transparent 65%),
    radial-gradient(70% 60% at 10% 100%, rgba(0, 0, 0, .2), transparent 60%),
    linear-gradient(155deg, var(--bg2), var(--bg1) 72%);
  pointer-events: none;
}
.cov--fab::after, .cov--cleaner::after, .cov--foam::after {
  background:
    radial-gradient(70% 46% at 76% 8%, rgba(255, 255, 255, .6), transparent 60%),
    radial-gradient(30% 26% at 22% 4%, rgba(255, 255, 255, .3), transparent 65%),
    radial-gradient(70% 60% at 10% 100%, rgba(0, 0, 0, .1), transparent 60%),
    linear-gradient(155deg, var(--bg1), var(--bg2));
}

/* glossy varnish sheen sweeping the cover */
.cov__sheen {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, .16) 45%, rgba(255, 255, 255, .03) 52%, transparent 60%),
    linear-gradient(112deg, transparent 62%, rgba(255, 255, 255, .05) 66%, transparent 72%);
  mix-blend-mode: screen;
}
/* ultra-fine print grain over everything */
.cov__grain {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 140px 140px;
  opacity: .1;
  mix-blend-mode: overlay;
}
/* edge wear: hinge shadow near the spine, inner vignette, worn corners */
.cov__edgewear {
  position: absolute; inset: 0; z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18) 0, transparent 6%),
    radial-gradient(90% 70% at 8% 50%, rgba(0, 0, 0, .12), transparent 55%),
    radial-gradient(130% 100% at 50% 50%, transparent 68%, rgba(0, 0, 0, .13) 100%);
}

/* embossed / foil-stamped title lines */
.cov__name {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 1px 2px rgba(0, 0, 0, .28);
}
.cov__name b { -webkit-text-stroke: 0; }
.cov__name .l2 {
  color: transparent;
  background: linear-gradient(180deg,
    var(--foil1, #F3DCA0) 0%,
    var(--foil2, #D3AF62) 38%,
    var(--foil3, #8A6420) 52%,
    var(--foil2, #D3AF62) 72%,
    var(--foil1, #F6E7BE) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .35));
}
/* foil shades per theme (darker foil on light covers so it still reads) */
.cov--dish .cov__name .l2   { --foil1: #F9EBC4; --foil2: #D9B96B; --foil3: #6E4D15; }
.cov--det .cov__name .l2    { --foil1: #EAF6FB; --foil2: #A9D3E8; --foil3: #3E6E8C; }
.cov--laundry .cov__name .l2{ --foil1: #EAF6FB; --foil2: #A9D3E8; --foil3: #3E6E8C; }
.cov--fab .cov__name .l2    { --foil1: #6E5442; --foil2: #B3927A; --foil3: #3A3138; }
.cov--cleaner .cov__name .l2{ --foil1: #7A4E17; --foil2: #C98F3B; --foil3: #3C352A; }
.cov--body .cov__name .l2   { --foil1: #FFE9C6; --foil2: #E0B778; --foil3: #7C4134; }
.cov--hand .cov__name .l2   { --foil1: #F4E6BE; --foil2: #D6B96E; --foil3: #6E4D15; }
.cov--foam .cov__name .l2   { --foil1: #0E4638; --foil2: #2E7D66; --foil3: #0A2E25; }

/* ---------- hero stage ---------- */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 4vw, 40px);
  padding-top: clamp(44px, 6vw, 76px); padding-bottom: var(--section);
}
.hero__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -.04em;
  color: var(--ink);
}
.hero__lead { margin-top: 22px; font-size: clamp(1.08rem, 1.7vw, 1.32rem); font-weight: 500; color: var(--ink); max-width: 520px; }
.hero__sub { margin-top: 14px; color: var(--muted); font-size: 1.02rem; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.hero__chips li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; font-size: .78rem; letter-spacing: .14em; color: var(--ink-2); }
.hero__chips svg { width: 17px; height: 17px; stroke: var(--acc); stroke-width: 2; }

/* stage */
.hero__visual { position: relative; min-height: clamp(430px, 44vw, 560px); }
.stage { position: absolute; inset: 0; display: block; perspective: 1600px; }
.stage__glow {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: min(560px, 90%); aspect-ratio: 1.15;
  background: radial-gradient(closest-side, rgba(14, 122, 90, .24), rgba(14, 122, 90, .06) 60%, transparent);
  border-radius: 50%; filter: blur(10px);
}
.stage__grid {
  position: absolute; inset: -4% -6%;
  background-image:
    linear-gradient(rgba(14, 122, 90, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 122, 90, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(closest-side at 50% 50%, rgba(0, 0, 0, .8), transparent 75%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, rgba(0, 0, 0, .8), transparent 75%);
}
.stage__ticks {
  position: absolute; right: 0; top: 8%; bottom: 8%; width: 22px;
  background-image: repeating-linear-gradient(to bottom, rgba(22, 26, 29, .14) 0 1px, transparent 1px 11px);
  opacity: .5;
}

.bk--main { position: absolute; left: 50%; top: 6%; transform: translateX(-46%); z-index: 3; filter: drop-shadow(0 40px 40px rgba(16, 21, 15, .28)); animation: bob 7s ease-in-out infinite; }
.bk--main .bk__3d { --ry: -22; --rx: 3; }
.bk--behind-l { position: absolute; left: -1%; top: 16%; z-index: 1; filter: drop-shadow(0 30px 30px rgba(16, 21, 15, .3)) brightness(.96); animation: bob 8.5s ease-in-out infinite .6s; }
.bk--behind-l .bk__3d { --ry: -40; --rx: 2; }
.bk--behind-r { position: absolute; right: 2%; top: 9%; z-index: 2; filter: drop-shadow(0 28px 30px rgba(16, 21, 15, .28)); animation: bob 9s ease-in-out infinite .3s; }
.bk--behind-r .bk__3d { --ry: 6; --rx: 6; }
.bk--float-t { position: absolute; right: -2%; top: -4%; z-index: 4; filter: drop-shadow(0 24px 22px rgba(16, 21, 15, .26)); animation: bob 6.4s ease-in-out infinite 1s; }
.bk--float-t .bk__3d { --ry: 2; --rx: 8; }
.bk--float-b { position: absolute; left: 4%; bottom: 2%; z-index: 4; filter: drop-shadow(0 22px 22px rgba(16, 21, 15, .24)); animation: bob 7.6s ease-in-out infinite .9s; }
.bk--float-b .bk__3d { --ry: -16; --rx: 12; }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.chip {
  position: absolute; z-index: 6;
  font-family: var(--f-display); font-weight: 800; font-size: .7rem; letter-spacing: .16em;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(22, 26, 29, .08);
  box-shadow: 0 18px 34px -16px rgba(16, 21, 15, .3);
  color: var(--ink);
  animation: bob 6s ease-in-out infinite;
}
.chip--1 { top: 20%; left: -6%; }
.chip--2 { bottom: 20%; left: 2%; animation-delay: 1.2s; }
.chip--3 { top: 30%; right: -8%; animation-delay: .6s; }
.chip--4 { bottom: 8%; right: 4%; animation-delay: 1.8s; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.proof { padding-block: calc(var(--section) * .8); }
.proof__band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(52% 70% at 90% 8%, rgba(211, 175, 98, .2), transparent 62%),
    radial-gradient(60% 90% at 2% 105%, rgba(14, 122, 90, .5), transparent 65%),
    linear-gradient(130deg, #0B211A, #0E4E3B 58%, #17694C);
  border-radius: 24px;
  color: #F6F1E2;
  padding: clamp(26px, 4.5vw, 52px) clamp(22px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  box-shadow: 0 30px 70px -32px rgba(8, 42, 30, .6);
}
.proof__glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  top: -150px; right: -80px; pointer-events: none;
  background: radial-gradient(circle, rgba(211, 175, 98, .16), transparent 65%);
}
.proof__stat { position: relative; z-index: 1; max-width: 240px; }
.proof__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: .92;
  letter-spacing: -.02em; color: #F2D3A0;
  text-shadow: 0 2px 18px rgba(211, 175, 98, .35);
}
.proof__num sup { font-size: .42em; color: #E6C988; font-weight: 800; margin-left: 2px; }
.proof__label {
  margin-top: 12px; font-family: var(--f-display); font-weight: 700;
  font-size: .68rem; letter-spacing: .15em; line-height: 1.7;
  color: rgba(246, 241, 226, .72);
}
.proof__copy { position: relative; z-index: 1; }
.proof__copy h2 {
  font-family: var(--f-display); font-weight: 800; letter-spacing: -.015em;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem); line-height: 1.16; color: #F6F1E2;
}
.proof__copy p { margin-top: 10px; font-size: .96rem; line-height: 1.65; color: rgba(246, 241, 226, .72); max-width: 560px; }
.proof__cta { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.proof__fine { font-size: .74rem; letter-spacing: .05em; color: rgba(246, 241, 226, .58); text-align: right; }
/* audience breakdown chips (sum to the 1,000+ headline) */
.proof__cats {
  position: relative; z-index: 1;
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px;
  margin-top: 8px; padding-top: clamp(14px, 2vw, 22px);
  border-top: 1px solid rgba(246, 241, 226, .16);
}
.cat {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(246, 241, 226, .16);
  padding: 9px 18px 9px 10px; border-radius: 999px;
}
.cat__ico {
  flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 1rem; background: rgba(211, 175, 98, .18); border-radius: 50%;
}
.cat b { font-family: var(--f-display); font-weight: 800; font-size: 1.08rem; color: #F2D3A0; line-height: 1; }
.cat b i { font-style: normal; }
.cat b sup { font-size: .55em; color: #E6C988; }
/* live pulse when a decoy purchase bumps the counters */
@keyframes popNum {
  0% { transform: scale(1); }
  38% { transform: scale(1.16); filter: drop-shadow(0 0 14px rgba(242, 211, 160, .75)); }
  100% { transform: scale(1); }
}
.proof__num.pop { animation: popNum .55s cubic-bezier(.2, .8, .2, 1); display: inline-block; }

/* exit-intent bundle popup (landing) */
.exitpop { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 18px; }
.exitpop__scrim { position: absolute; inset: 0; background: rgba(9, 14, 11, .55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s; }
.exitpop.is-in .exitpop__scrim { opacity: 1; }
.exitpop__box {
  position: relative; width: min(580px, 100%); background: #fff;
  border-radius: 22px; padding: 28px clamp(20px, 4vw, 40px) 24px;
  display: grid; grid-template-columns: 138px 1fr; gap: 10px 26px; align-items: center;
  box-shadow: 0 40px 90px -28px rgba(0, 0, 0, .55);
  transform: translateY(20px) scale(.96); opacity: 0;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), opacity .4s;
}
.exitpop.is-in .exitpop__box { transform: none; opacity: 1; }
.exitpop__x {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 32px; height: 32px; border: 0; border-radius: 50%; background: transparent;
  color: var(--muted); font-size: 1.3rem; line-height: 1; cursor: pointer;
  transition: background .2s, color .2s;
}
.exitpop__x:hover { background: rgba(16, 21, 15, .07); color: var(--ink); }
.exitpop__cover { display: flex; justify-content: center; filter: drop-shadow(0 22px 30px rgba(8, 42, 30, .35)); }
.exitpop__body .badge { display: inline-flex; }
.exitpop__body h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.18; letter-spacing: -.01em; margin-top: 8px; }
.exitpop__body p { color: var(--muted); font-size: .95rem; line-height: 1.65; margin-top: 10px; }
.exitpop__body p strong { color: var(--ink); }
.exitpop__body .btn { margin-top: 16px; }
.exitpop__later {
  margin-top: 12px; width: 100%; text-align: center; background: none; border: 0;
  color: var(--muted); font-size: .8rem; text-decoration: underline; cursor: pointer;
}
@media (max-width: 620px) {
  .exitpop__box { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .exitpop__cover { display: none; }
  .exitpop__body h3 { font-size: 1.3rem; }
}
.cat__txt { font-size: .82rem; color: rgba(246, 241, 226, .82); font-weight: 500; }
@media (max-width: 980px) {
  .proof__band { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .proof__stat { max-width: none; margin-inline: auto; }
  .proof__copy p { margin-inline: auto; }
  .proof__cta { align-items: center; }
  .proof__fine { text-align: center; }
  .proof__cats { justify-content: center; }
  .cat { width: 100%; justify-content: center; max-width: 340px; margin-inline: auto; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { padding-block: var(--section); }
.problem__cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.problem__card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 22px;
  box-shadow: var(--shadow-1);
  display: flex; gap: 13px; align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}
.problem__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.problem__x {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: #F6E4E1; color: #C0492E; display: grid; place-items: center;
}
.problem__x svg { width: 14px; height: 14px; stroke-width: 2.4; }
.problem__card p { font-family: var(--f-display); font-weight: 700; font-size: .96rem; line-height: 1.35; padding-top: 3px; }

.problem__solve {
  margin-top: clamp(36px, 5vw, 60px);
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(14, 122, 90, .1), transparent 55%),
    var(--dark);
  color: #F2F1EA;
  border-radius: var(--r-xl);
  padding: clamp(38px, 5.5vw, 72px) clamp(28px, 5vw, 80px);
  position: relative; overflow: hidden;
}
.problem__solve::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(closest-side, rgba(198, 161, 91, .16), transparent);
}
.problem__solve::after {
  content: ""; position: absolute; left: 6%; bottom: -110px; width: 300px; height: 300px;
  background: radial-gradient(closest-side, rgba(15, 155, 112, .22), transparent);
}
.problem__solve-eyebrow { font-family: var(--f-display); font-weight: 700; letter-spacing: .14em; font-size: .85rem; color: var(--gold-2); }
.problem__solve-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.1rem); letter-spacing: -.03em; line-height: 1.08;
  margin-top: 16px; max-width: 760px;
}
.problem__solve-sub { margin-top: 18px; color: rgba(242, 241, 234, .72); font-size: 1.05rem; max-width: 640px; }

/* ============================================================
   COLLECTION
   ============================================================ */
.collection {
  padding-block: var(--section);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-block: 1px solid var(--line-2);
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 3.5vw, 42px); }
.filter {
  font-family: var(--f-display); font-weight: 700; font-size: .85rem; letter-spacing: .1em;
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-2); background: var(--card);
  transition: all .25s;
}
.filter:hover { border-color: var(--acc); color: var(--acc); transform: translateY(-1px); }
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 10px 22px -12px rgba(16, 21, 15, .5); }

.grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 1.6vw, 24px);
}
.card {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px 16px 20px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s, border-color .3s;
  animation: cardIn .55s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 70ms);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); border-color: rgba(14, 122, 90, .3); }

.card__media {
  position: relative; overflow: hidden;
  border-radius: calc(var(--r-lg) - 10px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(14, 122, 90, .08), transparent 60%),
    var(--bg-soft);
  display: grid; place-items: center;
  min-height: 218px;
  padding: 22px 0 6px;
}
.card__media .bk { --w: 176px; }
.card:hover .bk__3d { --ry: -34; }
.card__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 55% at 50% 100%, rgba(16, 21, 15, .12), transparent 70%);
}
section[id], div[id="bundle"], div[id="top"] { scroll-margin-top: calc(var(--header-h) + 16px); }

.card__body { padding: 18px 6px 4px; display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__cat { font-family: var(--f-display); font-weight: 800; letter-spacing: .2em; font-size: .66rem; color: var(--acc); }
.chip-pdf {
  font-family: var(--f-display); font-weight: 800; font-size: .56rem; letter-spacing: .14em;
  color: var(--acc); border: 1px solid rgba(14, 122, 90, .35);
  background: var(--acc-soft); padding: 4px 9px; border-radius: 99px; white-space: nowrap;
}
.card__name { font-family: var(--f-display); font-weight: 800; font-size: 1.14rem; line-height: 1.2; letter-spacing: -.01em; margin-top: 7px; color: var(--ink); }
.card__desc { font-size: .9rem; color: var(--muted); margin-top: 8px; line-height: 1.55; }
.card__foot {
  display: flex; flex-direction: column; align-items: stretch; gap: 13px;
  margin-top: auto; padding-top: 18px;
}
.card__price { font-family: var(--f-display); font-weight: 800; font-size: 1.34rem; color: var(--ink); display: flex; align-items: baseline; gap: 8px; }
.card__price small { font-family: var(--f-body); font-weight: 500; font-size: .64rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }

/* VIEW FORMULA — premium capsule CTA on product cards */
.card__link {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; white-space: nowrap;
  font-family: var(--f-display); font-weight: 800;
  font-size: .82rem; letter-spacing: .045em;
  color: #fff; text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 45%),
    linear-gradient(120deg, var(--acc-2) 0%, var(--acc) 50%, var(--acc-dark) 100%);
  box-shadow:
    0 16px 30px -14px rgba(10, 74, 56, .6),
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -12px 18px -14px rgba(6, 40, 30, .55);
  overflow: hidden;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s, filter .28s;
}
.card__link::after { /* light sweep across the capsule */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, .55) 50%, transparent 68%);
  transform: translateX(-135%);
  transition: transform .65s ease;
  pointer-events: none;
}
.card__link:hover { transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: 0 20px 38px -16px rgba(10, 74, 56, .65), inset 0 1px 0 rgba(255, 255, 255, .4); }
.card__link:hover::after { transform: translateX(135%); }
.card__link:active { transform: scale(.98); }
.card__link span {
  display: grid; place-items: center;
  width: 22px; height: 22px; flex: 0 0 auto;
  font-size: .98rem; text-transform: none; letter-spacing: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, .35);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), background .28s;
}
.card__link:hover span { transform: translateX(3px); background: rgba(255, 255, 255, .32); }

.empty-state {
  text-align: center; padding: 60px 20px; border: 1px dashed var(--line);
  border-radius: var(--r-lg); background: var(--card);
}
.empty-state__icon { font-size: 2rem; }
.empty-state h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; margin-top: 10px; }
.empty-state p { color: var(--muted); margin: 10px auto 22px; max-width: 420px; }

/* ============================================================
   BUNDLE (dark)
   ============================================================ */
.bundle {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(14, 122, 90, .22), transparent 60%),
    radial-gradient(40% 40% at 12% 100%, rgba(198, 161, 91, .1), transparent 60%),
    var(--dark);
  color: #F2F1EA;
  padding-block: var(--section);
  overflow: hidden;
}
.bundle__head { text-align: center; }
.bundle__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.8rem); letter-spacing: -.035em; line-height: 1.05;
  margin-top: 18px;
}
.bundle__sub { color: rgba(242, 241, 234, .72); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-top: 16px; max-width: 560px; margin-inline: auto; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 800; letter-spacing: .16em; font-size: .78rem;
  padding: 9px 18px; border-radius: 999px;
}
.badge--gold {
  background: linear-gradient(100deg, #E9D49B, #D3AF62);
  color: #2A2007;
  box-shadow: 0 10px 30px -12px rgba(198, 161, 91, .65);
}

.bundle__fan { position: relative; margin-top: clamp(34px, 4vw, 54px); }
.fan-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(760px, 100%); aspect-ratio: 2.2;
  background: radial-gradient(closest-side, rgba(15, 155, 112, .3), rgba(15, 155, 112, .05) 55%, transparent);
  filter: blur(14px);
}
.fan {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: flex-end;
  height: clamp(210px, 26vw, 330px);
  perspective: 1600px;
}
.fan .bk { flex: 0 0 auto; --w: clamp(104px, 11.5vw, 150px); margin-inline: calc(clamp(104px, 11.5vw, 150px) * -.09); }
.fan .bk__floor { top: 100%; opacity: .9; }
.fan .bk:nth-child(1) { z-index: 1; transform: translateY(34px) rotate(3deg); }
.fan .bk:nth-child(1) .bk__3d { --ry: 14; --rx: 4; }
.fan .bk:nth-child(2) { z-index: 2; transform: translateY(14px) rotate(2deg); }
.fan .bk:nth-child(2) .bk__3d { --ry: 8; --rx: 3; }
.fan .bk:nth-child(3) { z-index: 3; transform: translateY(4px) rotate(1deg); }
.fan .bk:nth-child(3) .bk__3d { --ry: 4; --rx: 2; }
.fan .bk:nth-child(4) { z-index: 4; transform: translateY(0) rotate(0); }
.fan .bk:nth-child(4) .bk__3d { --ry: 0; --rx: 2; }
.fan .bk:nth-child(5) { z-index: 3; transform: translateY(4px) rotate(-1deg); }
.fan .bk:nth-child(5) .bk__3d { --ry: -4; --rx: 2; }
.fan .bk:nth-child(6) { z-index: 2; transform: translateY(16px) rotate(-2deg); }
.fan .bk:nth-child(6) .bk__3d { --ry: -9; --rx: 3; }
.fan .bk:nth-child(7) { z-index: 1; transform: translateY(36px) rotate(-3.5deg); }
.fan .bk:nth-child(7) .bk__3d { --ry: -15; --rx: 4; }
.bundle__fan-note {
  position: relative; z-index: 2; text-align: center; margin-top: clamp(18px, 2.4vw, 30px);
  font-family: var(--f-display); font-weight: 700; letter-spacing: .34em; font-size: .72rem; color: rgba(242, 241, 234, .55);
}

.bundle__cols {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px);
  margin-top: clamp(48px, 6vw, 80px); align-items: center;
}
.bundle__contents-title { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 22px; }
.bundle__checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.bundle__checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: rgba(242, 241, 234, .92); line-height: 1.45; }
.check {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: rgba(15, 155, 112, .25); color: #6FE3B9; font-size: .72rem;
  display: grid; place-items: center; font-weight: 800;
  border: 1px solid rgba(111, 227, 185, .35);
}

.price-card {
  background: var(--bg); color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-3);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--acc), var(--gold));
}
.price-card__label { font-family: var(--f-display); font-weight: 700; letter-spacing: .18em; font-size: .7rem; color: var(--muted); margin-top: 12px; }
.price-card__label:first-of-type { margin-top: 0; }
.price-card__was { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--muted); margin-top: 4px; }
.price-card__now { display: flex; align-items: baseline; gap: 10px; margin: 6px 0 22px; }
.price-card__now span:first-child { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.5rem, 4vw, 3.4rem); letter-spacing: -.03em; line-height: 1; }
.price-card__unit { font-size: .9rem; color: var(--muted); font-weight: 500; }
.price-card__fine { margin-top: 14px; font-size: .84rem; color: var(--muted); text-align: center; }

/* ============================================================
   INSIDE
   ============================================================ */
.inside { padding-block: var(--section); background: var(--card); }
.inside__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }

.doc { position: relative; perspective: 1200px; }
.doc__sheet {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border-radius: 8px;
  box-shadow: var(--shadow-3), 0 1px 0 rgba(255, 255, 255, .9) inset;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4.1;
  max-width: 400px; margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  transform: rotateY(-8deg) rotateX(1.5deg);
  position: relative;
}
.doc__sheet::after { /* paper texture */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background-image: radial-gradient(rgba(16, 21, 15, .045) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .5; pointer-events: none;
}
.doc__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.doc__brand { font-family: var(--f-display); font-weight: 800; font-size: .66rem; letter-spacing: .14em; color: var(--acc); }
.doc__guide { font-size: .58rem; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.doc__rule { height: 2px; margin: 12px 0 18px; background: linear-gradient(90deg, var(--ink), rgba(22, 26, 29, .1)); }
.doc__p { font-family: var(--f-display); font-weight: 800; }
.doc__p--xl { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -.01em; }
.doc__p--sm { font-family: var(--f-body); font-weight: 600; font-size: .62rem; letter-spacing: .14em; color: var(--muted); margin-top: 6px; }
.doc__table { margin-top: 16px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.doc__row { display: flex; justify-content: space-between; gap: 10px; padding: 9px 12px; font-size: .78rem; border-bottom: 1px solid var(--line); }
.doc__row:last-child { border-bottom: 0; }
.doc__row span:first-child { font-weight: 600; color: var(--ink-2); }
.doc__val { color: var(--acc); font-weight: 700; font-family: var(--f-display); letter-spacing: .02em; }
.doc__procedure { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.doc__step { display: flex; align-items: center; gap: 10px; }
.doc__step-n {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--acc); color: #fff; font-size: .66rem; font-weight: 700;
  display: grid; place-items: center;
}
.doc__line { height: 6px; border-radius: 4px; background: linear-gradient(90deg, rgba(22, 26, 29, .14), rgba(22, 26, 29, .05)); width: 100%; }
.doc__line--long { max-width: 88%; }
.doc__line--med { max-width: 70%; }
.doc__cost { margin-top: 14px; font-size: .68rem; font-weight: 600; letter-spacing: .1em; color: var(--muted); }
.doc__cost-bar { display: block; height: 7px; border-radius: 5px; margin-top: 6px; background: linear-gradient(90deg, var(--acc) 0 62%, rgba(22, 26, 29, .08) 62% 100%); }
.doc-chip { position: absolute; top: -14px; right: -6px; animation: none; }

.inside__features { display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 30px); }
.inside__features li { display: flex; gap: 18px; align-items: flex-start; }
.feat-icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 16px;
  background: var(--acc-soft); display: grid; place-items: center;
  font-size: 1.4rem; border: 1px solid rgba(14, 122, 90, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}
.inside__features h3 { font-family: var(--f-display); font-weight: 800; font-size: 1rem; letter-spacing: .08em; }
.inside__features p { color: var(--muted); font-size: .95rem; margin-top: 3px; }

/* contents page inside the PDF mock */
.doc__sheet--toc { display: flex; flex-direction: column; }
.doc__toc { margin-top: 18px; list-style: none; padding: 0; }
.doc__toc li {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 12px;
  padding: 8.5px 2px; border-bottom: 1px dashed rgba(22, 26, 29, .14);
  font-size: .84rem;
}
.doc__toc li:last-child { border-bottom: 0; }
.doc__toc b { font-family: var(--f-display); font-weight: 800; font-size: .72rem; color: var(--gold); letter-spacing: .04em; }
.doc__toc span { font-weight: 600; color: var(--ink-2); border-bottom: 1px dotted rgba(22, 26, 29, .3); line-height: 1.6; }
.doc__toc i { font-style: normal; font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .06em; }
.doc__note {
  margin-top: auto; padding-top: 14px; font-size: .72rem; line-height: 1.5; color: #6B4E13;
  background: #FFF6E0; border: 1px solid #EFDFAE; border-radius: 10px; padding: 9px 12px;
}
.doc__note::before { content: "\2713 "; color: var(--gold); font-weight: 800; }

/* guided chapter steps (right column) */
.inside__steps { display: flex; flex-direction: column; }
.ise { display: grid; grid-template-columns: 58px 1fr; gap: 6px 18px; position: relative; padding-bottom: clamp(18px, 2.4vw, 26px); }
.ise:last-child { padding-bottom: 0; }
.ise::before {
  content: ""; position: absolute; left: 27px; top: 62px; bottom: 4px; width: 2px;
  background: repeating-linear-gradient(180deg, rgba(14, 122, 90, .3) 0 5px, transparent 5px 10px);
}
.ise:last-child::before { display: none; }
.ise__tile { position: relative; width: 56px; height: 56px; }
.inside__steps .feat-icon { width: 56px; height: 56px; font-size: 1.45rem; border-radius: 18px; }
.ise__n {
  position: absolute; top: -9px; right: -10px; z-index: 2;
  min-width: 24px; height: 24px; padding: 0 6px; border-radius: 999px;
  background: var(--acc); color: #fff; font-family: var(--f-display); font-weight: 800;
  font-size: .66rem; letter-spacing: .03em; display: grid; place-items: center;
  box-shadow: 0 3px 8px -2px rgba(14, 122, 90, .55);
}
.ise__body { padding-top: 2px; }
.ise__body h3 { font-family: var(--f-display); font-weight: 800; font-size: 1rem; letter-spacing: .07em; line-height: 1.3; }
.ise__body p { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-top: 5px; max-width: 460px; }

/* specimen: raw-materials & suppliers sample page */
.specimen {
  margin-top: clamp(48px, 7vw, 84px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  padding: clamp(22px, 4vw, 44px);
}
.specimen__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 14px 18px; flex-wrap: wrap; }
.specimen__titles h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 1.8rem); letter-spacing: -.01em; margin-top: 2px; }
.specimen__lead { color: var(--muted); max-width: 780px; margin-top: 10px; font-size: 1rem; }
.specimen__wrap { margin-top: 22px; border: 1px solid var(--line); border-radius: 12px; overflow-x: auto; }
.specimen__table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .92rem; }
.specimen__table th {
  text-align: left; font-family: var(--f-display); font-weight: 800; font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--acc);
  padding: 12px 18px; background: var(--acc-soft); border-bottom: 1px solid rgba(14, 122, 90, .16);
}
.specimen__table td { padding: 13px 18px; border-bottom: 1px solid var(--line); color: var(--ink-2); vertical-align: top; }
.specimen__table tbody tr:nth-child(even) td { background: rgba(16, 21, 15, .022); }
.specimen__table tbody tr:last-child td { border-bottom: 0; }
.specimen__table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.specimen__table em { font-style: normal; color: var(--muted); font-size: .86em; font-weight: 500; }
.specimen__cap { margin-top: 10px; font-size: .82rem; color: var(--muted); }
.specimen__cap strong { color: var(--ink-2); }
.specimen__incl {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px; padding: 12px 14px; border-radius: 12px;
  background: #FFF7E2; border: 1px solid #EDDBAB;
  color: #6B4E13; font-size: .9rem; line-height: 1.55;
}
.specimen__incl strong { color: #54390C; }
.specimen__incl::before { content: "\1F6D2"; font-size: 1.1rem; line-height: 1.2; }
.specimen__tips { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 20px; }
.specimen__tips-label { font-family: var(--f-display); font-weight: 800; letter-spacing: .09em; font-size: .72rem; color: var(--gold); margin-right: 4px; }
.tip {
  background: #FFF7E2; border: 1px solid #EDDBAB; color: #6B4E13;
  font-size: .8rem; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.tip::before { content: "\2713"; color: var(--gold); font-weight: 800; }

/* testimonial cards */
.reviews { padding-block: var(--section); background: var(--bg-soft); border-block: 1px solid var(--line-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 22px; margin-top: 6px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 22px 20px; box-shadow: var(--shadow-1, 0 2px 12px rgba(16, 21, 15, .06));
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.review__top { display: flex; align-items: center; gap: 12px; }
.review__ava {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  font-family: var(--f-display); font-size: .86rem; letter-spacing: .03em;
  background: linear-gradient(135deg, var(--a1, #0E7A5A), var(--a2, #4FA97F));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}
.review__who h3 { font-family: var(--f-display); font-weight: 800; font-size: .98rem; letter-spacing: .01em; }
.review__who p { font-size: .78rem; color: var(--muted); margin-top: 1px; }
.review__stars { margin-left: auto; color: #E4B645; letter-spacing: 2px; font-size: .92rem; line-height: 1; }
.review__quote { margin-top: 14px; color: var(--ink-2); font-size: .95rem; line-height: 1.68; flex: 1; }
.review__tag {
  margin-top: 16px; align-self: flex-start;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; color: var(--acc);
  background: var(--acc-soft); border: 1px solid rgba(14, 122, 90, .14);
  padding: 6px 11px; border-radius: 999px;
}

/* social-proof purchase toasts (landing) */
.social-wrap {
  position: fixed; left: 16px; bottom: 96px; z-index: 120;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  pointer-events: none; max-width: calc(100vw - 32px);
}
@media (min-width: 981px) { .social-wrap { bottom: 22px; } }
.social {
  pointer-events: auto;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, .97); border: 1px solid var(--line);
  border-left: 3px solid var(--acc); border-radius: 14px;
  box-shadow: 0 18px 44px -12px rgba(16, 21, 15, .3);
  padding: 10px 12px; max-width: min(350px, calc(100vw - 32px));
  transform: translateY(18px) scale(.96); opacity: 0;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), opacity .45s;
}
.social.is-in { opacity: 1; transform: none; }
.social.is-out { opacity: 0; transform: translateX(-16px); }
.social__ava {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  font-family: var(--f-display); font-size: .8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}
.social__body p { font-size: .8rem; line-height: 1.45; color: var(--ink-2); }
.social__body strong { color: var(--ink); }
.social__meta { margin-top: 3px; font-size: .68rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.social__ok { color: var(--acc); font-weight: 700; }
.social__x {
  margin-left: 4px; flex: 0 0 auto; width: 24px; height: 24px;
  border: 0; border-radius: 50%; background: transparent; color: var(--muted);
  font-size: 1rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s;
}
.social__x:hover { background: rgba(16, 21, 15, .06); color: var(--ink); }

/* ============================================================
   PREVIEW GALLERY
   ============================================================ */
.preview { padding-block: var(--section); background: var(--bg-soft); border-block: 1px solid var(--line-2); }
.gallery { position: relative; display: grid; grid-template-columns: 48px 1fr 48px; gap: 14px; align-items: center; }
.gallery__track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 26px 8px 30px;
  scrollbar-width: thin; scrollbar-color: rgba(14, 122, 90, .4) transparent;
}
.gallery__track::-webkit-scrollbar { height: 6px; }
.gallery__track::-webkit-scrollbar-thumb { background: rgba(14, 122, 90, .35); border-radius: 99px; }
.gallery__track::-webkit-scrollbar-track { background: rgba(16, 21, 15, .06); border-radius: 99px; }
.pg { flex: 0 0 auto; width: clamp(230px, 24vw, 272px); scroll-snap-align: center; }
.pg__sheet {
  background: linear-gradient(180deg, #fffdf8, #f6f2e8);
  border: 1px solid rgba(22, 26, 29, .1);
  border-radius: 6px;
  box-shadow: var(--shadow-2);
  padding: clamp(20px, 2.4vw, 28px);
  aspect-ratio: 4 / 5.4;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s, box-shadow .35s;
}
.pg__sheet:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.pg__sheet::after { content: ""; position: absolute; right: 6px; bottom: 6px; width: 26px; height: 26px; background: rgba(198, 161, 91, .4); clip-path: polygon(100% 0, 100% 100%, 0 100%); border-radius: 0 0 4px; }
.pg__kicker { font-size: .58rem; letter-spacing: .2em; color: var(--gold); font-weight: 800; }
.pg h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1rem, 1.4vw, 1.22rem); letter-spacing: .02em; line-height: 1.2; }
.pg__bar { display: block; height: 7px; border-radius: 4px; background: rgba(22, 26, 29, .12); width: 100%; }
.pg__bar--full { background: linear-gradient(90deg, var(--acc), rgba(14, 122, 90, .2)); }
.pg__bar--med { max-width: 74%; }
.pg__bar--short { max-width: 52%; }
.pg__blur { display: block; font-size: .74rem; color: var(--muted); filter: blur(4.5px); line-height: 1.7; user-select: none; }
.pg__blur--lg { font-size: .84rem; }
.pg__rows { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.pg__rows i { height: 8px; border-radius: 4px; background: rgba(22, 26, 29, .09); }
.pg__table { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pg__table i { height: 30px; border-radius: 5px; background: rgba(22, 26, 29, .06); border: 1px dashed rgba(22, 26, 29, .16); }
.pg__steps { display: flex; flex-direction: column; gap: 9px; }
.pg__steps i { display: flex; align-items: center; gap: 10px; }
.pg__steps b { width: 20px; height: 20px; flex: 0 0 auto; border-radius: 50%; background: var(--acc-soft); color: var(--acc); font-size: .66rem; display: grid; place-items: center; }
.pg__steps em { height: 8px; flex: 1; border-radius: 4px; background: rgba(22, 26, 29, .1); }
.pg__cost { display: flex; align-items: center; gap: 14px; }
.pg__cost b { font-family: var(--f-display); font-size: 1.6rem; color: var(--acc); }
.pg__chart { display: flex; align-items: flex-end; gap: 5px; height: 70px; flex: 1; }
.pg__chart i { flex: 1; background: linear-gradient(180deg, var(--acc-2), var(--acc)); border-radius: 3px 3px 0 0; height: var(--h, 60%); min-height: 12px; opacity: .85; }
.pg figcaption { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 14px; font-weight: 500; }

/* realistic page interiors (SNEAK PEEK) */
.pg__sheet {
  background: linear-gradient(178deg, #FFFEFA 0%, #FBFAF3 55%, #F2EEDF 100%);
  box-shadow:
    1px 1px 0 0 #EEE8D6, 2px 2px 0 0 #E6DFC9, 3px 3px 0 0 #DAD1B6,
    5px 6px 18px -4px rgba(31, 28, 20, .24);
  overflow: hidden;
}
.pg:nth-child(even) .pg__sheet { transform: rotate(.7deg); }
.pg:nth-child(odd) .pg__sheet { transform: rotate(-.5deg); }
.pg__sheet:hover { transform: rotate(0deg) translateY(-6px); }
.pg__sheet::after {
  width: 22px; height: 22px;
  background: linear-gradient(225deg, #DDD3B5 0%, #EFE9D6 58%, rgba(120, 111, 92, .25) 100%);
}
.pg__mast {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  padding-bottom: 7px; border-bottom: 1px solid rgba(22, 26, 29, .14);
}
.pg__mast b { font-size: .56rem; letter-spacing: .15em; color: var(--acc); font-weight: 800; }
.pg__mast i { font-style: normal; font-size: .52rem; letter-spacing: .12em; color: var(--muted); font-weight: 700; }
.pg__sec { font-size: .58rem; letter-spacing: .22em; color: var(--gold); font-weight: 800; }
.pg__sheet h3 { font-size: clamp(.92rem, 1.35vw, 1.1rem); line-height: 1.25; margin-top: -3px; letter-spacing: .01em; }
.pg__rows2 { display: flex; flex-direction: column; }
.pg__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 6.5px 0; border-bottom: 1px dashed rgba(22, 26, 29, .16);
  font-size: .76rem; line-height: 1.4;
}
.pg__row:last-of-type { border-bottom: 0; }
.pg__row b { color: var(--ink-2); font-weight: 600; }
.pg__row em { font-style: normal; color: var(--muted); font-size: .84em; text-align: right; }
.pg__row3 {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: baseline;
  gap: 6px 10px; padding: 6.5px 0; border-bottom: 1px dashed rgba(22, 26, 29, .16);
  font-size: .72rem; line-height: 1.4;
}
.pg__row3:last-of-type { border-bottom: 0; }
.pg__row3 b { color: var(--ink-2); font-weight: 600; }
.pg__row3 em { font-style: normal; color: var(--muted); font-size: .9em; }
.pg__row3 i { font-style: normal; color: var(--acc); font-weight: 700; font-size: .88em; white-space: nowrap; }
.pg__rowc {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 6px 0; border-bottom: 1px dashed rgba(22, 26, 29, .16); font-size: .74rem;
}
.pg__rowc b { color: var(--ink-2); font-weight: 600; }
.pg__rowc em { font-style: normal; font-family: var(--f-display); color: var(--ink); font-weight: 700; }
.pg__total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 7px; padding: 8px 11px; background: var(--acc-soft); border-radius: 9px;
  font-size: .74rem; color: var(--ink-2); font-weight: 600;
}
.pg__total b { font-family: var(--f-display); font-size: .95rem; letter-spacing: .01em; color: var(--acc); }
.pg__step {
  display: flex; gap: 9px; align-items: flex-start;
  padding: 6px 0; border-bottom: 1px dashed rgba(22, 26, 29, .16); font-size: .76rem; line-height: 1.42;
}
.pg__step:last-of-type { border-bottom: 0; }
.pg__step b {
  flex: 0 0 auto; width: 19px; height: 19px; border-radius: 50%;
  background: var(--acc); color: #fff; display: grid; place-items: center;
  font-size: .6rem; margin-top: 1px;
}
.pg__step p { color: var(--ink-2); }
.pg__tip {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 5.5px 0; border-bottom: 1px dashed rgba(22, 26, 29, .16);
  font-size: .76rem; line-height: 1.42; color: var(--ink-2);
}
.pg__tip::before { content: "\2713"; color: var(--acc); font-weight: 800; flex: 0 0 auto; }
.pg__tip:last-of-type { border-bottom: 0; }
.pg__note {
  margin-top: 2px; font-size: .7rem; line-height: 1.45; color: #6B4E13;
  background: #FFF6E0; border: 1px solid #EFDFAE;
  padding: 6px 9px; border-radius: 8px;
}
.pg__foot {
  margin-top: auto; padding-top: 6px; border-top: 1px solid rgba(22, 26, 29, .14);
  display: flex; justify-content: space-between; gap: 8px;
  font-size: .52rem; letter-spacing: .12em; color: var(--muted); font-weight: 600;
}
/* tighten so every sample page fits its sheet */
.pg__sheet { aspect-ratio: 4 / 5.9; padding: 17px clamp(15px, 1.9vw, 21px) 15px; gap: 7px; }
.pg__mast { padding-bottom: 5px; }
.pg__sheet h3 { font-size: clamp(.85rem, 1.15vw, 1rem); line-height: 1.22; margin-top: -2px; }
.pg__row, .pg__row3 { padding: 3.5px 0; font-size: .7rem; }
.pg__row3 { gap: 4px 8px; }
.pg__rowc { padding: 2.5px 0; font-size: .7rem; }
.pg__step { padding: 3px 0; font-size: .72rem; gap: 8px; }
.pg__tip { padding: 2.5px 0; font-size: .71rem; }
.pg__note { margin-top: 1px; padding: 5px 8px; font-size: .65rem; line-height: 1.4; }
.pg__total { margin-top: 3px; padding: 6px 9px; font-size: .7rem; }
.pg__foot { padding-top: 5px; }
.preview__note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 8px; }
.gallery__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card);
  display: grid; place-items: center; font-size: 1.1rem;
  box-shadow: var(--shadow-1);
  transition: all .25s;
  z-index: 3;
}
.gallery__arrow:hover { border-color: var(--acc); color: var(--acc); transform: translateY(-2px); }

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses { padding-block: var(--section); }
.bonus__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bonus-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px 28px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.bonus-card::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 140px; height: 140px;
  background: radial-gradient(closest-side, rgba(198, 161, 91, .16), transparent);
}
.bonus-card__badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--f-display); font-weight: 800; font-size: .6rem; letter-spacing: .12em;
  color: #7A5A17; background: rgba(198, 161, 91, .16);
  border: 1px solid rgba(198, 161, 91, .4);
  padding: 5px 10px; border-radius: 999px;
}
.bonus-card__num { font-family: var(--f-display); font-weight: 800; font-size: .86rem; letter-spacing: .16em; color: var(--gold); }
.bonus-card__icon {
  width: 54px; height: 54px; border-radius: 16px; margin-top: 16px;
  background: linear-gradient(140deg, var(--dark-2), var(--dark));
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 14px 24px -14px rgba(16, 21, 15, .55);
}
.bonus-card h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.04rem; letter-spacing: .05em; margin-top: 18px; }
.bonus-card p { color: var(--muted); font-size: .93rem; margin-top: 8px; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.audience { padding-block: var(--section); background: linear-gradient(180deg, var(--bg), var(--bg-soft)); border-block: 1px solid var(--line-2); }
.audience__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.who-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .3s;
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: rgba(14, 122, 90, .3); }
.who-card__icon {
  width: 60px; height: 60px; margin-inline: auto; border-radius: 50%;
  background: var(--acc-soft); display: grid; place-items: center;
  font-size: 1.5rem;
  transition: transform .35s;
}
.who-card:hover .who-card__icon { transform: scale(1.08) rotate(-4deg); }
.who-card h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.06rem; letter-spacing: .04em; margin-top: 18px; }
.who-card p { color: var(--muted); font-size: .94rem; margin-top: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding-block: var(--section); background: var(--card); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; counter-reset: step; }
.step {
  position: relative; text-align: center;
  padding: clamp(28px, 3vw, 42px) 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--line);
  transition: transform .35s, box-shadow .35s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.step__num {
  width: 66px; height: 66px; margin-inline: auto; border-radius: 50%;
  font-family: var(--f-display); font-weight: 800; font-size: 1.35rem;
  color: var(--acc); background: var(--acc-soft);
  display: grid; place-items: center;
  border: 1px dashed rgba(14, 122, 90, .4);
  position: relative;
  transition: transform .35s, background .3s, color .3s;
}
.step:hover .step__num { background: var(--acc); color: #fff; transform: scale(1.06); }
.step h3 { font-family: var(--f-display); font-weight: 800; letter-spacing: .08em; font-size: .98rem; margin-top: 18px; }
.step p { color: var(--muted); font-size: .92rem; margin-top: 8px; max-width: 230px; margin-inline: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: var(--section); background: var(--bg-soft); border-block: 1px solid var(--line-2); }
.faq__wrap { max-width: 860px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.acc-item.is-open { border-color: rgba(14, 122, 90, .4); box-shadow: var(--shadow-2); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; padding: 20px 24px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem;
  color: var(--ink);
  transition: color .25s;
}
.acc-btn:hover { color: var(--acc); }
.acc-chev { position: relative; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .35s, background .3s, border-color .3s; }
.acc-chev::before, .acc-chev::after { content: ""; position: absolute; top: 50%; left: 50%; background: currentColor; transition: transform .3s; }
.acc-chev::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.acc-chev::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.acc-item.is-open .acc-chev { transform: rotate(45deg); background: var(--acc); border-color: var(--acc); color: #fff; }
.acc-panel {
  display: grid; grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .4s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .4s;
}
.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows .4s cubic-bezier(.2, .8, .2, 1), visibility 0s;
}
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding: 0 24px 22px; color: var(--muted); font-size: .97rem; max-width: 720px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background: var(--dark);
  color: #F4F2EA;
  padding-block: clamp(90px, 11vw, 150px);
  position: relative; overflow: hidden;
  text-align: center;
}
.final__glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(900px, 120%); aspect-ratio: 1.4;
  background:
    radial-gradient(closest-side, rgba(14, 122, 90, .35), transparent 70%),
    radial-gradient(closest-side at 30% 70%, rgba(198, 161, 91, .14), transparent 60%);
  filter: blur(8px);
}
.final__inner { position: relative; z-index: 2; }
.final__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.3rem, 5.6vw, 4.4rem);
  letter-spacing: -.04em; line-height: 1.03;
}
.final__sub { margin-top: 18px; color: rgba(244, 242, 234, .75); font-size: clamp(1rem, 1.6vw, 1.22rem); }
.final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.final__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 36px; }
.final__chips li {
  font-family: var(--f-display); font-weight: 600; letter-spacing: .12em; font-size: .8rem;
  color: rgba(244, 242, 234, .8);
}
.final__chips li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-right: 10px; vertical-align: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-3); color: rgba(244, 242, 234, .85); padding-top: clamp(54px, 6vw, 80px); }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 34px;
  padding-bottom: clamp(40px, 5vw, 60px);
}
.brand--footer .brand__mark { filter: none; }
.footer__blurb { margin-top: 18px; color: rgba(244, 242, 234, .62); font-size: .92rem; max-width: 300px; }
.footer__col h4, .footer__social h4 { font-family: var(--f-display); font-weight: 800; font-size: .74rem; letter-spacing: .2em; color: var(--gold-2); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: .94rem; color: rgba(244, 242, 234, .72); transition: color .2s, transform .2s; }
.footer__col a:hover { color: #fff; transform: translateX(3px); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(244, 242, 234, .16);
  display: grid; place-items: center;
  color: rgba(244, 242, 234, .8);
  transition: all .25s;
}
.socials a svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.socials a:hover { background: var(--acc); border-color: var(--acc); color: #fff; transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(244, 242, 234, .1);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-block: 22px; font-size: .85rem; color: rgba(244, 242, 234, .55);
  flex-wrap: wrap;
}
.footer__made { letter-spacing: .06em; }

/* ============================================================
   FAB (mobile sticky CTA)
   ============================================================ */
.fab {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(250, 250, 247, 0), rgba(250, 250, 247, .94) 30%);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  display: none;
}
.fab.is-visible { transform: translateY(0); }
body.has-fab .footer { padding-bottom: calc(clamp(80px, 12vw, 100px) + env(safe-area-inset-bottom)); }

/* ============================================================
   CART ICON (landing header) + pricing extras
   ============================================================ */
.cart-link {
  position: relative; flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, .6); color: var(--ink);
  display: grid; place-items: center;
  transition: border-color .25s, color .25s, background .25s;
}
.cart-link:hover { border-color: var(--acc); color: var(--acc); background: var(--acc-soft); }
.cart-link svg { width: 20px; height: 20px; stroke-width: 1.9; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 99px;
  background: var(--gold); color: #221A07;
  font-family: var(--f-display); font-weight: 800; font-size: .62rem;
  display: grid; place-items: center;
  border: 2px solid var(--bg);
}
.price-card__save {
  display: inline-block; margin: 12px 0 16px;
  font-family: var(--f-display); font-weight: 800; letter-spacing: .06em; font-size: .78rem;
  color: #2A2007; background: linear-gradient(100deg, #E9D49B, #D3AF62);
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(198, 161, 91, .7);
}
.how__note {
  margin-top: 26px; text-align: center;
  font-family: var(--f-display); font-weight: 700; letter-spacing: .06em; font-size: .9rem; color: var(--muted);
}

/* ============================================================
   CHECKOUT OVERLAY (legacy styles for the pre-GCash demo)
   ============================================================ */
.co { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center end; }
.co[hidden] { display: none; }
.co__scrim {
  position: absolute; inset: 0;
  background: rgba(13, 17, 14, .55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: coFade .3s ease both;
}
.co__panel {
  position: relative; z-index: 2;
  width: min(460px, 100%);
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--line-2);
  box-shadow: -30px 0 80px -30px rgba(10, 14, 10, .5);
  padding: clamp(24px, 4vw, 40px);
  overflow-y: auto;
  display: flex; flex-direction: column;
  animation: coSlide .42s cubic-bezier(.2, .8, .2, 1) both;
}
@keyframes coFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes coSlide { from { transform: translateX(60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.co__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.co__eyebrow { font-family: var(--f-display); font-weight: 800; letter-spacing: .18em; font-size: .66rem; color: var(--acc); }
.co__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.6rem); letter-spacing: -.02em; margin-top: 5px; line-height: 1.2; }
.co__x {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card); color: var(--ink-2);
  display: grid; place-items: center; transition: all .2s;
}
.co__x:hover { border-color: var(--ink); color: var(--ink); }

.co__steps { display: flex; gap: 6px; margin: 24px 0 26px; }
.co__step-ind { display: flex; align-items: center; gap: 7px; flex: 1; min-width: 0; }
.co__dot {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 800; font-size: .72rem;
  background: var(--bg-soft); color: var(--muted); border: 1px solid var(--line);
  transition: all .3s;
}
.co__step-ind em { font-style: normal; font-family: var(--f-display); font-weight: 700; font-size: .62rem; letter-spacing: .08em; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.co__step-ind.is-done .co__dot { background: var(--acc); border-color: var(--acc); color: #fff; }
.co__step-ind.is-now .co__dot { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 0 0 4px rgba(22, 26, 29, .08); }
.co__step-ind.is-now em { color: var(--ink); }

.co__body { flex: 1; display: flex; flex-direction: column; }
.co__step { display: flex; flex-direction: column; gap: 18px; flex: 1; }
.co__step[hidden] { display: none; }

.co__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 7px;
}
.co__item-tag { font-family: var(--f-display); font-weight: 800; font-size: .62rem; letter-spacing: .16em; color: var(--gold); }
.co__item-title { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; line-height: 1.2; letter-spacing: -.01em; }
.co__item-sub { color: var(--muted); font-size: .88rem; }
.co__item-price { font-family: var(--f-display); font-weight: 800; font-size: 2.1rem; letter-spacing: -.02em; margin-top: 6px; color: var(--ink); }
.co__item-price span { font-size: .78rem; font-weight: 600; color: var(--muted); margin-left: 8px; letter-spacing: 0; }
.co__note { font-size: .86rem; color: var(--muted); text-align: center; }

.co__field label { display: block; font-family: var(--f-display); font-weight: 700; font-size: .8rem; letter-spacing: .02em; margin-bottom: 7px; }
.co__field input {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  font: inherit; font-size: .98rem;
  transition: border-color .2s, box-shadow .2s;
}
.co__field input::placeholder { color: rgba(107, 114, 120, .7); }
.co__field input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 4px rgba(14, 122, 90, .12); }
.co__field input[aria-invalid='true'] { border-color: #C0492E; box-shadow: 0 0 0 4px rgba(192, 73, 46, .1); }
.co__err { color: #C0492E; font-size: .8rem; margin-top: 6px; min-height: 0; }
.co__err:empty { margin: 0; }
.co__hint { font-size: .82rem; color: var(--muted); }

.co__actions { display: flex; gap: 12px; margin-top: auto; padding-top: 22px; }
.co__actions .btn { flex: 1; }
.co__step > .co__primary { margin-top: auto; }

.co__pay-summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-1); }
.co__pay-row { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; color: var(--ink-2); padding: 6px 0; }
.co__pay-row--total { border-top: 1px dashed var(--line); margin-top: 8px; padding-top: 14px; font-size: 1.02rem; color: var(--ink); }
.co__pay-row--total strong { font-family: var(--f-display); font-size: 1.45rem; }
.co__provider { border: 1px dashed rgba(198, 161, 91, .6); background: rgba(198, 161, 91, .07); border-radius: var(--r-md); padding: 16px 18px; }
.co__provider-name { font-family: var(--f-display); font-weight: 800; letter-spacing: .12em; font-size: .66rem; color: #7A5A17; }
.co__chips { display: flex; gap: 8px; margin-top: 10px; }
.co__chips span {
  font-family: var(--f-display); font-weight: 700; font-size: .72rem; letter-spacing: .06em;
  border: 1px solid rgba(198, 161, 91, .5); color: #7A5A17;
  padding: 6px 12px; border-radius: 99px; background: rgba(255, 255, 255, .6);
}
.co__demo { font-size: .78rem; color: #8a6a2a; margin-top: 10px; }

.co__live { min-height: 1.2em; font-size: .86rem; color: var(--muted); text-align: center; }

.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none;
}
.is-busy .spinner { display: inline-block; }
.is-busy .co__paylabel { opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

.co__success { text-align: center; align-items: center; }
.co__check {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(140deg, var(--acc-2), var(--acc));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 18px 36px -14px rgba(14, 122, 90, .55);
  animation: pop .5s cubic-bezier(.2, 1.4, .3, 1) both;
}
.co__check svg { width: 36px; height: 36px; stroke-width: 2.6; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.co__success-title { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; margin-top: 20px; letter-spacing: -.01em; }
.co__success-order { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.co__success-order strong { font-family: var(--f-display); color: var(--ink); letter-spacing: .04em; }
.co__success-item {
  width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px; display: flex; flex-direction: column; gap: 2px; text-align: left; box-shadow: var(--shadow-1);
}
.co__success-item strong { font-family: var(--f-display); font-weight: 800; }
.co__success-item span { font-size: .84rem; color: var(--muted); }

.co__delivery {
  width: 100%; text-align: left; background: var(--acc-soft); border: 1px solid rgba(14, 122, 90, .16);
  border-radius: var(--r-md); padding: 16px 18px;
}
.co__delivery-title { font-family: var(--f-display); font-weight: 800; letter-spacing: .16em; font-size: .64rem; color: var(--acc-dark); margin-bottom: 12px; }
.co__delivery ul { display: flex; flex-direction: column; gap: 10px; }
.co__delivery li { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--muted); opacity: .55; transition: opacity .3s; }
.co__delivery li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: rgba(10, 74, 56, .35); flex: 0 0 auto; transition: all .3s; }
.co__delivery li.is-on { opacity: 1; color: var(--ink); }
.co__delivery li.is-on::before { background: var(--acc); box-shadow: 0 0 0 4px rgba(14, 122, 90, .15); }
.co__fine { font-size: .78rem; color: var(--muted); }
.co__finish { width: 100%; }

.co__x[hidden], [hidden] { display: none !important; }

@media (max-width: 560px) {
  .co__panel { width: 100%; padding: 22px 20px; }
  .co__step-ind em { display: none; }
  .co__steps { gap: 12px; justify-content: center; }
  .co__step-ind { flex: 0 0 auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1120px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust__item:nth-child(2) { border-right: 0; }
}

@media (max-width: 980px) {
  .site-nav, .nav-cta { display: none; }
  .cart-link { margin-left: auto; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 520px; }
  .hero__copy { text-align: left; }
  .problem__cards { grid-template-columns: repeat(2, 1fr); }
  .bonus__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bundle__cols { grid-template-columns: 1fr; }
  .bundle__checklist { grid-template-columns: 1fr; }
  .inside__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .fab { display: block; }
}

@media (min-width: 721px) and (max-width: 1120px) {
  .card__media .bk { --w: 200px; }
  .card__media { min-height: 250px; }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .problem__solve { padding: 34px 24px; }
  .hero__visual { min-height: 470px; }
  .bk--behind-r { right: 5%; }
  .bk--float-t { right: -1%; }
  .bk--behind-l { left: 0; }
  .chip--1 { left: 4%; } .chip--3 { right: 1%; } .chip--4 { right: 5%; }
  .fan {
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: max(6vw, 24px);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fan::-webkit-scrollbar { display: none; }
  .fan .bk { --w: clamp(104px, 30vw, 132px); scroll-snap-align: center; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; padding-inline: 0; border-bottom: 1px solid var(--line-2); padding-block: 14px; }
  .trust__item:last-child { border-bottom: 0; }
}

@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .problem__cards, .bonus__grid, .audience__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero__visual { min-height: 430px; }
  .bk--behind-r { right: 0; }
  .bk--float-t { right: 0; }
  .bk--main { transform: translateX(-50%); }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .final__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   QUICK-BUY POPUP  (product click → details → GCash payment)
   ============================================================ */
.qb {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center; padding: 20px;
}
.qb[hidden] { display: none; }
.qb__scrim {
  position: absolute; inset: 0;
  background: rgba(13, 17, 14, .6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: qbFade .25s ease both;
}
.qb__panel {
  position: relative;
  width: min(600px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: var(--shadow-3);
  animation: qbPop .3s cubic-bezier(.2, 1.15, .3, 1) both;
  border: 1px solid var(--line-2);
}
@keyframes qbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qbPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.qb__x {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1; color: var(--muted);
  display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.qb__x:hover { background: var(--bg-soft); color: var(--ink); }

.qb__head h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.7rem); letter-spacing: -.02em; line-height: 1.15; padding-right: 34px; }
.qb__head p { color: var(--muted); margin-top: 8px; font-size: .95rem; max-width: 50ch; }

.qb__prod {
  display: flex; gap: 20px; align-items: center;
  margin-top: 20px;
  background: linear-gradient(150deg, var(--bg-soft), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.qb__desc { font-size: .95rem; line-height: 1.6; color: var(--muted); margin-top: 8px; }
.qb__cover { flex: 0 0 auto; }
.qb__cover .bk { --w: 92px; }
.qb__cover .bk__3d { --ry: -22; --rx: 3; }
.qb__meta { min-width: 0; }
.qb__cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-weight: 800; letter-spacing: .16em;
  font-size: .62rem; color: var(--acc);
}
.qb__cat--gold { color: #8a6a1f; }
.qb__meta h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.14rem; line-height: 1.2; letter-spacing: -.01em; margin-top: 5px; }
.qb__sub { font-family: var(--f-body); font-weight: 600; font-size: .8rem; letter-spacing: .04em; color: var(--muted); margin-top: 5px; }
.qb__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: 8px; font-family: var(--f-display); }
.qb__price s { color: var(--muted); font-size: .95rem; }
.qb__now { font-size: 1.55rem; font-weight: 800; color: var(--ink); }
.qb__save {
  font-family: var(--f-display); font-weight: 800; font-size: .62rem; letter-spacing: .12em;
  color: #6d5016; background: #F4E8CE; border: 1px solid rgba(198, 161, 91, .5);
  padding: 4px 10px; border-radius: 99px;
}
.qb__details {
  display: inline-block; margin-top: 9px; font-family: var(--f-display);
  font-weight: 700; font-size: .78rem; color: var(--acc);
  transition: opacity .2s;
}
.qb__details:hover { opacity: .75; }

.qb__form { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.qb-field { margin-bottom: 12px; }
.qb-field label { display: block; font-family: var(--f-display); font-weight: 700; font-size: .84rem; margin: 0 0 7px; }
.qb-field label em { font-style: normal; font-weight: 500; font-size: .74rem; color: var(--muted); font-family: var(--f-body); }
.qb-field input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--card); font: inherit; font-size: .98rem;
  transition: border-color .2s, box-shadow .2s;
}
.qb-field input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 4px rgba(14, 122, 90, .12); }
.qb-field input[aria-invalid='true'] { border-color: #C0492E; }
.qb__err { color: #C0492E; font-size: .8rem; min-height: 1em; margin-top: 4px; }
.qb__err:empty { margin: 0; }
.qb__hint { font-size: .8rem; color: var(--muted); margin-top: 5px; }
.qb__submit { margin-top: 6px; }
.qb__fine {
  text-align: center; color: var(--muted); font-size: .78rem; margin-top: 14px;
}
.qb__switch-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

@media (max-width: 560px) {
  .qb { padding: 14px; }
  .qb__panel { max-height: 94vh; border-radius: var(--r-md); }
  .qb__prod { flex-direction: column; text-align: center; gap: 12px; }
  .qb__cat { justify-content: center; }
  .qb__price { justify-content: center; }
  .qb__fine { font-size: .74rem; }
}

/* ---------- reduced motion ---------- */
/* quick-buy mini toast (landing page — no store toast system there) */
.qb-toast-wrap { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3000; display: grid; gap: 8px; width: min(92vw, 420px); pointer-events: none; }
.qb-toast { background: #14231a; color: #eaf4ec; border: 1px solid rgba(126, 217, 130, .35); box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .55); border-radius: 14px; padding: 12px 18px; font-size: .92rem; text-align: center; transition: opacity .3s, transform .3s; }
.qb-toast--out { opacity: 0; transform: translateY(8px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .bk, .bk__3d { animation: none; }
}
