/* ==========================================================================
   KEDAI IBU & ANAK — eBook Ibu Berpantang
   Design system + full site styles
   Theme: Soft Premium Postpartum Motherhood
   100% offline. No CDN, no external fonts, no remote dependency.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — 70% neutral / cream */
  --bg:            #FAF6F1;
  --bg-alt:        #FFF9F6;
  --bg-deep:       #F4EDE5;
  --surface:       #FFFFFF;
  --surface-2:     #FDFAF7;

  /* Text */
  --text:          #34312F;
  --muted:         #77706C;  /* 4.52:1 on --bg — WCAG AA for body text */
  --muted-2:       #807872;  /* 4.02:1 on --bg — micro-labels only, never long copy */

  /* Hairlines */
  --line:          #EAE1D7;
  --line-soft:     #F1EAE2;

  /* Pastels — 20% */
  --blush:         #EBCFD1;
  --blush-2:       #F3DCDD;
  --blush-3:       #FBF0F0;
  --sage:          #C9D9CD;
  --sage-2:        #AFC6B5;
  --sage-3:        #EDF3EE;
  --lavender:      #D9D1E7;
  --lavender-2:    #F0ECF6;
  --peach:         #F0D4C4;
  --peach-2:       #FAEBE1;

  /* Accents — 10% — taken from the real product artwork (forest green + gold) */
  --ink:           #2E4636;
  --ink-2:         #3F5A47;
  --ink-3:         #5A7364;
  --gold:          #B08D53;
  --gold-2:        #D8C29A;

  /* Radius */
  --radius-xs:     10px;
  --radius-sm:     14px;
  --radius-md:     22px;
  --radius-lg:     32px;
  --radius-xl:     44px;
  --radius-pill:   999px;

  /* Shadows — soft, layered, never harsh */
  --shadow-soft:   0 1px 2px rgba(52,49,47,.035), 0 8px 24px -14px rgba(52,49,47,.16);
  --shadow-lift:   0 2px 4px rgba(52,49,47,.04),  0 26px 50px -26px rgba(52,49,47,.26);
  --shadow-deep:   0 4px 10px rgba(52,49,47,.05), 0 40px 70px -32px rgba(52,49,47,.32);
  --shadow-glass:  0 2px 8px rgba(52,49,47,.06),  0 20px 44px -18px rgba(52,49,47,.30);
  --shadow-inset:  inset 0 1px 0 rgba(255,255,255,.75);

  /* Typography — offline-safe stacks only */
  --font-sans: "Segoe UI Variable Text", "Segoe UI", -apple-system, BlinkMacSystemFont,
               "Helvetica Neue", "Inter", Roboto, Arial, "Noto Sans", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
                Georgia, "Times New Roman", "Noto Serif", serif;

  /* Fluid type scale */
  --step--2: clamp(0.6875rem, 0.67rem + 0.09vw, 0.75rem);
  --step--1: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem);
  --step-0:  clamp(0.9375rem, 0.91rem + 0.14vw, 1.0625rem);
  --step-1:  clamp(1.0625rem, 1.02rem + 0.22vw, 1.25rem);
  --step-2:  clamp(1.25rem, 1.16rem + 0.42vw, 1.625rem);
  --step-3:  clamp(1.5rem, 1.33rem + 0.82vw, 2.125rem);
  --step-4:  clamp(1.875rem, 1.58rem + 1.42vw, 2.875rem);
  --step-5:  clamp(2.25rem, 1.75rem + 2.4vw, 4rem);

  /* Layout */
  --wrap:          1180px;
  --wrap-narrow:   760px;
  --gutter:        clamp(1.125rem, 0.85rem + 1.4vw, 2.5rem);
  --section-y:     clamp(4rem, 2.6rem + 6vw, 8.5rem);

  /* Floating navigation metrics */
  --nav-h:         64px;
  --nav-gap:       14px;
  --nav-safe:      calc(var(--nav-h) + var(--nav-gap) + env(safe-area-inset-bottom, 0px));

  /* Motion */
  --ease:          cubic-bezier(.22, .61, .36, 1);
  --ease-soft:     cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  /* Decorative glows deliberately bleed past the edges. `clip` contains them
     without creating a scroll container — the reliable fix on iOS Safari,
     where body{overflow-x:hidden} alone can still allow a rubber-band pan. */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.68;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Room for the floating navigation so nothing is ever covered */
  padding-bottom: calc(var(--nav-safe) + 26px);
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.018em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* The UA stylesheet gives these `margin: 1em 40px`, which silently injects
   ~46px of vertical space and 40px of side inset. Reset them explicitly. */
blockquote, figure, figcaption, dl, dd { margin: 0; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

::selection { background: var(--blush-2); color: var(--ink); }

/* Focus — visible, elegant, never removed */
:focus-visible {
  outline: 2px solid var(--ink-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.3rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 600;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--wide   { max-width: 1320px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.75rem, 1.8rem + 4vw, 5.5rem); }
.section--cream { background: var(--bg-alt); }
.section--deep  { background: var(--bg-deep); }

/* Soft hairline divider with a botanical dot */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--line);
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 190px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.rule span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-2); }

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.display   { font-family: var(--font-serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.1; }
.h1        { font-size: var(--step-5); }
.h2        { font-size: var(--step-4); }
.h3        { font-size: var(--step-3); }
.h4        { font-size: var(--step-2); }

.lede {
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.62;
  max-width: 60ch;
}

.muted { color: var(--muted); }
.small { font-size: var(--step--1); }
.tiny  { font-size: var(--step--2); }

/* Serif emphasis inside a sans headline — the editorial signature of the brand */
.em-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* Soft pastel highlight behind a word */
.em-mark {
  position: relative;
  white-space: nowrap;
}
.em-mark::after {
  content: "";
  position: absolute;
  left: -.12em; right: -.12em;
  bottom: .06em;
  height: .38em;
  background: var(--blush-2);
  border-radius: 3px;
  z-index: -1;
  opacity: .85;
}

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2, .section-head .h3 { margin-top: .7rem; }
.section-head .lede { margin-top: 1.1rem; }
.section-head--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 52px;
  padding: .9rem 1.7rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: -.005em;
  text-align: center;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background-color .28s var(--ease), border-color .28s var(--ease),
              color .28s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.988); }

.btn--primary {
  background: var(--ink);
  color: #FCFAF6;
  box-shadow: 0 2px 4px rgba(46,70,54,.14), 0 16px 30px -14px rgba(46,70,54,.5);
}
.btn--primary:hover {
  background: var(--ink-2);
  box-shadow: 0 3px 6px rgba(46,70,54,.16), 0 22px 40px -16px rgba(46,70,54,.55);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,.7);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--sage-2);
  transform: translateY(-2px);
}

.btn--quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-3);
  min-height: 48px;
}
.btn--quiet:hover { background: rgba(46,70,54,.055); }

.btn--full { width: 100%; }
.btn--sm { min-height: 44px; padding: .6rem 1.2rem; font-size: var(--step--1); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

/* Price microcopy is purchase information — keep it at AA contrast */
.btn-note {
  margin-top: .9rem;
  font-size: var(--step--2);
  color: var(--muted);
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   6. CHIPS / PILLS / BADGES
   -------------------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .48rem .95rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 1px 2px rgba(52,49,47,.04), 0 10px 22px -14px rgba(52,49,47,.28);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
}
.chip svg { flex: none; }
.chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-2); flex: none; }
.chip--blush .chip__dot { background: var(--blush); }
.chip--lav .chip__dot   { background: var(--lavender); }
.chip--peach .chip__dot { background: var(--peach); }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* --------------------------------------------------------------------------
   7. CARDS & SURFACES
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line);
}

.glass {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-glass), var(--shadow-inset);
}

/* --------------------------------------------------------------------------
   8. DECORATIVE ATMOSPHERE (glows + botanicals)
   -------------------------------------------------------------------------- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.glow--blush   { background: var(--blush); }
.glow--sage    { background: var(--sage); }
.glow--lav     { background: var(--lavender); }
.glow--peach   { background: var(--peach); }

.botanical {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--sage-2);
  opacity: .5;
}
.botanical--blush { color: var(--blush); }
.botanical--gold  { color: var(--gold-2); }

.section > .wrap,
.hero > .wrap { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   9. FLOATING BOTTOM NAVIGATION — LIQUID GLASS
   -------------------------------------------------------------------------- */
.nav-dock {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-gap) + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 120;
  width: calc(100% - 2 * var(--gutter));
  max-width: 480px;
  pointer-events: none;
}

.nav-dock__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: var(--nav-h);
  padding: 0 6px;
  border-radius: var(--radius-pill);
  pointer-events: auto;

  /* Liquid glass — fallback colour first, then the blur layer */
  background: rgba(252, 249, 245, .92);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    0 1px 1px rgba(52,49,47,.05),
    0 10px 24px -10px rgba(52,49,47,.28),
    0 30px 60px -28px rgba(52,49,47,.45),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(52,49,47,.035);
}

/* Only go translucent where the blur is actually supported */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav-dock__inner {
    background: rgba(253, 250, 246, .68);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    backdrop-filter: blur(26px) saturate(180%);
  }
}

/* Inner specular highlight — the "liquid" read */
.nav-dock__inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 46%);
  pointer-events: none;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 4px 2px;
  border-radius: var(--radius-md);
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;
  text-align: center;
  transition: color .3s var(--ease), transform .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-item svg { width: 21px; height: 21px; stroke-width: 1.6; transition: transform .3s var(--ease); }
.nav-item:hover { color: var(--ink); }
.nav-item:hover svg { transform: translateY(-1px); }
.nav-item:active { transform: scale(.94); }

.nav-item.is-active { color: var(--ink); }
.nav-item.is-active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 15px; height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  opacity: .85;
}

.nav-item__label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Centre HOME orb — raised, carries the brand logo */
.nav-home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 62px; height: 62px;
  margin-top: -30px;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow:
    0 2px 6px rgba(52,49,47,.10),
    0 14px 28px -10px rgba(52,49,47,.38),
    inset 0 1px 0 rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-home:hover { transform: translateY(-3px); box-shadow: 0 3px 8px rgba(52,49,47,.12), 0 22px 38px -12px rgba(52,49,47,.45), inset 0 1px 0 rgba(255,255,255,1); }
.nav-home:active { transform: scale(.95); }

.nav-home__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(46,70,54,.14);
  opacity: 0;
  transition: opacity .34s var(--ease);
}
.nav-home.is-active .nav-home__ring { opacity: 1; }

/* The brand mark is not a circle — it has a name plate that sits wider than
   the roundel — so it is contained, never cropped to a circle.
   BRAND LOGO SWAP POINT — replace assets/images/logo-kedai-ibu-anak.png */
.nav-home__logo {
  width: 46px; height: 46px;
  object-fit: contain;
}

@media (max-width: 359px) {
  .nav-item { font-size: 9.5px; }
  .nav-item svg { width: 19px; height: 19px; }
  .nav-home { width: 56px; height: 56px; margin-top: -26px; }
  .nav-home__logo { width: 45px; height: 45px; }
}

/* --------------------------------------------------------------------------
   10. STICKY MOBILE CTA (sits above the dock, never fights it)
   -------------------------------------------------------------------------- */
/* Zero-content scroll marker — needs a real box for IntersectionObserver */
[data-sticky-after] { display: block; width: 100%; height: 1px; }

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-safe) + 8px);
  transform: translate(-50%, 130%);
  z-index: 110;
  width: calc(100% - 2 * var(--gutter));
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 8px 8px 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(46,70,54,.94);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px -14px rgba(46,70,54,.7);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s var(--ease), opacity .35s var(--ease), visibility .35s;
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .sticky-cta {
    background: rgba(46,70,54,.86);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
  }
}
.sticky-cta.is-shown { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

.sticky-cta__text { flex: 1; min-width: 0; color: #F3EFE8; line-height: 1.25; }
.sticky-cta__title { display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta__sub { display: block; font-size: 11px; opacity: .72; }
.sticky-cta__btn {
  flex: none;
  min-height: 44px;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: #FCFAF6;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.sticky-cta__close {
  flex: none;
  width: 38px; height: 44px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: rgba(243,239,232,.6);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.sticky-cta__close:hover { color: #fff; }

@media (min-width: 900px) { .sticky-cta { display: none; } }

/* --------------------------------------------------------------------------
   11. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  padding-bottom: clamp(3rem, 2rem + 4.5vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% 6%,  rgba(243,220,221,.62) 0%, rgba(243,220,221,0) 58%),
    radial-gradient(100% 80% at 6% 88%,  rgba(201,217,205,.52) 0%, rgba(201,217,205,0) 60%),
    radial-gradient(80%  70% at 46% 0%,  rgba(217,209,231,.36) 0%, rgba(217,209,231,0) 62%),
    var(--bg);
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  align-items: center;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.6rem;
}
.hero__brand-logo {
  width: 46px; height: 46px;
  object-fit: contain;
}
.hero__brand-name {
  font-family: var(--font-serif);
  font-size: var(--step-0);
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.15;
}
.hero__brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}

/* Sized for a full-sentence headline — the grid column supplies the measure,
   so no artificial ch cap that would stack it into a narrow tower. */
.hero__title {
  /* One notch below --step-4: the headline is a full sentence, so it needs a
     slightly smaller size to stay 4 lines and keep the CTA above the fold. */
  font-size: clamp(1.6875rem, 1.36rem + 1.42vw, 2.5rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.02em;
  max-width: 22ch;
}
.hero__title .em-serif { display: inline; }

.hero__sub {
  margin-top: 1.4rem;
  font-size: var(--step-1);
  color: var(--text);
  max-width: 46ch;
  line-height: 1.6;
}

/* Supporting paragraph — steps down so the hero keeps one clear voice */
.hero__sub--secondary {
  margin-top: .95rem;
  font-size: var(--step-0);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.62;
}

.hero__trustline {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .02em;
}
.hero__trustline i { font-style: normal; color: var(--gold); opacity: .8; }

.hero__actions { margin-top: 2.1rem; }

.hero__chips { margin-top: 2.2rem; max-width: 480px; }

/* Hero visual composition — layered, editorial */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.hero__cover-frame {
  position: relative;
  width: min(100%, 400px);
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-deep), var(--shadow-inset);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  transform: rotate(-1.4deg);
  transition: transform .8s var(--ease);
}
.hero__cover-frame:hover { transform: rotate(-.4deg) translateY(-6px); }

.hero__cover {
  width: 100%;
  aspect-ratio: 907 / 1280;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  box-shadow: 0 10px 30px -14px rgba(52,49,47,.45);
}

/* --------------------------------------------------------------------------
   3D BOOK MOCKUP
   Transparent PNG with baked-in depth and page edges, so it floats free —
   no glass frame, no paper stack, no rotation. Those would fight the render.
   -------------------------------------------------------------------------- */
.mockup {
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
}

/* Soft contact shadow pooled under the book */
.mockup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  width: 62%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(52,49,47,.26) 0%, rgba(52,49,47,0) 72%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.mockup__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 1536;
  object-fit: contain;
  /* drop-shadow follows the book silhouette, not a rectangle */
  filter: drop-shadow(0 18px 26px rgba(52,49,47,.22));
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.mockup:hover .mockup__img {
  transform: translateY(-8px);
  filter: drop-shadow(0 30px 40px rgba(52,49,47,.28));
}

.mockup--hero { width: min(100%, 400px); }
@media (min-width: 900px) { .mockup--hero { width: min(100%, 450px); } }

@media (prefers-reduced-motion: reduce) {
  .mockup:hover .mockup__img { transform: none; }
}

/* Small floating glass chips over the visual */
.hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .95rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow-glass), var(--shadow-inset);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  font-size: var(--step--2);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: floaty 7s var(--ease-soft) infinite;
}
.hero__float strong { font-size: var(--step--1); color: var(--ink); }
.hero__float--a { top: 8%; left: -2%; animation-delay: -1s; }
.hero__float--b { bottom: 17%; right: -3%; animation-delay: -3.5s; }
.hero__float--c { bottom: 4%; left: 6%; animation-delay: -5s; }

.hero__float-ico {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  flex: none;
}
.hero__float-ico--sage  { background: var(--sage-3); color: var(--ink); }
.hero__float-ico--blush { background: var(--blush-3); color: #8A5A5E; }
.hero__float-ico--lav   { background: var(--lavender-2); color: #6B5F84; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

@media (max-width: 767px) {
  .hero__float--a { top: 3%; left: -6px; }
  .hero__float--b { bottom: 20%; right: -6px; }
  .hero__float--c { display: none; }
  .hero__title { max-width: 100%; }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.04fr .96fr;
  }
  .hero__visual { padding-right: 0; }
  .hero__cover-frame { width: min(100%, 430px); }
}

/* --------------------------------------------------------------------------
   12. PULL QUOTE
   -------------------------------------------------------------------------- */
.quote-block {
  position: relative;
  text-align: center;
  padding-block: clamp(2.5rem, 1.9rem + 2.6vw, 4.5rem);
}

/* The " glyph sits high inside its em box, so a tight line-height trims the
   dead space underneath it instead of pushing the quote far down the page. */
.quote-block__mark {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 2.2rem + 2.2vw, 4rem);
  line-height: .72;
  color: var(--blush);
  opacity: .8;
  margin-bottom: .55rem;
}

.quote-block__text {
  font-family: var(--font-serif);
  font-size: var(--step-4);
  font-style: italic;
  line-height: 1.18;
  color: var(--ink);
  /* em-based so it scales with the type: wide enough to hold the quote on a
     single line from tablet up, and it still wraps naturally on small phones. */
  max-width: 12em;
  margin-inline: auto;
  text-wrap: balance;
}

.quote-block__cite {
  display: block;
  margin-top: 1.05rem;
  font-size: var(--step--1);
  color: var(--muted-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   13. PROBLEM MOSAIC
   -------------------------------------------------------------------------- */
.mosaic {
  display: grid;
  gap: clamp(.9rem, .6rem + 1vw, 1.4rem);
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.6rem);
}
@media (min-width: 640px)  { .mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mosaic { grid-template-columns: repeat(4, 1fr); } }

.mosaic__item {
  position: relative;
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mosaic__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.mosaic__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--tint, var(--sage));
  opacity: .9;
}
.mosaic__num {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: .9rem;
}
.mosaic__title { font-size: var(--step-1); font-weight: 600; margin-bottom: .55rem; }
.mosaic__body  { font-size: var(--step--1); color: var(--muted); line-height: 1.66; }

/* Offset rhythm on wide screens so it never reads like a plain 4-up grid */
@media (min-width: 1024px) {
  .mosaic__item:nth-child(even) { transform: translateY(26px); }
  .mosaic__item:nth-child(even):hover { transform: translateY(22px); }
}

/* --------------------------------------------------------------------------
   14. FLOW TIMELINE (desired outcome)
   -------------------------------------------------------------------------- */
.flow {
  display: grid;
  gap: 0;
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  counter-reset: flow;
}
.flow__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: .95rem 0;
}
.flow__dot {
  position: relative;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.flow__dot::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + .8rem);
  background: linear-gradient(180deg, var(--line), transparent);
}
.flow__step:last-child .flow__dot::after { display: none; }
.flow__text { padding-top: .3rem; }
.flow__title { font-weight: 600; font-size: var(--step-0); }
.flow__note { font-size: var(--step--1); color: var(--muted); margin-top: .2rem; }

@media (min-width: 900px) {
  .flow {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .flow__step { flex-direction: column; align-items: flex-start; padding: 0 1rem 0 0; }
  .flow__dot::after {
    top: 50%; left: 100%;
    transform: translateY(-50%);
    width: calc(100% + .9rem);
    height: 1px;
    background: linear-gradient(90deg, var(--line), transparent);
  }
  .flow__text { padding-top: 1rem; }
}

/* --------------------------------------------------------------------------
   15. PRODUCT REVEAL
   -------------------------------------------------------------------------- */
.reveal-product {
  display: grid;
  gap: clamp(2.2rem, 1.4rem + 4vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .reveal-product { grid-template-columns: .95fr 1.05fr; }
  .reveal-product--flip .reveal-product__visual { order: 2; }
}

.product-frame {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
}
.product-frame__glass {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow-deep), var(--shadow-inset);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
}
.product-frame__img {
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 12px);
  box-shadow: 0 12px 34px -16px rgba(52,49,47,.5);
}
.product-frame__img--p1 { aspect-ratio: 907 / 1280; }
.product-frame__img--p2 { aspect-ratio: 907 / 1267; }

/* Paper stack behind the cover */
.product-frame__stack,
.product-frame__stack::before {
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 12px);
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  z-index: -1;
}
.product-frame__stack { transform: rotate(3deg) translate(10px, 8px); }
.product-frame__stack::before { content: ""; inset: 0; transform: rotate(3.5deg) translate(9px, 6px); }

.price-lockup {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-block: 1.5rem;
}
.price-lockup__cur {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  color: var(--ink-3);
}
.price-lockup__val {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 2rem + 2.4vw, 3.75rem);
  font-weight: 400;
  line-height: .95;
  color: var(--ink);
  letter-spacing: -.02em;
}
.price-lockup__meta {
  font-size: var(--step--2);
  color: var(--muted-2);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-left: .6rem;
  border-left: 1px solid var(--line);
  align-self: center;
}

/* --------------------------------------------------------------------------
   16. INFOGRAPHIC (30 × 6 = 180)
   -------------------------------------------------------------------------- */
.equation {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.6rem, .3rem + 1.2vw, 1.4rem);
  margin-top: clamp(2rem, 1.4rem + 2vw, 3.2rem);
}
.equation__cell {
  flex: 1 1 150px;
  max-width: 240px;
  text-align: center;
  padding: clamp(1.2rem, 1rem + 1vw, 1.9rem) 1rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.equation__cell--result {
  background: var(--ink);
  border-color: var(--ink);
  color: #F5F1EA;
  box-shadow: 0 3px 8px rgba(46,70,54,.16), 0 30px 55px -26px rgba(46,70,54,.6);
}
.equation__val {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  line-height: 1;
  color: var(--ink);
  display: block;
}
.equation__cell--result .equation__val { color: #FFF; }
.equation__lbl {
  display: block;
  margin-top: .6rem;
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.4;
}
.equation__cell--result .equation__lbl { color: rgba(245,241,234,.8); }
.equation__op {
  align-self: center;
  font-family: var(--font-serif);
  font-size: var(--step-3);
  color: var(--gold);
  flex: none;
  padding-inline: .2rem;
}
.equation__foot {
  margin-top: 1.4rem;
  text-align: center;
  font-size: var(--step--2);
  color: var(--muted-2);
}

/* --------------------------------------------------------------------------
   17. FEATURE LIST ("Apa Yang Ibu Dapat")
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  gap: clamp(.9rem, .6rem + 1vw, 1.3rem);
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
}
@media (min-width: 700px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  display: flex;
  gap: 1rem;
  padding: clamp(1.3rem, 1.05rem + .8vw, 1.75rem);
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.feature__ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--sage-3);
  color: var(--ink);
}
.feature__ico--blush { background: var(--blush-3); color: #8A5A5E; }
.feature__ico--lav   { background: var(--lavender-2); color: #6B5F84; }
.feature__ico--peach { background: var(--peach-2); color: #96674C; }
.feature__title { font-size: var(--step-0); font-weight: 600; margin-bottom: .35rem; }
.feature__body  { font-size: var(--step--1); color: var(--muted); line-height: 1.62; }

/* Wide feature spans first cell on 3-col for editorial asymmetry */
@media (min-width: 1080px) {
  .features--5 > .feature:first-child { grid-column: span 1; }
}

/* --------------------------------------------------------------------------
   17b. SNEAK PEEK MENU
   Mixed-orientation photography, so a square frame with object-fit: cover
   keeps all four cards optically consistent.
   -------------------------------------------------------------------------- */
.peek {
  display: grid;
  gap: clamp(.85rem, .6rem + 1vw, 1.4rem);
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
}
/* 2-up even on the smallest phones — these are supporting thumbnails, so a
   single column would turn the section into four screens of scrolling. */
.peek { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1000px) { .peek { grid-template-columns: repeat(4, 1fr); } }

.peek__item { text-align: center; }

.peek__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.peek__item:hover .peek__media {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* Warm veil ties the stock photography into the cream palette */
.peek__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,246,241,0) 55%, rgba(52,49,47,.14) 100%);
  pointer-events: none;
}

.peek__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.peek__item:hover .peek__img { transform: scale(1.04); }

.peek__name {
  margin-top: .95rem;
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
}

.peek__note {
  margin-top: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  text-align: center;
  font-size: var(--step--2);
  color: var(--muted-2);
  letter-spacing: .03em;
}

@media (prefers-reduced-motion: reduce) {
  .peek__item:hover .peek__img,
  .peek__item:hover .peek__media { transform: none; }
}

/* --------------------------------------------------------------------------
   18. BEFORE / AFTER
   -------------------------------------------------------------------------- */
.compare-box {
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;                 /* clips the tinted column to the corners */
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

/* table-layout: fixed forces an exact 50/50 split, and because each pair of
   statements shares a table row, the two sides can never drift out of
   alignment — which is the whole point of a side-by-side comparison. */
.compare {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare__th {
  padding: clamp(.8rem, .6rem + .6vw, 1.25rem) clamp(.65rem, .42rem + .62vw, 1.35rem);
  text-align: left;
  vertical-align: middle;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.compare__th--after {
  background: var(--sage-3);
  border-left: 1px solid var(--line);
}

.compare__label {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-size: clamp(.625rem, .55rem + .28vw, .75rem);
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.compare__th--after .compare__label { color: var(--ink); }
.compare__label svg { width: 1.1em; height: 1.1em; flex: none; }

.compare__td {
  padding: clamp(.65rem, .48rem + .5vw, 1rem) clamp(.65rem, .42rem + .62vw, 1.35rem);
  vertical-align: top;
  border-top: 1px solid var(--line-soft);
  font-size: clamp(.8125rem, .745rem + .32vw, 1rem);
  line-height: 1.45;
  color: var(--text);
}
.compare__td--after {
  background: rgba(237, 243, 238, .6);
  border-left: 1px solid var(--line);
}
.compare tbody tr:first-child .compare__td { border-top: 0; }

.compare__cell {
  display: flex;
  align-items: flex-start;
  gap: .45em;
}
.compare__ico { flex: none; margin-top: .2em; color: var(--muted-2); }
.compare__ico svg { width: .9em; height: .9em; display: block; }
.compare__td--after .compare__ico { color: var(--ink-2); }

/* Below ~360px every pixel of text width counts, so the row markers step
   aside — the tinted column and headers still carry the before/after read. */
@media (max-width: 359px) {
  .compare__ico { display: none; }
}

/* --------------------------------------------------------------------------
   19. SUITABLE-FOR LIST
   -------------------------------------------------------------------------- */
.suits {
  display: grid;
  gap: .7rem;
  margin-top: clamp(1.8rem, 1.4rem + 1.6vw, 2.8rem);
}
@media (min-width: 760px) { .suits { grid-template-columns: repeat(2, 1fr); } }

.suits li {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line-soft);
  font-size: var(--step-0);
}
.suits li svg { flex: none; color: var(--ink-3); }

.soft-note {
  margin-top: clamp(2rem, 1.6rem + 1.4vw, 3rem);
  padding: clamp(1.4rem, 1.1rem + 1vw, 2.1rem);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--blush-3), rgba(255,255,255,.4));
  border: 1px solid rgba(235,207,209,.5);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
}

/* --------------------------------------------------------------------------
   19b. CREDIBILITY BAND (rujukan & semakan)
   -------------------------------------------------------------------------- */
.credibility {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 1.3rem + 2vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(158deg, var(--surface) 0%, var(--sage-3) 100%);
  border: 1px solid rgba(175,198,181,.55);
  box-shadow: var(--shadow-soft);
}
/* Faint gold hairline along the top — the "seal" cue from the product artwork */
.credibility::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.credibility__head { text-align: center; max-width: 42ch; margin-inline: auto; }
.credibility__head .eyebrow::before { display: none; }

.credibility__grid {
  display: grid;
  gap: clamp(.9rem, .6rem + 1vw, 1.4rem);
  margin-top: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
}
@media (min-width: 800px) { .credibility__grid { grid-template-columns: 1fr 1fr; } }

.cred-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: clamp(1.1rem, .9rem + .8vw, 1.5rem);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}
.cred-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.cred-card__ico {
  flex: none;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--gold-2);
  color: var(--gold);
}

.cred-card__title {
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.005em;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   20. OFFER PANEL
   -------------------------------------------------------------------------- */
.offer {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 1.3rem + 2.4vw, 3.6rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--tint, var(--sage-3));
  opacity: .55;
  pointer-events: none;
}
.offer__grid {
  position: relative;
  display: grid;
  gap: clamp(1.8rem, 1.2rem + 2.4vw, 3.2rem);
  align-items: center;
}
@media (min-width: 860px) { .offer__grid { grid-template-columns: 1.15fr .85fr; } }

.stack-list { display: grid; gap: .1rem; margin-top: 1.4rem; }
.stack-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .72rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--step-0);
}
.stack-list li:last-child { border-bottom: 0; }
.stack-list__tick {
  flex: none;
  width: 20px; height: 20px;
  margin-top: .18em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-3);
  color: var(--ink);
}

.offer__buy {
  text-align: center;
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.offer__buy .price-lockup { justify-content: center; margin-top: .4rem; }

/* --------------------------------------------------------------------------
   21. TRANSITION BAND (between the two independent products)
   -------------------------------------------------------------------------- */
.transition-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(217,209,231,.5) 0%, rgba(217,209,231,0) 60%),
    var(--bg-alt);
  border-block: 1px solid var(--line-soft);
}
.transition-band__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.transition-band .lede { margin-inline: auto; }

.split-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--gold-2);
}
.split-mark::before, .split-mark::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

/* --------------------------------------------------------------------------
   22. MICRO-PROBLEM BUBBLES
   -------------------------------------------------------------------------- */
.bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  max-width: 900px;
  margin-inline: auto;
}
.bubble {
  padding: .85rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-0);
  color: var(--ink-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bubble:nth-child(3n)   { background: var(--blush-3); border-color: rgba(235,207,209,.55); }
.bubble:nth-child(3n+1) { background: var(--sage-3);  border-color: rgba(175,198,181,.4); }
.bubble:nth-child(4n)   { background: var(--lavender-2); border-color: rgba(217,209,231,.6); }
.bubble:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* --------------------------------------------------------------------------
   23. MODULES ACCORDION (7 Bonus Kit modules) + FAQ
   -------------------------------------------------------------------------- */
.accordion {
  display: grid;
  gap: .7rem;
  margin-top: clamp(2rem, 1.5rem + 2vw, 3.2rem);
}
.accordion--modules { max-width: 900px; margin-inline: auto; }
.accordion--faq { max-width: 820px; margin-inline: auto; }

.acc__item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.acc__item.is-open { border-color: var(--line); box-shadow: var(--shadow-lift); }

.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, .85rem + .6vw, 1.35rem) clamp(1.1rem, .9rem + .8vw, 1.6rem);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  min-height: 60px;
  transition: background-color .3s var(--ease);
}
.acc__btn:hover { background: var(--surface-2); }

.acc__num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: var(--step--1);
  background: var(--sage-3);
  color: var(--ink);
}
.acc__item:nth-child(2) .acc__num { background: var(--peach-2); color: #96674C; }
.acc__item:nth-child(3) .acc__num { background: var(--sage-3); color: var(--ink); }
.acc__item:nth-child(4) .acc__num { background: var(--lavender-2); color: #6B5F84; }
.acc__item:nth-child(5) .acc__num { background: var(--peach-2); color: #96674C; }
.acc__item:nth-child(6) .acc__num { background: var(--blush-3); color: #8A5A5E; }
.acc__item:nth-child(7) .acc__num { background: var(--sage-3); color: var(--ink); }

.acc__title {
  flex: 1;
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1.35;
}
.acc__title--faq { font-weight: 500; }

.acc__sign {
  flex: none;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-3);
  transition: transform .38s var(--ease), background-color .3s var(--ease);
}
.acc__item.is-open .acc__sign { transform: rotate(45deg); background: var(--sage-3); }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__body {
  padding: 0 clamp(1.1rem, .9rem + .8vw, 1.6rem) clamp(1.2rem, 1rem + .7vw, 1.5rem);
  padding-left: calc(clamp(1.1rem, .9rem + .8vw, 1.6rem) + 34px + 1rem);
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.68;
}
.accordion--faq .acc__body { padding-left: clamp(1.1rem, .9rem + .8vw, 1.6rem); }

/* --------------------------------------------------------------------------
   24. BENEFIT GRID (Product 02)
   -------------------------------------------------------------------------- */
.benefits {
  display: grid;
  gap: clamp(.8rem, .6rem + .8vw, 1.1rem);
  margin-top: clamp(2rem, 1.5rem + 2vw, 3.2rem);
}
@media (min-width: 700px)  { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(3, 1fr); } }

.benefit {
  padding: clamp(1.2rem, 1rem + .8vw, 1.6rem);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-soft);
  font-size: var(--step-0);
  line-height: 1.55;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  transition: transform .38s var(--ease), background-color .38s var(--ease);
}
.benefit:hover { transform: translateY(-3px); background: #fff; }
.benefit__dot {
  flex: none;
  width: 8px; height: 8px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--sage-2);
}
.benefit:nth-child(2n) .benefit__dot { background: var(--blush); }
.benefit:nth-child(3n) .benefit__dot { background: var(--lavender); }

/* --------------------------------------------------------------------------
   25. CHOOSE-BY-NEED (two strictly equal showcases)
   -------------------------------------------------------------------------- */
.choose {
  display: grid;
  gap: clamp(1.1rem, .8rem + 1.4vw, 1.9rem);
  margin-top: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
  align-items: stretch;
}
@media (min-width: 880px) { .choose { grid-template-columns: 1fr 1fr; } }

.choose__card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1.6vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.choose__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.choose__need {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-3);
  padding: .5rem .9rem;
  border-radius: var(--radius-pill);
  background: var(--sage-3);
  align-self: flex-start;
  margin-bottom: 1.4rem;
}
.choose__card--b .choose__need { background: var(--lavender-2); color: #6B5F84; }

.choose__name { font-size: var(--step-2); font-weight: 600; }
.choose__quote {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--ink);
}
.choose__hl {
  margin-top: 1.5rem;
  display: grid;
  gap: .55rem;
}
.choose__hl li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.choose__hl li::before {
  content: "";
  flex: none;
  width: 5px; height: 5px;
  margin-top: .62em;
  border-radius: 50%;
  background: var(--gold-2);
}
.choose__foot {
  margin-top: auto;
  padding-top: 1.8rem;
}
.choose__foot .price-lockup { margin-block: 0 1.2rem; }

/* --------------------------------------------------------------------------
   26. EMOTIONAL VALUE SECTION
   -------------------------------------------------------------------------- */
.emotive {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 90% at 15% 15%, rgba(243,220,221,.72) 0%, rgba(243,220,221,0) 60%),
    radial-gradient(75% 85% at 88% 78%, rgba(201,217,205,.62) 0%, rgba(201,217,205,0) 62%),
    radial-gradient(60% 70% at 60% 10%, rgba(240,212,196,.45) 0%, rgba(240,212,196,0) 62%),
    var(--bg-alt);
  text-align: center;
}
.emotive__title {
  font-family: var(--font-serif);
  font-size: var(--step-5);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 19ch;
  margin-inline: auto;
  color: var(--ink);
}
.emotive__lines {
  margin-top: clamp(2rem, 1.6rem + 1.6vw, 3rem);
  display: grid;
  gap: .9rem;
  justify-items: center;
}
.emotive__line {
  font-size: var(--step-2);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -.01em;
}
.emotive__line:nth-child(2) { color: var(--muted); }
.emotive__line:nth-child(3) { color: var(--text); }
.emotive__line:last-child {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  max-width: 24ch;
  line-height: 1.35;
  margin-top: .5rem;
}

/* --------------------------------------------------------------------------
   27. HOW IT WORKS
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(1rem, .7rem + 1.2vw, 1.6rem);
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  counter-reset: step;
}
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.step__num {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step__title { font-size: var(--step-1); font-weight: 600; margin-bottom: .5rem; }
.step__body { font-size: var(--step--1); color: var(--muted); }

/* --------------------------------------------------------------------------
   28. FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #F3EFE8;
  border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 1.7rem + 3.4vw, 5rem) clamp(1.5rem, 1rem + 3vw, 4rem);
  text-align: center;
  box-shadow: 0 4px 12px rgba(46,70,54,.14), 0 50px 90px -40px rgba(46,70,54,.6);
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
  pointer-events: none;
}
.final-cta::before { width: 320px; height: 320px; background: var(--sage-2); top: -140px; left: -100px; }
.final-cta::after  { width: 280px; height: 280px; background: var(--blush); bottom: -130px; right: -80px; }

.final-cta > * { position: relative; z-index: 1; }
.final-cta__title {
  font-family: var(--font-serif);
  font-size: var(--step-4);
  font-weight: 400;
  line-height: 1.16;
  max-width: 20ch;
  margin-inline: auto;
}
.final-cta__sub {
  margin-top: 1.2rem;
  color: rgba(243,239,232,.72);
  max-width: 52ch;
  margin-inline: auto;
  font-size: var(--step-0);
}
.final-cta__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}
.final-cta .btn--primary {
  background: #FCFAF6;
  color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.5);
}
.final-cta .btn--primary:hover { background: #fff; }
.final-cta .btn--ghost {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.28);
  color: #F3EFE8;
  box-shadow: none;
}
.final-cta .btn--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45); }
.final-cta__note {
  margin-top: 1.6rem;
  font-size: var(--step--2);
  color: rgba(243,239,232,.5);
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   29. DISCLAIMER / SITE FOOT (deliberately minimal — no heavy footer)
   -------------------------------------------------------------------------- */
.site-foot {
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
  text-align: center;
}
.site-foot__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.site-foot__logo { width: 38px; height: 38px; object-fit: contain; }
.site-foot__name { font-family: var(--font-serif); font-size: var(--step-0); color: var(--ink); }
/* Health disclaimer must meet AA — it is information readers rely on */
.site-foot__disc {
  max-width: 60ch;
  margin-inline: auto;
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.7;
}
.site-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 1.6rem;
  font-size: var(--step--1);
}
.site-foot__links a { color: var(--muted); transition: color .25s var(--ease); }
.site-foot__links a:hover { color: var(--ink); }
.site-foot__copy { margin-top: 1.6rem; font-size: var(--step--2); color: var(--muted-2); }

/* --------------------------------------------------------------------------
   30. PRODUCTS PAGE — editorial showcase
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 1.6rem + 4vw, 5rem);
  padding-bottom: clamp(2rem, 1.4rem + 3vw, 4rem);
  text-align: center;
  background:
    radial-gradient(100% 90% at 20% 0%, rgba(243,220,221,.55) 0%, rgba(243,220,221,0) 60%),
    radial-gradient(90% 80% at 85% 20%, rgba(201,217,205,.45) 0%, rgba(201,217,205,0) 62%),
    var(--bg);
}
.page-head__logo {
  width: 64px; height: 64px;
  object-fit: contain;
  margin: 0 auto 1.4rem;
}

.showcase {
  display: grid;
  gap: clamp(2.5rem, 1.6rem + 4vw, 4rem);
}
@media (min-width: 940px) { .showcase { grid-template-columns: 1fr 1fr; } }

.showcase__item {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1.6vw, 2.6rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.showcase__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }

.showcase__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-alt), var(--sage-3));
  padding: clamp(1.2rem, 1rem + 1.4vw, 2rem);
  display: grid;
  place-items: center;
}
.showcase__item--b .showcase__media { background: linear-gradient(160deg, var(--bg-alt), var(--lavender-2)); }
/* Both products sit side by side here, so the artwork is sized by HEIGHT.
   Equal visual height keeps neither product looking bigger than the other. */
.showcase__media { --art-h: clamp(290px, 38vw, 420px); }

.showcase__img {
  width: auto;
  height: var(--art-h);
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px -16px rgba(52,49,47,.5);
  transition: transform .6s var(--ease);
}
.showcase__item:hover .showcase__img { transform: translateY(-4px) scale(1.015); }
/* The 30 Hari Resipi artwork is a transparent 3D render — a rectangular
   box-shadow would frame empty pixels, so it carries a silhouette
   drop-shadow instead. The render bakes in ~10% transparent padding, so it
   is scaled up by that factor to make the BOOK itself match the poster's
   visual height. */
.showcase__img--p1 {
  height: calc(var(--art-h) * 1.1);
  aspect-ratio: 1024 / 1536;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 16px 26px rgba(52,49,47,.24));
}
.showcase__img--p2 { aspect-ratio: 907 / 1267; object-fit: cover; }

.showcase__body { padding-top: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); display: flex; flex-direction: column; flex: 1; }
.showcase__name { font-size: var(--step-3); font-weight: 600; }
.showcase__pos {
  margin-top: .9rem;
  font-size: var(--step-0);
  color: var(--muted);
  line-height: 1.62;
}
.showcase__benefits { margin-top: 1.6rem; display: grid; gap: .6rem; }
.showcase__benefits li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: var(--step--1);
}
.showcase__benefits svg { flex: none; margin-top: .22em; color: var(--ink-3); }
.showcase__foot { margin-top: auto; padding-top: 1.8rem; }

/* --------------------------------------------------------------------------
   31. FORMS (contact page)
   -------------------------------------------------------------------------- */
.form-shell {
  display: grid;
  gap: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  align-items: start;
}
@media (min-width: 940px) { .form-shell { grid-template-columns: 1.15fr .85fr; } }

.form-card {
  padding: clamp(1.5rem, 1.2rem + 1.8vw, 2.75rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lift);
}

.field { margin-bottom: 1.2rem; }
.field__label {
  display: block;
  margin-bottom: .5rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text);
}
.field__req { color: #B4746F; margin-left: .2em; }
.field__hint { font-weight: 400; color: var(--muted-2); }

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: var(--step-0);
  color: var(--text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field__textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field__select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2377706C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.8rem;
}

.field__input::placeholder,
.field__textarea::placeholder { color: var(--muted-2); }

.field__input:hover,
.field__select:hover,
.field__textarea:hover { border-color: var(--sage-2); }

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ink-3);
  box-shadow: 0 0 0 4px rgba(46,70,54,.10);
}

.field.has-error .field__input,
.field.has-error .field__select,
.field.has-error .field__textarea {
  border-color: #C88A85;
  background: #FDF6F5;
}
.field.has-error .field__input:focus,
.field.has-error .field__select:focus,
.field.has-error .field__textarea:focus {
  box-shadow: 0 0 0 4px rgba(200,138,133,.16);
}

.field__error {
  display: none;
  align-items: center;
  gap: .4rem;
  margin-top: .45rem;
  font-size: var(--step--2);
  color: #A4635F;
}
.field.has-error .field__error { display: flex; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--sage-3);
  border: 1px solid rgba(175,198,181,.6);
}
.form-success.is-shown { display: flex; }
.form-success__ico {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
}
.form-success__title { font-weight: 600; font-size: var(--step-0); margin-bottom: .25rem; }
.form-success__body { font-size: var(--step--1); color: var(--ink-2); line-height: 1.6; }

/* Quick contact side panel */
.quick-contact { display: grid; gap: .9rem; }
.quick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
a.quick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.quick-card__ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage-3);
  color: var(--ink);
}
.quick-card__ico--blush { background: var(--blush-3); color: #8A5A5E; }
.quick-card__ico--lav { background: var(--lavender-2); color: #6B5F84; }
.quick-card__label { font-size: var(--step--2); color: var(--muted-2); letter-spacing: .1em; text-transform: uppercase; }
.quick-card__value { font-size: var(--step-0); font-weight: 600; margin-top: .15rem; }

/* --------------------------------------------------------------------------
   32. COMMERCE SUPPORT PAGES (cart / login)
   -------------------------------------------------------------------------- */
.stage {
  min-height: calc(100vh - var(--nav-safe) - 60px);
  min-height: calc(100dvh - var(--nav-safe) - 60px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem);
  background:
    radial-gradient(80% 70% at 22% 12%, rgba(243,220,221,.6) 0%, rgba(243,220,221,0) 60%),
    radial-gradient(80% 70% at 80% 82%, rgba(201,217,205,.55) 0%, rgba(201,217,205,0) 62%),
    var(--bg);
}
.stage__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  text-align: center;
  padding: clamp(2rem, 1.5rem + 3vw, 3.6rem);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-deep), var(--shadow-inset);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .stage__panel { background: rgba(255,255,255,.94); }
}

.stage__ico {
  width: 78px; height: 78px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.stage__title {
  font-family: var(--font-serif);
  font-size: var(--step-4);
  font-weight: 400;
  line-height: 1.15;
  max-width: 18ch;
  margin-inline: auto;
  color: var(--ink);
}
.stage__body {
  margin-top: 1.2rem;
  color: var(--muted);
  max-width: 46ch;
  margin-inline: auto;
}
.stage__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}
.stage__progress {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
}
.stage__progress-label {
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: .8rem;
}
.stage__bar {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--line-soft);
  overflow: hidden;
}
.stage__bar span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage-2), var(--blush));
}

/* --------------------------------------------------------------------------
   33. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
.no-js .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   34. REDUCED MOTION — hard override
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__float { animation: none; }
  .mosaic__item:nth-child(even) { transform: none; }
}

/* --------------------------------------------------------------------------
   35. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .nav-dock, .sticky-cta, .skip-link { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
