:root {
  color-scheme: light;
  --page: #f3f0e7;
  --paper: #fffcf5;
  --ink: #121a15;
  --muted: #59645c;
  --line: #cdd3ca;
  --sea: #526653;
  --kelp: #213c34;
  --mineral: #cdd3ca;
  --clay: #94451e;
  --resin: #2a2019;
  --gold: #856400;
  --shadow: 0 24px 80px rgba(34, 45, 38, 0.14);
  font-family: "Inter", Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
}

body::before {
  display: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.starter-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: rgba(16, 22, 18, 0.42);
  backdrop-filter: blur(12px);
}

.starter-modal[hidden] {
  display: none;
}

.starter-panel {
  position: relative;
  width: min(560px, calc(100vw - 36px));
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid #17211d;
  background: #f8f4e9;
  box-shadow: 0 28px 90px rgba(16, 22, 18, 0.28);
}

.starter-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.7);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.starter-panel h2 {
  max-width: 420px;
  font-size: clamp(2.3rem, 6vw, 4.1rem);
}

.starter-sub,
.starter-fineprint {
  color: #56635b;
  line-height: 1.55;
}

.starter-sub {
  margin: 16px 0 20px;
}

.starter-fineprint {
  margin: 14px 0 0;
  font-size: 0.8rem;
}

.starter-skip {
  margin-top: 14px;
  border: 0;
  padding: 0;
  color: #56635b;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.starter-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.starter-options a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid #17211d;
  padding: 10px 12px;
  background: #fffdf8;
  font-weight: 850;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 221, 210, 0.75);
  background: rgba(245, 243, 236, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-name {
  display: inline-block;
  font-size: 1.02rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  background: var(--kelp);
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: 1.25rem;
}

.site-header nav {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(23, 33, 29, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.62);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 5px;
  padding: 0 14px;
}

.site-header nav a:hover,
.header-cta:hover,
.site-header nav a[aria-current="page"] {
  color: #fffdf8;
  background: var(--kelp);
}

.header-cta {
  margin-left: auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--kelp);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(88svh - 77px);
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 58px) clamp(18px, 4vw, 56px) clamp(16px, 2vw, 28px);
  background: #eceae1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 243, 236, 0.93) 0%, rgba(245, 243, 236, 0.78) 25%, rgba(245, 243, 236, 0.12) 52%, transparent 72%),
    linear-gradient(0deg, rgba(245, 243, 236, 0.24), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 690px;
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-copy {
  display: none;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.012em;
  padding-bottom: 0.08em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 6.1vw, 6.35rem);
}

.hero h1 {
  max-width: 660px;
  padding-bottom: 0.08em;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h2 {
  max-width: 780px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.9rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  margin: 26px 0 0;
  color: #2c3830;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: #fffdf8;
  background: var(--kelp);
  box-shadow: 0 12px 30px rgba(33, 60, 52, 0.2);
}

.button.secondary {
  color: var(--kelp);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.trust-row {
  max-width: 640px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.58);
}

.signal-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(680px, 100%);
  margin-top: 28px;
  border: 1px solid rgba(16, 24, 18, 0.28);
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(12px);
}

.signal-rail a {
  position: relative;
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 16px 14px;
  border-right: 1px solid rgba(16, 24, 18, 0.18);
  transition: color 160ms ease, background 160ms ease;
}

.signal-rail a:last-child {
  border-right: 0;
}

.signal-rail a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--clay);
}

.signal-rail a:nth-child(2)::before {
  background: var(--gold);
}

.signal-rail a:nth-child(3)::before {
  background: var(--sea);
}

.signal-rail a:nth-child(4)::before {
  background: var(--kelp);
}

.signal-rail span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-rail strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.signal-rail a:hover,
.signal-rail a:focus-visible {
  color: #fffdf8;
  background: var(--kelp);
  outline: 0;
}

.signal-rail a:hover span,
.signal-rail a:focus-visible span {
  color: #d7ddd4;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image picture {
  display: block;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
}

.stack-preview,
.system-map,
.symptom-shop,
.formula-strip,
.intro-band,
.products,
.texture-gallery,
.format-story,
.ledger,
.subscription,
.quality,
.ritual,
.waitlist,
.compliance-note,
footer {
  position: relative;
  z-index: 1;
}

.stack-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  border-top: 1px solid #17211d;
  border-bottom: 1px solid #17211d;
  background:
    linear-gradient(115deg, rgba(102, 184, 255, 0.11), transparent 36%),
    #f8f4e9;
}

.stack-preview-copy {
  position: sticky;
  top: 106px;
}

.stack-preview-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px 0 0;
  color: #48544d;
  line-height: 1.65;
}

.stack-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stack-preview-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: end;
  overflow: hidden;
  border: 1px solid #17211d;
  padding: 22px;
  color: #fffdf8;
  background: #17211d;
  isolation: isolate;
}

.stack-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 20%, rgba(16, 22, 18, 0.76) 74%, rgba(16, 22, 18, 0.92)),
    linear-gradient(90deg, rgba(16, 22, 18, 0.2), transparent 54%);
}

.stack-preview-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.stack-preview-card span,
.stack-preview-card strong {
  position: relative;
  z-index: 2;
}

.stack-preview-card:hover img {
  transform: scale(1.04);
}

.stack-preview-card span {
  margin-bottom: 8px;
  color: #f0d5a6;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stack-preview-card strong {
  max-width: 12ch;
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1;
}

.system-map {
  display: grid;
  grid-template-columns: minmax(390px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
  color: #f7f2e8;
  background:
    linear-gradient(135deg, rgba(82, 102, 83, 0.28), transparent 42%),
    #111714;
}

.system-map-heading {
  position: sticky;
  top: 106px;
}

.system-map-heading .eyebrow {
  color: #d4a510;
}

.system-map-heading h2 {
  max-width: 10ch;
  color: #fffdf8;
}

.system-map-heading > p:not(.eyebrow) {
  max-width: 470px;
  margin: 20px 0 0;
  color: #cbd2c9;
  line-height: 1.65;
}

.map-swipe-hint {
  display: none;
  margin-top: 16px;
  color: #d4a510;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.system-map-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: #f1ece2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.system-map-visual img {
  width: 100%;
  height: auto;
}

.symptom-shop {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: #101612;
  color: #f7f2e8;
}

.symptom-shop .eyebrow,
.subscription .eyebrow {
  color: #d8ad62;
}

.symptom-copy p {
  max-width: 570px;
  margin: 22px 0 0;
  color: #cbd2c9;
  font-size: 1.05rem;
  line-height: 1.65;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.symptom-grid article {
  position: relative;
  min-height: 285px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.06);
}

.quiz-grid article {
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.quiz-grid article.is-selected {
  background: rgba(255, 253, 248, 0.13);
  box-shadow: inset 0 0 0 2px rgba(216, 173, 98, 0.88);
}

.quiz-toggle {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.quiz-toggle:focus-visible {
  outline: 2px solid #d8ad62;
  outline-offset: 6px;
}

.symptom-grid span {
  display: block;
  margin-bottom: 54px;
  color: #f0d5a6;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.symptom-grid p {
  margin: 12px 0 20px;
  color: #d7ddd4;
  line-height: 1.55;
}

.symptom-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid #d8ad62;
  color: #fffdf8;
  font-weight: 900;
}

.quiz-results {
  grid-column: 2;
  display: grid;
  gap: 10px;
  min-height: 52px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px;
  color: #cbd2c9;
  background: rgba(255, 253, 248, 0.06);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quiz-results a {
  display: grid;
  gap: 4px;
  border: 0;
  color: #fffdf8;
}

.quiz-results span {
  margin: 0;
  color: #f0d5a6;
  font-size: 0.68rem;
}

.quiz-results strong {
  font-size: 0.98rem;
}

.formula-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #17211d;
  border-bottom: 1px solid #17211d;
  background: #f8f4e9;
}

.formula-strip div {
  min-height: 172px;
  padding: 22px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid #17211d;
}

.formula-strip div:last-child {
  border-right: 0;
}

.formula-strip span,
.ledger-row span {
  display: block;
  margin-bottom: 28px;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.formula-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 0.98;
}

.formula-strip p {
  max-width: 310px;
  margin: 0;
  color: #48544d;
  font-size: 0.92rem;
  line-height: 1.45;
}

.intro-band {
  padding: clamp(40px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(198, 161, 91, 0.12), transparent 48%),
    var(--kelp);
}

.intro-band p {
  max-width: 980px;
  margin: 0;
  color: #f4efe4;
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: clamp(2rem, 4.7vw, 4.8rem);
  line-height: 1.04;
}

.products {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(240px, 0.45fr);
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-note {
  margin: 0 0 8px;
  color: #5b665f;
  font-size: 1rem;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.texture-gallery {
  padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
  border-top: 1px solid #17211d;
  border-bottom: 1px solid #17211d;
  background:
    linear-gradient(120deg, rgba(59, 89, 97, 0.08), transparent 44%),
    #ede8dd;
}

.texture-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.48fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.texture-heading h2 {
  max-width: 11ch;
}

.texture-heading > p {
  margin: 0 0 8px;
  color: #4c574f;
  line-height: 1.65;
}

.texture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #17211d;
  background: #17211d;
}

.texture-card {
  --texture-accent: #526653;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  padding-bottom: 24px;
  color: #111714;
  background: #f8f4e9;
  transition: background-color 180ms ease;
}

.texture-card.resin { --texture-accent: #94451e; }
.texture-card.digest { --texture-accent: #d4a510; }
.texture-card.clarity { --texture-accent: #3b5961; }

.texture-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 6px solid var(--texture-accent);
  transition: transform 240ms ease;
}

.texture-card span,
.texture-card strong {
  margin-right: 22px;
  margin-left: 22px;
}

.texture-card span {
  margin-top: 20px;
  color: var(--texture-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.texture-card strong {
  max-width: 14ch;
  margin-top: 9px;
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.02;
}

.texture-card:hover,
.texture-card:focus-visible {
  background: #fffdf8;
  outline: 0;
}

.texture-card:hover img,
.texture-card:focus-visible img {
  transform: scale(1.025);
}

.product-card {
  position: relative;
  grid-column: span 6;
  min-height: 430px;
  scroll-margin-top: 96px;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid #17211d;
  background: var(--paper);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: clamp(82px, 11vw, 138px);
  height: clamp(82px, 11vw, 138px);
  border: 1px solid rgba(23, 33, 29, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(23, 33, 29, 0.08) 35% 36%, transparent 37%),
    repeating-conic-gradient(from 0deg, rgba(23, 33, 29, 0.12) 0deg 3deg, transparent 3deg 12deg);
  opacity: 0.8;
}

.product-card.moss { background: #eef5ee; }
.product-card.resin { background: #f4eee5; }
.product-card.digest { background: #fff9ec; }
.product-card.clarity { background: #edf3f0; }

.product-card:focus {
  outline: 0;
}

.product-card.is-match {
  border-color: #c77f59;
  box-shadow: 0 18px 54px rgba(199, 127, 89, 0.24);
  transform: translateY(-2px);
}

.product-card .match-label {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: none;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: #fffdf8;
  background: var(--kelp);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card.is-match .match-label {
  display: inline-flex;
}

.product-card.moss,
.product-card.clarity {
  grid-column: span 7;
}

.product-card.resin,
.product-card.digest {
  grid-column: span 5;
}

.product-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
  margin-bottom: 80px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-topline span {
  color: var(--kelp);
}

.product-card p {
  position: relative;
  z-index: 1;
  max-width: 570px;
  color: #48544d;
  line-height: 1.6;
}

.product-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  color: #28342f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--sea);
}

.card-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.card-actions a,
.text-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--kelp);
  font-weight: 900;
}

.card-actions .product-link {
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  border: 1px solid var(--kelp);
  border-radius: 999px;
  padding: 0 16px;
  text-decoration: none;
}

.card-actions .product-link span {
  transition: transform 180ms ease;
}

.card-actions .product-link:hover span,
.card-actions .product-link:focus-visible span {
  transform: translateX(4px);
}

.quality .text-link,
.ritual .text-link {
  margin-top: 24px;
}

.page-hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  min-height: 54svh;
  align-content: end;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 56px) clamp(52px, 7vw, 84px);
  background:
    linear-gradient(115deg, rgba(73, 111, 99, 0.14), transparent 48%),
    #eceae1;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero > p:not(.eyebrow):not(.breadcrumb),
.page-hero-copy > p:not(.eyebrow):not(.breadcrumb) {
  max-width: 720px;
  margin: 0;
  color: #435048;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.page-hero.has-visual {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}

.page-hero-copy {
  display: grid;
  gap: 20px;
  align-content: end;
}

.page-hero-copy .hero-actions {
  margin-top: 8px;
}

.page-visual {
  --visual-position: 70% center;
  position: relative;
  height: clamp(320px, 31vw, 440px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.22);
  background: #dfe5dc;
  box-shadow: 0 24px 80px rgba(34, 45, 38, 0.18);
}

.page-visual img,
.product-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--visual-position);
}

.page-visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 999px;
  padding: 0 14px;
  color: #fffdf8;
  background: rgba(23, 33, 29, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  backdrop-filter: blur(12px);
}

.stack-visual,
.quality-visual,
.ritual-visual {
  --visual-position: center center;
}

.moss-visual {
  --visual-position: 56% 64%;
}

.resin-visual {
  --visual-position: 58% 64%;
}

.digest-visual {
  --visual-position: 62% 62%;
}

.clarity-visual {
  --visual-position: 50% 58%;
}

.breadcrumb {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--kelp);
}

.stack-hero,
.quality-page,
.ritual-page {
  border-bottom: 1px solid #17211d;
}

.product-page-hero {
  color: #f7f2e8;
  background:
    linear-gradient(120deg, rgba(198, 161, 91, 0.22), transparent 50%),
    #17211d;
}

.product-page-hero > p:not(.eyebrow):not(.breadcrumb),
.product-page-hero .page-hero-copy > p:not(.eyebrow):not(.breadcrumb),
.product-page-hero .breadcrumb {
  color: #cbd2c9;
}

.product-page-hero .breadcrumb a {
  color: #fffdf8;
}

.product-page-hero .eyebrow {
  color: #d8ad62;
}

.product-page-hero .page-visual {
  border-color: rgba(255, 253, 248, 0.22);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
}

.page-products .product-card {
  min-height: 600px;
}

.product-card-visual {
  --visual-position: 70% center;
  position: relative;
  z-index: 1;
  height: clamp(160px, 15vw, 210px);
  margin: -48px 0 24px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.18);
  background: rgba(255, 253, 248, 0.45);
}

.moss-page {
  background:
    linear-gradient(120deg, rgba(191, 202, 189, 0.24), transparent 50%),
    #17291f;
}

.resin-page {
  background:
    linear-gradient(120deg, rgba(199, 127, 89, 0.2), transparent 48%),
    #1c1511;
}

.digest-page {
  background:
    linear-gradient(120deg, rgba(198, 161, 91, 0.22), transparent 50%),
    #2a2019;
}

.clarity-page {
  background:
    linear-gradient(135deg, rgba(228, 185, 105, 0.18), transparent 46%),
    linear-gradient(180deg, #17221d, #101612);
}

.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #17211d;
  border-bottom: 1px solid #17211d;
  background: #f8f4e9;
}

.detail-panel {
  min-height: 280px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid #17211d;
}

.detail-panel:last-child {
  border-right: 0;
}

.detail-panel span {
  display: block;
  margin-bottom: 58px;
  color: var(--sea);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-panel h2 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
}

.detail-panel p,
.page-band p {
  color: #37423b;
  font-size: 1.02rem;
  line-height: 1.6;
}

.format-story {
  --format-accent: #526653;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) repeat(2, minmax(240px, 0.55fr));
  gap: 1px;
  border-bottom: 1px solid #17211d;
  background: #17211d;
}

.format-story.resin-format { --format-accent: #94451e; }
.format-story.digest-format { --format-accent: #d4a510; }
.format-story.clarity-format { --format-accent: #3b5961; }

.format-story.digest-format .eyebrow {
  color: #856400;
}

.format-story-copy {
  padding: clamp(34px, 5vw, 72px);
  border-left: 14px solid var(--format-accent);
  background: #f8f4e9;
}

.format-story-copy .eyebrow {
  color: var(--format-accent);
}

.format-story-copy h2 {
  max-width: 11ch;
}

.format-story-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 18px 0 0;
  color: #435048;
  line-height: 1.65;
}

.format-facts {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(23, 33, 29, 0.24);
}

.format-facts div {
  display: grid;
  grid-template-columns: minmax(112px, 0.65fr) 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.18);
}

.format-facts dt {
  color: #6b706b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.format-facts dd {
  margin: 0;
  color: #17211d;
  font-weight: 800;
}

.format-packshot,
.format-texture {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #f1ece2;
}

.format-packshot img,
.format-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-texture figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  color: #fffdf8;
  background: rgba(17, 23, 20, 0.84);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

/* Shilajit inspection gallery: one cinematic product, five deliberate focal distances. */
.product-inspection {
  --inspection-accent: #94451e;
  --inspection-zoom: 1;
  --inspection-x: 50%;
  --inspection-y: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.15fr);
  grid-template-areas:
    "copy stage"
    "copy views";
  gap: 1px;
  border-bottom: 1px solid #17211d;
  color: #fffdf8;
  background: #27312c;
}

.product-inspection-copy {
  grid-area: copy;
  padding: clamp(38px, 5vw, 76px);
  border-left: 14px solid var(--inspection-accent);
  background:
    radial-gradient(circle at 16% 88%, color-mix(in srgb, var(--inspection-accent) 24%, transparent), transparent 34%),
    #101612;
}

.product-inspection-copy .eyebrow {
  color: #d48a64;
}

.product-inspection-copy h2 {
  max-width: 7ch;
  color: #fffdf8;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}

.product-inspection-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 22px 0 0;
  color: #c7cec8;
  line-height: 1.7;
}

.product-inspection-copy .format-facts {
  margin-top: clamp(42px, 6vw, 76px);
  border-color: rgba(255, 253, 248, 0.2);
}

.product-inspection-copy .format-facts div {
  border-color: rgba(255, 253, 248, 0.16);
}

.product-inspection-copy .format-facts dt { color: #939d96; }
.product-inspection-copy .format-facts dd { color: #fffdf8; }

.inspection-stage {
  grid-area: stage;
  min-width: 0;
  background: #e9e2d5;
}

.inspection-main {
  --inspection-zoom: 1;
  --inspection-x: 50%;
  --inspection-y: 50%;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #e9e2d5;
  cursor: zoom-in;
}

.inspection-main > img,
.product-lightbox-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--inspection-zoom));
  transform-origin: var(--inspection-x) var(--inspection-y);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.inspection-main > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fffdf8;
  background: rgba(16, 22, 18, 0.76);
  text-align: left;
  backdrop-filter: blur(12px);
}

.inspection-main > span b,
.inspection-main > span small {
  font-size: 0.69rem;
  line-height: 1.15;
}

.inspection-main > span small { opacity: 0.7; }

.inspection-stage > p {
  min-height: 50px;
  margin: 0;
  padding: 14px 18px;
  color: #38433d;
  background: #f8f4e9;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.inspection-views {
  grid-area: views;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: #27312c;
}

.inspection-view {
  position: relative;
  display: grid;
  grid-template-rows: minmax(112px, 1fr) auto;
  min-width: 0;
  border: 0;
  padding: 0;
  color: #d7ddd8;
  background: #18201c;
  cursor: pointer;
  text-align: left;
}

.inspection-view img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  opacity: 0.62;
  transition: opacity 180ms ease, transform 260ms ease;
}

.inspection-view.label-view img { transform: scale(1.65); transform-origin: 50% 64%; }
.inspection-view.material-view img { transform: scale(1.9); transform-origin: 50% 40%; }
.inspection-view.ritual-view img { object-position: 50% 62%; }

.inspection-view span {
  position: relative;
  z-index: 1;
  padding: 11px 12px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.67rem;
  font-weight: 850;
}

.inspection-view:hover img,
.inspection-view:focus-visible img,
.inspection-view.is-active img { opacity: 1; }

.inspection-view.is-active {
  color: #fffdf8;
  box-shadow: inset 0 -4px 0 var(--inspection-accent);
}

.product-lightbox {
  --inspection-zoom: 1;
  --inspection-x: 50%;
  --inspection-y: 50%;
  width: min(96vw, 1500px);
  max-width: none;
  height: min(94vh, 1000px);
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0;
  color: #fffdf8;
  background: #0c110e;
}

.product-lightbox::backdrop {
  background: rgba(5, 8, 6, 0.9);
  backdrop-filter: blur(16px);
}

.product-lightbox-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
}

.product-lightbox-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.product-lightbox-bar > div { display: grid; gap: 2px; }
.product-lightbox-bar span { color: #9ea7a0; font-size: 0.62rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.product-lightbox-bar strong { font-size: 0.88rem; }

.product-lightbox-bar button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  color: #fffdf8;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
}

.product-lightbox-image {
  min-height: 0;
  overflow: hidden;
  background: #e9e2d5;
}

.product-lightbox-panel > p {
  margin: 0;
  padding: 14px 18px;
  color: #c5ccc6;
  font-size: 0.76rem;
  line-height: 1.5;
}

body.has-product-lightbox { overflow: hidden; }

@media (max-width: 760px) {
  .product-inspection {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "views";
  }

  .product-inspection-copy {
    padding: 36px 18px;
    border-left-width: 8px;
  }

  .product-inspection-copy h2 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .product-inspection-copy .format-facts {
    margin-top: 34px;
  }

  .inspection-main {
    aspect-ratio: 1;
  }

  .inspection-main > span {
    right: 12px;
    bottom: 12px;
  }

  .inspection-views {
    grid-template-columns: none;
    grid-auto-columns: 132px;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .inspection-view {
    grid-template-rows: 96px auto;
    scroll-snap-align: start;
  }

  .inspection-view img {
    min-height: 96px;
  }

  .product-lightbox {
    width: 100vw;
    height: 100dvh;
    border: 0;
  }
}

.page-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.72fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: #e8ede5;
}

.page-band p {
  margin: 0;
}

.page-band h2 {
  padding-bottom: 0.1em;
  line-height: 1.08;
}

/* Product pages: scan first, then provide the depth needed to decide. */
.product-guide,
.product-use,
.product-proof,
.product-faq,
.system-principles {
  position: relative;
  z-index: 1;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.product-guide,
.system-principles {
  background: #f4f0e5;
}

.product-guide-heading,
.system-principles-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(240px, 0.42fr);
  gap: 26px 64px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.product-guide-heading .eyebrow,
.system-principles-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.product-guide-heading h2,
.system-principles-heading h2,
.product-use h2,
.product-proof h2,
.product-faq h2 {
  padding-bottom: 0.09em;
  line-height: 1.08;
}

.product-guide-heading > p:not(.eyebrow),
.system-principles-heading > p:not(.eyebrow),
.product-use-copy > p:not(.eyebrow),
.product-proof-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #4c574f;
  font-size: 1.03rem;
  line-height: 1.65;
}

.product-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #17211d;
  background: #17211d;
  gap: 1px;
}

.product-guide-grid article {
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
  background: #fffdf8;
}

.product-guide-grid article > span,
.system-principles-list article > span,
.proof-checklist article > span {
  display: block;
  margin-bottom: clamp(38px, 5vw, 66px);
  color: var(--sea);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-guide-grid h3,
.system-principles-list h3 {
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}

.product-guide-grid p,
.system-principles-list p,
.product-steps p,
.faq-list p {
  margin: 14px 0 0;
  color: #4c574f;
  line-height: 1.62;
}

.product-use {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(380px, 1.12fr);
  gap: clamp(40px, 7vw, 100px);
  color: #f7f2e8;
  background:
    radial-gradient(circle at 15% 0%, rgba(198, 161, 91, 0.16), transparent 30%),
    #17211d;
}

.product-use-copy {
  align-self: start;
}

.product-use-copy > p:not(.eyebrow) {
  color: #cbd2c9;
}

.product-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.28);
  list-style: none;
}

.product-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.product-steps li > span {
  color: #d8ad62;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-steps strong {
  font-size: 1.03rem;
}

.product-steps p {
  color: #cbd2c9;
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  border-bottom: 1px solid #17211d;
  background: #e8ede5;
}

.product-proof-heading .text-link {
  display: inline-block;
  margin-top: 24px;
}

.proof-checklist {
  border-top: 1px solid rgba(23, 33, 29, 0.36);
}

.proof-checklist article {
  display: grid;
  grid-template-columns: minmax(92px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.24);
}

.proof-checklist article > span {
  margin: 2px 0 0;
}

.proof-checklist strong {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.42;
}

.product-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(380px, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  background: #fffdf8;
}

.faq-list {
  border-top: 1px solid #17211d;
}

.faq-list details {
  border-bottom: 1px solid rgba(23, 33, 29, 0.28);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  font-size: 1.35rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 42px 24px 0;
}

.system-principles {
  border-bottom: 1px solid #17211d;
}

.system-principles-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #17211d;
}

.system-principles-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 26px clamp(18px, 3vw, 34px) 12px 0;
  border-right: 1px solid rgba(23, 33, 29, 0.24);
}

.system-principles-list article + article {
  padding-left: clamp(18px, 3vw, 34px);
}

.system-principles-list article:last-child {
  border-right: 0;
}

.system-principles-list article > span {
  margin: 4px 0 0;
}

.system-principles-list h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

@media (max-width: 820px) {
  .product-guide-heading,
  .system-principles-heading,
  .product-use,
  .product-proof,
  .product-faq {
    grid-template-columns: 1fr;
  }

  .product-guide-grid,
  .system-principles-list {
    grid-template-columns: 1fr;
  }

  .product-guide-grid article {
    min-height: 0;
  }

  .system-principles-list article,
  .system-principles-list article + article {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 33, 29, 0.24);
    padding: 22px 0;
  }

  .system-principles-list article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 540px) {
  .product-guide,
  .product-use,
  .product-proof,
  .product-faq,
  .system-principles {
    padding: 46px 18px;
  }

  .product-guide-heading,
  .system-principles-heading {
    gap: 14px;
  }

  .product-guide-heading .eyebrow,
  .system-principles-heading .eyebrow {
    margin-bottom: 0;
  }

  .proof-checklist article {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }
}

.page-products,
.page-quality,
.page-ritual,
.page-ledger,
.page-mushroom,
.page-subscription {
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.ledger {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.62), rgba(255, 253, 248, 0.18)),
    #eee9dc;
}

.ledger-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.ledger-rows {
  display: grid;
  border-top: 1px solid #17211d;
}

.ledger-row {
  display: grid;
  grid-template-columns: 160px minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #17211d;
}

.ledger-row span {
  margin: 4px 0 0;
}

.ledger-row strong {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.ledger-row p {
  margin: 0;
  color: #48544d;
  line-height: 1.6;
}

.quality {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
  background: #e8ede5;
}

.mushroom-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
  color: #f7f2e8;
  background:
    linear-gradient(90deg, rgba(228, 185, 105, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(228, 185, 105, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(232, 118, 54, 0.17), transparent 42%),
    linear-gradient(180deg, #17221d, #101612);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.mushroom-feature .eyebrow {
  color: #e4b969;
}

.mushroom-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #c9d0c8;
  font-size: 1.08rem;
  line-height: 1.65;
}

.mushroom-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.mushroom-matrix article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.06);
}

.mushroom-matrix article:nth-child(1) {
  min-height: 300px;
  background: rgba(255, 253, 248, 0.1);
}

.mushroom-matrix span {
  display: block;
  margin-bottom: 62px;
  color: #e4b969;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mushroom-matrix p {
  margin: 12px 0 0;
  color: #c9d0c8;
  line-height: 1.6;
}

.quality-list {
  display: grid;
  gap: 1px;
  border: 1px solid #cfd7cc;
  background: #cfd7cc;
}

.quality-list article {
  display: grid;
  grid-template-columns: 54px minmax(160px, 0.4fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  background: #f8f7f1;
}

.quality-list span {
  color: var(--sea);
  font-weight: 900;
}

.quality-list p,
.ritual-copy p,
.ritual-steps p,
.form-note,
.compliance-note p,
footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.ritual {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.ritual-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: end;
}

.ritual-steps div {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.68);
}

.ritual-steps span {
  display: block;
  margin-bottom: 72px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ritual-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.subscription {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
  color: #f7f2e8;
  background:
    linear-gradient(120deg, rgba(198, 161, 91, 0.22), transparent 46%),
    #17211d;
}

.subscription-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #cbd2c9;
  font-size: 1.08rem;
  line-height: 1.65;
}

.subscription-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.08);
}

.subscription-card span {
  display: block;
  margin-bottom: 46px;
  color: #d8ad62;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subscription-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.subscription-card li {
  color: #d7ddd4;
  line-height: 1.45;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: end;
  scroll-margin-top: 92px;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 4vw, 56px);
  color: #fffdf8;
  background: var(--resin);
}

.waitlist .eyebrow {
  color: #f0d5a6;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: #e7ddca;
  font-size: 0.86rem;
  font-weight: 800;
}

.waitlist-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: rgba(255, 253, 248, 0.5);
}

.waitlist-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.waitlist-form .button.primary {
  color: var(--resin);
  background: #f4efe4;
}

.form-note {
  min-height: 24px;
  color: #d8c9ad;
  font-size: 0.9rem;
}

.waitlist-privacy {
  margin: 0;
  color: #c7b99f;
  font-size: 0.78rem;
  line-height: 1.55;
}

.waitlist-privacy a {
  color: #fffdf8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compliance-note {
  padding: 20px clamp(18px, 4vw, 56px);
  background: #171f1c;
}

.compliance-note p {
  max-width: 980px;
  color: #bfc9bf;
  font-size: 0.82rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #101612;
}

footer p:first-child {
  color: #fffdf8;
  font-weight: 900;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #bfc9bf;
  font-size: 0.88rem;
  font-weight: 800;
}

footer nav a:hover,
footer nav button:hover {
  color: #fffdf8;
}

footer nav button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.privacy-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: min(920px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 253, 248, 0.22);
  color: #fffdf8;
  background: rgba(16, 22, 18, 0.97);
  box-shadow: 0 28px 90px rgba(16, 22, 18, 0.34);
  backdrop-filter: blur(18px);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner .eyebrow {
  color: var(--gold);
}

.privacy-banner strong {
  display: block;
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.35;
}

.privacy-banner p:not(.eyebrow) {
  max-width: 680px;
  margin: 9px 0 6px;
  color: #c7d0c7;
  font-size: 0.86rem;
  line-height: 1.55;
}

.privacy-banner a {
  color: #fffdf8;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-actions {
  display: flex;
  gap: 10px;
}

.privacy-actions button {
  min-height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.45);
  padding: 0 16px;
  color: #fffdf8;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.privacy-actions button:last-child {
  color: var(--ink);
  background: #fffdf8;
}

.privacy-actions button:hover,
.privacy-actions button:focus-visible {
  color: #fffdf8;
  background: var(--clay);
  border-color: var(--clay);
  outline: 0;
}

.privacy-hero {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 8vw, 120px) clamp(54px, 8vw, 94px);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(125deg, rgba(73, 111, 99, 0.18), transparent 50%),
    var(--paper);
}

.privacy-hero h1 {
  max-width: 840px;
}

.privacy-hero > p:not(.eyebrow):not(.privacy-updated) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.privacy-updated {
  margin: 26px 0 0;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-content {
  padding: 0 clamp(18px, 8vw, 120px) clamp(64px, 9vw, 120px);
  background: var(--page);
}

.privacy-content article {
  display: grid;
  grid-template-columns: 64px minmax(0, 760px);
  gap: clamp(20px, 4vw, 58px);
  padding: clamp(38px, 6vw, 68px) 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content article > span {
  color: var(--clay);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.privacy-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.privacy-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-content a:not(.button) {
  color: var(--kelp);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content .button {
  margin-top: 22px;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  min-width: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  color: #fffdf8;
  background: rgba(23, 33, 29, 0.92);
  box-shadow: 0 18px 42px rgba(16, 22, 18, 0.24);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.back-to-top:hover {
  background: var(--sea);
}

.back-to-top[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    align-items: end;
    padding-top: min(58vw, 420px);
  }

  .hero-copy {
    padding-bottom: 12px;
  }

  .hero-image {
    min-height: 0;
  }

  .formula-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .system-map-heading {
    position: static;
  }

  .system-map-heading h2 {
    max-width: 14ch;
  }

  .texture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-story-copy {
    grid-column: 1 / -1;
  }

  .format-packshot,
  .format-texture {
    min-height: 420px;
  }

  .formula-strip div:nth-child(2) {
    border-right: 0;
  }

  .formula-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid #17211d;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card,
  .product-card.moss,
  .product-card.resin,
  .product-card.digest,
  .product-card.clarity {
    grid-column: span 1;
  }

  .quality,
  .ritual,
  .ledger,
  .stack-preview,
  .symptom-shop,
  .subscription,
  .mushroom-feature,
  .page-hero.has-visual,
  .page-band {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #17211d;
  }

  .detail-panel:last-child {
    border-bottom: 0;
  }

  .ledger-heading {
    position: static;
  }

  .stack-preview-copy {
    position: static;
  }

  .quiz-results {
    grid-column: auto;
  }
}

@media (max-width: 740px) {
  html {
    scroll-padding-top: 18px;
  }

  .starter-modal {
    align-items: end;
    padding: 12px;
  }

  .starter-panel {
    justify-self: stretch;
    width: auto;
    padding: 22px;
  }

  .starter-sub,
  .starter-fineprint {
    max-width: 31ch;
  }

  .starter-panel h2 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .starter-options {
    grid-template-columns: 1fr;
  }

  .starter-options a {
    min-height: 48px;
  }

  .site-header {
    position: sticky;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(245, 243, 236, 0.94);
  }

  .header-cta {
    display: none;
  }

  .site-header nav {
    order: initial;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 0.79rem;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-header nav a {
    flex: 0 1 auto;
    justify-content: center;
    min-height: 32px;
    padding: 0 10px;
    white-space: nowrap;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0 18px 24px;
    background: var(--page);
  }

  .page-hero {
    min-height: auto;
    padding: 58px 18px 42px;
  }

  .page-hero.has-visual {
    gap: 24px;
  }

  .page-hero h1 {
    max-width: 11ch;
  }

  .page-visual {
    height: 260px;
    box-shadow: 0 18px 46px rgba(34, 45, 38, 0.18);
  }

  .page-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10.8vw, 3.05rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9.4vw, 2.7rem);
    line-height: 1.02;
  }

  h3 {
    font-size: 1.34rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.69rem;
    letter-spacing: 0.13em;
  }

  .hero-copy {
    order: 2;
    width: calc(100% + 36px);
    max-width: none;
    margin: 0 -18px;
    padding: 24px 18px 0;
    background: var(--page);
  }

  .hero .eyebrow {
    color: #934b2d;
  }

  .hero-text {
    max-width: 33ch;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 46px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .trust-row {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    order: 1;
    width: calc(100% + 36px);
    height: clamp(320px, 76vw, 560px);
    margin: 0 -18px;
  }

  .hero-image img {
    object-position: center top;
  }

  .formula-strip div {
    min-height: 154px;
    padding: 16px;
  }

  .formula-strip span,
  .ledger-row span {
    margin-bottom: 18px;
    font-size: 0.66rem;
  }

  .formula-strip strong {
    margin-bottom: 8px;
    font-size: 1.58rem;
  }

  .formula-strip p {
    font-size: 0.84rem;
  }

  .intro-band,
  .products,
  .texture-gallery,
  .system-map,
  .ledger,
  .symptom-shop,
  .subscription,
  .mushroom-feature,
  .quality,
  .ritual,
  .waitlist,
  .page-band {
    padding: 40px 18px;
  }

  .intro-band {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .intro-band p {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
    line-height: 1.05;
  }

  .product-grid,
  .mushroom-matrix,
  .ritual-steps,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .stack-preview,
  .symptom-shop,
  .subscription,
  .page-band {
    gap: 28px;
  }

  .stack-preview {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }

  .system-map {
    gap: 26px;
    padding: 42px 18px;
  }

  .system-map-heading > p:not(.eyebrow) {
    max-width: 34ch;
  }

  .map-swipe-hint {
    display: block;
  }

  .system-map-visual {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .system-map-visual img {
    min-width: 780px;
  }

  .texture-gallery {
    padding: 42px 18px;
  }

  .texture-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .texture-heading h2 {
    max-width: 12ch;
  }

  .texture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .texture-card {
    padding-bottom: 16px;
  }

  .texture-card span,
  .texture-card strong {
    margin-right: 14px;
    margin-left: 14px;
  }

  .texture-card span {
    margin-top: 14px;
    font-size: 0.58rem;
  }

  .texture-card strong {
    margin-top: 7px;
    font-size: clamp(1.1rem, 5.6vw, 1.5rem);
  }

  .format-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-story-copy {
    grid-column: 1 / -1;
    padding: 34px 18px;
    border-left-width: 8px;
  }

  .format-packshot,
  .format-texture {
    min-height: 220px;
  }

  .format-texture figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 8px;
    font-size: 0.56rem;
  }

  .product-page-hero .page-visual {
    height: min(112vw, 460px);
  }

  .stack-preview-copy {
    position: static;
  }

  .stack-preview-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stack-preview-card {
    min-height: 244px;
    padding: 18px;
  }

  .stack-preview-card strong {
    max-width: 14ch;
    font-size: 2rem;
  }

  .symptom-shop {
    gap: 20px;
    padding: 34px 16px 38px;
  }

  .desktop-copy,
  .symptom-intro {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .symptom-copy h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .symptom-grid article {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 14px;
    background: rgba(255, 253, 248, 0.07);
  }

  .symptom-grid span {
    margin-bottom: 14px;
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .symptom-grid h3 {
    font-size: 1.08rem;
    line-height: 1.02;
  }

  .symptom-grid p {
    margin: 8px 0 0;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .symptom-grid a {
    width: fit-content;
    min-height: 30px;
    margin-top: 12px;
    border: 0;
    border-radius: 999px;
    padding: 0 9px;
    color: #101612;
    background: #d8ad62;
    font-size: 0.68rem;
    line-height: 30px;
  }

  .quiz-toggle {
    display: grid;
    gap: 0;
  }

  .quiz-results {
    grid-column: auto;
    padding: 12px;
    font-size: 0.82rem;
  }

  .detail-panel {
    padding: 24px 18px;
  }

  .detail-panel span {
    margin-bottom: 42px;
    font-size: 0.68rem;
  }

  .detail-panel h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .subscription-copy p,
  .page-hero > p:not(.eyebrow):not(.breadcrumb) {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .subscription-card {
    padding: 22px;
  }

  .subscription-card span {
    margin-bottom: 38px;
    font-size: 0.68rem;
  }

  .formula-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formula-strip div,
  .formula-strip div:nth-child(2) {
    border-bottom: 1px solid #17211d;
  }

  .formula-strip div:nth-child(odd) {
    border-right: 1px solid #17211d;
  }

  .formula-strip div:nth-child(even) {
    border-right: 0;
  }

  .formula-strip div:last-child {
    border-bottom: 0;
  }

  .formula-strip div:nth-last-child(2) {
    border-bottom: 0;
  }

  .product-card {
    min-height: auto;
    scroll-margin-top: 18px;
    padding: 22px;
  }

  .page-products .product-card {
    min-height: auto;
  }

  .product-card-visual {
    height: 152px;
    margin: -34px 0 20px;
  }

  .product-card .match-label {
    top: 14px;
    right: 14px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-width: 48px;
    min-height: 48px;
    font-size: 0.72rem;
  }

  .product-topline {
    margin-bottom: 58px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .product-card::before {
    top: 18px;
    right: 18px;
    width: 84px;
    height: 84px;
  }

  .product-card p,
  .ledger-row p,
  .mushroom-copy p,
  .ritual-copy p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .product-card ul {
    gap: 9px;
    margin-top: 18px;
  }

  .product-card li {
    font-size: 0.92rem;
  }

  .product-card .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-card .card-actions > * {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .product-card .card-actions .product-link {
    justify-content: space-between;
  }

  .quality-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading,
  .ledger-row {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-note {
    margin-top: 6px;
  }

  .ledger {
    gap: 28px;
  }

  .ledger-row {
    gap: 8px;
    padding: 20px 0;
  }

  .ledger-row strong {
    font-size: 1.38rem;
  }

  .mushroom-matrix article,
  .mushroom-matrix article:nth-child(1) {
    min-height: 0;
    padding: 22px;
  }

  .mushroom-matrix span {
    margin-bottom: 44px;
    font-size: 0.68rem;
  }

  .quality-list article,
  .ritual-steps div {
    padding: 20px;
  }

  .ritual-steps div {
    min-height: 0;
  }

  .ritual-steps span {
    margin-bottom: 42px;
    font-size: 0.68rem;
  }

  footer {
    display: grid;
  }
}

/* Product accents follow the packaging system. */
:root {
  --nu-blue: #3b5961;
  --nu-red: #526653;
  --nu-orange: #856400;
  --nu-lilac: #3b5961;
}

.brand-mark {
  overflow: hidden;
}

.brand-symbol {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.94;
}

.trust-row span:nth-child(1) {
  border-color: rgba(102, 184, 255, 0.42);
}

.trust-row span:nth-child(2) {
  border-color: rgba(199, 69, 79, 0.36);
}

.trust-row span:nth-child(3) {
  border-color: rgba(255, 143, 51, 0.4);
}

.product-card {
  --identity-accent: var(--sea);
}

.product-card::before {
  top: 58px;
  right: 26px;
  width: clamp(64px, 8vw, 104px);
  height: clamp(64px, 8vw, 104px);
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.56;
  pointer-events: none;
}

.product-card.moss::before {
  background-image: url("assets/icon-sea-moss-mineral.svg");
}

.product-card.resin::before {
  background-image: url("assets/icon-shilajit-resin.svg");
}

.product-card.digest::before {
  background-image: url("assets/icon-digest-reset.svg");
}

.product-card.clarity::before {
  background-image: url("assets/icon-clarity-mushroom.svg");
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--identity-accent);
  opacity: 0.72;
}

.product-card.moss {
  --identity-accent: var(--sea);
}

.product-card.resin {
  --identity-accent: var(--resin);
}

.product-card.digest {
  --identity-accent: var(--gold);
}

.product-card.clarity {
  --identity-accent: var(--nu-blue);
}

.formula-strip div:nth-child(1) {
  box-shadow: inset 0 4px 0 rgba(199, 69, 79, 0.62);
}

.formula-strip div:nth-child(2) {
  box-shadow: inset 0 4px 0 rgba(42, 32, 25, 0.76);
}

.formula-strip div:nth-child(3) {
  box-shadow: inset 0 4px 0 rgba(255, 143, 51, 0.58);
}

.formula-strip div:nth-child(4) {
  box-shadow: inset 0 4px 0 rgba(171, 171, 255, 0.78);
}

/* ===== Tee pass 2: contrast, bundle, buy flow ===== */
.ink-mark {
  color: var(--clay);
  font-weight: 600;
}

.enzyme-ledger {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: #f8f4e9;
  border-top: 1px solid #17211d;
}

.enzyme-ledger .section-note {
  max-width: 520px;
  margin-top: 14px;
}

.enzyme-rows .ledger-row span {
  color: var(--clay);
}

.bundle {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(198, 161, 91, 0.14), transparent 52%),
    var(--kelp);
  color: #f4efe4;
}

.bundle .eyebrow {
  color: var(--gold);
}

.bundle h2 {
  color: #fdfaf1;
}

.bundle-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #d9dfd2;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bundle-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(244, 239, 228, 0.32);
  background: rgba(255, 253, 248, 0.06);
}

.bundle-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bundle-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bundle-card li {
  padding-left: 18px;
  position: relative;
  color: #e6e9dd;
  line-height: 1.5;
}

.bundle-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--clay);
}

.bundle-card .button.primary {
  width: 100%;
  color: #fffdf8;
  background: var(--clay);
  box-shadow: none;
}

.buy-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--kelp);
  border-radius: 999px;
  color: #fffdf8;
  background: var(--kelp);
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
}

.card-actions .buy-link {
  border-bottom-color: transparent;
  color: #fffdf8;
}

.buy-link:hover {
  background: var(--clay);
  border-color: var(--clay);
}

button.buy-now {
  cursor: pointer;
}

.buy-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 22, 18, 0.46);
  backdrop-filter: blur(12px);
}

.buy-modal[hidden] {
  display: none;
}

.buy-panel {
  position: relative;
  width: min(520px, calc(100vw - 36px));
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid #17211d;
  background: #f8f4e9;
  box-shadow: 0 28px 90px rgba(16, 22, 18, 0.3);
}

.buy-panel h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.buy-panel .buy-product-line {
  margin: 14px 0 4px;
  color: #37423b;
  line-height: 1.55;
}

.format-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.format-options button {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border: 1px solid #17211d;
  background: #fffdf8;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.format-options button small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.format-options button:hover {
  color: #fffdf8;
  background: var(--kelp);
}

.format-options button:hover small {
  color: #d9dfd2;
}

.buy-fineprint {
  margin: 16px 0 0;
  color: #56635b;
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .bundle {
    grid-template-columns: 1fr;
  }

  .privacy-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 740px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 3.45rem);
    letter-spacing: -0.06em;
  }

  .hero h1 span {
    display: block;
  }

  .signal-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-rail a {
    min-height: 76px;
  }

  .signal-rail a:nth-child(2) {
    border-right: 0;
  }

  .signal-rail a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 24, 18, 0.18);
  }

  .privacy-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    padding: 20px;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-actions button {
    padding: 0 10px;
    white-space: normal;
  }

  .privacy-hero {
    padding-top: 58px;
  }

  .privacy-content article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-content article > span {
    padding-top: 2px;
  }

  .privacy-content h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

/* ===== Interactive product stage ===== */
.product-explorer {
  position: relative;
  z-index: 1;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  border-top: 1px solid #17211d;
  border-bottom: 1px solid #17211d;
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 161, 91, 0.14), transparent 26%),
    #f8f4e9;
}

.product-explorer-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.48fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.product-explorer-heading h2 {
  max-width: 10ch;
}

.product-explorer-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: #4c574f;
  line-height: 1.55;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 14px;
  border: 1px solid #17211d;
  background: #17211d;
}

.product-tabs-hint {
  display: none;
}

.product-tab {
  --tab-accent: #94451e;
  position: relative;
  display: grid;
  min-height: 88px;
  align-content: center;
  gap: 7px;
  border: 0;
  border-top: 7px solid var(--tab-accent);
  padding: 14px 18px 16px;
  color: #17211d;
  background: #fffdf8;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.product-tab.digest { --tab-accent: #856400; }
.product-tab.clarity { --tab-accent: #3b5961; }
.product-tab.moss { --tab-accent: #526653; }

.product-tab span {
  color: var(--tab-accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-tab strong {
  font-size: 1rem;
}

.product-tab.is-active {
  color: #fffdf8;
  background: #17211d;
}

.product-tab.is-active span {
  color: #f0d5a6;
}

.product-tab:focus-visible {
  z-index: 1;
  outline: 3px solid #d8ad62;
  outline-offset: -3px;
}

.product-stage {
  --stage-accent: #94451e;
  --inspect-x: 50%;
  --inspect-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid #17211d;
  background: #e9e2d5;
  transition: opacity 130ms ease, transform 180ms ease;
}

.product-stage.digest { --stage-accent: #d4a510; }
.product-stage.clarity { --stage-accent: #3b5961; }
.product-stage.moss { --stage-accent: #526653; }
.product-stage.is-changing { opacity: 0.42; transform: translateY(4px); }

.product-stage-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid #17211d;
  padding: 0;
  background: #eee8dd;
  perspective: 1100px;
}

.product-photo-zoom {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #eee8dd;
  cursor: zoom-in;
  opacity: 1;
  transition: opacity 260ms ease;
}

.product-stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--stage-accent) 0 7px, transparent 7px),
    radial-gradient(circle at var(--inspect-x) var(--inspect-y), transparent 0 20%, rgba(16, 22, 18, 0.08) 64%);
  transition: background 180ms ease;
}

.product-photo-zoom > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1.015);
  transform-origin: var(--inspect-x) var(--inspect-y);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  will-change: transform;
}

.product-stage.is-zoomed .product-photo-zoom > img {
  transform: rotateX(0) rotateY(0) scale(1.18);
}

.product-photo-zoom > span,
.product-spin-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fffdf8;
  background: rgba(16, 22, 18, 0.72);
  backdrop-filter: blur(10px);
  text-align: left;
}

.product-photo-zoom b,
.product-photo-zoom small,
.product-spin-hint b,
.product-spin-hint small {
  font-size: 0.66rem;
  line-height: 1.15;
}

.product-photo-zoom small,
.product-spin-hint small {
  opacity: 0.72;
}

.product-spin {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background: #eee8dd;
  transition: opacity 280ms ease;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-spin.is-dragging {
  cursor: grabbing;
}

.product-spin > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.product-stage.is-spin-view .product-spin {
  opacity: 1;
  pointer-events: auto;
}

.product-stage.is-spin-view .product-photo-zoom {
  opacity: 0;
  pointer-events: none;
}

.product-view-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  min-height: 38px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 999px;
  padding: 0 14px;
  color: #fffdf8;
  background: rgba(16, 22, 18, 0.76);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
}

.product-view-toggle[hidden],
.product-spin-hint[hidden] {
  display: none;
}

.product-spin-hint {
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-stage.is-spin-view .product-spin-hint {
  opacity: 1;
}

.product-stage-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(26px, 4vw, 52px);
  color: #f7f2e8;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--stage-accent) 18%, transparent), transparent 46%),
    #101612;
}

.product-code {
  margin: 0 0 clamp(32px, 6vw, 72px);
  color: #f0d5a6;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-stage-copy h3 {
  max-width: 9ch;
  margin: 0;
  color: #fffdf8;
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.9;
}

.product-one-liner {
  max-width: 430px;
  margin: 22px 0 0;
  color: #cbd2c9;
  font-size: 1rem;
  line-height: 1.55;
}

.product-stage-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.product-stage-copy dl div {
  padding: 14px;
  background: rgba(255, 253, 248, 0.06);
}

.product-stage-copy dt {
  color: #f0d5a6;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-stage-copy dd {
  margin: 7px 0 0;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.product-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin: 24px 0;
}

.product-stage-actions .button.primary {
  min-width: 160px;
  color: #101612;
  background: #f7f2e8;
}

.product-stage-actions .text-link {
  border: 0;
  padding: 8px 0;
  color: #f0d5a6;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.product-ritual-peek {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 128px;
  margin: auto 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.06);
}

.product-ritual-peek img,
.product-ritual-peek video {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}

.product-ritual-peek [hidden] {
  display: none !important;
}

.product-ritual-peek figcaption {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.product-ritual-peek figcaption span {
  color: #f0d5a6;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-ritual-peek figcaption strong {
  max-width: 16ch;
  font-family: "Fraunces", Newsreader, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.02;
}

@media (hover: hover) and (pointer: fine) {
  .product-tab:hover:not(.is-active) {
    background: #f1ece2;
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .product-stage {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
    min-height: 580px;
  }
}

@media (max-width: 740px) {
  .product-explorer {
    padding: 40px 18px;
  }

  .product-explorer-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .product-explorer-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .product-explorer-heading > p {
    max-width: 32ch;
  }

  .product-tabs {
    grid-template-columns: repeat(4, minmax(142px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .product-tabs-hint {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
  }

  .product-tab {
    min-height: 76px;
    scroll-snap-align: start;
    padding: 12px 14px;
  }

  .product-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-stage-visual {
    aspect-ratio: 1;
    border-right: 0;
    border-bottom: 1px solid #17211d;
  }

  .product-photo-zoom > span b,
  .product-spin-hint b {
    display: none;
  }

  .product-stage-copy {
    padding: 26px 20px 20px;
  }

  .product-code {
    margin-bottom: 28px;
  }

  .product-stage-copy h3 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .product-ritual-peek {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 108px;
  }

  .product-ritual-peek img,
  .product-ritual-peek video {
    min-height: 108px;
  }

  .product-ritual-peek figcaption {
    padding: 14px;
  }

  .product-ritual-peek figcaption strong {
    font-size: 1.15rem;
  }
}

/* ===== NuuPro motion system ===== */
@keyframes nu-header-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nu-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nu-image-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 16% 0);
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
}

.site-header {
  animation: nu-header-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *,
.page-hero-copy > * {
  animation: nu-copy-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(1),
.page-hero-copy > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(2),
.page-hero-copy > :nth-child(2) {
  animation-delay: 150ms;
}

.hero-copy > :nth-child(3),
.page-hero-copy > :nth-child(3) {
  animation-delay: 220ms;
}

.hero-copy > :nth-child(4),
.page-hero-copy > :nth-child(4) {
  animation-delay: 290ms;
}

.hero-copy > :nth-child(5),
.page-hero-copy > :nth-child(5) {
  animation-delay: 360ms;
}

.signal-rail a {
  animation: nu-copy-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.signal-rail a:nth-child(1) { animation-delay: 390ms; }
.signal-rail a:nth-child(2) { animation-delay: 450ms; }
.signal-rail a:nth-child(3) { animation-delay: 510ms; }
.signal-rail a:nth-child(4) { animation-delay: 570ms; }

.hero-image,
.page-visual {
  animation: nu-image-in 980ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform, clip-path;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    clip-path 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.motion-visual {
  clip-path: inset(0 0 9% 0);
  transform: translateY(28px) scale(0.985);
}

.motion-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.product-card::before {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    border-color: var(--identity-accent);
    box-shadow: 0 22px 58px rgba(23, 33, 29, 0.14);
    transform: translateY(-6px);
  }

  .product-card:hover::before {
    opacity: 0.78;
    transform: rotate(7deg) scale(1.06);
  }

  .texture-card:hover,
  .stack-preview-card:hover {
    box-shadow: 0 18px 46px rgba(23, 33, 29, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .motion-reveal,
  .motion-reveal.motion-visual,
  .motion-reveal.is-visible {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

/* Homepage hero rebuild: protect the negative space and never crop the product system. */
@media (min-width: 1081px) {
  .hero {
    min-height: calc(88svh - 77px);
    padding: clamp(42px, 5vw, 76px) clamp(24px, 5vw, 76px);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(245, 243, 236, 0.96) 0%, rgba(245, 243, 236, 0.91) 27%, rgba(245, 243, 236, 0.52) 39%, rgba(245, 243, 236, 0.08) 49%, transparent 56%);
  }

  .hero-copy {
    width: min(42vw, 620px);
    max-width: 620px;
    padding: 0;
  }

  .hero h1 {
    max-width: 7.5ch;
    font-size: clamp(4.2rem, 5.4vw, 5.75rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
  }

  .hero h1 span {
    display: block;
  }

  .hero-text {
    max-width: 31ch;
    margin-top: 24px;
    font-size: clamp(1.05rem, 1.3vw, 1.22rem);
    line-height: 1.55;
  }

  .hero-actions {
    flex-wrap: nowrap;
    margin-top: 30px;
  }

  .hero-actions .button {
    white-space: nowrap;
  }
}

@media (min-width: 741px) and (max-width: 1080px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    background: var(--page);
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(38px, 6vw, 64px) clamp(28px, 6vw, 64px) clamp(44px, 7vw, 72px);
    background: var(--page);
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(4rem, 9vw, 6rem);
    line-height: 0.92;
  }

  .hero h1 span {
    display: block;
  }

  .hero-text {
    max-width: 38ch;
  }

  .hero-actions {
    margin-top: 28px;
  }
}

@media (max-width: 740px) {
  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 0;
    background: var(--page);
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: clamp(320px, 92vw, 460px);
    margin: 0;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 18px 38px;
    background: var(--page);
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.15rem, 16vw, 4.4rem);
    line-height: 0.91;
  }

  .hero h1 span {
    display: block;
  }
}

/* 2026-08 UI audit: reduce template effects and keep the product system legible. */
.site-header,
.hero-copy > *,
.page-hero-copy > *,
.signal-rail a,
.hero-image,
.page-visual {
  animation: none;
}

.motion-reveal,
.motion-reveal.motion-visual,
.motion-reveal.is-visible {
  opacity: 1;
  clip-path: none;
  transform: none;
  transition: opacity 220ms ease;
}

.eyebrow {
  color: var(--kelp);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.card-actions .product-link,
.product-photo-zoom > span,
.product-spin-hint,
.product-view-toggle,
.page-visual figcaption {
  border-radius: 6px;
}

.product-guide-grid h3,
.system-principles-list h3,
.product-stage-copy h3,
.product-ritual-peek figcaption strong,
.reviews-formats strong {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  letter-spacing: -0.035em;
}

.product-guide-grid article {
  min-height: 280px;
}

.quality-visual img {
  object-fit: contain;
  background: var(--paper);
}

.product-explorer,
.page-products,
.page-quality,
.page-ritual,
.review-write {
  background: var(--paper);
}

@media (max-width: 740px) {
  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.02;
  }

  .page-hero,
  .product-guide,
  .product-use,
  .product-proof,
  .product-faq,
  .quality,
  .ritual,
  .waitlist,
  .bundle,
  .review-write,
  .reviews-empty {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
