
:root {
  --mineral: #f7f8f5;
  --white: #ffffff;
  --mist: #ecefeb;
  --graphite: #171b18;
  --copy: #444b46;
  --muted: #69716b;
  --forest: #29483a;
  --forest-hover: #1f392d;
  --forest-soft: #dfe7e1;
  --red-light: #c8323d;
  --red-deep: #8c2730;
  --amazon-cta: #b42d39;
  --amazon-cta-hover: #92232c;
  --line: #d7ddd8;
  --focus: #1b4167;
  --max: 1280px;
  --gutter: 56px;
  --section-xl: 88px;
  --section-lg: 68px;
  --radius: 6px;
  --shadow-soft: 0 22px 70px rgba(19, 31, 24, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--copy);
  background: var(--mineral);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--graphite);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--graphite);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.15;
}

p {
  margin-bottom: 22px;
  text-wrap: pretty;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-xl);
}

.section-compact {
  padding-block: var(--section-lg);
}

.section-white {
  background: var(--white);
}

.section-mist {
  background: var(--mist);
}

.section-forest {
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest);
}

.section-forest h2,
.section-forest h3,
.section-forest strong {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-forest .eyebrow {
  color: #cbd9d0;
}

.lead {
  max-width: 700px;
  font-size: 21px;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > * {
  margin-bottom: 0;
}

.section-heading-compact {
  margin-bottom: 40px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
  transform: translateY(-2px);
}

.button-amazon,
.button-amazon:visited {
  color: var(--white);
  background: var(--amazon-cta);
  border-color: var(--amazon-cta);
  box-shadow: 0 10px 24px rgba(140, 39, 48, 0.2);
}

.button-amazon:hover {
  color: var(--white);
  background: var(--amazon-cta-hover);
  border-color: var(--amazon-cta-hover);
  box-shadow: 0 13px 28px rgba(140, 39, 48, 0.26);
}

.button-secondary {
  color: var(--graphite);
  background: transparent;
  border-color: #8b938d;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.button-light {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--graphite);
  background: var(--mist);
  border-color: var(--mist);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--graphite);
  background: var(--white);
  border-bottom: 1px solid rgba(215, 221, 216, 0.9);
}

.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 34px;
  align-items: center;
}

.brand-logo {
  width: 148px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #373d39;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.header-actions .button {
  min-height: 44px;
  min-width: 166px;
  padding-inline: 22px;
}

.site-header .button-amazon,
.site-header .button-amazon:visited,
.site-header .button-amazon:hover {
  color: var(--white);
}

.menu-button,
.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--mist);
}

.home-hero picture,
.home-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.03) brightness(0.97);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.99) 0%, rgba(247, 248, 245, 0.93) 28%, rgba(247, 248, 245, 0.58) 45%, rgba(247, 248, 245, 0.04) 68%),
    linear-gradient(0deg, rgba(23, 27, 24, 0.12) 0%, rgba(23, 27, 24, 0) 36%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero-copy .lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #363c38;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: #555d57;
  font-size: 13px;
}

.hero-note span + span::before {
  margin-right: 18px;
  color: #8f9791;
  content: "/";
}

.proof-strip {
  color: var(--white);
  background: var(--graphite);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px 24px 0;
}

.proof-item + .proof-item {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item strong {
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.proof-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.product-reveal {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.7fr);
  gap: 76px;
  align-items: center;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 38px 24px;
  background: linear-gradient(145deg, #ffffff 0%, #eef1ed 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-stage::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 5px;
  content: "";
  background: var(--red-light);
}

.product-stage img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.product-stage figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.product-facts {
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.product-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-facts dd {
  color: var(--graphite);
  font-weight: 600;
}

.format-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 28px;
  padding: 16px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.format-brief strong {
  color: var(--forest);
}

.routine-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.routine-video {
  min-width: 0;
  margin: 0;
}

.routine-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--graphite);
  object-fit: cover;
}

.routine-video figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.routine-copy h2 {
  font-size: 40px;
}

.routine-benefits {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.routine-benefits article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.routine-benefits article > span {
  color: var(--red-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
}

.routine-benefits h3 {
  margin-bottom: 3px;
  font-size: 22px;
}

.routine-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.format-item {
  min-height: 300px;
  padding: 34px 32px 30px 0;
  border-bottom: 1px solid var(--line);
}

.format-item + .format-item {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.format-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: var(--forest);
  border: 1px solid #aab5ad;
  border-radius: 50%;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
}

.format-item[data-featured="true"] .format-mark {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.format-item p {
  color: var(--muted);
  font-size: 15px;
}

.scenario-stack {
  display: grid;
  gap: 0;
}

.scenario {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.scenario:nth-child(even) .scenario-media {
  order: 2;
}

.scenario-media {
  min-height: 540px;
  overflow: hidden;
}

.scenario-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(7vw, 56px);
}

.scenario-copy p:not(.eyebrow) {
  max-width: 560px;
}

.scenario-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.scenario-index::before {
  width: 38px;
  height: 1px;
  content: "";
  background: var(--red-light);
}

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

.evidence-item {
  min-width: 0;
  margin: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.evidence-item:first-child {
  grid-column: 1 / -1;
}

.evidence-item img {
  width: 100%;
  height: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
}

.evidence-item:first-child img {
  height: auto;
  min-height: 0;
  aspect-ratio: 1800 / 535;
  object-fit: contain;
}

.evidence-item figcaption {
  min-height: 112px;
  padding: 20px 2px 18px;
}

.evidence-item strong,
.evidence-item span {
  display: block;
}

.evidence-item strong {
  color: var(--graphite);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.evidence-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

.evidence-grid-compact .evidence-item img {
  height: 260px;
  aspect-ratio: 16 / 10;
}

.evidence-grid-compact .evidence-item:first-child img {
  height: auto;
  aspect-ratio: 1800 / 535;
}

.evidence-grid-compact .evidence-item figcaption {
  min-height: 94px;
}

.evidence-controller img {
  object-fit: contain;
  background: var(--mineral);
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.setup-step {
  min-width: 0;
  padding: 28px 24px 0 0;
}

.setup-step + .setup-step {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.setup-step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.setup-step span {
  display: block;
  margin-top: 22px;
  color: var(--red-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
}

.setup-step h3 {
  margin-top: 6px;
  font-size: 23px;
}

.setup-step p {
  color: var(--muted);
  font-size: 13px;
}

.video-band {
  color: rgba(255, 255, 255, 0.76);
  background: var(--graphite);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.video-layout h2 {
  color: var(--white);
}

.video-frame {
  margin: 0;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #090b09;
  object-fit: cover;
}

.video-frame figcaption {
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.45fr);
  gap: 88px;
  align-items: end;
}

.review-layout blockquote {
  margin-bottom: 0;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: 36px;
  line-height: 1.35;
}

.review-meta {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.section-forest .text-link {
  color: var(--white);
}

.purchase-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 84px;
  align-items: start;
}

.review-proof blockquote {
  margin-bottom: 34px;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  line-height: 1.34;
}

.review-proof h2 {
  color: var(--white);
  font-size: 38px;
}

.review-theme-list {
  margin: 28px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.review-theme-list a {
  display: grid;
  grid-template-columns: 92px minmax(180px, 0.72fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 15px 0;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.review-theme-list a:hover span {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.review-theme-list strong {
  color: #d9e4dc;
  font-size: 13px;
}

.review-theme-list span {
  color: var(--white);
  font-weight: 600;
}

.review-theme-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.review-proof .featured-review {
  margin-bottom: 26px;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.34);
  font-size: 24px;
}

.review-proof .review-meta {
  max-width: 380px;
}

.purchase-support {
  padding-left: 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.purchase-support h2 {
  color: var(--white);
  font-size: 38px;
}

.support-points {
  margin: 28px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.support-points > div {
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.support-points span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.support-review-link {
  margin-top: 14px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}

.trust-list {
  border-top: 1px solid var(--line);
}

.trust-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.trust-number {
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
}

.trust-list strong {
  color: var(--graphite);
}

.trust-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.learn-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.learn-link {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 26px 0;
  color: var(--graphite);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.learn-link + .learn-link {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.learn-link span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.learn-link strong {
  max-width: 320px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.learn-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 84px;
  align-items: start;
}

.learn-links-stacked {
  grid-template-columns: 1fr;
}

.learn-links-stacked .learn-link {
  min-height: 126px;
  padding: 22px 0;
  border-left: 0;
}

.learn-links-stacked .learn-link + .learn-link {
  padding-left: 0;
  border-left: 0;
}

.learn-links-stacked .learn-link strong {
  max-width: none;
  font-size: 24px;
}

.final-cta {
  color: var(--white);
  background: var(--forest);
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  color: inherit;
}

.final-cta h2 {
  max-width: 800px;
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 68px 0 32px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--graphite);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(130px, 0.55fr));
  gap: 54px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 380px;
}

.footer-column strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-column a {
  display: block;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* Product page */
.product-hero {
  padding: 66px 0 56px;
  background: var(--mineral);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  gap: 70px;
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.gallery-main {
  background: var(--white);
  border: 1px solid var(--line);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

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

.gallery-thumb {
  min-width: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border: 2px solid var(--forest);
}

.product-decision {
  position: sticky;
  top: 104px;
}

.product-kicker {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-decision h1 {
  font-size: 54px;
}

.product-decision .lead {
  color: #4c544e;
}

.decision-proof {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.decision-proof > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.decision-proof dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.decision-proof dd {
  color: var(--graphite);
  font-weight: 600;
}

.amazon-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.support-strip {
  color: rgba(255, 255, 255, 0.7);
  background: var(--graphite);
}

.support-strip-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.support-strip-grid > div {
  padding: 14px 30px 14px 0;
  font-size: 13px;
}

.support-strip-grid > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.support-strip-grid strong {
  color: var(--white);
}

.benefit-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.benefit-column {
  min-height: 220px;
  padding: 28px 34px 24px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-column + .benefit-column {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.benefit-column span {
  display: block;
  margin-bottom: 32px;
  color: var(--red-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
}

.coverage-layout,
.material-layout,
.controls-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 80px;
  align-items: center;
}

.material-layout {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.08fr);
}

.coverage-media,
.material-media,
.controls-media {
  margin: 0;
  overflow: hidden;
}

.coverage-media img,
.material-media img,
.controls-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.coverage-media figcaption,
.material-media figcaption,
.controls-media figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.material-points,
.control-points {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.material-points > div,
.control-points > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.material-points strong,
.control-points strong {
  color: var(--graphite);
}

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

.proof-panel {
  min-width: 0;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-panel-large {
  grid-column: span 8;
}

.proof-panel-facts {
  grid-column: span 4;
  padding: 34px;
}

.proof-panel-detail {
  grid-column: span 6;
}

.proof-panel img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
}

.proof-panel-large img {
  aspect-ratio: 16 / 9;
}

.proof-panel-detail img {
  height: 280px;
  object-fit: cover;
}

.proof-panel-controller img {
  object-fit: contain;
  background: var(--mineral);
}

.proof-panel figcaption {
  display: grid;
  gap: 5px;
  padding: 20px 22px 22px;
}

.proof-panel figcaption strong {
  color: var(--graphite);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.proof-panel figcaption span {
  color: var(--muted);
  font-size: 13px;
}

.proof-panel-facts h3 {
  font-size: 29px;
}

.proof-panel-facts dl {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.proof-panel-facts dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.proof-panel-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-panel-facts dd {
  color: var(--graphite);
  font-weight: 600;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  gap: 66px;
  align-items: start;
}

.experience-proof h2 {
  color: var(--white);
  font-size: 38px;
}

.experience-proof blockquote {
  margin: 28px 0;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  line-height: 1.35;
}

.experience-review-themes {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.experience-review-themes a {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) auto;
  gap: 3px 16px;
  padding: 13px 0;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.experience-review-themes a:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.experience-review-themes strong {
  color: var(--white);
}

.experience-review-themes span {
  color: #d9e4dc;
  font-size: 12px;
}

.experience-review-themes p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.experience-proof .experience-featured-quote {
  margin: 24px 0 20px;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.34);
  font-size: 22px;
}

.experience-support {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.experience-support span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.specs-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.specs-faq-layout h2 {
  font-size: 38px;
}

.spec-grid-compact {
  margin-bottom: 0;
}

.spec-grid-compact > div {
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding-block: 14px;
}

.spec-grid-compact > div:nth-child(odd) {
  padding-right: 22px;
}

.spec-grid-compact > div:nth-child(even) {
  padding-left: 22px;
}

.faq-column {
  position: sticky;
  top: 104px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #bac1bc;
}

.spec-grid > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid #bac1bc;
}

.spec-grid > div:nth-child(odd) {
  padding-right: 34px;
}

.spec-grid > div:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid #bac1bc;
}

.spec-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.spec-grid dd {
  color: var(--graphite);
}

.faq-list {
  max-width: 940px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--graphite);
  cursor: pointer;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--forest);
  content: "+";
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 24px;
}

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

.faq-list details p {
  max-width: 760px;
  padding-bottom: 26px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  :root {
    --gutter: 32px;
    --section-xl: 76px;
  }

  .nav-shell {
    grid-template-columns: 140px 1fr auto;
    gap: 22px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .home-hero {
    min-height: 650px;
  }

  .product-reveal,
  .coverage-layout,
  .material-layout,
  .controls-layout {
    gap: 48px;
  }

  .routine-showcase,
  .purchase-proof,
  .discovery-grid,
  .experience-layout,
  .specs-faq-layout {
    gap: 46px;
  }

  .scenario-copy {
    padding: 64px 42px;
  }

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

  .evidence-item:first-child {
    grid-column: 1 / -1;
  }

  .evidence-item:first-child img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1800 / 535;
  }

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

  .setup-step:nth-child(4) {
    border-left: 0;
  }

  .setup-step:nth-child(n + 4) {
    padding-top: 38px;
  }

  .product-hero-grid {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 20px;
    --section-xl: 56px;
    --section-lg: 52px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 43px;
    line-height: 1.04;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 25px;
  }

  .lead {
    font-size: 18px;
  }

  .nav-shell {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 128px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--graphite);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button span,
  .menu-button span::before,
  .menu-button span::after {
    width: 23px;
    height: 2px;
    display: block;
    content: "";
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button span {
    position: relative;
  }

  .menu-button span::before {
    position: absolute;
    top: -7px;
  }

  .menu-button span::after {
    position: absolute;
    top: 7px;
  }

  .menu-button[aria-expanded="true"] span {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 64px 0 0;
    z-index: 99;
    display: grid;
    align-content: start;
    padding: 28px 20px;
    background: var(--mineral);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 58px;
    display: flex;
    align-items: center;
    color: var(--graphite);
    border-bottom: 1px solid var(--line);
    font-family: "Newsreader", Georgia, serif;
    font-size: 25px;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 28px;
    color: var(--white);
    font-family: "Instrument Sans", Arial, sans-serif;
    font-size: 15px;
  }

  .section-heading,
  .product-reveal,
  .scenario,
  .video-layout,
  .review-layout,
  .trust-layout,
  .final-cta-layout,
  .product-hero-grid,
  .coverage-layout,
  .material-layout,
  .controls-layout,
  .routine-showcase,
  .purchase-proof,
  .discovery-grid,
  .experience-layout,
  .specs-faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .home-hero {
    min-height: 0;
    display: block;
    overflow: visible;
    background: var(--mineral);
  }

  .home-hero picture,
  .home-hero picture img {
    position: static;
  }

  .home-hero picture {
    display: block;
    height: 350px;
    overflow: hidden;
    background: var(--mist);
  }

  .home-hero picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.02);
  }

  .home-hero::after {
    display: none;
  }

  .hero-shell {
    width: auto;
    padding: 42px 20px 46px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy .lead {
    margin-bottom: 28px;
  }

  .hero-copy .button-row {
    display: grid;
  }

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

  .hero-note {
    display: none;
  }

  .hero-note span + span::before {
    display: none;
  }

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

  .proof-item {
    min-height: 112px;
    padding: 20px 18px 20px 0;
  }

  .proof-item + .proof-item {
    padding-left: 18px;
  }

  .proof-item:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-item strong {
    font-size: 21px;
  }

  .product-reveal,
  .coverage-layout,
  .material-layout,
  .controls-layout {
    gap: 36px;
  }

  .routine-showcase,
  .purchase-proof,
  .discovery-grid,
  .experience-layout,
  .specs-faq-layout {
    gap: 38px;
  }

  .routine-copy h2,
  .purchase-support h2,
  .experience-proof h2,
  .specs-faq-layout h2 {
    font-size: 32px;
  }

  .format-brief {
    display: grid;
    gap: 7px;
  }

  .product-stage {
    padding: 24px 10px;
  }

  .product-stage figcaption {
    display: grid;
    gap: 4px;
  }

  .format-grid,
  .benefit-columns,
  .learn-links {
    grid-template-columns: 1fr;
  }

  .format-item,
  .benefit-column,
  .learn-link {
    min-height: 0;
    padding: 28px 0;
    border-left: 0 !important;
  }

  .format-item + .format-item,
  .benefit-column + .benefit-column,
  .learn-link + .learn-link {
    padding-left: 0;
  }

  .format-mark {
    margin-bottom: 24px;
  }

  .benefit-column span {
    margin-bottom: 24px;
  }

  .scenario:nth-child(even) .scenario-media {
    order: 0;
  }

  .scenario-media {
    min-height: 360px;
  }

  .scenario-copy {
    padding: 48px 20px 58px;
  }

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

  .evidence-grid-compact {
    grid-template-columns: 1fr;
  }

  .evidence-item:first-child {
    grid-column: auto;
  }

  .evidence-item img {
    height: 250px;
    aspect-ratio: 4 / 3;
  }

  .evidence-item:first-child img {
    height: auto;
    aspect-ratio: 1800 / 535;
  }

  .evidence-grid-compact .evidence-item img,
  .evidence-grid-compact .evidence-item:first-child img {
    height: 240px;
    aspect-ratio: 16 / 10;
  }

  .evidence-grid-compact .evidence-item:first-child img,
  .evidence-grid-compact .evidence-controller img {
    object-fit: contain;
  }

  .purchase-support {
    padding: 38px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .review-proof blockquote {
    font-size: 28px;
  }

  .review-theme-list a {
    grid-template-columns: 76px 1fr;
    gap: 7px 14px;
  }

  .review-theme-list p {
    grid-column: 2;
  }

  .review-proof .featured-review {
    font-size: 22px;
  }

  .experience-review-themes a {
    grid-template-columns: 1fr;
  }

  .experience-review-themes p {
    grid-column: auto;
  }

  .learn-links-stacked .learn-link {
    min-height: 0;
  }

  .setup-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .setup-step,
  .setup-step:nth-child(n + 4) {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 0 22px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .setup-step img {
    grid-row: 1 / span 3;
    align-self: start;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .setup-step span,
  .setup-step h3,
  .setup-step p {
    grid-column: 2;
  }

  .setup-step span {
    margin-top: 0;
  }

  .setup-step p {
    margin-bottom: 0;
  }

  .review-layout {
    gap: 46px;
  }

  .review-layout blockquote {
    font-size: 29px;
  }

  .final-cta-layout {
    gap: 28px;
  }

  .final-cta-layout .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .product-hero {
    padding-top: 36px;
  }

  .product-decision {
    position: static;
    display: flex;
    flex-direction: column;
  }

  .product-decision h1 {
    font-size: 43px;
  }

  .gallery-thumbs {
    gap: 7px;
  }

  .gallery-main img {
    aspect-ratio: 16 / 10;
  }

  .product-decision .product-kicker { order: 1; }
  .product-decision h1 { order: 2; }
  .product-decision .lead { order: 3; }
  .product-decision > .button { order: 4; align-self: flex-start; }
  .product-decision .amazon-note { order: 5; }
  .product-decision .decision-proof { order: 6; }

  .decision-proof > div {
    grid-template-columns: 145px 1fr;
  }

  .support-strip-grid {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .support-strip-grid > div,
  .support-strip-grid > div + div {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .support-strip-grid > div:first-child {
    border-top: 0;
  }

  .material-media {
    order: 0;
  }

  .material-layout > div:first-child {
    order: 1;
  }

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

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

  .proof-panel-large,
  .proof-panel-facts,
  .proof-panel-detail {
    grid-column: auto;
  }

  .proof-panel-large img,
  .proof-panel-detail img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .proof-panel-controller img {
    height: 280px;
    object-fit: contain;
  }

  .faq-column {
    position: static;
  }

  .spec-grid > div,
  .spec-grid > div:nth-child(odd),
  .spec-grid > div:nth-child(even) {
    grid-template-columns: 135px 1fr;
    padding: 17px 0;
    border-left: 0;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 21px;
  }
}

@media (max-width: 420px) {
  .home-hero picture {
    height: 350px;
  }

  .proof-item {
    padding-right: 12px;
  }

  .proof-item + .proof-item {
    padding-left: 12px;
  }

  .proof-item strong {
    font-size: 19px;
  }

  .setup-step,
  .setup-step:nth-child(n + 4) {
    grid-template-columns: 110px 1fr;
    gap: 0 16px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Production canvas integration */
body.rp-v2-canvas {
  margin: 0;
  min-width: 320px;
}

body.rp-v2-canvas .rp-v2-release-marker {
  display: none !important;
}

body.rp-v2-canvas.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.rp-v2-canvas.admin-bar .site-header {
    top: 46px;
  }
}
