:root {
  --ink: #14231f;
  --muted: #5d6f68;
  --paper: #f7f4ef;
  --white: #ffffff;
  --green: #153d35;
  --green-2: #0e2d28;
  --copper: #b88746;
  --mist: #dce8ea;
  --coral: #d66a5e;
  --line: rgba(20, 35, 31, 0.14);
  --shadow: 0 24px 70px rgba(16, 34, 29, 0.18);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(18px, 5vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 239, 0.94);
  box-shadow: 0 8px 30px rgba(21, 61, 53, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: currentColor;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.header-action,
.primary-action,
.secondary-action,
.inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 14px;
}

.primary-action {
  padding: 0 24px;
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 28px rgba(184, 135, 70, 0.26);
}

.secondary-action {
  padding: 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.inline-action {
  width: fit-content;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("/assets/eigenhealth/selected/01-hero-tongue-desktop.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 28, 23, 0.86) 0%, rgba(8, 28, 23, 0.62) 45%, rgba(8, 28, 23, 0.22) 100%), linear-gradient(0deg, rgba(8, 28, 23, 0.68) 0%, rgba(8, 28, 23, 0) 36%);
}

.hero-visual {
  position: absolute;
  top: clamp(108px, 15vh, 148px);
  right: clamp(22px, 6vw, 86px);
  z-index: 0;
  width: clamp(300px, 34vw, 520px);
  height: clamp(420px, 58vh, 620px);
  pointer-events: none;
}

.hero-visual[hidden],
.hero-photo-frame[hidden],
.hero-insight-card[hidden],
.hero-status-card[hidden] {
  display: none;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-photo-frame,
.hero-insight-card,
.hero-status-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-photo-frame {
  inset: 0 0 72px 72px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-photo {
  position: absolute;
  inset: 12px;
  border-radius: 6px;
  background-image: url("/assets/eigenhealth/selected/00-style-anchor.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(0.96);
  transform: scale(1.04);
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --spotlight-size: 0px;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(21, 61, 53, 0.18), rgba(184, 135, 70, 0.16)),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.hero-photo-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-image: url("/assets/eigenhealth/selected/12-tongue-to-body-transition.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.98;
  -webkit-mask-image: radial-gradient(circle var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y), #000 0%, #000 52%, rgba(0, 0, 0, 0.68) 68%, transparent 100%);
  mask-image: radial-gradient(circle var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y), #000 0%, #000 52%, rgba(0, 0, 0, 0.68) 68%, transparent 100%);
  transition: -webkit-mask-image 120ms ease, mask-image 120ms ease;
}

.hero-photo.is-spotlight-active {
  --spotlight-size: 132px;
}

.hero-scan-line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.94), transparent);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.58);
  animation: heroScan 4.6s ease-in-out infinite;
}

.hero-image-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
}

.hero-image-label span,
.hero-insight-head span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-image-label strong,
.hero-status-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.hero-insight-card {
  left: 0;
  bottom: 0;
  width: min(310px, 72%);
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  animation: heroCardLift 7s ease-in-out infinite;
}

.hero-insight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-insight-head strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 18px;
}

.hero-insight-card h2 {
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.hero-insight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-signal-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hero-signal-list span {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green) var(--signal), rgba(21, 61, 53, 0.14) var(--signal));
  transform-origin: left center;
  animation: heroSignalPulse 2.8s ease-in-out infinite;
}

.hero-signal-list span:nth-child(2) {
  animation-delay: 240ms;
}

.hero-signal-list span:nth-child(3) {
  animation-delay: 480ms;
}

.hero-status-card {
  top: 54px;
  left: 18px;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(21, 61, 53, 0.72);
  animation: heroStatusSlide 8s ease-in-out infinite;
}

.hero-status-card span {
  color: var(--copper);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.template-botanical-scan .hero-photo-frame {
  inset: 0 0 72px 72px;
}

.template-report-stack .hero-photo-frame {
  inset: 34px 42px 94px 28px;
  transform-origin: center;
}

.template-report-stack .hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.template-report-stack .hero-insight-card {
  left: auto;
  right: 0;
  width: min(330px, 78%);
}

.template-report-stack .hero-status-card {
  top: 12px;
  left: 0;
}

.template-product-lab .hero-photo-frame {
  inset: 82px 0 22px 92px;
}

.template-product-lab .hero-photo {
  background-image: url("/assets/eigenhealth/selected/17-herbal-still-life.webp");
}

.template-product-lab .hero-insight-card {
  left: 0;
  top: 0;
  bottom: auto;
}

.template-product-lab .hero-status-card {
  top: auto;
  right: 22px;
  bottom: 0;
  left: auto;
}

.template-orbit-ring::before,
.template-orbit-ring::after {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  inset: 28px 16px 58px 74px;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.08);
  animation: heroOrbitSpin 16s linear infinite;
}

.template-orbit-ring::after {
  inset: 72px 58px 104px 118px;
  border-color: rgba(184, 135, 70, 0.42);
  animation-duration: 22s;
  animation-direction: reverse;
}

.template-orbit-ring .hero-photo-frame {
  inset: 58px 44px 104px 98px;
  border-radius: 50%;
}

.template-orbit-ring .hero-photo,
.template-orbit-ring .hero-photo::after {
  border-radius: 50%;
}

.template-orbit-ring .hero-insight-card {
  left: 0;
  bottom: 12px;
}

.template-orbit-ring .hero-status-card {
  top: 24px;
  right: 6px;
  left: auto;
}

.template-rhythm-wave::before {
  left: 8px;
  right: 0;
  top: 42%;
  height: 120px;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px 34px);
  filter: blur(0.2px);
  opacity: 0.58;
  transform: skewY(-8deg);
  animation: heroWaveMove 7s ease-in-out infinite;
}

.template-rhythm-wave .hero-photo-frame {
  inset: 34px 18px 116px 54px;
  border-radius: 46% 54% 42% 58%;
}

.template-rhythm-wave .hero-insight-card {
  left: 18px;
  right: 18px;
  bottom: 0;
  width: auto;
}

.template-rhythm-wave .hero-status-card {
  top: 20px;
  left: auto;
  right: 0;
}

.template-data-constellation::before {
  inset: 0 0 66px 52px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.88) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 18%, rgba(184, 135, 70, 0.95) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 64%, rgba(255, 255, 255, 0.76) 0 3px, transparent 4px),
    radial-gradient(circle at 36% 78%, rgba(220, 232, 234, 0.92) 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 0 32%, rgba(255, 255, 255, 0.26) 32.4%, transparent 33% 58%, rgba(184, 135, 70, 0.3) 58.4%, transparent 59%);
  opacity: 0.78;
  animation: heroConstellation 8s ease-in-out infinite;
}

.template-data-constellation .hero-photo-frame {
  inset: 24px 56px 116px 88px;
  background: rgba(7, 24, 22, 0.4);
}

.template-data-constellation .hero-insight-card {
  left: 0;
  bottom: 12px;
}

.template-data-constellation .hero-status-card {
  top: 38px;
  right: 8px;
  left: auto;
}

.template-split-compare .hero-photo-frame {
  inset: 28px 0 96px 48px;
}

.template-split-compare .hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 12px 50% 12px 12px;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 6px 0 0 6px;
  background: rgba(21, 61, 53, 0.26);
  mix-blend-mode: multiply;
}

.template-split-compare .hero-scan-line {
  left: 50%;
  right: auto;
  top: 12px;
  bottom: 12px;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96), transparent);
  animation: heroCompareSweep 4.8s ease-in-out infinite;
}

.template-split-compare .hero-insight-card {
  left: 0;
  bottom: 0;
}

.template-split-compare .hero-status-card {
  top: 18px;
  left: 0;
}

.template-product-showcase .hero-photo-frame {
  inset: 104px 22px 24px 118px;
  transform: rotate(2deg);
}

.template-product-showcase .hero-insight-card {
  top: 16px;
  bottom: auto;
  left: 0;
  width: min(340px, 76%);
}

.template-product-showcase .hero-status-card {
  top: auto;
  right: 0;
  bottom: 28px;
  left: auto;
  background: rgba(184, 135, 70, 0.76);
}

.template-product-showcase::before {
  inset: 82px 0 0 86px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 54%);
  animation: heroShowcaseLight 5.8s ease-in-out infinite;
}

.template-spotlight-reveal .hero-photo-frame {
  inset: 8px 0 72px 64px;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(7, 24, 22, 0.34);
}

.template-spotlight-reveal .hero-photo {
  filter: saturate(0.86) contrast(0.94) brightness(0.82);
}

.template-spotlight-reveal .hero-photo::after {
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(7, 24, 22, 0.34), rgba(184, 135, 70, 0.1)),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: auto, auto, 38px 38px, 38px 38px;
}

.template-spotlight-reveal .hero-insight-card {
  left: 0;
  bottom: 0;
  width: min(340px, 76%);
}

.template-spotlight-reveal .hero-status-card {
  top: 28px;
  right: 8px;
  left: auto;
}

.template-spotlight-reveal .hero-scan-line {
  display: none;
}

.template-spotlight-reveal .hero-image-label {
  color: var(--white);
  background: rgba(7, 24, 22, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.template-spotlight-reveal .hero-image-label strong {
  color: var(--white);
}

.motion-scan .hero-scan-line {
  animation-name: heroScan;
}

.motion-soft .hero-scan-line {
  opacity: 0.34;
  animation-duration: 7s;
}

.motion-soft .hero-photo-frame,
.motion-soft .hero-insight-card,
.motion-soft .hero-status-card {
  animation-duration: 10s;
}

.motion-orbit .hero-photo-frame {
  animation-name: heroOrbitFloat;
}

.motion-orbit .hero-insight-card {
  animation-name: heroOrbitCard;
}

.motion-breathe .hero-photo-frame,
.motion-breathe .hero-insight-card,
.motion-breathe .hero-status-card {
  animation-name: heroBreathe;
  animation-duration: 6.5s;
}

.motion-glow .hero-photo-frame,
.motion-glow .hero-insight-card,
.motion-glow .hero-status-card {
  animation-name: heroGlowPulse;
  animation-duration: 4.8s;
}

.motion-glow .hero-scan-line {
  animation-duration: 3.2s;
  box-shadow: 0 0 34px rgba(184, 135, 70, 0.78);
}

.motion-spotlight .hero-photo-frame {
  animation-name: heroSpotlightFloat;
  animation-duration: 8s;
}

.motion-spotlight .hero-photo-reveal {
  opacity: 1;
}

.motion-still .hero-photo-frame,
.motion-still .hero-insight-card,
.motion-still .hero-status-card,
.motion-still .hero-scan-line,
.motion-still .hero-signal-list span,
.motion-still::before,
.motion-still::after {
  animation: none;
}

.motion-still .hero-scan-line {
  top: 52%;
  opacity: 0.48;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 108px;
}

.eyebrow,
.section-kicker,
.report-tag,
.protocol-item span {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.cta-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: 88px;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 0;
  padding: 0;
}

.trust-strip div {
  min-width: 144px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.trust-strip dt {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.conversion-band {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.conversion-inner {
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.conversion-inner article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 34, 29, 0.12);
}

.conversion-inner span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.conversion-inner h2 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.18;
}

.conversion-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.protocol-item p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.section h2,
.cta-content h2 {
  max-width: 780px;
  font-size: 54px;
}

.section-copy > p:not(.section-kicker),
.split-heading > p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 17px;
}

.report-card,
.step-card,
.archetype-card,
.protocol-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.report-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.report-card-header,
.report-metrics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.report-score {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.report-card h3 {
  margin: 22px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.report-card p {
  margin: 0;
  color: var(--muted);
}

.radar {
  display: grid;
  gap: 10px;
  margin: 26px 0 22px;
}

.radar span {
  display: block;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green) var(--level), rgba(21, 61, 53, 0.12) var(--level));
}

.report-metrics span {
  padding: 8px 10px;
  color: var(--green);
  background: var(--mist);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 38px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 238px;
  padding: 24px;
}

.step-number {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.step-card h3,
.protocol-item h3,
.archetype-card h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.step-card p,
.protocol-item p,
.archetype-card p {
  margin: 0;
  font-size: 14px;
}

.archetype-band {
  color: var(--white);
  background: var(--green);
}

.archetype-band .section-kicker,
.archetype-band .split-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 40px;
  align-items: end;
}

.archetype-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.archetype-card {
  min-height: 170px;
  padding: 22px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.archetype-card h3 {
  margin-top: 0;
}

.archetype-card p {
  color: rgba(255, 255, 255, 0.74);
}

.pioneer { border-top: 4px solid #71b487; }
.illuminator { border-top: 4px solid var(--coral); }
.stabilizer { border-top: 4px solid #c9a76a; }
.refiner { border-top: 4px solid var(--mist); }
.contemplator { border-top: 4px solid #7b99b7; }

.protocol-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 112px;
}

.sticky-copy .inline-action {
  margin-top: 26px;
}

.protocol-list {
  display: grid;
  gap: 14px;
}

.protocol-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
}

.protocol-item span {
  margin: 0;
}

.protocol-item h3 {
  margin: 0 0 6px;
}

.protocol-item strong {
  color: var(--green);
  font-size: 18px;
}

.product-section {
  background: var(--white);
}

.product-section .split-heading > p {
  align-self: end;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(16, 34, 29, 0.14);
}

.product-image {
  display: block;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.moxa-patch .product-image {
  background-image: linear-gradient(180deg, rgba(21, 61, 53, 0.08), rgba(21, 61, 53, 0.32)), url("/assets/eigenhealth/selected/18-paper-skin-texture.webp");
}

.foot-bath .product-image {
  background-image: linear-gradient(180deg, rgba(21, 61, 53, 0.06), rgba(21, 61, 53, 0.28)), url("/assets/eigenhealth/selected/01-hero-tongue-desktop.webp");
}

.wellness-tea .product-image {
  background-image: linear-gradient(180deg, rgba(21, 61, 53, 0.06), rgba(21, 61, 53, 0.28)), url("/assets/eigenhealth/selected/00-style-anchor.webp");
}

.jianzhan-cup .product-image {
  background-image: linear-gradient(180deg, rgba(21, 61, 53, 0.06), rgba(21, 61, 53, 0.28)), url("/assets/eigenhealth/selected/12-tongue-to-body-transition.webp");
}

.product-body {
  padding: 24px;
}

.product-body span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.product-body p {
  min-height: 78px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-meta > div {
  display: grid;
  gap: 6px;
}

.product-meta strong {
  color: var(--green);
  font-size: 14px;
}

.product-count {
  color: var(--dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.product-meta a {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.cta-section {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.cta-image,
.cta-section::after {
  position: absolute;
  inset: 0;
}

.cta-image {
  background-image: url("/assets/eigenhealth/selected/17-herbal-still-life.webp");
  background-size: cover;
  background-position: center;
}

.cta-section::after {
  content: "";
  background: linear-gradient(90deg, rgba(8, 28, 23, 0.84), rgba(8, 28, 23, 0.42));
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 36px));
  margin: 0 auto;
}

.cta-content .primary-action {
  margin-top: 28px;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 86px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 36px clamp(18px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-2);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.07) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(1deg);
  }
}

@keyframes heroCardLift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(10px, -12px, 0);
  }
}

@keyframes heroStatusSlide {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-8px, 12px, 0);
  }
}

@keyframes heroScan {
  0%,
  100% {
    top: 18%;
    opacity: 0.36;
  }

  50% {
    top: 74%;
    opacity: 1;
  }
}

@keyframes heroSignalPulse {
  0%,
  100% {
    transform: scaleX(0.94);
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes heroOrbitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroWaveMove {
  0%,
  100% {
    transform: translate3d(-18px, 0, 0) skewY(-8deg);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(18px, -18px, 0) skewY(7deg);
    opacity: 0.72;
  }
}

@keyframes heroConstellation {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.62;
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.02);
    opacity: 0.9;
  }
}

@keyframes heroCompareSweep {
  0%,
  100% {
    left: 38%;
    opacity: 0.44;
  }

  50% {
    left: 68%;
    opacity: 0.94;
  }
}

@keyframes heroShowcaseLight {
  0%,
  100% {
    transform: translate3d(-18px, 20px, 0);
    opacity: 0.34;
  }

  50% {
    transform: translate3d(18px, -16px, 0);
    opacity: 0.7;
  }
}

@keyframes heroOrbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }

  50% {
    transform: translate3d(12px, -18px, 0) rotate(3deg);
  }
}

@keyframes heroOrbitCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-12px, -12px, 0);
  }
}

@keyframes heroBreathe {
  0%,
  100% {
    transform: scale(0.985);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes heroGlowPulse {
  0%,
  100% {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24), 0 0 0 rgba(184, 135, 70, 0);
  }

  50% {
    box-shadow: 0 30px 84px rgba(0, 0, 0, 0.3), 0 0 42px rgba(184, 135, 70, 0.34);
  }
}

@keyframes heroSpotlightFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }

  50% {
    transform: translate3d(8px, -14px, 0) rotate(1.2deg);
  }
}


@media (max-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }

  .section h2,
  .cta-content h2 {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-visual {
    top: 118px;
    right: -92px;
    width: 390px;
    height: 470px;
    opacity: 0.46;
  }

  .hero-photo-frame {
    inset: 0 0 48px 48px;
  }

  .preview-grid,
  .protocol-layout,
  .faq-grid,
  .split-heading,
  .conversion-inner {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .archetype-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-copy {
    position: static;
  }

  .protocol-item {
    grid-template-columns: 82px minmax(0, 1fr) auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 28, 23, 0.88) 0%, rgba(8, 28, 23, 0.72) 58%, rgba(8, 28, 23, 0.44) 100%), linear-gradient(0deg, rgba(8, 28, 23, 0.7) 0%, rgba(8, 28, 23, 0) 36%);
  }

  .hero-visual {
    top: 82px;
    right: -150px;
    width: 340px;
    height: 420px;
    opacity: 0.32;
  }

  .hero-insight-card,
  .hero-status-card,
  .hero-image-label {
    display: none;
  }

  .hero-photo {
    --spotlight-x: 48%;
    --spotlight-y: 42%;
    --spotlight-size: 116px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 104px 0 86px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-note {
    font-size: 13px;
  }

  .hero-actions,
  .trust-strip {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .trust-strip div {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .conversion-band {
    margin-top: 0;
    padding: 16px 0 0;
  }

  .section h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .steps-grid,
  .archetype-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 220px;
  }

  .report-card {
    padding: 22px;
  }

  .protocol-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .protocol-item strong {
    justify-self: start;
  }

  .cta-section {
    min-height: 460px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}




/* Bilingual header controls */
.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.lang-option {
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.lang-option.is-active {
  color: var(--green);
  background: var(--white);
}

.site-header.is-scrolled .lang-option.is-active {
  color: var(--white);
  background: var(--green);
}

@media (max-width: 1024px) {
  .site-header {
    gap: 14px;
  }
}

@media (max-width: 700px) {
  .header-controls {
    gap: 8px;
  }

  .language-switcher {
    min-height: 36px;
  }

  .lang-option {
    min-width: 36px;
    height: 28px;
    padding: 0 7px;
    font-size: 12px;
  }

  .header-action {
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-photo-frame,
  .hero-insight-card,
  .hero-status-card,
  .hero-scan-line,
  .hero-signal-list span,
  .hero-visual::before,
  .hero-visual::after {
    animation: none;
  }
}

/* Tongue-image report homepage refresh */
:root {
  --paper: #f4efe4;
  --white: #fffdf8;
  --green: #12352e;
  --green-2: #0a221e;
  --sage: #8fa178;
  --tea: #87633f;
  --copper: #c58f4a;
  --coral: #bf7469;
  --mist: #e5eadc;
  --line: rgba(29, 55, 47, 0.16);
  --shadow: 0 26px 80px rgba(12, 35, 30, 0.18);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(143, 161, 120, 0.18), transparent 28%),
    linear-gradient(180deg, #f6f1e7 0%, #efe6d6 100%);
}

.hero {
  min-height: 92vh;
  background: var(--green-2);
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(9, 34, 29, 0.84), rgba(9, 34, 29, 0.42)),
    url("/assets/eigenhealth/selected/18-paper-skin-texture.webp");
  background-position: center;
  filter: saturate(0.82) contrast(1.04) brightness(0.72);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 46%, rgba(191, 116, 105, 0.26), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(197, 143, 74, 0.18), transparent 24%),
    linear-gradient(0deg, rgba(10, 34, 30, 0.82), transparent 48%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 23, 0.94) 0%, rgba(8, 28, 23, 0.76) 42%, rgba(8, 28, 23, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 28, 23, 0.78) 0%, rgba(8, 28, 23, 0) 42%);
}

.hero h1 {
  max-width: 760px;
  color: #fffdf8;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 253, 248, 0.86);
}

.hero-photo-frame {
  inset: 8px 4px 76px 74px;
  border-radius: 999px 999px 24px 24px;
  border-color: rgba(255, 253, 248, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.05)),
    rgba(10, 34, 30, 0.52);
}

.hero-photo,
.hero-photo::after,
.hero-photo-reveal {
  background-image: none;
}

.tongue-scan-window {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 253, 248, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(191, 116, 105, 0.2), rgba(18, 53, 46, 0.42));
}

.tongue-orb {
  position: relative;
  width: min(74%, 300px);
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  border-radius: 44% 44% 52% 52%;
  background:
    radial-gradient(circle at 48% 22%, rgba(255, 240, 230, 0.55), transparent 12%),
    radial-gradient(circle at 56% 62%, rgba(156, 78, 72, 0.72), rgba(191, 116, 105, 0.92) 48%, rgba(116, 56, 54, 0.9) 100%);
  box-shadow:
    inset 0 26px 50px rgba(255, 255, 255, 0.18),
    inset 0 -30px 56px rgba(74, 22, 24, 0.34),
    0 22px 90px rgba(191, 116, 105, 0.36);
  transform: rotate(-3deg);
}

.tongue-core,
.tongue-grid,
.tongue-orb::before,
.tongue-orb::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tongue-core {
  inset: 18% 42% 13%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent 74%);
  opacity: 0.7;
}

.tongue-grid {
  inset: -16%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 42%, transparent 72%);
}

.tongue-orb::before {
  inset: 12%;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: inherit;
}

.tongue-orb::after {
  top: 50%;
  left: -18%;
  right: -18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.9), transparent);
  box-shadow: 0 0 22px rgba(255, 253, 248, 0.5);
  animation: tongueScan 4.6s ease-in-out infinite;
}

.terrain-points i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(197, 143, 74, 0.72);
  animation: heroSignalPulse 2.8s ease-in-out infinite;
}

.hero-scan-line {
  background: linear-gradient(90deg, transparent, rgba(197, 143, 74, 0.95), rgba(255, 253, 248, 0.95), transparent);
  box-shadow: 0 0 28px rgba(197, 143, 74, 0.55);
}

.hero-insight-card,
.hero-status-card,
.hero-image-label {
  border-color: rgba(255, 253, 248, 0.26);
  background: rgba(255, 253, 248, 0.9);
}

.hero-status-card {
  background: rgba(18, 53, 46, 0.84);
}

.conversion-band,
.intro-band,
.archetype-band,
.product-section,
.faq-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(143, 161, 120, 0.12), transparent 24%),
    var(--paper);
}

.preview-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.report-preview-stack {
  position: relative;
  min-height: 520px;
}

.report-preview-stack .report-card {
  position: absolute;
  width: min(420px, 88%);
  border-color: rgba(18, 53, 46, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,253,248,0.82)),
    var(--white);
}

.constitution-card {
  top: 0;
  right: 2%;
  z-index: 3;
}

.terrain-card {
  top: 156px;
  left: 0;
  z-index: 2;
  transform: rotate(-2deg);
}

.protocol-card-preview {
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(1.5deg);
}

.small-score {
  width: 42px;
  height: 42px;
  font-size: 14px;
}

.terrain-metrics {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-section .section-heading h2::after,
.intro-band .section-copy h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.product-card {
  background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(247,241,231,0.88));
}

@keyframes tongueScan {
  0%, 100% { transform: translateY(-92px); opacity: 0.3; }
  50% { transform: translateY(104px); opacity: 1; }
}

@media (max-width: 980px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .report-preview-stack {
    min-height: 640px;
  }
}

@media (max-width: 700px) {
  .hero-photo-frame {
    border-radius: 28px;
  }

  .report-preview-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .report-preview-stack .report-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }
}

/* Refine report preview stack readability */
.report-preview-stack {
  min-height: 560px;
  padding: 12px 0;
}

.report-preview-stack .report-card {
  width: min(440px, 86%);
}

.constitution-card {
  top: 0;
  right: 0;
  z-index: 3;
}

.terrain-card {
  top: 190px;
  left: 0;
  z-index: 2;
  transform: rotate(-1.2deg);
}

.protocol-card-preview {
  right: 18px;
  bottom: 0;
  z-index: 1;
  transform: rotate(0.8deg);
  padding-top: 72px;
}

.protocol-card-preview .report-card-header {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
}

.protocol-card-preview h3 {
  margin-top: 10px;
  font-size: 28px;
}

@media (max-width: 980px) {
  .report-preview-stack {
    min-height: 680px;
  }

  .protocol-card-preview {
    right: 0;
  }
}

@media (max-width: 700px) {
  .protocol-card-preview {
    padding-top: 28px;
  }

  .protocol-card-preview .report-card-header {
    position: static;
  }

  .protocol-card-preview h3 {
    margin-top: 22px;
  }
}

/* Tongue-care information architecture refresh */
.plan-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(197, 143, 74, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(239, 232, 214, 0.82));
}

.plan-section::before {
  content: "";
  position: absolute;
  inset: 64px auto 64px 50%;
  width: min(420px, 38vw);
  border-left: 1px solid rgba(18, 53, 46, 0.14);
  border-right: 1px solid rgba(197, 143, 74, 0.18);
  transform: skewX(-10deg);
  pointer-events: none;
}

.plan-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

.daily-timeline {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(18, 53, 46, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 241, 231, 0.76)),
    var(--paper);
  box-shadow: 0 28px 80px rgba(18, 53, 46, 0.12);
}

.daily-timeline article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 53, 46, 0.09);
  background: rgba(255, 253, 248, 0.76);
}

.daily-timeline time {
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.daily-timeline p {
  margin: 0;
  color: rgba(31, 42, 35, 0.78);
  line-height: 1.65;
}

.content-section {
  background:
    linear-gradient(180deg, rgba(18, 53, 46, 0.97), rgba(31, 75, 58, 0.94)),
    var(--ink);
  color: var(--white);
}

.content-section .section-kicker,
.content-section h2,
.content-section .split-heading > p {
  color: var(--white);
}

.content-section .split-heading > p {
  opacity: 0.72;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 54px);
}

.topic-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  background:
    radial-gradient(circle at 78% 18%, rgba(197, 143, 74, 0.22), transparent 32%),
    rgba(255, 253, 248, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.12);
}

.topic-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(197, 143, 74, 0.46);
  color: var(--copper);
  font-family: Georgia, serif;
  margin-bottom: 34px;
}

.topic-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
}

.topic-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .plan-grid,
  .topic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-grid {
    align-items: start;
  }
}

@media (max-width: 700px) {
  .plan-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .daily-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .topic-grid article {
    min-height: 210px;
  }
}

/* Package v1.2 selected asset integration */
:root {
  --ink: #111111;
  --paper: #f4f1ea;
  --bone: #eae4d8;
  --green: #64705a;
  --green-2: #375c48;
  --copper: #a77b62;
  --coral: #a62b2b;
  --line: rgba(17, 17, 17, 0.14);
}

body {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244, 241, 234, 0.9), rgba(244, 241, 234, 0.9)), url('/assets/eigenhealth/selected/18-paper-skin-texture.webp');
  background-size: auto, 520px 520px;
}

.hero {
  min-height: 92vh;
}

.hero-bg {
  display: block;
  overflow: hidden;
  background: #111;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.56) 45%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.76) 0%, rgba(17, 17, 17, 0.05) 44%);
}

.hero-photo {
  background-image: url('/assets/eigenhealth/selected/00-style-anchor.webp');
  background-size: cover;
  background-position: center;
}

.hero-photo::after {
  background-image: linear-gradient(rgba(17,17,17,0.14), rgba(17,17,17,0.14)), url('/assets/eigenhealth/selected/12-tongue-to-body-transition.webp');
  background-size: cover;
  background-position: center;
}

.hero-photo-reveal {
  background-image: url('/assets/eigenhealth/selected/12-tongue-to-body-transition.webp');
  background-size: cover;
  background-position: center;
}

.tongue-sample-strip {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  pointer-events: none;
}

.tongue-sample-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--bone);
}

.report-preview-stack .constitution-card {
  margin-top: 132px;
}

.body-map-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin: 30px 0 28px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(234, 228, 216, 0.78), rgba(255,255,255,0.72)),
    url('/assets/eigenhealth/selected/12-tongue-to-body-transition.webp') center/cover;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
}

.body-view-toggle {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(244, 241, 234, 0.82);
}

.body-view-toggle button {
  min-width: 86px;
  min-height: 36px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.body-view-toggle button.is-active {
  color: #fff;
  background: var(--ink);
}

.body-figure-wrap {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.body-figure {
  position: absolute;
  width: min(58%, 360px);
  max-height: 620px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
  filter: drop-shadow(0 28px 44px rgba(17, 17, 17, 0.18));
}

.body-figure.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.body-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 999px;
  color: #fff;
  background: rgba(166, 43, 43, 0.88);
  box-shadow: 0 0 0 8px rgba(166,43,43,0.13), 0 14px 30px rgba(17,17,17,0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.body-hotspot:focus-visible,
.body-hotspot:hover {
  outline: 3px solid rgba(167, 123, 98, 0.48);
  outline-offset: 4px;
}

.body-map-panel {
  padding: clamp(22px, 3vw, 34px);
  border-left: 2px solid var(--coral);
  background: rgba(244, 241, 234, 0.86);
}

.body-map-panel span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.body-map-panel h3 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 3vw, 40px);
}

.body-map-panel p {
  margin: 0;
  color: rgba(17,17,17,0.68);
}

.daily-timeline article:nth-child(1) { background-image: linear-gradient(90deg, rgba(244,241,234,0.84), rgba(244,241,234,0.84)), url('/assets/eigenhealth/selected/13-lifestyle-breakfast.webp'); background-size: cover; background-position: center; }
.daily-timeline article:nth-child(2) { background-image: linear-gradient(90deg, rgba(244,241,234,0.86), rgba(244,241,234,0.86)), url('/assets/eigenhealth/selected/14-lifestyle-acupressure.webp'); background-size: cover; background-position: center; }
.daily-timeline article:nth-child(3) { background-image: linear-gradient(90deg, rgba(244,241,234,0.86), rgba(244,241,234,0.86)), url('/assets/eigenhealth/selected/15-lifestyle-walking.webp'); background-size: cover; background-position: center; }
.daily-timeline article:nth-child(6) { background-image: linear-gradient(90deg, rgba(244,241,234,0.86), rgba(244,241,234,0.86)), url('/assets/eigenhealth/selected/16-lifestyle-sleep.webp'); background-size: cover; background-position: center; }

.content-section {
  background:
    linear-gradient(180deg, rgba(17,17,17,0.9), rgba(17,17,17,0.86)),
    url('/assets/eigenhealth/selected/17-herbal-still-life.webp') center/cover;
}

.product-placeholder {
  display: grid;
  place-items: center;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(234,228,216,0.92), rgba(244,241,234,0.86)),
    url('/assets/eigenhealth/selected/18-paper-skin-texture.webp') center/360px;
  border-bottom: 1px solid rgba(17,17,17,0.12);
}

.product-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17,17,17,0.22);
  background: rgba(244,241,234,0.78);
  color: rgba(17,17,17,0.72);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cta-image {
  background-image: linear-gradient(90deg, rgba(17,17,17,0.36), rgba(17,17,17,0.08)), url('/assets/eigenhealth/selected/17-herbal-still-life.webp');
}

@media (max-width: 980px) {
  .body-map-stage {
    grid-template-columns: 1fr;
  }

  .body-figure-wrap {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .hero-bg img {
    object-position: center top;
  }

  .tongue-sample-strip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin-bottom: 14px;
  }

  .report-preview-stack .constitution-card {
    margin-top: 0;
  }

  .body-figure-wrap {
    min-height: auto;
    display: block;
  }

  .body-figure {
    position: relative;
    display: none;
    width: min(74%, 280px);
    margin: 0 auto 20px;
  }

  .body-figure.is-active {
    display: block;
  }

  .body-hotspot {
    position: static;
    display: flex;
    width: 100%;
    margin: 8px 0;
    transform: none;
    border-radius: 4px;
    color: var(--ink);
    background: rgba(244, 241, 234, 0.92);
    box-shadow: none;
  }
}

/* Package v1.2 visual QA fixes */
.body-map-stage {
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.94), rgba(234, 228, 216, 0.88)),
    url('/assets/eigenhealth/selected/12-tongue-to-body-transition.webp') center/cover;
}

.body-figure {
  width: min(64%, 430px);
}

.body-hotspot {
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  font-size: 11px;
  background: rgba(166, 43, 43, 0.92);
}

.body-map-panel {
  background: rgba(244, 241, 234, 0.94);
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
}

.archetype-band {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(55, 92, 72, 0.9)),
    url('/assets/eigenhealth/selected/09-acupoint-wrist.webp') center/cover;
  color: #fff;
}

.archetype-band .section-kicker,
.archetype-band h2,
.archetype-band .split-heading > p {
  color: #fff;
}

.archetype-band .split-heading > p,
.archetype-band .archetype-card p {
  color: rgba(255, 255, 255, 0.74);
}

.archetype-band .archetype-card {
  border: 1px solid rgba(234, 228, 216, 0.22);
  background: rgba(17, 17, 17, 0.34);
  backdrop-filter: blur(10px);
}

.archetype-band .archetype-card h3 {
  color: #fff;
}

.product-card .product-image.product-placeholder,
.moxa-patch .product-image.product-placeholder,
.foot-bath .product-image.product-placeholder,
.wellness-tea .product-image.product-placeholder,
.jianzhan-cup .product-image.product-placeholder {
  display: grid;
  place-items: center;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(234, 228, 216, 0.94), rgba(244, 241, 234, 0.9)),
    url('/assets/eigenhealth/selected/18-paper-skin-texture.webp') center/360px !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.product-card .product-image.product-placeholder span {
  color: rgba(17, 17, 17, 0.74);
  background: rgba(244, 241, 234, 0.86);
}

@media (max-width: 700px) {
  .body-figure {
    width: min(78%, 300px);
  }

  .archetype-band .section-heading {
    gap: 16px;
  }
}

/* Observation preview cleanup */
.observation-preview {
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.86), rgba(255, 255, 255, 0.72)),
    url('/assets/eigenhealth/selected/05-tongue-pale-scalloped.webp') center/cover;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.08);
}

.observation-preview .tongue-sample-strip,
.observation-preview .terrain-card,
.observation-preview .protocol-card-preview {
  display: none;
}

.observation-preview .report-card,
.observation-preview .constitution-card,
.observation-preview .observation-main-card {
  position: relative;
  inset: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: min(520px, 100%);
  margin: 0 0 0 auto;
  transform: none;
  z-index: 1;
}

.observation-preview .report-card h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.observation-steps-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
  margin-left: auto;
}

.observation-steps-mini span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(244, 241, 234, 0.88);
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 700px) {
  .observation-preview {
    min-height: auto;
    padding: 18px;
  }

  .observation-steps-mini {
    grid-template-columns: 1fr 1fr;
  }
}

/* Restore a single tongue visual in observation preview */
.observation-preview {
  grid-template-columns: minmax(180px, 0.62fr) minmax(360px, 1fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.92), rgba(255, 255, 255, 0.76)),
    url('/assets/eigenhealth/selected/18-paper-skin-texture.webp') center/420px;
}

.observation-tongue-image {
  width: min(280px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--bone);
  overflow: hidden;
  box-shadow: 0 22px 64px rgba(17, 17, 17, 0.10);
}

.observation-tongue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.observation-preview .report-card,
.observation-preview .constitution-card,
.observation-preview .observation-main-card,
.observation-steps-mini {
  margin-left: 0;
}

.observation-preview .observation-main-card {
  justify-self: stretch;
}

.observation-steps-mini {
  grid-column: 2;
}

@media (max-width: 700px) {
  .observation-preview {
    grid-template-columns: 1fr;
  }

  .observation-tongue-image {
    width: min(220px, 78vw);
  }

  .observation-steps-mini {
    grid-column: auto;
  }
}

@media (max-width: 1100px) {
  .observation-preview {
    grid-template-columns: minmax(0, 1fr);
  }

  .observation-preview .observation-main-card,
  .observation-steps-mini {
    width: 100%;
    grid-column: auto;
  }

  .observation-tongue-image {
    width: min(240px, 70vw);
  }
}

/* Rich single tongue observation card */
.observation-preview {
  display: grid;
  min-height: auto;
  padding: clamp(18px, 3vw, 34px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tongue-observation-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(20px, 3vw, 36px);
  width: min(760px, 100%);
  margin-left: auto;
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.10);
}

.tongue-card-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--bone);
}

.tongue-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 420ms ease;
}

.tongue-card-media.is-changing img {
  opacity: 0.42;
  transform: scale(1.018);
}

.tongue-card-score {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.16);
}

.tongue-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.tongue-card-state {
  color: rgba(17, 17, 17, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.tongue-card-body h3 {
  margin: 22px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.tongue-card-body p {
  margin: 0 0 22px;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.65;
}

.tongue-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.tongue-tabs button {
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(100, 112, 90, 0.12);
  color: rgba(17, 17, 17, 0.64);
  font-weight: 800;
  cursor: pointer;
}

.tongue-tabs button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.tongue-card-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  color: rgba(17, 17, 17, 0.52);
  font-size: 13px;
  line-height: 1.55;
}

.observation-preview .report-card,
.observation-preview .observation-tongue-image,
.observation-preview .observation-steps-mini {
  display: none;
}

@media (max-width: 1100px) {
  .tongue-observation-card {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .tongue-card-media {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .tongue-observation-card {
    padding: 14px;
  }

  .tongue-tabs {
    grid-template-columns: 1fr 1fr;
  }
}

/* Equalize tongue card tabs */
.tongue-tabs {
  align-items: stretch;
}

.tongue-tabs button {
  width: 100%;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 0 8px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 700px) {
  .tongue-tabs button {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
  }
}

