@font-face {
  font-family: "Farmel Sans";
  src: local("Inter"), local("SF Pro Display"), local("Helvetica Neue");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f3f6e8;
  --muted: #9daaa0;
  --deep: #04110f;
  --deep-2: #071b17;
  --panel: rgba(13, 42, 35, 0.72);
  --line: rgba(223, 244, 211, 0.16);
  --acid: #c9ee68;
  --aqua: #78ded0;
  --violet: #b8c7ff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Farmel Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1320px, calc(100vw - 72px));
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--deep); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 5%, rgba(26, 109, 88, .19), transparent 31rem),
    radial-gradient(circle at 8% 36%, rgba(113, 222, 208, .08), transparent 28rem),
    var(--deep);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.noscript-shell { width: min(720px, calc(100vw - 40px)); margin: 12vh auto; padding: 56px; border: 1px solid var(--line); background: rgba(8, 30, 26, .78); }
.noscript-shell h1 { margin: 28px 0 20px; font-size: clamp(48px, 9vw, 92px); font-weight: 500; letter-spacing: -.06em; line-height: .92; }
.noscript-shell > p:not(.eyebrow) { max-width: 560px; color: rgba(243, 246, 232, .68); font-size: 18px; line-height: 1.65; }
.noscript-shell a { display: inline-flex; margin: 28px 0; padding: 16px 24px; border-radius: 999px; background: var(--acid); color: #07110d; font-weight: 700; }
.noscript-shell small { display: block; max-width: 560px; color: rgba(243, 246, 232, .48); line-height: 1.6; }

::selection { color: #03110e; background: var(--acid); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  color: #04110f;
  background: var(--acid);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  background: rgba(255, 255, 255, .04);
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px max(36px, calc((100vw - 1320px) / 2));
  transform: translateX(-50%);
  transition: padding .35s ease, background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  border-color: var(--line);
  background: rgba(4, 17, 15, .76);
  backdrop-filter: blur(24px) saturate(140%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-weight: 700; letter-spacing: .18em; }
.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(201, 238, 104, .5);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}
.desktop-nav { display: flex; gap: 32px; color: rgba(243, 246, 232, .68); font-size: 13px; }
.desktop-nav a { position: relative; transition: color .25s ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--acid); transform: scaleX(0); transition: transform .25s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { justify-self: end; padding: 10px 0; color: var(--acid); font-size: 13px; font-weight: 600; }
.header-cta span { display: inline-block; margin-left: 5px; transition: transform .25s ease; }
.header-cta:hover span { transform: translate(3px, -3px); }
.menu-toggle { display: none; border: 0; background: transparent; }
.mobile-menu { display: none; }

main { overflow: clip; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 130px 0 76px;
}
.hero::before {
  position: absolute;
  top: 13%;
  left: 51%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(141, 230, 193, .1);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(72, 191, 157, .06) inset, 0 0 80px rgba(72, 191, 157, .05);
}
.hero-aura {
  position: absolute;
  top: 8%;
  right: -9%;
  width: 65%;
  aspect-ratio: 1;
  opacity: .45;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 169, 133, .28) 0, rgba(15, 64, 53, .12) 38%, transparent 70%);
  filter: blur(24px);
}
.hero-copy { position: relative; z-index: 3; padding-top: 20px; }
.eyebrow, .section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before, .section-index::before { width: 30px; height: 1px; content: ""; background: currentColor; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(64px, 7.1vw, 116px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .83;
  text-wrap: balance;
}
.hero h1 em, .closing-section h2 em {
  color: var(--aqua);
  font-family: var(--serif);
  font-weight: 400;
}
.hero-lead { max-width: 490px; margin: 36px 0 0; color: rgba(243, 246, 232, .7); font-size: 17px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--acid);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.button-primary { color: #07130f; background: var(--acid); box-shadow: 0 12px 38px rgba(201, 238, 104, .15); }
.button-primary:hover { background: #dcff78; box-shadow: 0 18px 46px rgba(201, 238, 104, .24); transform: translateY(-2px); }
.button span { transition: transform .25s ease; }
.button:hover span { transform: translate(3px, -3px); }
.text-link { padding: 12px 0; border-bottom: 1px solid rgba(243, 246, 232, .3); font-size: 13px; }
.text-link span { display: inline-block; margin-left: 8px; color: var(--aqua); transition: transform .25s ease; }
.text-link:hover span { transform: translateY(4px); }

.product-visual { position: relative; z-index: 2; width: 100%; height: min(76vh, 790px); min-height: 590px; }
#product-stage { position: absolute; inset: 0; display: block; width: 100%; height: 100%; cursor: grab; touch-action: pan-y; }
#product-stage:active { cursor: grabbing; }
.jar-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 410px;
  transform: translate(-50%, -47%) rotate(5deg);
  transition: opacity .35s ease;
}
.webgl-ready .jar-fallback { opacity: 0; }
.fallback-lid { position: absolute; top: 0; left: 20px; z-index: 2; width: 210px; height: 70px; border: 1px solid rgba(209, 226, 205, .65); border-radius: 18px 18px 12px 12px; background: linear-gradient(180deg, #dfe3da, #737d70 72%, #303b34); box-shadow: 0 12px 24px rgba(0, 0, 0, .35); }
.fallback-glass { position: absolute; inset: 55px 0 0; overflow: hidden; border: 1px solid rgba(225, 255, 235, .38); border-radius: 26px 26px 48px 48px; background: linear-gradient(105deg, rgba(225, 255, 235, .38), rgba(43, 83, 64, .62) 18%, rgba(12, 43, 31, .9) 54%, rgba(167, 224, 192, .34)); box-shadow: 0 40px 80px rgba(0, 0, 0, .48), inset 18px 0 26px rgba(230, 255, 235, .12); }
.fallback-glass::before { position: absolute; right: -12%; bottom: -16%; left: -12%; height: 70%; content: ""; background: radial-gradient(circle at 60% 20%, rgba(201, 238, 104, .4), transparent 18%), linear-gradient(180deg, rgba(76, 132, 49, .55), #09291b); border-radius: 48% 48% 0 0; }
.fallback-label { position: absolute; top: 90px; right: 16px; left: 16px; z-index: 2; display: flex; flex-direction: column; align-items: center; min-height: 170px; padding: 18px 12px; border: 1px solid rgba(202, 238, 104, .42); background: rgba(5, 23, 19, .86); text-align: center; }
.fallback-label small { color: var(--acid); font-size: 8px; letter-spacing: .26em; }
.fallback-label strong { margin-top: 14px; font-size: 30px; letter-spacing: .16em; }
.fallback-label span { margin-top: 5px; color: var(--aqua); font-size: 13px; letter-spacing: .24em; }
.fallback-label i { margin-top: auto; color: rgba(255,255,255,.5); font-family: var(--serif); font-size: 11px; font-weight: 400; }
.drag-hint { position: absolute; right: 7%; bottom: 9%; display: flex; align-items: center; gap: 10px; margin: 0; color: rgba(243, 246, 232, .5); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.drag-hint span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--aqua); }
.hero-note { position: absolute; right: 0; bottom: 10%; z-index: 3; display: flex; align-items: flex-start; gap: 15px; }
.hero-note span { color: var(--acid); font-family: var(--serif); font-size: 24px; font-style: italic; }
.hero-note p { margin: 3px 0 0; color: rgba(243, 246, 232, .48); font-size: 10px; letter-spacing: .1em; line-height: 1.65; text-transform: uppercase; }
.scroll-cue { position: absolute; bottom: 35px; left: 0; display: flex; align-items: center; gap: 10px; color: rgba(243, 246, 232, .35); }
.scroll-cue span { position: relative; display: block; width: 1px; height: 46px; overflow: hidden; background: rgba(255,255,255,.13); }
.scroll-cue span::after { position: absolute; inset: 0; content: ""; background: var(--acid); animation: scrollLine 2.1s ease-in-out infinite; }
.scroll-cue p { margin: 0; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 50%, 100% { transform: translateY(100%); } }

.fact-strip { display: grid; grid-template-columns: repeat(3, 1fr) 1.5fr; width: var(--page); margin: 0 auto; padding: 27px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-strip article { display: flex; flex-direction: column; gap: 5px; padding: 0 28px; border-right: 1px solid var(--line); }
.fact-strip article:first-child { padding-left: 0; }
.fact-strip strong { color: var(--ink); font-size: 19px; font-weight: 500; }
.fact-strip span, .fact-disclaimer { color: var(--muted); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.fact-disclaimer { align-self: center; margin: 0; padding-left: 40px; line-height: 1.5; }

.story-section { position: relative; width: var(--page); margin: 0 auto; padding: 150px 0; }
.story-section[id] { scroll-margin-top: 88px; }
.section-copy { position: relative; z-index: 2; max-width: 700px; }
.section-copy h2 { margin: 0; font-size: clamp(46px, 5.3vw, 80px); font-weight: 500; letter-spacing: -.055em; line-height: .98; text-wrap: balance; }
.section-lead { max-width: 590px; margin: 30px 0 0; color: rgba(243, 246, 232, .6); font-size: 16px; line-height: 1.75; }
.section-index { margin-bottom: 26px; color: var(--aqua); }

.origin-section { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; min-height: 900px; }
.origin-visual { position: relative; height: 660px; }
.origin-visual::after { position: absolute; top: 50%; left: 50%; width: 52%; aspect-ratio: 1; content: ""; border-radius: 50%; background: radial-gradient(circle at 45% 35%, rgba(123, 222, 205, .42), rgba(21, 77, 64, .26) 38%, rgba(4, 17, 15, 0) 70%); filter: blur(3px); transform: translate(-50%, -50%); }
.depth-ring { position: absolute; top: 50%; left: 50%; z-index: 2; aspect-ratio: 1; border: 1px solid rgba(125, 222, 208, .22); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 72%; animation: orbit 14s linear infinite; }
.ring-two { width: 48%; border-style: dashed; animation: orbitReverse 18s linear infinite; }
.depth-ring::before { position: absolute; top: 7%; left: 18%; width: 10px; height: 10px; content: ""; border-radius: 50%; background: var(--acid); box-shadow: 0 0 26px var(--acid); }
.ring-two::before { top: 73%; left: 86%; width: 7px; height: 7px; background: var(--aqua); box-shadow: 0 0 24px var(--aqua); }
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbitReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.kelp { position: absolute; z-index: 3; width: 42px; height: 390px; border-radius: 50%; background: linear-gradient(90deg, rgba(201, 238, 104, .04), rgba(130, 216, 98, .38), rgba(31, 102, 58, .08)); filter: blur(.2px); transform-origin: bottom; }
.kelp-one { bottom: 70px; left: 34%; transform: rotate(-18deg) skewX(8deg); animation: kelp 6s ease-in-out infinite alternate; }
.kelp-two { right: 30%; bottom: 54px; height: 450px; transform: rotate(13deg) skewX(-9deg); animation: kelp 7s ease-in-out -2s infinite alternate; }
.kelp-three { right: 42%; bottom: 110px; width: 28px; height: 300px; opacity: .55; transform: rotate(2deg); animation: kelp 5.5s ease-in-out -1s infinite alternate; }
@keyframes kelp { to { transform: rotate(10deg) skewX(-6deg) scaleY(1.04); } }
.origin-word { position: absolute; top: 50%; left: 50%; z-index: 4; color: rgba(243, 246, 232, .95); font-family: var(--serif); font-size: clamp(42px, 6vw, 86px); font-style: italic; letter-spacing: .05em; transform: translate(-50%, -50%); }
.origin-coordinate { position: absolute; right: 3%; bottom: 15%; z-index: 4; color: var(--aqua); font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.4; }

.formula-section { padding-top: 90px; }
.formula-section .section-copy { max-width: 840px; }
.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 70px; }
.ingredient-card { position: relative; display: flex; min-height: 490px; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: linear-gradient(145deg, rgba(19, 49, 42, .72), rgba(5, 22, 18, .62)); transition: border-color .35s ease, transform .35s ease, background .35s ease; }
.ingredient-card:hover { border-color: color-mix(in srgb, var(--ingredient) 45%, transparent); background: linear-gradient(145deg, rgba(24, 63, 53, .9), rgba(5, 22, 18, .8)); transform: translateY(-8px); }
.ingredient-number { color: rgba(243, 246, 232, .42); font-family: var(--serif); font-size: 18px; font-style: italic; }
.ingredient-orbit { position: absolute; top: 48%; left: 50%; width: 230px; aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--ingredient) 30%, transparent); border-radius: 50%; transform: translate(-50%, -50%); }
.ingredient-orbit::before, .ingredient-orbit::after { position: absolute; inset: 17%; content: ""; border: 1px solid color-mix(in srgb, var(--ingredient) 20%, transparent); border-radius: 50%; }
.ingredient-orbit::after { inset: 37%; background: radial-gradient(circle at 35% 30%, white, var(--ingredient) 24%, rgba(14, 38, 31, .1) 70%); border: 0; box-shadow: 0 0 70px color-mix(in srgb, var(--ingredient) 32%, transparent); }
.ingredient-orbit i { position: absolute; top: 17%; right: 12%; width: 13px; height: 13px; border-radius: 50%; background: var(--ingredient); box-shadow: 0 0 18px var(--ingredient); animation: pulse 2.5s ease-in-out infinite alternate; }
@keyframes pulse { to { opacity: .45; transform: scale(.65); } }
.ingredient-card h3 { margin: auto 0 7px; font-size: 26px; font-weight: 500; letter-spacing: -.03em; }
.ingredient-card p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .04em; }

.texture-section { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; min-height: 900px; }
.texture-stage { position: relative; height: 670px; overflow: hidden; border-radius: 50% 50% 7% 7%; background: radial-gradient(circle at 50% 20%, rgba(125, 222, 208, .16), transparent 32%), linear-gradient(150deg, #0c362d, #061612 65%); box-shadow: inset 0 0 90px rgba(86, 199, 163, .08); }
.gel-plane { position: absolute; right: -12%; bottom: -28%; left: -12%; height: 74%; border-radius: 50% 44% 0 0; background: radial-gradient(circle at 25% 25%, rgba(201, 238, 104, .38), transparent 7%), radial-gradient(circle at 66% 17%, rgba(123, 222, 208, .25), transparent 8%), linear-gradient(155deg, rgba(64, 127, 64, .94), #0b2d21 58%); box-shadow: 0 -22px 70px rgba(75, 164, 100, .2), inset 0 25px 40px rgba(185, 230, 145, .12); transform: rotate(-5deg); }
.gel-drop { position: absolute; z-index: 3; border-radius: 50% 50% 48% 52%; background: radial-gradient(circle at 30% 22%, rgba(232,255,228,.7), rgba(125, 190, 102, .46) 18%, rgba(14, 66, 38, .82) 63%); box-shadow: 0 26px 70px rgba(0,0,0,.42), inset -15px -15px 30px rgba(0,0,0,.15); }
.drop-one { top: 22%; left: 34%; width: 150px; height: 165px; animation: floatDrop 5s ease-in-out infinite alternate; }
.drop-two { top: 12%; right: 18%; width: 56px; height: 62px; animation: floatDrop 4s ease-in-out -1s infinite alternate-reverse; }
@keyframes floatDrop { to { transform: translateY(30px) rotate(8deg); } }
.texture-stage > p { position: absolute; right: 25px; bottom: 25px; z-index: 4; margin: 0; color: rgba(255,255,255,.38); font-family: var(--serif); font-size: 20px; font-style: italic; }
.texture-copy { max-width: 520px; padding-left: 80px; }

.ritual-section .section-copy { max-width: 830px; }
.ritual-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 80px 0 0; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.ritual-steps li { position: relative; min-height: 490px; padding: 28px 32px 36px; border-right: 1px solid var(--line); }
.ritual-steps li:last-child { border-right: 0; }
.ritual-steps li > span { color: var(--aqua); font-family: var(--serif); font-size: 17px; font-style: italic; }
.step-icon { position: relative; width: 160px; height: 200px; margin: 45px auto 35px; }
.open-icon::before { position: absolute; right: 15px; bottom: 14px; left: 15px; height: 125px; content: ""; border: 1px solid rgba(201, 238, 104, .35); border-radius: 22px 22px 30px 30px; background: linear-gradient(120deg, rgba(124, 185, 134, .22), rgba(5, 24, 18, .4)); }
.open-icon::after { position: absolute; top: 18px; left: 25px; width: 110px; height: 40px; content: ""; border: 1px solid rgba(218, 229, 211, .5); border-radius: 12px; background: rgba(164, 177, 163, .18); transform: rotate(-13deg); }
.spoon-icon::before { position: absolute; top: 13px; left: 50%; width: 76px; height: 102px; content: ""; border: 1px solid rgba(123, 222, 208, .46); border-radius: 50%; background: radial-gradient(circle at 36% 25%, rgba(201, 238, 104, .52), rgba(26, 91, 57, .56) 60%); transform: translateX(-50%) rotate(12deg); }
.spoon-icon::after { position: absolute; top: 100px; left: calc(50% + 20px); width: 10px; height: 95px; content: ""; border-radius: 8px; background: linear-gradient(90deg, #62766b, #dbe4d8 50%, #566a5f); transform: rotate(-18deg); }
.cold-icon::before { position: absolute; top: 24px; left: 35px; width: 90px; height: 150px; content: ""; border: 1px solid rgba(184, 199, 255, .45); background: linear-gradient(140deg, rgba(184,199,255,.24), rgba(28, 54, 64, .26)); clip-path: polygon(50% 0, 58% 39%, 92% 19%, 67% 49%, 100% 55%, 65% 62%, 88% 93%, 56% 69%, 50% 100%, 43% 68%, 12% 92%, 35% 61%, 0 55%, 35% 48%, 10% 18%, 43% 40%); }
.ritual-steps h3 { margin: 0 0 12px; font-size: 26px; font-weight: 500; }
.ritual-steps p { max-width: 290px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.proof-section { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.proof-card { min-height: 650px; padding: 32px; border: 1px solid rgba(201, 238, 104, .34); background: linear-gradient(145deg, rgba(214, 235, 194, .94), rgba(165, 189, 153, .92)); box-shadow: 0 45px 100px rgba(0,0,0,.35); color: #102019; transform: rotate(-2.4deg); }
.proof-topline { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid rgba(16,32,25,.25); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.proof-brand { margin: 28px 0 38px; font-size: clamp(52px, 6vw, 88px); font-weight: 800; letter-spacing: .09em; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(16,32,25,.24); border-left: 1px solid rgba(16,32,25,.24); }
.proof-grid div { display: flex; min-height: 100px; flex-direction: column; justify-content: space-between; padding: 16px; border-right: 1px solid rgba(16,32,25,.24); border-bottom: 1px solid rgba(16,32,25,.24); }
.proof-grid small { font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.proof-grid strong { font-size: 16px; font-weight: 600; }
.proof-barcode { width: 56%; height: 78px; margin-top: 30px; background: repeating-linear-gradient(90deg, #102019 0 2px, transparent 2px 5px, #102019 5px 6px, transparent 6px 10px); }
.proof-card > p { max-width: 440px; margin: 25px 0 0; font-size: 9px; font-weight: 600; line-height: 1.5; text-transform: uppercase; }
.proof-copy { max-width: 520px; }

.faq-section { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 100px; }
.faq-section .section-copy { position: sticky; top: 140px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 42px 1fr 28px; align-items: center; gap: 12px; padding: 26px 0; cursor: pointer; list-style: none; font-size: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--aqua); font-family: var(--serif); font-size: 15px; font-style: italic; }
.faq-item summary i { position: relative; width: 20px; height: 20px; }
.faq-item summary i::before, .faq-item summary i::after { position: absolute; top: 50%; left: 50%; width: 16px; height: 1px; content: ""; background: var(--acid); transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item > p { max-width: 650px; margin: -2px 40px 28px 54px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.closing-section { position: relative; display: flex; min-height: 900px; flex-direction: column; align-items: center; justify-content: center; width: var(--page); margin: 0 auto; text-align: center; }
.closing-section h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(56px, 7.4vw, 110px); font-weight: 500; letter-spacing: -.06em; line-height: .94; }
.closing-section > p:not(.eyebrow) { position: relative; z-index: 2; max-width: 600px; margin: 30px auto 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.closing-section .eyebrow { position: relative; z-index: 2; }
.closing-section .button { position: relative; z-index: 2; margin-top: 40px; }
.button-large { min-height: 62px; padding: 0 31px; }
.closing-orbit { position: absolute; top: 50%; left: 50%; width: min(70vw, 820px); aspect-ratio: 1; border: 1px solid rgba(123, 222, 208, .1); border-radius: 50%; transform: translate(-50%, -50%); }
.closing-orbit::before, .closing-orbit::after { position: absolute; inset: 16%; content: ""; border: 1px solid rgba(201, 238, 104, .1); border-radius: 50%; }
.closing-orbit::after { inset: 34%; background: radial-gradient(circle, rgba(82, 187, 151, .15), transparent 65%); }
.closing-orbit span, .closing-orbit i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 24px var(--acid); }
.closing-orbit span { top: 14%; left: 22%; animation: pulse 3s infinite alternate; }
.closing-orbit i { right: 17%; bottom: 18%; background: var(--aqua); box-shadow: 0 0 24px var(--aqua); animation: pulse 2.4s -1s infinite alternate; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: var(--page); margin: 0 auto; padding: 32px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.site-footer > p { margin: 0; text-align: center; }
.site-footer > div { display: flex; justify-self: end; gap: 22px; }
.site-footer a:not(.brand) { transition: color .25s ease; }
.site-footer a:not(.brand):hover { color: var(--ink); }
.footer-brand { color: var(--ink); font-size: 11px; }
.footer-brand .brand-mark { width: 24px; height: 24px; font-size: 13px; }

.reveal, [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible, [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 48px); }
  .site-header { padding-right: 24px; padding-left: 24px; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero h1 { font-size: clamp(58px, 7.8vw, 85px); }
  .product-visual { min-height: 520px; }
  .origin-section, .proof-section, .faq-section { gap: 48px; }
  .texture-copy { padding-left: 45px; }
  .proof-card { min-height: 570px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 36px); }
  .site-header { grid-template-columns: 1fr auto; padding: 16px 18px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 6px; padding: 0; }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; visibility: hidden; opacity: 0; background: rgba(4, 17, 15, .97); transition: opacity .3s ease, visibility 0s linear .3s; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
  .mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 25px; font-family: var(--serif); font-size: 34px; font-style: italic; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 118px; }
  .hero::before { top: 41%; left: 50%; width: 86vw; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { max-width: none; font-size: clamp(62px, 18vw, 100px); line-height: .86; }
  .hero-lead { margin-right: auto; margin-left: auto; font-size: 15px; }
  .hero-actions { justify-content: center; }
  .product-visual { height: 590px; min-height: 0; margin-top: -20px; }
  .hero-note { right: 5%; bottom: 7%; }
  .scroll-cue { display: none; }
  .drag-hint { right: 50%; bottom: 4%; transform: translateX(50%); }
  .fact-strip { grid-template-columns: repeat(3, 1fr); }
  .fact-strip article { padding: 0 14px; }
  .fact-strip strong { font-size: 16px; }
  .fact-disclaimer { grid-column: 1 / -1; margin-top: 22px; padding: 18px 0 0; border-top: 1px solid var(--line); text-align: center; }
  .story-section { padding: 110px 0; }
  .section-copy h2 { font-size: clamp(44px, 12vw, 72px); }
  .origin-section, .texture-section, .proof-section, .faq-section { grid-template-columns: 1fr; }
  .origin-section { min-height: 0; }
  .origin-visual { height: 590px; margin-top: 30px; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .ingredient-card { min-height: 420px; }
  .texture-stage { grid-row: 2; height: 600px; margin-top: 50px; }
  .texture-copy { padding-left: 0; }
  .ritual-steps { grid-template-columns: 1fr; }
  .ritual-steps li { min-height: 390px; border-right: 0; border-bottom: 1px solid var(--line); }
  .ritual-steps li:last-child { border-bottom: 0; }
  .proof-card { grid-row: 2; margin-top: 40px; transform: rotate(-1deg); }
  .faq-section .section-copy { position: relative; top: 0; }
  .faq-list { margin-top: 40px; }
  .closing-section { min-height: 760px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .site-footer > * { justify-self: center; }
  .site-footer > div { justify-self: center; }
}

@media (max-width: 520px) {
  :root { --page: calc(100vw - 28px); }
  .noscript-shell { margin: 7vh auto; padding: 34px 24px; }
  .brand { font-size: 12px; }
  .hero { padding-bottom: 45px; }
  .hero h1 { font-size: clamp(56px, 17.5vw, 82px); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; max-width: 310px; }
  .product-visual { height: 510px; margin-top: 0; }
  .jar-fallback { width: 200px; height: 350px; }
  .fallback-lid { left: 17px; width: 166px; height: 58px; }
  .fallback-glass { inset: 46px 0 0; }
  .fallback-label { top: 75px; min-height: 148px; }
  .fallback-label strong { font-size: 24px; }
  .hero-note { display: none; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip article { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-strip article:first-child { padding-left: 0; }
  .fact-strip span { text-align: right; }
  .fact-disclaimer { margin-top: 0; }
  .section-lead { font-size: 14px; }
  .origin-visual { height: 470px; }
  .origin-word { font-size: 46px; }
  .origin-coordinate { right: 1%; font-size: 14px; }
  .ingredient-card { min-height: 390px; }
  .texture-stage { height: 500px; }
  .drop-one { width: 110px; height: 122px; }
  .ritual-steps li { padding-right: 15px; padding-left: 15px; }
  .proof-card { min-height: 520px; padding: 20px; }
  .proof-brand { font-size: 43px; }
  .proof-grid strong { font-size: 13px; }
  .faq-item summary { grid-template-columns: 32px 1fr 24px; font-size: 15px; }
  .faq-item > p { margin-left: 44px; }
  .closing-section h2 { font-size: clamp(50px, 15vw, 70px); }
  .site-footer > div { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, [data-reveal] { opacity: 1; transform: none; }
  #product-stage { display: none; }
  .jar-fallback { opacity: 1 !important; }
  .drag-hint { display: none; }
}
