@font-face {
  font-family: "Pretendard";
  src: url("assets/fonts/PretendardVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
/* =========================================================
   Cellité — landing2
   Deep-green + gold cinematic sales landing
   ========================================================= */

:root {
  --ink: #050f0b;
  --green-950: #071711;
  --green-900: #0b1e17;
  --green-800: #10281f;
  --green-700: #16342a;
  --green-600: #1d4436;

  --cream: #f7f1e4;
  --cream-2: #efe5d3;
  --paper: #faf5ec;

  --gold: #c9a45d;
  --gold-lite: #ecd6a3;
  --gold-mid: #d8b876;
  --gold-deep: #9a7736;

  --txt-on-dark: rgba(247, 241, 228, .82);
  --txt-on-dark-soft: rgba(247, 241, 228, .76);
  --txt-on-light: #33291c;
  --txt-on-light-soft: #6d604c;

  --kr-serif: "Pretendard", system-ui, -apple-system, sans-serif;
  --kr-sans: "Pretendard", system-ui, -apple-system, sans-serif;
  --display: "Pretendard", system-ui, -apple-system, sans-serif;

  --shell: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22, .68, 0, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.no-smooth { scroll-behavior: auto; }

body.l2 {
  margin: 0;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  background: var(--green-950);
  color: var(--txt-on-dark);
  font-family: var(--kr-sans);
  font-weight: 450;
  line-height: 1.75;
  letter-spacing: -.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }

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

.wrap { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- shared type ---------- */
.kicker {
  font-family: var(--kr-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
em { font-style: normal; }

h2 {
  font-family: var(--kr-serif);
  font-weight: 600;
  word-break: keep-all;
  font-size: clamp(1.85rem, 4.3vw, 3.35rem);
  line-height: 1.28;
  letter-spacing: -.02em;
}
h2 em {
  background: linear-gradient(96deg, var(--gold-lite), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   chrome: progress / draft / header
   ========================================================= */
.l2-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 90;
  background: rgba(247, 241, 228, .07);
}
.l2-progress span {
  display: block; height: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-lite));
}

.l2-draft {
  position: relative; z-index: 60;
  background: var(--ink);
  color: rgba(236, 214, 163, .7);
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  text-align: center; padding: 8px 16px;
  border-bottom: 1px solid rgba(201, 164, 93, .16);
}

.l2-header {
  position: sticky; top: 0; z-index: 70;
  backdrop-filter: blur(14px) saturate(120%);
  background: linear-gradient(180deg, rgba(7, 23, 17, .88), rgba(7, 23, 17, .55));
  border-bottom: 1px solid rgba(201, 164, 93, .12);
  transition: background .4s var(--ease-soft), border-color .4s;
}
.l2-header.is-stuck {
  background: rgba(5, 15, 11, .93);
  border-bottom-color: rgba(201, 164, 93, .22);
}
.l2-header-inner {
  max-width: var(--shell); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 48px);
}
.l2-brand img { width: clamp(74px, 8vw, 96px); opacity: .95; }
.l2-nav { display: flex; gap: clamp(14px, 2.1vw, 30px); margin-left: auto; }
.l2-nav a {
  position: relative; font-size: .8rem; font-weight: 400; letter-spacing: .04em;
  color: var(--txt-on-dark-soft); padding: 4px 0; transition: color .3s;
}
.l2-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .4s var(--ease);
}
.l2-nav a:hover { color: var(--cream); }
.l2-nav a:hover::after, .l2-nav a[aria-current]::after { transform: scaleX(1); }
.l2-nav a[aria-current] { color: var(--gold-lite); }

.l2-header-cta {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid rgba(201, 164, 93, .45);
  color: var(--gold-lite); border-radius: 999px; white-space: nowrap;
  transition: background .35s, color .35s, border-color .35s;
}
.l2-header-cta:hover { background: var(--gold); color: var(--green-950); border-color: var(--gold); }

/* =========================================================
   buttons
   ========================================================= */
.btn-gold {
  position: relative; display: inline-flex; align-items: center; gap: .8em;
  padding: 15px 30px; border-radius: 999px; overflow: hidden;
  font-family: var(--kr-sans); font-size: .93rem; font-weight: 500; letter-spacing: .02em;
  color: #2a1f0c;
  background: linear-gradient(120deg, var(--gold-lite), var(--gold) 46%, var(--gold-deep));
  box-shadow: 0 14px 34px -14px rgba(201, 164, 93, .7), inset 0 1px 0 rgba(255, 255, 255, .45);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.btn-gold span, .btn-gold em { position: relative; z-index: 2; }
.btn-gold em { transition: transform .45s var(--ease); }
.btn-gold::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .75) 48%, transparent 76%);
  transform: translateX(-120%);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(201, 164, 93, .85), inset 0 1px 0 rgba(255, 255, 255, .5); }
.btn-gold:hover em { transform: translateX(5px); }
.motion-ready .btn-gold:hover::after { animation: sheen 1.05s var(--ease-soft); }
@keyframes sheen { to { transform: translateX(120%); } }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .9rem; color: var(--txt-on-dark); padding: 14px 4px;
  border-bottom: 1px solid rgba(201, 164, 93, .4);
  transition: color .3s, border-color .3s;
}
.btn-ghost em { transition: transform .4s var(--ease); }
.btn-ghost:hover { color: var(--gold-lite); border-color: var(--gold-lite); }
.btn-ghost:hover em { transform: translateY(4px); }

.purchase-link[aria-disabled="true"] { cursor: default; }

/* =========================================================
   01 HERO
   ========================================================= */
.hero2 {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 92svh;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding-top: clamp(30px, 5.5vh, 74px);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(29, 68, 54, .95), transparent 60%),
    radial-gradient(90% 70% at 88% 14%, rgba(26, 58, 46, .8), transparent 62%),
    linear-gradient(180deg, var(--green-900), var(--green-950) 62%, var(--ink));
}
.hero2-atmos { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero2-blur {
  position: absolute; inset: -8%;
  background: url("assets/l2/poster-green.webp") center/cover no-repeat;
  filter: blur(72px) saturate(115%) brightness(.62);
  opacity: .62;
  transform: scale(1.06);
}
.motion-ready .hero2-blur { animation: atmosDrift 26s ease-in-out infinite alternate; }
@keyframes atmosDrift {
  from { transform: scale(1.04) translate3d(-1.5%, 0, 0); }
  to   { transform: scale(1.13) translate3d(1.5%, -2%, 0); }
}

.hero2-shaft {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 214, 163, .3), transparent 68%);
  filter: blur(30px); mix-blend-mode: screen;
}
.shaft-a { width: 62vw; height: 62vw; top: -26vw; left: -12vw; }
.shaft-b { width: 46vw; height: 46vw; top: 4vw; right: -14vw; opacity: .8; }
.motion-ready .shaft-a { animation: shaftA 18s ease-in-out infinite alternate; }
.motion-ready .shaft-b { animation: shaftB 22s ease-in-out infinite alternate; }
@keyframes shaftA { to { transform: translate3d(6%, 5%, 0) scale(1.12); opacity: .75; } }
@keyframes shaftB { to { transform: translate3d(-7%, 8%, 0) scale(1.16); opacity: .55; } }

.hero2-dust { position: absolute; inset: 0; }
.hero2-dust i {
  position: absolute; left: var(--x); top: var(--y);
  width: calc(5px * var(--s)); height: calc(5px * var(--s)); border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 220, .95), rgba(201, 164, 93, 0) 70%);
  opacity: 0;
}
.motion-ready .hero2-dust i { animation: dust 9s var(--d) ease-in-out infinite; }
@keyframes dust {
  0% { opacity: 0; transform: translate3d(0, 12px, 0) scale(.6); }
  35% { opacity: .95; }
  70% { opacity: .35; }
  100% { opacity: 0; transform: translate3d(6px, -34px, 0) scale(1.25); }
}

.hero2-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad);
}
.hero2-inner::before {
  content: ""; position: absolute; z-index: -1;
  inset: -16% -10% -30% -20%;
  background: radial-gradient(56% 64% at 30% 48%, rgba(5, 15, 11, .8), rgba(5, 15, 11, .4) 58%, transparent 78%);
  pointer-events: none;
}

.hero2-eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: clamp(.6rem, 1.3vw, .7rem); font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: rgba(236, 214, 163, .82);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  border: 1px solid rgba(201, 164, 93, .28);
  background: rgba(7, 23, 17, .35);
  backdrop-filter: blur(6px);
}
.hero2-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lite);
  box-shadow: 0 0 0 0 rgba(236, 214, 163, .6);
}
.motion-ready .hero2-eyebrow .dot { animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(236, 214, 163, 0); } 100% { box-shadow: 0 0 0 0 rgba(236, 214, 163, 0); } }

.hero2-title {
  margin: clamp(16px, 2.6vh, 26px) 0 0;
  font-family: var(--kr-serif); font-weight: 600;
  font-size: clamp(2.2rem, 6.2vw, 4.6rem);
  line-height: 1.16; letter-spacing: -.035em;
  color: var(--cream);
  text-shadow: 0 14px 44px rgba(5, 15, 11, .5);
}
.hero2-title .line { display: block; overflow: hidden; }
.hero2-title .line > span { display: block; }
.hero2-title .grad {
  background: linear-gradient(96deg, #fff6e2, var(--gold-lite) 32%, var(--gold) 62%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.br-d { display: none; }
@media (min-width: 620px) { .br-d { display: inline; } }
.hero2-lead {
  margin-top: clamp(16px, 2.4vh, 24px);
  max-width: 34ch; word-break: keep-all;
  font-size: clamp(.95rem, 1.7vw, 1.1rem);
  line-height: 1.85; color: var(--txt-on-dark);
}
.hero2-lead strong {
  font-family: var(--display); font-size: 1.32em; font-weight: 600;
  color: var(--gold-lite); letter-spacing: .01em;
}

.hero2-actions {
  margin-top: clamp(22px, 3.4vh, 36px);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px, 2.4vw, 30px);
}

.hero2-chips {
  margin-top: clamp(20px, 3vh, 32px);
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero2-chips li {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(236, 214, 163, .78);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(201, 164, 93, .22);
  background: rgba(236, 214, 163, .05);
}

/* hero product band — organic bottom fade, pointer reactive */
.hero2-band {
  position: relative; z-index: 1;
  margin: clamp(18px, 3vh, 40px) 0 0; margin-top: auto;
  width: 100%; height: 238px;
  perspective: 1200px;
}
.hero2-band::before {
  content: ""; position: absolute; z-index: 2; inset: auto 0 -1px 0; height: 22%;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}
.hero2-band img {
  width: 100%; height: 100%; object-fit: cover; object-position: 26% 50%;
  --mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .3) 10%, #000 30%, #000 100%);
  -webkit-mask-image: var(--mask); mask-image: var(--mask);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 1.1s var(--ease-soft);
  will-change: transform;
}
.hero2-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 34vw at var(--pointer-x, 50%) var(--pointer-y, 55%), rgba(236, 214, 163, .17), transparent 62%);
  mix-blend-mode: screen; opacity: 0; transition: opacity .6s var(--ease-soft);
}
.hero2-band:hover::after { opacity: 1; }
.hero2-band:hover img { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.055) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); }

.hero2-scroll {
  position: absolute; z-index: 4; right: var(--pad); top: 58svh; left: auto; bottom: auto;
  display: none; align-items: center; gap: .7em;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(247, 241, 228, .55);
}
.hero2-scroll span {
  display: block; width: 1px; height: 26px;
  background: linear-gradient(180deg, transparent, var(--gold-lite));
}
.motion-ready .hero2-scroll span { animation: scrollHint 2.2s var(--ease-soft) infinite; transform-origin: 50% 0; }
@keyframes scrollHint { 0%, 100% { transform: scaleY(.3); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  position: relative; overflow: hidden; background: var(--ink);
  border-block: 1px solid rgba(201, 164, 93, .16);
  padding: 13px 0;
}
.ticker-track { display: flex; width: max-content; }
.ticker-track span {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--display); font-size: clamp(.85rem, 1.6vw, 1.05rem);
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(216, 184, 118, .72);
  padding-right: 2.2em;
}
.ticker-track i { font-style: normal; color: rgba(201, 164, 93, .5); padding: 0 1.4em; font-size: .7em; }
.motion-ready .ticker-track { animation: tick 34s linear infinite; }
@keyframes tick { to { transform: translate3d(-50%, 0, 0); } }

/* =========================================================
   02 NEED
   ========================================================= */
.need {
  position: relative; padding: clamp(76px, 12vh, 148px) 0 0;
  background: linear-gradient(180deg, var(--ink), var(--green-900) 55%, var(--green-950));
}
.need-grid { display: grid; gap: clamp(34px, 6vw, 78px); grid-template-columns: 1fr; }
.need-sticky h2 { color: var(--cream); }
.need-note {
  margin-top: 1.3rem; max-width: 34ch;
  color: var(--txt-on-dark-soft); font-size: .95rem;
}

.need-list { display: grid; gap: 0; }
.need-list li {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 24px);
  padding: clamp(17px, 2.4vw, 26px) 0;
  border-bottom: 1px solid rgba(201, 164, 93, .14);
}
.need-list li:first-child { border-top: 1px solid rgba(201, 164, 93, .14); }
.need-list .tick {
  flex: none; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: .78rem; color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold-deep));
  box-shadow: 0 8px 20px -10px rgba(201, 164, 93, .9);
}
.need-list p {
  font-family: var(--kr-serif); font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  line-height: 1.5; color: var(--cream);
}
.need-list mark {
  position: relative; background: none; color: var(--gold-lite);
  padding: 0 .06em;
}
.need-list mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .42em;
  background: linear-gradient(90deg, rgba(201, 164, 93, .24), rgba(201, 164, 93, .05));
  transform: scaleX(0); transform-origin: 0 50%; z-index: -1;
  transition: transform .85s .25s var(--ease);
}
.need-list li.is-visible mark::after { transform: scaleX(1); }

.need-shot { margin: clamp(58px, 9vh, 110px) 0 0; position: relative; }
.need-shot img {
  width: 100%; max-height: 62vh; object-fit: cover;
  --m: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  -webkit-mask-image: var(--m); mask-image: var(--m);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
}
.need-shot figcaption {
  margin-top: 14px; text-align: center;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247, 241, 228, .34);
}

/* =========================================================
   03 SCIENCE  (light contrast switch)
   ========================================================= */
.science {
  position: relative; padding: clamp(84px, 13vh, 156px) 0;
  color: var(--txt-on-light);
  background:
    radial-gradient(80% 60% at 82% 8%, rgba(236, 214, 163, .55), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--cream-2));
}
.science .kicker { color: var(--gold-deep); }
.science h2 { color: #2b2113; }
.sci-grid { display: grid; gap: clamp(34px, 6vw, 74px); grid-template-columns: 1fr; align-items: start; }
.sci-visual {
  margin: 0; border-radius: 4px; overflow: hidden;
  box-shadow: 0 44px 90px -46px rgba(96, 72, 32, .6);
  perspective: 1200px;
}
.sci-visual img {
  width: 100%; transition: transform 1.1s var(--ease-soft);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.015) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}
.sci-visual:hover img { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); }

.sci-lead { margin-top: 1.4rem; max-width: 44ch; color: var(--txt-on-light-soft); font-size: 1rem; }

.sci-hero-num {
  margin: clamp(28px, 4vw, 42px) 0; display: flex; align-items: center; gap: 20px;
  padding-bottom: clamp(24px, 4vw, 34px); border-bottom: 1px solid rgba(154, 119, 54, .22);
}
.sci-hero-num strong {
  display: inline-flex; align-items: baseline; gap: .04em;
  font-family: var(--display); font-weight: 500; font-size: clamp(3.4rem, 8.4vw, 5.4rem);
  line-height: .9; letter-spacing: -.03em;
  background: linear-gradient(140deg, var(--gold-mid), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sci-hero-num strong span { display: inline; font-size: inherit; letter-spacing: inherit; text-transform: none; color: inherit; }
.sci-hero-num strong i { font-style: normal; font-size: .46em; letter-spacing: 0; }
.sci-hero-num > span { display: grid; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--txt-on-light-soft); }
.sci-lead strong { font-weight: 500; color: #2b2113; }
.sci-hero-num em { font-family: var(--display); font-size: 1.5rem; letter-spacing: .06em; color: #3a2d19; text-transform: none; }

.sci-points { display: grid; gap: clamp(20px, 3vw, 30px); }
.sci-points li { position: relative; padding-left: 58px; }
.sci-points .orb {
  position: absolute; left: 0; top: 2px;
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff8e6, var(--gold-mid) 52%, var(--gold-deep));
  box-shadow: 0 10px 24px -10px rgba(154, 119, 54, .85), inset 0 0 12px rgba(255, 255, 255, .5);
}
.motion-ready .sci-points li.is-visible .orb { animation: orbIn .9s var(--ease) both; }
@keyframes orbIn { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sci-points h3 { font-family: var(--kr-serif); font-size: clamp(1.05rem, 2.1vw, 1.25rem); color: #2b2113; font-weight: 600; }
.sci-points p { margin-top: .35rem; color: var(--txt-on-light-soft); font-size: .93rem; }

/* =========================================================
   04 FORMULA / ORBIT
   ========================================================= */
.formula {
  position: relative; overflow: hidden;
  padding: clamp(84px, 13vh, 160px) 0 clamp(72px, 11vh, 140px);
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(29, 68, 54, .85), transparent 68%),
    linear-gradient(180deg, var(--green-950), var(--green-900) 45%, var(--ink));
}
.formula-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(34px, 6vw, 66px); }
.formula-head h2 { color: var(--cream); }
.formula-head > p { margin-top: 1.2rem; color: var(--txt-on-dark-soft); font-size: .96rem; }

.orbit { position: relative; display: grid; gap: 18px; }

.orbit-lines { display: none; }
.orbit-lines path {
  fill: none; stroke: rgba(201, 164, 93, .5); stroke-width: 1;
  stroke-dasharray: var(--len, 300); stroke-dashoffset: var(--len, 300);
  transition: stroke-dashoffset 1.15s var(--ease-soft);
}
.orbit.is-drawn .orbit-lines path { stroke-dashoffset: 0; }

.orbit-core { display: grid; place-items: center; }
.core-hex {
  position: relative; display: grid; place-items: center;
  width: clamp(210px, 46vw, 268px); aspect-ratio: 1 / 1.1;
  clip-path: polygon(50% 0%, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  background: linear-gradient(150deg, rgba(236, 214, 163, .95), rgba(201, 164, 93, .75) 45%, rgba(154, 119, 54, .85));
  padding: 2px;
}
.core-hex::before {
  content: ""; position: absolute; inset: -40%; z-index: 0;
  background: conic-gradient(from 0deg, transparent 0 55%, rgba(255, 248, 226, .95) 72%, transparent 88%);
}
.motion-ready .core-hex::before { animation: spin 7s linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }
.core-inner {
  position: relative; z-index: 1; display: grid; place-items: center; gap: 6px;
  width: 100%; height: 100%; padding: 8%;
  clip-path: polygon(50% 0%, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  background: linear-gradient(165deg, var(--green-800), var(--green-950));
  text-align: center;
}
.core-inner img { width: 78px; opacity: .95; }
.core-inner strong {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 1.22rem); line-height: 1.25;
  letter-spacing: .01em; color: var(--cream);
}
.core-inner strong span { display: block; color: var(--gold); font-size: .8em; }
.core-inner em {
  font-size: .58rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(236, 214, 163, .68);
}

.node {
  position: relative; text-align: center; padding: 20px 16px;
  border: 1px solid rgba(201, 164, 93, .16); border-radius: 3px;
  background: linear-gradient(180deg, rgba(236, 214, 163, .05), rgba(236, 214, 163, .012));
  transition: border-color .45s, background .45s, transform .55s var(--ease);
}
.node:hover { border-color: rgba(201, 164, 93, .5); background: linear-gradient(180deg, rgba(236, 214, 163, .11), rgba(236, 214, 163, .028)); transform: translateY(-4px); }
.node-ico {
  display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: 50%; font-size: .95rem; color: var(--gold-lite);
  border: 1px solid rgba(201, 164, 93, .35);
  background: radial-gradient(circle at 32% 26%, rgba(236, 214, 163, .3), rgba(201, 164, 93, .04));
  transition: box-shadow .5s, color .5s;
}
.node:hover .node-ico { box-shadow: 0 0 26px -4px rgba(236, 214, 163, .55); color: #fff8e6; }
.node h3 { font-family: var(--kr-serif); font-weight: 600; font-size: clamp(.98rem, 2vw, 1.1rem); color: var(--cream); line-height: 1.4; word-break: keep-all; }
.node .en { margin-top: .3rem; font-size: .82rem; color: var(--gold); }
.node > p:last-child { margin-top: .55rem; font-size: .78rem; line-height: 1.7; color: var(--txt-on-dark-soft); }

/* =========================================================
   05 NUMBERS
   ========================================================= */
.numbers {
  padding: clamp(76px, 12vh, 150px) 0;
  background: var(--ink);
  border-top: 1px solid rgba(201, 164, 93, .12);
}
.numbers-statement { max-width: 44rem; }
.numbers-statement h2 { color: var(--cream); line-height: 1.32; }
.numbers-grid {
  margin-top: clamp(38px, 6vw, 68px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(201, 164, 93, .16);
}
.numbers-grid > div { background: var(--ink); padding: clamp(22px, 3.4vw, 38px) clamp(14px, 2vw, 26px); }
.numbers-grid dt {
  display: flex; align-items: baseline; gap: .25em;
  font-family: var(--display); line-height: 1;
}
.numbers-grid b {
  font-weight: 500; font-size: clamp(2.6rem, 7vw, 4.2rem); letter-spacing: -.03em;
  font-feature-settings: "lnum" 1;
  background: linear-gradient(140deg, #fff6e2, var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.numbers-grid i { font-style: normal; font-size: clamp(.9rem, 2vw, 1.15rem); color: var(--gold); letter-spacing: .04em; }
.numbers-grid dd { margin: .7rem 0 0; font-size: .82rem; color: var(--txt-on-dark-soft); }
.numbers-statement h2 { font-size: clamp(1.7rem, 3.8vw, 3rem); }

/* =========================================================
   06 RITUAL AM/PM
   ========================================================= */
.ritual2 {
  position: relative; padding: clamp(80px, 12vh, 152px) 0 clamp(56px, 8vh, 96px);
  transition: background 1s var(--ease-soft), color 1s var(--ease-soft);
  background: linear-gradient(180deg, var(--green-950), var(--green-900));
  color: var(--txt-on-dark);
}
.ritual2[data-mode="am"] {
  background: linear-gradient(180deg, #f5ead5, #efdec2);
  color: var(--txt-on-light);
}
.ritual2-head { display: grid; gap: 26px; }
.ritual2 h2 { color: var(--cream); transition: color 1s var(--ease-soft); }
.ritual2[data-mode="am"] h2 { color: #33270f; }
.ritual2[data-mode="am"] .kicker { color: var(--gold-deep); }

.ritual2-switch {
  position: relative; display: inline-flex; padding: 5px;
  border-radius: 999px; border: 1px solid rgba(201, 164, 93, .35);
  background: rgba(7, 23, 17, .3); justify-self: start;
  transition: background 1s var(--ease-soft), border-color 1s;
}
.ritual2[data-mode="am"] .ritual2-switch { background: rgba(255, 255, 255, .45); }
.ritual2-switch button {
  position: relative; z-index: 2; border: 0; background: none; cursor: pointer;
  font-family: var(--kr-sans); font-size: clamp(.72rem, 1.6vw, .82rem); font-weight: 500;
  letter-spacing: .08em; padding: 11px clamp(14px, 2.6vw, 24px); border-radius: 999px;
  color: inherit; opacity: .55; transition: opacity .4s, color .4s;
}
.ritual2-switch button[aria-selected="true"] { opacity: 1; color: #2a1f0c; }
.ritual2-switch .thumb {
  position: absolute; z-index: 1; top: 5px; bottom: 5px; left: 5px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-lite), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 10px 24px -12px rgba(201, 164, 93, .9);
  transition: transform .6s var(--ease), width .6s var(--ease);
}

.ritual2-body {
  margin-top: clamp(34px, 5vw, 60px);
  display: grid; gap: clamp(28px, 5vw, 62px); grid-template-columns: 1fr; align-items: start;
}
.ritual2-visual {
  position: relative; margin: 0; aspect-ratio: 1.16 / 1; overflow: hidden; border-radius: 3px;
  box-shadow: 0 40px 80px -44px rgba(0, 0, 0, .7);
}
.ritual2-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  transition: opacity 1s var(--ease-soft), transform 1.4s var(--ease-soft);
}
.ritual2[data-mode="am"] .v-am, .ritual2[data-mode="pm"] .v-pm { opacity: 1; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1); }

.ritual2-panels { position: relative; }
.ritual2-panel { display: none; }
.ritual2[data-mode="am"] .p-am, .ritual2[data-mode="pm"] .p-pm { display: block; }
.motion-ready .ritual2[data-mode="am"] .p-am, .motion-ready .ritual2[data-mode="pm"] .p-pm { animation: panelIn .8s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: none; } }

.panel-tag { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.ritual2-panel h3 {
  margin-top: .7rem; font-family: var(--kr-serif); font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.75rem); line-height: 1.42;
}
.ritual2-panel ol { margin-top: clamp(22px, 3.4vw, 34px); display: grid; gap: 0; }
.ritual2-panel li {
  display: flex; gap: clamp(14px, 2.4vw, 22px); padding: clamp(16px, 2.4vw, 22px) 0;
  border-top: 1px solid currentColor; border-color: rgba(201, 164, 93, .2);
}
.ritual2-panel li:last-child { border-bottom: 1px solid rgba(201, 164, 93, .2); }
.ritual2-panel li span {
  flex: none; font-family: var(--display); font-size: 1.05rem; color: var(--gold); letter-spacing: .06em; padding-top: 2px;
}
.ritual2-panel strong { display: block; font-family: var(--kr-serif); font-weight: 600; font-size: 1rem; }
.ritual2-panel li p { margin-top: .3rem; font-size: .88rem; opacity: .72; }

.ritual2-note {
  margin-top: clamp(34px, 5vw, 56px); padding-top: 20px;
  border-top: 1px solid rgba(201, 164, 93, .18);
  font-size: .76rem; line-height: 1.85; opacity: .62;
}

/* =========================================================
   07 PROOF
   ========================================================= */
.proof {
  padding: clamp(84px, 13vh, 158px) 0;
  color: var(--txt-on-light);
  background:
    radial-gradient(70% 50% at 18% 10%, rgba(236, 214, 163, .6), transparent 62%),
    linear-gradient(180deg, var(--cream-2), var(--paper));
}
.proof .kicker { color: var(--gold-deep); }
.proof h2 { color: #2b2113; }
.proof-grid { display: grid; gap: clamp(32px, 6vw, 74px); grid-template-columns: 1fr; align-items: center; }
.proof-visual { margin: 0; overflow: hidden; border-radius: 4px; perspective: 1200px; box-shadow: 0 44px 90px -50px rgba(96, 72, 32, .65); }
.proof-visual img {
  width: 100%; transition: transform 1.1s var(--ease-soft);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}
.proof-visual:hover img { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.07) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); }

.proof-badge {
  margin: clamp(24px, 4vw, 34px) 0; display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-radius: 4px;
  background: rgba(255, 255, 255, .58); border: 1px solid rgba(154, 119, 54, .22);
  box-shadow: 0 18px 40px -26px rgba(96, 72, 32, .5);
}
.proof-badge img { width: 78px; border-radius: 2px; }
.proof-badge strong { display: block; font-family: var(--kr-serif); font-weight: 600; font-size: .98rem; color: #2b2113; }
.proof-badge span { font-size: .78rem; color: var(--txt-on-light-soft); letter-spacing: .02em; }

.proof-list { display: grid; gap: 0; }
.proof-list li { display: flex; gap: 18px; align-items: baseline; padding: 15px 0; border-bottom: 1px solid rgba(154, 119, 54, .18); }
.proof-list li:first-child { border-top: 1px solid rgba(154, 119, 54, .18); }
.proof-list b { font-family: var(--display); font-size: .95rem; color: var(--gold-deep); letter-spacing: .1em; }
.proof-list p { font-family: var(--kr-serif); font-size: clamp(.98rem, 2vw, 1.1rem); color: #33291c; }
.proof-note { margin-top: 22px; font-size: .74rem; line-height: 1.85; color: rgba(109, 96, 76, .82); }


/* =========================================================
   08 KEY INGREDIENTS
   ========================================================= */
.ingr {
  position: relative; overflow: hidden;
  padding: clamp(84px, 13vh, 160px) 0 clamp(72px, 11vh, 130px);
  color: var(--txt-on-dark);
  background:
    radial-gradient(70% 50% at 84% 0%, rgba(29, 68, 54, .9), transparent 62%),
    linear-gradient(180deg, var(--green-950), var(--green-900) 40%, var(--green-950));
}
.ingr-head { max-width: 44rem; margin-bottom: clamp(34px, 5vw, 60px); }
.ingr-head h2 { color: var(--cream); }
.ingr-head > p { margin-top: 1.2rem; color: var(--txt-on-dark-soft); font-size: .96rem; max-width: 46ch; }

.ingr-explorer {
  display: grid; gap: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(201, 164, 93, .18); border-radius: 6px;
  background: linear-gradient(180deg, rgba(236, 214, 163, .045), rgba(236, 214, 163, .012));
  padding: clamp(14px, 2.4vw, 26px);
}

/* tabs */
.ingr-tabs {
  display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 2px;
  --fade: linear-gradient(90deg, #000 0, #000 86%, transparent 100%);
  -webkit-mask-image: var(--fade); mask-image: var(--fade);
}
.ingr-tabs::after { content: ""; flex: none; width: 24px; }
.ingr-tabs::-webkit-scrollbar { display: none; }
.ingr-tabs button {
  flex: none; scroll-snap-align: start;
  display: flex; align-items: center; gap: 12px; text-align: left;
  min-width: 168px; max-width: 232px; padding: 12px 16px; border-radius: 4px; cursor: pointer;
  border: 1px solid rgba(201, 164, 93, .2);
  background: rgba(7, 23, 17, .35); color: var(--txt-on-dark-soft);
  font-family: var(--kr-sans);
  transition: border-color .4s, background .4s, color .4s, transform .5s var(--ease);
}
.ingr-tabs button:hover { border-color: rgba(201, 164, 93, .5); color: var(--cream); transform: translateY(-2px); }
.ingr-tabs button b {
  font-family: var(--display); font-weight: 500; font-size: 1.15rem; letter-spacing: .04em;
  color: var(--gold); line-height: 1;
}
.ingr-tabs button span { display: grid; gap: 2px; }
.ingr-tabs button strong { font-family: var(--kr-serif); font-weight: 600; font-size: 1rem; color: inherit; line-height: 1.3; }
.ingr-tabs button small { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; line-height: 1.4; }
.ingr-tabs button[aria-selected="true"] {
  border-color: var(--gold); color: #2a1f0c;
  background: linear-gradient(120deg, var(--gold-lite), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 14px 30px -16px rgba(201, 164, 93, .8);
}
.ingr-tabs button[aria-selected="true"] b { color: #4d3a14; }
.ingr-tabs button[aria-selected="true"] small { opacity: .8; }
.ingr-tabs button:focus-visible { outline: 2px solid var(--gold-lite); outline-offset: 2px; }

/* panels */
.ingr-panel[hidden] { display: none; }
.ingr-panel { display: block; }
.motion-ready .ingr-panel:not([hidden]) { animation: panelIn .7s var(--ease) both; }

.ip-head { padding-bottom: clamp(16px, 2.4vw, 24px); border-bottom: 1px solid rgba(201, 164, 93, .2); }
.ip-label { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.ip-head h3 {
  margin-top: .6rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .3em .8em;
  font-family: var(--kr-serif); font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--cream); line-height: 1.3;
}
.ip-head h3 small { font-family: var(--display); font-weight: 500; font-size: .48em; letter-spacing: .08em; color: var(--gold-lite); }
.ip-tag { margin-top: .6rem; font-size: .92rem; color: var(--txt-on-dark-soft); }

.ip-body { display: grid; gap: clamp(22px, 3.4vw, 40px); margin-top: clamp(20px, 3vw, 30px); }
.ip-desc { font-size: .98rem; line-height: 1.9; max-width: 60ch; color: var(--txt-on-dark); }
.ip-desc strong { font-weight: 500; color: var(--gold-lite); }

.ip-fx {
  margin-top: clamp(20px, 3vw, 30px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px;
}
.ip-fx li {
  display: grid; align-content: start; gap: 6px;
  padding: 18px 16px 20px; border-radius: 3px;
  border: 1px solid rgba(201, 164, 93, .18); background: rgba(5, 15, 11, .55);
  transition: background .4s, border-color .4s;
}
.ip-fx li:hover { background: var(--green-900); border-color: rgba(201, 164, 93, .45); }
.ip-fx svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-lite); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 4px; }
.ip-fx strong { font-family: var(--kr-serif); font-weight: 600; font-size: .95rem; color: var(--cream); line-height: 1.35; word-break: keep-all; }
.ip-fx span { font-size: .76rem; line-height: 1.65; color: var(--txt-on-dark-soft); word-break: keep-all; }

.ip-side { display: grid; gap: 14px; align-content: start; }
.ip-box {
  padding: 18px 20px; border-radius: 4px;
  border: 1px solid rgba(201, 164, 93, .2); background: rgba(7, 23, 17, .4);
}
.ip-box h4 { margin: 0 0 12px; font-family: var(--kr-sans); font-weight: 500; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ip-box p { font-size: .82rem; line-height: 1.8; color: var(--txt-on-dark-soft); }

.ip-stat {
  padding: 22px 20px; border-radius: 4px; text-align: left;
  background: linear-gradient(150deg, rgba(236, 214, 163, .14), rgba(201, 164, 93, .04));
  border: 1px solid rgba(201, 164, 93, .36);
}
.ip-stat b {
  display: inline-flex; align-items: baseline; gap: .04em;
  font-family: var(--display); font-weight: 500; font-size: clamp(2.8rem, 6vw, 3.8rem); line-height: .9; letter-spacing: -.02em;
  background: linear-gradient(140deg, #fff6e2, var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ip-stat b i { font-style: normal; font-size: .46em; }
.ip-stat > span { display: block; margin-top: 8px; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lite); }
.ip-stat p { margin-top: 8px; font-size: .78rem; line-height: 1.7; color: var(--txt-on-dark-soft); }

.ip-gf { display: grid; gap: 0; }
.ip-gf li { display: flex; align-items: baseline; gap: 14px; padding: 8px 0; border-top: 1px solid rgba(201, 164, 93, .14); }
.ip-gf li:first-child { border-top: 0; padding-top: 0; }
.ip-gf b { flex: none; width: 52px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: .06em; color: var(--gold-lite); }
.ip-gf span { font-size: .8rem; color: var(--txt-on-dark-soft); }

.ip-comp { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: 10px 6px; text-align: center; }
.ip-comp li { display: grid; justify-items: center; gap: 4px; font-size: .78rem; color: var(--cream); line-height: 1.3; }
.ip-comp svg {
  width: 40px; height: 40px; padding: 9px; border-radius: 50%;
  fill: none; stroke: var(--gold-lite); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
  border: 1px solid rgba(201, 164, 93, .35); background: radial-gradient(circle at 32% 26%, rgba(236, 214, 163, .22), rgba(201, 164, 93, .03));
}
.ip-comp small { font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--txt-on-dark-soft); }

.ip-check { display: grid; gap: 8px; }
.ip-check li { position: relative; padding-left: 24px; font-size: .84rem; line-height: 1.7; color: var(--txt-on-dark); word-break: keep-all; }
.ip-check li::before {
  content: "✓"; position: absolute; left: 0; top: .28em;
  display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%;
  font-size: .58rem; color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold-deep));
}
.ip-caution { border-color: rgba(236, 214, 163, .45); }

.ip-syn { display: grid; grid-template-columns: 1fr auto 1fr auto 1.15fr; align-items: center; gap: 8px; margin-bottom: 12px; }
.ip-syn span { display: grid; gap: 2px; padding: 10px 10px; border-radius: 4px; border: 1px solid rgba(201, 164, 93, .22); font-size: .7rem; line-height: 1.5; color: var(--txt-on-dark-soft); text-align: center; word-break: keep-all; }
.ip-syn span b { font-family: var(--kr-serif); font-weight: 600; font-size: .86rem; color: var(--cream); }
.ip-syn span.out { border-color: var(--gold); background: rgba(201, 164, 93, .1); }
.ip-syn span.out b { color: var(--gold-lite); }
.ip-syn i { font-style: normal; font-family: var(--display); font-size: 1.2rem; color: var(--gold); }
.ip-syn > svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.ip-quote p { font-family: var(--kr-serif); font-size: .92rem; line-height: 1.85; color: var(--cream); }

.ip-steps { display: grid; gap: 0; counter-reset: none; }
.ip-steps li { display: flex; gap: 14px; padding: 10px 0; border-top: 1px solid rgba(201, 164, 93, .14); }
.ip-steps li:first-child { border-top: 0; padding-top: 0; }
.ip-steps b {
  flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  font-family: var(--display); font-size: .9rem; color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold-deep));
}
.ip-steps strong { display: block; font-family: var(--kr-serif); font-weight: 600; font-size: .9rem; color: var(--cream); }
.ip-steps span { display: block; font-size: .76rem; line-height: 1.65; color: var(--txt-on-dark-soft); word-break: keep-all; }

.ip-mela-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 6px; }
.ip-mela-row > span { display: grid; justify-items: center; gap: 4px; text-align: center; font-size: .78rem; color: var(--cream); padding: 10px 6px; border-radius: 4px; border: 1px solid rgba(201, 164, 93, .18); word-break: keep-all; }
.ip-mela-row > span.out { border-color: var(--gold); background: rgba(201, 164, 93, .1); }
.ip-mela-row > span svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-lite); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.ip-mela-row > span small { font-size: .62rem; line-height: 1.45; color: var(--txt-on-dark-soft); }
.ip-mela-row > .arr { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.ip-bar-grid { display: grid; gap: 12px; }
.ip-bar-grid figure { margin: 0; padding: 12px; border-radius: 4px; border: 1px solid rgba(201, 164, 93, .18); background: rgba(7, 23, 17, .35); }
.ip-bar-grid svg { width: 100%; height: auto; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.ip-bar-grid .brick { stroke: rgba(236, 214, 163, .7); fill: rgba(236, 214, 163, .06); }
.ip-bar-grid .lipid { stroke: var(--gold); stroke-dasharray: 3 4; }
.ip-bar-grid .drop { fill: rgba(201, 164, 93, .55); stroke: var(--gold-lite); }
.ip-bar-grid .ext { stroke: rgba(236, 214, 163, .55); }
.ip-bar-grid .bad .brick { stroke: rgba(236, 214, 163, .38); fill: none; }
.ip-bar-grid .bad .ext { stroke: rgba(236, 214, 163, .55); }
.ip-bar-grid .esc { stroke: rgba(201, 164, 93, .6); stroke-dasharray: 2 3; }
.ip-bar-grid figcaption { margin-top: 10px; font-size: .72rem; line-height: 1.6; color: var(--txt-on-dark-soft); word-break: keep-all; }
.ip-bar-grid figcaption b { display: block; font-family: var(--kr-serif); font-weight: 600; font-size: .86rem; color: var(--cream); margin-bottom: 2px; }
.ip-bar-grid .ok figcaption b { color: var(--gold-lite); }

/* technology & support */
.ingr-tech { margin-top: clamp(40px, 6vw, 72px); }
.ingr-tech-grid { display: grid; gap: 1px; background: rgba(201, 164, 93, .16); border: 1px solid rgba(201, 164, 93, .16); }
.ingr-tech-grid article { padding: clamp(20px, 3vw, 30px); background: var(--green-950); transition: background .4s; }
.ingr-tech-grid article:hover { background: var(--green-900); }
.ingr-tech-grid svg {
  width: 44px; height: 44px; padding: 10px; border-radius: 50%; margin-bottom: 14px;
  fill: none; stroke: var(--gold-lite); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
  border: 1px solid rgba(201, 164, 93, .35); background: radial-gradient(circle at 32% 26%, rgba(236, 214, 163, .25), rgba(201, 164, 93, .03));
}
.ingr-tech-grid h3 { display: grid; gap: 3px; font-family: var(--kr-serif); font-weight: 600; font-size: 1.05rem; color: var(--cream); line-height: 1.4; }
.ingr-tech-grid h3 small { font-family: var(--display); font-weight: 500; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.ingr-tech-grid p { margin-top: 10px; font-size: .82rem; line-height: 1.8; color: var(--txt-on-dark-soft); word-break: keep-all; }
.ingr-note { margin-top: 18px; font-size: .7rem; line-height: 1.8; color: rgba(247, 241, 228, .36); }

/* =========================================================
   09 LOOKBOOK
   ========================================================= */
.lookbook { padding: clamp(76px, 12vh, 140px) 0 clamp(60px, 9vh, 110px); background: linear-gradient(180deg, var(--ink), var(--green-950)); overflow: hidden; }
.lookbook-head h2 { color: var(--cream); }
.lookbook-head > p { margin-top: 1rem; font-size: .82rem; letter-spacing: .1em; color: var(--txt-on-dark-soft); }
.lookbook-rail {
  margin-top: clamp(28px, 4vw, 46px);
  display: flex; gap: clamp(14px, 2vw, 26px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px var(--pad) 26px;
  scrollbar-width: thin; scrollbar-color: rgba(201, 164, 93, .5) transparent;
}
.lookbook-rail::-webkit-scrollbar { height: 4px; }
.lookbook-rail::-webkit-scrollbar-thumb { background: rgba(201, 164, 93, .45); border-radius: 4px; }
.lookbook-rail figure {
  flex: none; margin: 0; scroll-snap-align: center;
}
.lookbook-rail img {
  height: clamp(230px, 44vh, 430px); width: auto; max-width: none;
  object-fit: contain; border-radius: 3px;
  border: 1px solid rgba(201, 164, 93, .18);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease), border-color .7s;
}
.lookbook-rail figure:hover img { transform: translateY(-6px) scale(1.02); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9); border-color: rgba(201, 164, 93, .5); }
.lookbook-rail figcaption { margin-top: 12px; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(247, 241, 228, .4); }

/* =========================================================
   10 CTA
   ========================================================= */
.cta2 {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(88px, 14vh, 168px) 0;
  text-align: center;
  background: linear-gradient(165deg, #16342a, var(--green-950) 55%, var(--ink));
}
.cta2-glow {
  position: absolute; inset: -30% -10% auto; height: 120%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 32%, rgba(236, 214, 163, .28), transparent 68%);
  filter: blur(20px);
}
.motion-ready .cta2-glow { animation: ctaGlow 12s ease-in-out infinite alternate; }
@keyframes ctaGlow { to { transform: translate3d(0, 4%, 0) scale(1.12); opacity: .75; } }
.cta2-inner { max-width: 780px; }
.cta2 h2 { color: var(--cream); }
.cta2-lead { margin: 1.4rem auto 0; max-width: 44ch; color: var(--txt-on-dark); font-size: .98rem; }
.cta2 .btn-gold { margin-top: clamp(26px, 4vw, 38px); }
.cta2-note { margin: clamp(30px, 5vw, 44px) auto 0; max-width: 60ch; font-size: .72rem; line-height: 1.9; color: rgba(247, 241, 228, .38); }

/* =========================================================
   footer
   ========================================================= */
.l2-footer { background: var(--ink); border-top: 1px solid rgba(201, 164, 93, .14); padding: clamp(42px, 6vw, 66px) 0; }
.l2-footer-inner { display: grid; gap: 22px; }
.l2-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.l2-footer nav a { font-size: .8rem; color: var(--txt-on-dark-soft); transition: color .3s; }
.l2-footer nav a:hover { color: var(--gold-lite); }
.l2-footer p { font-size: .7rem; line-height: 1.9; color: rgba(247, 241, 228, .3); max-width: 70ch; }

/* =========================================================
   reveal system
   ========================================================= */
.motion-ready [data-reveal] { opacity: 0; }
.motion-ready [data-reveal="up"] { transform: translate3d(0, 26px, 0); transition: opacity .9s var(--ease-soft) calc(var(--i, 0) * 90ms), transform .9s var(--ease) calc(var(--i, 0) * 90ms); }
.motion-ready [data-reveal="row"] { transform: translate3d(0, 22px, 0); transition: opacity .8s var(--ease-soft) calc(var(--i, 0) * 110ms), transform .8s var(--ease) calc(var(--i, 0) * 110ms); }
.motion-ready [data-reveal="image"] { clip-path: inset(12% 0 0 0); transform: translate3d(0, 20px, 0); transition: opacity 1.1s var(--ease-soft), transform 1.2s var(--ease), clip-path 1.2s var(--ease); }
.motion-ready [data-reveal="node"] { transform: translate3d(0, 18px, 0) scale(.96); transition: opacity .8s var(--ease-soft) calc(220ms + var(--i, 0) * 120ms), transform .8s var(--ease) calc(220ms + var(--i, 0) * 120ms); }
.motion-ready [data-reveal="core"] { transform: scale(.9); transition: opacity 1s var(--ease-soft), transform 1.1s var(--ease); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; clip-path: none; }

.motion-ready .hero2-title .line > span { transform: translate3d(0, 106%, 0); transition: transform 1.15s var(--ease) calc(var(--i, 0) * 130ms); }
.motion-ready .hero2-title .line.is-visible > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 860px) {
  .l2-nav { display: none; }
  .l2-header-cta { margin-left: auto; }
}

@media (min-width: 620px) {
  .hero2-band { height: auto; aspect-ratio: 1448 / 556; }
  .hero2-band img { object-position: 50% 50%; }
  .hero2-scroll { display: inline-flex; }
}

@media (min-width: 720px) {
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .orbit { grid-template-columns: repeat(2, 1fr); }
  .orbit-core { grid-column: 1 / -1; order: -1; }
}

@media (min-width: 880px) {
  .need-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: start; }
  .need-sticky { position: sticky; top: 96px; }
  .sci-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
  .proof-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
  .ritual2-body { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .ritual2-head { grid-template-columns: 1fr auto; align-items: end; }
  .ritual2-switch { justify-self: end; }
  .l2-footer-inner { grid-template-columns: auto 1fr; align-items: center; column-gap: 40px; }
  .l2-footer p { grid-column: 1 / -1; }
}


@media (min-width: 720px) {
  .ingr-tech-grid { grid-template-columns: repeat(3, 1fr); }
  .ip-bar-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .ip-body { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .95fr); }
  .ingr-tabs { display: grid; grid-template-columns: repeat(5, 1fr); overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .ingr-tabs::after { display: none; }
  .ingr-tabs button { min-width: 0; max-width: none; }
}

/* Grid positioning remains stable with hover and reduced motion. */
@media (min-width: 1000px) {
  .orbit { grid-template-columns: 1fr 1.15fr 1fr; grid-template-areas: ". secretome ." "retinol core cica" "glutathione . ceramide"; gap: 30px 24px; max-width: 1000px; margin-inline: auto; align-items: center; }
  .orbit-core { grid-area: core; order: initial; }
  .n-top { grid-area: secretome; }
  .n-left { grid-area: retinol; }
  .n-right { grid-area: cica; }
  .n-bl { grid-area: glutathione; }
  .n-br { grid-area: ceramide; }
  .node { padding: 22px 16px; }
}

@media (min-width: 1100px) {
  .hero2-lead { max-width: 40ch; }
  .hero2-title { font-size: clamp(3rem, 4.5vw, 4.4rem); }
}

@media (min-width: 1100px) and (max-height: 860px) {
  .hero2-title { font-size: clamp(2.5rem, 3.6vw, 3.5rem); }
  .hero2-lead { font-size: .96rem; line-height: 1.8; }
  .hero2-chips { margin-top: 20px; }
}

/* 2026-09-06 typography and interaction refinement */
body.l2 { word-break: keep-all; overflow-wrap: anywhere; font-size: 16px; }
h1, h2, h3, .hero2-title { text-wrap: balance; font-weight: 700; letter-spacing: -.035em; }
p, li { text-wrap: pretty; }
.type-line { display: block; }
strong { font-weight: 700; }
:focus-visible { outline: 2px solid var(--gold-lite); outline-offset: 5px; }
section[id] { scroll-margin-top: 100px; }
.hero2-title { line-height: 1.22; }
.hero2-title .line { padding-bottom: .1em; }
.hero2-eyebrow { flex-wrap: wrap; font-size: .75rem; line-height: 1.7; letter-spacing: .12em; }
.hero2-lead { font-size: clamp(1.04rem, 1.7vw, 1.2rem); line-height: 1.85; max-width: 46ch; }
.hero2-chips { gap: 10px; }
.hero2-chips li { font-size: .78rem; font-weight: 500; letter-spacing: .015em; }
.hero2-chips .hero-equivalent { color: var(--gold-lite); border-color: var(--gold); }
.hero-equivalent strong { font-size: 1.15em; }
sup { font-size: .5em; line-height: 0; vertical-align: super; }
.kicker { font-size: .74rem; font-weight: 650; letter-spacing: .18em; }
.sci-hero-num { flex-wrap: wrap; gap: 16px; align-items: center; }
.sci-hero-num strong { font-weight: 750; font-size: clamp(3.5rem, 8vw, 6rem); letter-spacing: -.07em; white-space: nowrap; }
.sci-hero-num > span { min-width: 0; font-size: .82rem; }
.sci-hero-num em { font-size: .82rem; font-weight: 650; line-height: 1.7; letter-spacing: 0; }
.equivalent-note { margin-top: 14px; color: var(--txt-on-light-soft); font-size: .78rem; line-height: 1.7; }
.sci-points h3,.node h3,.ritual2-panel strong,.ip-fx strong { font-weight: 700; }
.node:hover { transform: none; }
.node { min-width: 0; border-radius: 0; }
.node-caption { font-size: .83rem; color: var(--txt-on-dark-soft); margin-top: 4px; }
.node .en { font-size: .82rem; line-height: 1.8; }
.node > p:last-child { font-size: .82rem; }
.core-inner strong { font-weight: 650; }
.core-inner em { font-size: .7rem; letter-spacing: .12em; }
.core-hex::before { animation: none!important; }
.numbers-grid b { font-weight: 750; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.numbers-grid dd { font-size: .9rem; }
.ritual2-switch { display: grid; grid-template-columns: 1fr 1fr; padding: 5px; width: min(100%, 390px); border-radius: 6px; }
.ritual2-switch button { display: grid; justify-items: start; gap: 4px; min-width: 0; padding: 12px 16px; line-height: 1.35; font-size: .86rem; font-weight: 650; opacity: 1; border-radius: 3px; transition: color .2s, background .2s; }
.ritual2-switch button span { font-size: .68rem; letter-spacing: .1em; }
.ritual2-switch button[aria-selected="true"] { background: var(--gold-lite); color: #241e12; }
.ritual2-switch .thumb { display: none; }
.ritual2-panel h3 { font-size: clamp(1.4rem, 2.3vw, 1.8rem); line-height: 1.45; max-width: 24ch; font-weight: 700; }
.ritual2-panel li { align-items: flex-start; }
.ritual2-panel li div { min-width: 0; }
.ritual2-panel li p { font-size: .98rem; line-height: 1.8; opacity: .9; }
.ritual2-note { font-size: .83rem; line-height: 1.85; }
.ritual2-panel[hidden] { display: none!important; }
.ritual2[data-mode="am"] :focus-visible { outline-color: #1d4436; }
.ingr-explorer { border-radius: 0; }
.ingr-tabs { padding: 6px 3px 16px; margin: -6px -3px 0; mask-image: none; -webkit-mask-image: none; }
.ingr-tabs button:hover { transform: none; }
.ingr-tabs button { min-height: 84px; padding: 14px 12px; gap: 9px; border-radius: 2px; }
.ingr-tabs button span { min-width: 0; }
.ingr-tabs button strong { font-weight: 700; }
.ingr-tabs button small { font-size: .7rem; letter-spacing: .015em; text-transform: none; }
.ip-head h3 { font-weight: 700; }
.ip-head h3 small { line-height: 1.7; font-size: .48em; letter-spacing: .025em; }
.ip-desc strong { font-weight: 700; }
.ip-fx span { font-size: .86rem; }
.ip-box h4 { font-size: .83rem; font-weight: 650; letter-spacing: .04em; }
.ip-stat b { font-weight: 750; }
.ip-stat p,.ip-box p { font-size: .86rem; }
.ip-stat span { letter-spacing: .04em; }
.ip-fx { grid-template-columns: repeat(2, minmax(0,1fr)); }
.secretome-flow { margin: 24px 0 0; text-align: center; padding: 24px 18px; border-block: 1px solid var(--gold-deep); }
.flow-source { display: grid; justify-items: center; gap: 6px; }
.flow-source svg { width: 160px; color: var(--gold-lite); }
.flow-source b { font-size: .85rem; color: var(--cream); }
.flow-source span,.flow-result p { font-size: .82rem; }
.flow-arrow { margin: 12px 0; color: var(--gold); }
.flow-result { padding: 20px 12px; background: var(--green-800); border: 1px solid var(--gold-deep); }
.flow-result > b { display: block; color: var(--cream); font-size: 1.35rem; margin-top: 4px; }
.flow-label { font-size: .65rem; letter-spacing: .16em; color: var(--gold-lite); }
.flow-components { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 16px 0; }
.flow-components span { padding: 6px 9px; border: 1px solid rgba(201,164,93,.4); font-size: .73rem; color: var(--gold-lite); }
.secretome-flow figcaption,.ha-figure figcaption { font-size: .75rem; line-height: 1.75; margin-top: 16px; color: var(--txt-on-dark-soft); }
.ha-figure { margin: 40px 0 0; display: grid; gap: 24px; padding: clamp(24px,4vw,40px); border: 1px solid rgba(201,164,93,.3); }
.ha-intro h3 { font-size: clamp(1.8rem,3vw,2.5rem); line-height: 1.3; color: var(--cream); }
.ha-intro > p:last-child { font-size: .9rem; margin-top: 16px; }
.ha-sizes { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; text-align: center; }
.ha-sizes > div { display: grid; justify-items: center; align-content: end; gap: 6px; }
.ha-sizes b { font-size: .85rem; color: var(--cream); }
.ha-sizes small { font-size: .68rem; color: var(--gold); }
.ha-molecule { display: block; border: 1px solid var(--gold-lite); border-radius: 50%; background: radial-gradient(circle at 35% 30%,#eedda5aa,#b9904422); margin-block: 12px; }
.ha-xl { width: 56px; height: 56px; }.ha-lg { width: 42px; height: 42px; }.ha-md { width: 28px; height: 28px; }.ha-sm { width: 16px; height: 16px; }
.ha-surface { margin-top: 24px; padding: 12px; text-align: center; color: #ceece6; background: #30584f; border-top: 2px solid #a4cbc0; font-size: .82rem; }
.ha-layers { display: grid; gap: 2px; }
.ha-layers div { padding: 10px 14px; background: #735e3f44; color: var(--gold-lite); font-size: .8rem; }
.ha-layers div:nth-child(2) { background: #735e3f2b; }.ha-layers div:nth-child(3) { background: #735e3f16; }
.ha-layers small { margin-left: 10px; font-size: .72rem; color: var(--txt-on-dark-soft); }
.ha-figure figcaption { grid-column: 1 / -1; }
.ingr-note { font-size: .82rem; line-height: 1.85; }
.purchase-link[aria-disabled="true"] { cursor: default; box-shadow: none; }
.cta2-note,.l2-footer p { color: var(--txt-on-dark-soft); font-size: .78rem; }
@media(min-width:720px) { .ha-figure { grid-template-columns: .8fr 1.2fr; align-items: center; } }
@media(max-width:600px) {
 .hero2-title { font-size: clamp(2rem,7.6vw,2.8rem); }
 .hero2-eyebrow { font-size: .66rem; letter-spacing: .04em; }
 .hero2-chips { align-items: start; }
 .hero2-chips li { font-size: .72rem; }
 .hero2-actions { flex-wrap: wrap; }
 .ritual2-switch { width: 100%; }
 .ritual2-switch button { padding: 12px 10px; font-size: .8rem; }
 .sci-hero-num { display: grid; gap: 12px; }
 .sci-hero-num strong { line-height: 1.1; }
 .ip-head h3 { display: block; }.ip-head h3 small { display: block; margin-top: 10px; font-size: .55em; }
 .ip-fx { grid-template-columns: 1fr; }
}
@media(prefers-reduced-motion:reduce) {
 .hero2-title .line > span { transform: none!important; }
 .ticker-track { transform: none!important; }
}
/* Keep the full-width pack shot inside the viewport and tab numbers intact. */
.need-shot img { transform: none; }
.ingr-tabs button b { flex: none; white-space: nowrap; }
.hero2-chips .hero-equivalent { display: inline-flex; align-items: center; gap: .8em; }
.hero-equivalent strong { font-size: 1.7rem; line-height: 1.1; font-weight: 750; }
