:root {
  --bg: #f6f8f2;
  --surface: #ffffff;
  --surface-2: #edf4e8;
  --ink: #162019;
  --ink-soft: #39483e;
  --muted: #6c7a70;
  --line: rgba(22, 32, 25, 0.14);
  --line-strong: rgba(22, 32, 25, 0.28);
  --accent: #4f7c45;
  --accent-dark: #2f5d35;
  --dark: #17331f;
  --dark-soft: #24452c;
  --white: #ffffff;
  --radius: 8px;
  --radius-small: 8px;
  --page: clamp(18px, 4vw, 48px);
  --max: 1240px;
  --shadow: 0 24px 70px rgba(45, 58, 50, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --font-sans: "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --text-xs: 0.72rem;
  --text-sm: 0.875rem;
  --text-body: 1rem;
  --text-lede: clamp(1.0625rem, 1.15vw, 1.28rem);
  --text-card-title: clamp(1.35rem, 2.1vw, 1.95rem);
  --text-section: clamp(2.45rem, 4.7vw, 4.85rem);
  --text-hero: clamp(3.25rem, 7.4vw, 6rem);
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 4vw, 3rem);
  --space-xl: clamp(4rem, 8vw, 7rem);
}

* {
  box-sizing: border-box;
}

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

#buy,
#how-it-works,
#market-signals,
#product-details,
#faq-title {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 6%, rgba(79, 124, 69, 0.13), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 56%, #eef4e9 100%);
  font-family: var(--font-sans);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(79, 124, 69, 0.5);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(100% - (var(--page) * 2), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-cta,
.nav-links a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 36%, #ffe2ab 0 10%, transparent 11%),
    radial-gradient(circle at 38% 34%, #222927 0 13%, transparent 14%),
    linear-gradient(135deg, #6d9b5e, #24372a 82%);
  box-shadow: 0 8px 20px rgba(79, 124, 69, 0.18);
}

.nav-links {
  justify-self: end;
  display: flex;
  gap: clamp(18px, 3vw, 30px);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.nav-cta:hover {
  border-color: rgba(79, 124, 69, 0.5);
  color: var(--accent-dark);
}

.section-grid,
.section-shell,
.problem-block,
.buy-panel,
.site-footer {
  width: min(100% - (var(--page) * 2), var(--max));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: clamp(32px, 5.8vw, 76px);
  align-items: center;
}

.hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(46px, 6vw, 82px);
}

.hero-copy {
  display: grid;
  gap: var(--space-md);
  align-content: center;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: var(--text-xs);
  font-weight: 860;
  line-height: 1.2;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

h1 {
  max-width: 12.5ch;
  font-size: var(--text-hero);
  line-height: 0.94;
  font-weight: 900;
}

.hero-lede {
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: var(--text-lede);
  line-height: 1.58;
}

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

.button {
  min-width: 180px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active,
.mode-button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 8px 12px rgba(47, 93, 53, 0.18);
}

.button-primary:hover {
  background: #234d2b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(79, 124, 69, 0.56);
}

.trust-row {
  margin: var(--space-2xs) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xs);
}

.trust-row div {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.44);
}

.trust-row dt {
  margin: 0 0 var(--space-2xs);
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-row dd {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 780;
  line-height: 1.3;
}

.hero-stage {
  position: relative;
  min-height: clamp(500px, 52vw, 680px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-stage > img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 24, 23, 0.64), rgba(19, 24, 23, 0.12) 52%, rgba(19, 24, 23, 0.04)),
    linear-gradient(0deg, rgba(19, 24, 23, 0.28), transparent 46%);
  z-index: 1;
}

.stage-note {
  position: absolute;
  z-index: 3;
  max-width: 240px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-small);
  background: rgba(17, 20, 19, 0.54);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  font-size: 13px;
  line-height: 1.3;
}

.stage-note span {
  display: block;
  margin-bottom: 6px;
  color: #d8efce;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-note {
  top: 22px;
  left: 22px;
}

.bottom-note {
  right: 22px;
  bottom: 22px;
}

.problem-block {
  padding: clamp(32px, 5.2vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.68fr);
  gap: var(--space-lg);
  align-items: center;
}

.problem-line {
  display: grid;
  gap: 0.12em;
  font-size: clamp(2.25rem, 5.4vw, 4.65rem);
  line-height: 0.96;
  font-weight: 900;
}

.problem-line span:last-child {
  color: #d8efce;
}

.problem-block p {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-lede);
  line-height: 1.6;
}

.section-shell,
.mechanism,
.safety,
.kit,
.buy-panel {
  padding: var(--space-xl) 0 0;
}

.section-heading {
  max-width: none;
  margin-bottom: clamp(28px, 4.6vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.52fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: end;
}

.section-heading.compact {
  max-width: 690px;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.section-heading h2,
.mechanism-copy h2,
.safety h2,
.kit-copy h2,
.buy-copy h2 {
  font-size: var(--text-section);
  line-height: 1;
  font-weight: 900;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading p:not(.eyebrow),
.mechanism-copy p,
.kit-copy p,
.buy-copy p {
  color: var(--ink-soft);
  max-width: 58ch;
  font-size: var(--text-body);
  line-height: 1.65;
}

.scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr));
  gap: var(--space-sm);
}

.scene-card,
.reaction-strip article,
.safety-list article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.scene-card {
  min-height: 452px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.scene-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 124, 69, 0.32);
  box-shadow: 0 18px 46px rgba(45, 58, 50, 0.12);
}

.scene-card-dark {
  background: var(--dark);
  color: var(--white);
}

.scene-index {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 124, 69, 0.12);
  color: var(--accent-dark);
  font-size: var(--text-xs);
  font-weight: 900;
}

.scene-card-dark .scene-index {
  color: #d8efce;
  background: rgba(255, 210, 138, 0.14);
}

.scene-media {
  position: relative;
  height: clamp(188px, 18vw, 224px);
  overflow: hidden;
  background: var(--surface-2);
}

.scene-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.scene-card:hover .scene-media img {
  transform: scale(1.035);
}

.scene-media .scene-index {
  position: absolute;
  top: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(17, 20, 19, 0.58);
  color: #d8efce;
  backdrop-filter: blur(12px);
}

.scene-card h3 {
  margin: clamp(22px, 2.8vw, 30px) clamp(20px, 2.6vw, 28px) 0;
  font-size: var(--text-card-title);
  line-height: 1.08;
}

.scene-card p {
  margin: 12px clamp(20px, 2.6vw, 28px) 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.scene-card-dark p,
.scene-card-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.scene-card ul {
  margin: auto clamp(20px, 2.6vw, 28px) 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.42;
}

.scene-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 1px;
}

.mechanism {
  align-items: stretch;
}

.mechanism-visual {
  position: relative;
  min-height: clamp(520px, 48vw, 640px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.mechanism-visual > img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 50%;
}

.mechanism-device {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(58%, 310px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(17, 20, 19, 0.68);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.proof-product-image {
  height: auto;
  min-height: 0;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.86);
}

.device-caption {
  margin-top: 10px;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-sm);
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.mechanism-copy {
  align-self: center;
  display: grid;
  gap: var(--space-md);
}

.mode-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: 0;
}

.mode-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 820;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.mode-button.is-active {
  border-color: rgba(79, 124, 69, 0.5);
  background: rgba(79, 124, 69, 0.14);
  color: var(--accent-dark);
}

.mode-panel {
  min-height: 138px;
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease);
}

.mode-panel.is-updating {
  opacity: 0.72;
  transform: translateY(3px);
  border-color: rgba(79, 124, 69, 0.24);
}

.mode-panel h3 {
  margin-bottom: var(--space-2xs);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.mode-panel p {
  max-width: 54ch;
  font-size: var(--text-body);
  line-height: 1.6;
}

.spec-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs);
}

.spec-grid div {
  min-height: 82px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.52);
  display: grid;
  align-content: space-between;
}

.spec-grid dt,
.spec-grid dd {
  margin: 0;
}

.spec-grid dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-grid dd {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 830;
  line-height: 1.25;
}

.kit {
  align-items: stretch;
}

.kit-copy {
  align-self: center;
  display: grid;
  gap: var(--space-sm);
}

.kit-card {
  min-height: clamp(500px, 44vw, 560px);
  padding: clamp(22px, 3.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 18%, rgba(79, 124, 69, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--space-md);
}

.kit-product {
  position: relative;
  min-height: 290px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 24%, rgba(79, 124, 69, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(18, 22, 22, 0.04), rgba(255, 255, 255, 0.72)),
    var(--surface);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 30px);
}

.kit-product-image {
  width: min(88%, 390px);
  height: auto;
  border-radius: 6px;
  box-shadow: 0 24px 54px rgba(45, 58, 50, 0.16);
}

.kit-product-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 22, 22, 0.12);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.kit-product-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kit-product-note strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.kit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.kit-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.kit-list strong,
.kit-list span {
  line-height: 1.35;
}

.kit-list strong {
  color: var(--ink);
}

.kit-list span {
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: right;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.compare-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.compare-table span {
  padding: clamp(18px, 2.6vw, 30px);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.45;
}

.compare-table span + span {
  border-left: 1px solid var(--line);
}

.compare-head {
  background: var(--dark);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.compare-table [role="cell"]:nth-child(2) {
  color: var(--accent-dark);
  font-weight: 760;
}

.reaction-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
}

.reaction-strip article {
  min-height: clamp(248px, 24vw, 300px);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 18% 20%, rgba(79, 124, 69, 0.16), transparent 18rem);
}

.reaction-strip span {
  margin-bottom: auto;
  color: var(--accent-dark);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.reaction-strip h3,
.safety-list h3 {
  margin-bottom: var(--space-xs);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.12;
}

.reaction-strip p,
.safety-list p,
.faq-list p {
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: 1.62;
}

.safety {
  align-items: start;
}

.safety-list {
  display: grid;
  gap: var(--space-sm);
}

.safety-list article {
  padding: var(--space-md);
}

.faq-list {
  display: grid;
  gap: var(--space-xs);
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  min-height: 66px;
  padding: 18px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
}

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

.faq-list p {
  padding: 0 var(--space-md) var(--space-md);
  max-width: 68ch;
}

.buy-panel {
  margin-top: clamp(14px, 3vw, 36px);
  margin-bottom: clamp(32px, 5vw, 60px);
  padding: clamp(30px, 4.8vw, 56px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 210, 138, 0.2), transparent 20rem),
    var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.7fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.buy-copy h2 {
  max-width: 12ch;
}

.buy-copy p:not(.eyebrow) {
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

.preorder-teaser {
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm) var(--space-md);
  align-items: center;
}

.teaser-product {
  width: 82px;
  aspect-ratio: 1;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.teaser-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.teaser-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-sm);
  font-weight: 820;
  line-height: 1.2;
}

.teaser-copy strong {
  display: block;
  margin-top: var(--space-2xs);
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1;
}

.teaser-details {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
}

.teaser-details div {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.teaser-details dt,
.teaser-details dd {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.3;
}

.teaser-details dt {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.teaser-details dd {
  color: rgba(255, 255, 255, 0.88);
  text-align: right;
  font-weight: 760;
}

.preorder-teaser .button {
  grid-column: 1 / -1;
  width: 100%;
  background: #d8efce;
  color: var(--ink);
  box-shadow: none;
}

.announcement-bar,
.pdp-hero,
.pdp-proof-band,
.product-details-section,
.split-story,
.market-signals-section,
.education-section,
.included-section,
.promise-section,
.before-after {
  width: min(100% - (var(--page) * 2), var(--max));
  margin: 0 auto;
}

.announcement-bar {
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: var(--radius-small);
  background: #17331f;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
}

.announcement-bar span {
  margin-right: 10px;
  color: #d8efce;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pdp-hero {
  padding: clamp(28px, 4vw, 48px) 0 clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(22px, 3.6vw, 46px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  position: relative;
  min-height: clamp(460px, 52vw, 690px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 20%, rgba(79, 124, 69, 0.12), transparent 18rem),
    var(--surface);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  max-height: clamp(460px, 52vw, 690px);
  object-fit: contain;
  transition: opacity 260ms var(--ease-out), transform 420ms var(--ease-out);
}

.gallery-main.is-swapping img {
  opacity: 0.2;
  transform: scale(0.992);
}

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

.gallery-thumb {
  position: relative;
  padding: 0;
  height: clamp(96px, 11vw, 132px);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: rgba(79, 124, 69, 0.62);
}

.gallery-thumb.is-active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-dark);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.76);
}

.gallery-thumb:active {
  transform: scale(0.98);
}

.gallery-thumb img {
  height: 100%;
  object-fit: cover;
}

.purchase-box {
  position: sticky;
  top: 94px;
  padding: clamp(20px, 2.6vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 760;
}

.rating-line span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e5f3dc;
  color: var(--accent-dark);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.purchase-box h1 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(2.7rem, 4.4vw, 4.35rem);
  line-height: 0.96;
}

.product-subtitle {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.48;
}

.hero-trust-strip {
  margin-top: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.hero-trust-strip div {
  min-width: 0;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 2px 8px;
  align-content: start;
}

.hero-trust-strip div:first-child {
  padding-left: 0;
}

.hero-trust-strip div + div {
  border-left: 1px solid var(--line);
}

.hero-trust-strip span {
  grid-row: 1 / 3;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #e5f3dc;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

.hero-trust-strip strong,
.hero-trust-strip small {
  min-width: 0;
  line-height: 1.28;
}

.hero-trust-strip strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-trust-strip small {
  color: var(--muted);
  font-size: 0.74rem;
}

.benefit-list,
.plain-checks {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.benefit-list li,
.plain-checks li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.42;
}

.benefit-list span {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #e5f3dc;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
}

.stock-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-small);
  background: #eff7e9;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.stock-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-dark);
}

.offer-box {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.offer-box > p {
  color: var(--ink);
  font-weight: 900;
}

.offer-option {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fbfcf9;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.offer-option.is-selected {
  border-color: rgba(79, 124, 69, 0.62);
  background: #f1f8ec;
}

.offer-option input {
  accent-color: var(--accent-dark);
}

.offer-option strong,
.offer-option small {
  display: block;
  line-height: 1.35;
}

.offer-option strong em {
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #17331f;
  color: #d8efce;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.offer-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.85rem;
}

.offer-option b {
  font-size: 1.25rem;
}

.quantity-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quantity-row > span {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 880;
}

.quantity-stepper {
  min-width: 132px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcf9;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  overflow: hidden;
}

.quantity-stepper button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 1.16rem;
  font-weight: 900;
}

.quantity-stepper button:disabled {
  color: rgba(22, 32, 25, 0.28);
  cursor: not-allowed;
}

.quantity-stepper output {
  color: var(--ink);
  text-align: center;
  font-weight: 900;
}

.buy-button {
  width: 100%;
  margin-top: 14px;
  min-height: 54px;
  font-size: 1rem;
}

.checkout-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.mini-trust-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mini-trust-row span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
}

.checkout-trust-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.checkout-trust-list div {
  padding: 12px 13px;
  border-radius: var(--radius-small);
  background: #f7faf3;
  display: grid;
  gap: 3px;
}

.checkout-trust-list strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.checkout-trust-list span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.38;
}

.purchase-accordions {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.purchase-accordions details {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fbfcf9;
  overflow: hidden;
}

.purchase-accordions summary {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 860;
  cursor: pointer;
}

.purchase-accordions summary::after {
  content: "+";
  color: var(--accent-dark);
  font-weight: 900;
}

.purchase-accordions details[open] summary::after {
  content: "-";
}

.purchase-accordions p {
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.pdp-proof-band {
  padding: clamp(28px, 4.2vw, 46px);
  border-radius: var(--radius);
  background: #17331f;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.pdp-proof-band h2,
.story-copy h2,
.section-title-row h2,
.before-after-copy h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  font-weight: 900;
}

.pdp-proof-band p {
  margin-top: 14px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.62;
}

.proof-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-stats div {
  min-height: 116px;
  padding: 16px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  align-content: space-between;
}

.proof-stats dt,
.proof-stats dd {
  margin: 0;
}

.proof-stats dt {
  color: #d8efce;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
}

.proof-stats dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.3;
}

.product-details-section {
  padding-top: clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 4.5vw, 58px);
  align-items: start;
}

.details-copy {
  position: sticky;
  top: 94px;
}

.details-pill {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e5f3dc;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.details-copy h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1;
  font-weight: 900;
}

.details-copy p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.62;
}

.product-details-grid {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-details-grid div {
  min-height: 112px;
  padding: clamp(18px, 2.6vw, 24px);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 8px;
}

.product-details-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.product-details-grid .not-for-row {
  grid-column: 1 / -1;
  min-height: 92px;
  background: #f8faf5;
  border-bottom: 0;
  border-right: 0;
}

.product-details-grid dt,
.product-details-grid dd {
  margin: 0;
}

.product-details-grid dt {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-details-grid dd {
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.45;
}

.split-story {
  padding-top: clamp(42px, 7vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr);
  gap: clamp(22px, 4.5vw, 56px);
  align-items: center;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
}

.story-image img {
  height: clamp(380px, 46vw, 600px);
  object-fit: cover;
}

.story-copy p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.62;
}

.plain-checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.market-signals-section,
.education-section,
.included-section,
.promise-section,
.before-after {
  padding-top: clamp(42px, 7vw, 86px);
}

.section-title-row {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
}

.section-title-row p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.category-rating-card {
  margin-bottom: 12px;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(79, 124, 69, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(229, 243, 220, 0.92), rgba(255, 255, 255, 0.94));
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.rating-score {
  display: grid;
  gap: 6px;
}

.rating-stars {
  color: #d5792c;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.rating-score strong {
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 900;
  line-height: 0.96;
}

.rating-score small {
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.38;
}

.rating-takeaways {
  display: grid;
  gap: 12px;
}

.rating-takeaways p {
  max-width: 68ch;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.58;
}

.rating-takeaways ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.rating-takeaways li {
  display: flex;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.42;
}

.rating-takeaways li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.signal-grid,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.signal-grid article,
.promise-grid article {
  min-height: 214px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  align-content: start;
  gap: 14px;
}

.signal-grid article {
  background:
    linear-gradient(180deg, rgba(229, 243, 220, 0.72), rgba(255, 255, 255, 0.94));
}

.signal-grid span,
.promise-grid span {
  min-width: 48px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e5f3dc;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  justify-self: start;
}

.signal-grid h3,
.promise-grid h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}

.signal-grid p,
.promise-grid p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.education-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: clamp(24px, 4.5vw, 58px);
  align-items: start;
}

.education-copy h2,
.included-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1;
  font-weight: 900;
}

.education-copy p {
  margin-top: 14px;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.62;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-table > div + div {
  border-top: 1px solid var(--line);
}

.comparison-table span {
  padding: clamp(16px, 2.4vw, 24px);
  color: var(--ink);
  font-size: clamp(0.98rem, 1.16vw, 1.06rem);
  line-height: 1.45;
}

.comparison-table span + span {
  border-left: 1px solid var(--line);
  background: #f3f9ee;
}

.comparison-table [role="columnheader"] {
  background: #17331f;
  color: var(--white);
  font-weight: 900;
}

.comparison-table [role="columnheader"] + [role="columnheader"] {
  background: #2f5d35;
  color: var(--white);
}

.included-section {
  padding: clamp(24px, 4.6vw, 46px);
  border-radius: var(--radius);
  background: #17331f;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.included-image {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.included-image img {
  object-fit: cover;
}

.included-copy p,
.included-list span {
  color: rgba(255, 255, 255, 0.72);
}

.included-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.included-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 4px;
}

.included-list strong,
.included-list span {
  line-height: 1.38;
}

.included-list strong {
  color: var(--white);
  font-size: 1rem;
}

.included-list span {
  font-size: 0.92rem;
}

.promise-grid article {
  background: #eaf4e3;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.before-after-copy p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.before-after-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.before-after-panels figure {
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.before-after-panels img {
  height: clamp(260px, 30vw, 420px);
  object-fit: cover;
}

.before-after-panels figcaption {
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.35;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.35;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: 760;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(22, 32, 25, 0.25);
  text-underline-offset: 4px;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  width: min(920px, calc(100% - var(--page) * 2));
  margin: 0 auto;
  padding: clamp(92px, 12vw, 138px) 0 var(--space-xl);
}

.legal-hero {
  padding-bottom: clamp(24px, 5vw, 42px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 12ch;
  margin-top: 10px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.96;
}

.legal-hero p {
  max-width: 68ch;
  margin-top: var(--space-sm);
  color: var(--ink-soft);
  font-size: var(--text-lede);
  line-height: 1.58;
}

.legal-content {
  display: grid;
  gap: var(--space-md);
  padding-top: var(--space-lg);
}

.legal-content section,
.policy-form {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.legal-content h2,
.policy-form h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.legal-content p,
.legal-content li,
.policy-form p,
.policy-form label {
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: 1.64;
}

.legal-content ul {
  margin: var(--space-sm) 0 0;
  padding-left: 1.15rem;
}

.policy-form {
  display: grid;
  gap: var(--space-sm);
}

.policy-form label {
  display: grid;
  gap: 7px;
  font-weight: 760;
}

.policy-form input,
.policy-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

.policy-form input::placeholder,
.policy-form textarea::placeholder {
  color: rgba(65, 80, 70, 0.82);
}

.policy-form textarea {
  min-height: 132px;
  resize: vertical;
}

.track-order-main {
  width: min(1040px, calc(100% - var(--page) * 2));
}

.track-order-hero h1 {
  max-width: 10ch;
}

.track-order-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: start;
}

.track-steps {
  margin: var(--space-sm) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.track-steps li {
  padding: 16px;
  border: 1px solid rgba(79, 124, 69, 0.18);
  border-radius: var(--radius-small);
  background: rgba(245, 250, 241, 0.88);
  display: grid;
  gap: 4px;
}

.track-steps strong {
  color: var(--ink);
  font-size: 1rem;
}

.track-steps span {
  color: var(--ink-soft);
}

.mobile-sticky-cta {
  display: none;
}

.reveal-item {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .hero-copy > *,
  .hero-stage {
    animation: soft-rise 640ms var(--ease-out) backwards;
  }

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

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

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

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

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

  .hero-stage {
    animation-delay: 320ms;
  }

  .teaser-product-image,
  .kit-product-image,
  .proof-product-image {
    animation: product-photo-breathe 5.8s 700ms infinite var(--ease-in-out);
  }
}

@keyframes soft-rise {
  from {
    opacity: 1;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-photo-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.015);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: flex;
    justify-self: end;
    gap: 18px;
  }

  .section-grid,
  .problem-block,
  .kit,
  .buy-panel,
  .pdp-hero,
  .pdp-proof-band,
  .product-details-section,
  .split-story,
  .education-section,
  .included-section,
  .section-title-row,
  .before-after {
    grid-template-columns: 1fr;
  }

  .purchase-box,
  .details-copy {
    position: static;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  h1 {
    max-width: 12ch;
  }

  .hero-stage,
  .mechanism-visual {
    min-height: 540px;
  }

  .scene-grid,
  .reaction-strip {
    grid-template-columns: 1fr;
  }

  .scene-card,
  .reaction-strip article {
    min-height: 260px;
  }

  .kit-card {
    min-height: 500px;
  }
}

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

  .site-header {
    width: min(100% - 28px, var(--max));
    min-height: 78px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
  }

  .brand {
    min-height: 36px;
  }

  .nav-links {
    justify-self: center;
    gap: 22px;
    font-size: 12px;
  }

  .nav-links a {
    min-height: 30px;
  }

  .nav-cta {
    display: none;
  }

  .section-grid,
  .section-shell,
  .problem-block,
  .kit,
  .buy-panel,
  .announcement-bar,
  .pdp-hero,
  .pdp-proof-band,
  .product-details-section,
  .split-story,
  .market-signals-section,
  .education-section,
  .included-section,
  .promise-section,
  .before-after,
  .track-order-main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .announcement-bar {
    margin-top: 12px;
    text-align: left;
  }

  .track-order-grid {
    grid-template-columns: 1fr;
  }

  .pdp-hero {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .gallery-main {
    min-height: 360px;
  }

  .gallery-main img {
    max-height: 360px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-thumb {
    height: 84px;
  }

  .purchase-box {
    padding: 18px;
  }

  .purchase-box .rating-line {
    display: none;
  }

  .purchase-box h1 {
    margin-top: 0;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .product-subtitle {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-trust-strip,
  .mini-trust-row,
  .category-rating-card,
  .proof-stats,
  .product-details-section,
  .signal-grid,
  .promise-grid,
  .before-after-panels {
    grid-template-columns: 1fr;
  }

  .hero-trust-strip {
    margin-top: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: grid;
    gap: 0;
  }

  .hero-trust-strip div,
  .hero-trust-strip div:first-child {
    min-height: 72px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 3px 12px;
    align-content: center;
  }

  .hero-trust-strip div + div {
    border-left: 0;
    border-top: 0;
  }

  .hero-trust-strip span {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
    margin-top: 0;
    font-size: 14px;
  }

  .hero-trust-strip strong {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.16;
  }

  .hero-trust-strip small {
    display: block;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .benefit-list,
  .stock-note {
    display: none;
  }

  .checkout-note,
  .checkout-trust-list {
    display: none;
  }

  .signal-grid article,
  .promise-grid article {
    min-height: 0;
  }

  .category-rating-card {
    gap: 16px;
  }

  .rating-score strong {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .details-copy {
    position: static;
  }

  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .product-details-grid div:nth-child(odd) {
    border-right: 0;
  }

  .pdp-proof-band {
    padding: 24px;
  }

  .story-image img {
    height: 360px;
  }

  .included-section {
    padding: 22px;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
  }

  .comparison-table span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .buy-panel {
    margin-top: 0;
    margin-bottom: clamp(28px, 7vw, 42px);
    padding: 22px;
  }

  .buy-copy h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1;
  }

  h1 {
    font-size: clamp(2.85rem, 13.2vw, 4rem);
    line-height: 0.98;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-lede {
    font-size: 1.04rem;
    line-height: 1.56;
  }

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

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

  .scene-media {
    height: 190px;
  }

  .kit-card {
    min-height: auto;
    padding: 18px;
  }

  .kit-product {
    min-height: 260px;
  }

  .kit-list li {
    display: grid;
  }

  .kit-list span {
    max-width: none;
    text-align: left;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .mechanism-visual {
    min-height: 430px;
  }

  .section-shell,
  .mechanism,
  .safety,
  .kit {
    padding-top: clamp(56px, 14vw, 76px);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .mechanism-copy h2,
  .safety h2,
  .kit-copy h2 {
    font-size: clamp(2.1rem, 9.4vw, 3.35rem);
    line-height: 1.02;
  }

  .section-heading p:not(.eyebrow),
  .mechanism-copy p,
  .kit-copy p,
  .buy-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .problem-block {
    padding: 26px;
    gap: var(--space-sm);
  }

  .problem-line {
    font-size: clamp(2.15rem, 10.5vw, 3.4rem);
  }

  .preorder-teaser {
    padding: 18px;
    gap: var(--space-xs) var(--space-sm);
  }

  .teaser-product {
    width: 68px;
  }

  .teaser-copy strong {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .stage-note {
    max-width: 190px;
    font-size: 12px;
  }

  .bottom-note {
    right: 14px;
    bottom: 14px;
  }

  .top-note {
    top: 14px;
    left: 14px;
  }

  .compare-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .compare-table span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    display: grid;
    padding-bottom: 110px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    min-height: 70px;
    padding: 10px;
    border: 1px solid rgba(18, 22, 22, 0.16);
    border-radius: var(--radius);
    background: rgba(247, 248, 244, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(45, 58, 50, 0.2);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .mobile-sticky-cta span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.2;
  }

  .mobile-sticky-cta strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
  }

  .mobile-sticky-cta .button {
    min-width: 0;
    min-height: 50px;
    padding: 0 16px;
  }
}

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

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-main img {
    transition: none !important;
  }

}
