:root {
  color-scheme: light;
  --bg: #f6efe3;
  --bg-deep: #ece0cf;
  --surface: rgba(255, 252, 246, 0.84);
  --surface-solid: #fffaf1;
  --ink: #241f18;
  --ink-muted: #6e6355;
  --line: rgba(72, 58, 39, 0.15);
  --line-strong: rgba(72, 58, 39, 0.28);
  --mint: #2e917d;
  --mint-deep: #176456;
  --mint-soft: #dff2eb;
  --amber: #c07b27;
  --amber-deep: #74410d;
  --amber-soft: #f7e0ba;
  --cream: #fff8eb;
  --shadow-soft: 0 22px 70px rgba(63, 47, 25, 0.12);
  --shadow-card: 0 18px 44px rgba(67, 50, 24, 0.14);
  --shadow-button: 0 14px 30px rgba(36, 31, 24, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --serif: Georgia, Cambria, "Times New Roman", serif;
  --sans: Aptos, "Segoe UI", Candara, Calibri, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(circle at 9% 10%, rgba(46, 145, 125, 0.17), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(192, 123, 39, 0.18), transparent 28rem),
    linear-gradient(145deg, #fbf3e7 0%, var(--bg) 45%, #efe3d0 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(66, 50, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 50, 26, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 34%),
    repeating-linear-gradient(90deg, rgba(36, 31, 24, 0.015) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(46, 145, 125, 0.82);
  outline-offset: 4px;
}

::selection {
  color: #fffaf1;
  background: var(--mint-deep);
}

.container {
  width: min(100% - clamp(32px, 6vw, 80px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 12px 16px;
  color: #fff;
  background: var(--mint-deep);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 9px;
  background: rgba(246, 239, 227, 0.82);
  border-bottom: 1px solid rgba(72, 58, 39, 0.1);
  box-shadow: 0 18px 50px rgba(63, 47, 25, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(72, 58, 39, 0.11);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(67, 50, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffaf1;
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--mint-deep), #5e7c34 48%, var(--amber));
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 12px 28px rgba(23, 100, 86, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(10px, 2.4vw, 30px);
  color: rgba(36, 31, 24, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 2px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--mint), var(--amber));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  flex: 0 0 auto;
  padding: 0 18px;
  color: #fffaf1;
  font-size: 0.9rem;
  background: #241f18;
  box-shadow: 0 13px 30px rgba(36, 31, 24, 0.18);
}

.button {
  padding: 13px 20px;
  font-size: 0.96rem;
}

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

.button-primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--mint-deep), var(--mint));
  box-shadow: 0 16px 34px rgba(23, 100, 86, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(23, 100, 86, 0.28);
}

.button-primary.amber {
  background: linear-gradient(135deg, var(--amber-deep), var(--amber));
  box-shadow: 0 16px 34px rgba(116, 65, 13, 0.21);
}

.button-primary.amber:hover {
  box-shadow: 0 20px 42px rgba(116, 65, 13, 0.26);
}

.button-primary.mint {
  background: linear-gradient(135deg, var(--mint-deep), #38a08b);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid var(--line);
}

.button-ghost:hover,
.button-secondary:hover {
  background: rgba(255, 250, 241, 0.9);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-button);
}

.button-secondary {
  color: var(--mint-deep);
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid rgba(46, 145, 125, 0.22);
}

.button-secondary.amber-outline {
  color: var(--amber-deep);
  border-color: rgba(192, 123, 39, 0.25);
}

.button-link,
.text-link {
  min-height: 44px;
  padding-inline: 0;
  color: var(--mint-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.amber-link,
.amber-text {
  color: var(--amber-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 0;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(760px, 90vh, 980px);
  padding: clamp(58px, 7vw, 92px) 0 clamp(58px, 8vw, 118px);
}

.hero::before {
  position: absolute;
  inset: 10% auto auto 50%;
  width: min(84vw, 940px);
  height: min(84vw, 940px);
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 250, 241, 0.84) 0%, rgba(255, 250, 241, 0.42) 42%, transparent 68%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.hero-copy,
.split-copy,
.section-heading {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.15rem, 8vw, 6.55rem);
}

h2 {
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.hero-text {
  max-width: 64ch;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

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

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

.hero-offer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  gap: 8px;
  margin-top: 14px;
}

.mini-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 0;
  padding: 9px 14px;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid rgba(72, 58, 39, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(67, 50, 24, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(67, 50, 24, 0.1);
}

.mini-offer-mint {
  color: var(--mint-deep);
  background: rgba(223, 242, 235, 0.52);
  border-color: rgba(46, 145, 125, 0.25);
}

.mini-offer-amber {
  color: var(--amber-deep);
  background: rgba(247, 224, 186, 0.52);
  border-color: rgba(192, 123, 39, 0.28);
}

.hero-disclosure {
  max-width: 56ch;
  margin: 14px 0 0;
  color: rgba(36, 31, 24, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-copy,
.hero-product-cta,
.hero-note-disclosure,
.mobile-trust-list {
  display: none;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  color: rgba(36, 31, 24, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid rgba(72, 58, 39, 0.11);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(67, 50, 24, 0.06);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  min-height: clamp(560px, 52vw, 670px);
  gap: clamp(16px, 2.2vw, 24px);
  padding: clamp(18px, 3vw, 34px) 0;
}

.orb {
  position: absolute;
  z-index: -1;
  filter: blur(4px);
  border-radius: 50%;
  opacity: 0.82;
}

.orb-mint {
  top: 6%;
  right: 22%;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(113, 206, 184, 0.52), transparent 68%);
}

.orb-gold {
  right: -8%;
  bottom: 12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(215, 149, 55, 0.35), transparent 68%);
}

.floating-card,
.glass-panel,
.product-card,
.benefit-board,
.comparison-table-wrap,
.trust-cards article,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(72, 58, 39, 0.12);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.floating-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(148px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  width: min(100%, 450px);
  gap: 12px 18px;
  overflow: hidden;
  padding: clamp(16px, 3vw, 22px);
  border-radius: var(--radius-xl);
}

.floating-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 46%, rgba(255, 250, 241, 0.28));
  opacity: 0.72;
}

.floating-card > * {
  position: relative;
}

.floating-card img {
  width: 100%;
  height: clamp(160px, 16vw, 212px);
  padding: clamp(8px, 1.4vw, 12px);
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.72), rgba(223, 242, 235, 0.5));
  border: 1px solid rgba(46, 145, 125, 0.14);
  border-radius: 24px;
  filter: drop-shadow(0 18px 24px rgba(36, 31, 24, 0.16));
}

.floating-card > div {
  margin-top: 0;
}

.floating-card .product-tag {
  grid-column: 1 / -1;
}

.floating-card h2 {
  overflow-wrap: normal;
  font-family: var(--serif);
  font-size: clamp(1.62rem, 2.3vw, 2.12rem);
}

.floating-card p {
  margin: 8px 0 0;
  color: var(--ink-muted);
}

.floating-card-main {
  z-index: 2;
  grid-column: 1;
  justify-self: start;
  transform: translateX(6px) rotate(-1.1deg);
}

.floating-card-side {
  z-index: 2;
  grid-column: 1;
  justify-self: end;
  transform: translateX(-6px) rotate(1.1deg);
}

.floating-card-side img {
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.72), rgba(247, 224, 186, 0.52));
  border-color: rgba(192, 123, 39, 0.16);
}

.product-tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  color: var(--mint-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--mint-soft);
  border: 1px solid rgba(46, 145, 125, 0.16);
  border-radius: 999px;
}

.product-tag.amber,
.vigotrix-card .product-tag {
  color: var(--amber-deep);
  background: var(--amber-soft);
  border-color: rgba(192, 123, 39, 0.18);
}

.hero-note {
  position: relative;
  z-index: 3;
  grid-column: 1;
  justify-self: center;
  display: grid;
  max-width: 360px;
  gap: 4px;
  margin-top: 2px;
  padding: 16px 18px;
  text-align: center;
  border-radius: 22px;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.hero-note span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.section {
  padding: clamp(68px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 60px);
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading p:not(.eyebrow),
.split-copy > p,
.footer-grid p,
.faq-intro p {
  color: var(--ink-muted);
}

.section-heading p:not(.eyebrow) {
  max-width: 65ch;
  margin: 20px auto 0;
  font-size: 1.04rem;
}

.section-heading.align-left p:not(.eyebrow) {
  margin-inline: 0;
}

.product-showcase {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 3vw, 30px);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  min-width: 0;
  height: 100%;
  padding: clamp(18px, 3vw, 30px);
  border-radius: var(--radius-xl);
}

.product-card-vigotrix {
  background: rgba(255, 248, 235, 0.86);
}

.framed-media {
  position: relative;
  display: grid;
  min-height: 0;
  height: clamp(300px, 29vw, 356px);
  place-items: center;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 1.28;
  background: linear-gradient(135deg, rgba(46, 145, 125, 0.18), rgba(255, 250, 241, 0.6));
  border: 1px solid rgba(46, 145, 125, 0.16);
  border-radius: 26px;
}

.framed-media::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 250, 241, 0.7);
  border-radius: 20px;
}

.framed-media img {
  width: 100%;
  height: 100%;
  padding: clamp(18px, 3.4vw, 30px);
  object-fit: contain;
  object-position: center;
  background: rgba(255, 250, 241, 0.5);
}

.product-card-vigotrix .framed-media img {
  object-position: center;
}

.amber-frame {
  background: linear-gradient(135deg, rgba(192, 123, 39, 0.2), rgba(255, 250, 241, 0.7));
  border-color: rgba(192, 123, 39, 0.2);
}

.product-content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-self: stretch;
}

.product-content h3 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.product-content p {
  margin: 18px 0 0;
  color: var(--ink-muted);
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(36, 31, 24, 0.84);
}

.check-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background:
    linear-gradient(135deg, transparent 45%, #fff 46% 57%, transparent 58%) 48% 46% / 68% 68% no-repeat,
    var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(46, 145, 125, 0.12);
}

.amber-check li::before {
  background:
    linear-gradient(135deg, transparent 45%, #fff 46% 57%, transparent 58%) 48% 46% / 68% 68% no-repeat,
    var(--amber);
  box-shadow: 0 0 0 5px rgba(192, 123, 39, 0.12);
}

.card-actions {
  align-items: center;
  margin-top: 26px;
}

.product-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
}

.product-card .card-actions .button {
  min-height: 54px;
  padding-inline: 16px;
}

.split-section {
  display: grid;
  gap: clamp(70px, 10vw, 132px);
  padding-top: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-grid.reverse .split-copy {
  order: 2;
}

.split-copy > p {
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.ingredient-panel {
  padding: 18px;
  margin: 26px 0;
  background: rgba(223, 242, 235, 0.62);
  border: 1px solid rgba(46, 145, 125, 0.15);
  border-radius: 22px;
}

.ingredient-panel strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.ingredient-panel p {
  margin: 0;
  color: var(--ink-muted);
}

.amber-panel {
  background: rgba(247, 224, 186, 0.62);
  border-color: rgba(192, 123, 39, 0.18);
}

.benefit-board {
  overflow: hidden;
  min-width: 0;
  border-radius: var(--radius-xl);
}

.benefit-board > img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: rgba(255, 250, 241, 0.62);
}

.mint-board > img {
  aspect-ratio: 1;
}

.amber-board > img {
  aspect-ratio: 2.6;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(72, 58, 39, 0.1);
  border-top: 1px solid rgba(72, 58, 39, 0.1);
}

.benefit-cards article {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(255, 250, 241, 0.78);
}

.benefit-cards h3 {
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.4vw, 1.72rem);
}

.benefit-cards p {
  margin: 10px 0 0;
  color: var(--ink-muted);
}

.comparison-section {
  position: relative;
  padding-top: 0;
}

.comparison-table-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 250, 241, 0.66);
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.comparison-table th,
.comparison-table td {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(72, 58, 39, 0.11);
}

.comparison-table thead th {
  color: #fffaf1;
  background: linear-gradient(135deg, #241f18, #3d3225);
}

.comparison-table tbody th {
  width: 22%;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.comparison-table tbody td {
  color: var(--ink-muted);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.transparency-section {
  padding-top: 0;
}

.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(28px, 5vw, 76px);
}

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

.trust-cards article {
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  border-radius: 26px;
}

.trust-cards span {
  display: inline-block;
  margin-bottom: 30px;
  color: rgba(36, 31, 24, 0.35);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 0.8;
}

.trust-cards h3 {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.trust-cards p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.faq-intro h2 {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
}

.faq-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 62px;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "+";
  color: #fffaf1;
  background: var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item.is-open button::after,
.faq-item button[aria-expanded="true"]::after {
  background: var(--mint-deep);
  transform: translateY(-50%) rotate(45deg);
}

.faq-panel {
  padding: 0 22px 22px;
}

.faq-panel p {
  margin: 0;
  color: var(--ink-muted);
}

.js .faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding-block: 0;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 160ms ease, padding 220ms ease;
}

.js .faq-panel > p {
  overflow: hidden;
}

.js .faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
  opacity: 1;
}

.site-footer {
  padding: 54px 0;
  background: #211c16;
  color: #fff7e9;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-brand strong,
.footer-disclaimer strong {
  color: #fff7e9;
}

.footer-brand small,
.footer-grid p {
  color: rgba(255, 247, 233, 0.78);
}

.footer-grid p {
  max-width: 72ch;
  margin: 18px 0 0;
}

.final-cta-section {
  padding-top: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(46, 145, 125, 0.2), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(192, 123, 39, 0.22), transparent 22rem),
    rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(72, 58, 39, 0.13);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.final-cta h2 {
  max-width: 860px;
  margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
  max-width: 66ch;
  margin: 18px auto 0;
  color: var(--ink-muted);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.final-legal {
  color: rgba(36, 31, 24, 0.62) !important;
  font-size: 0.84rem;
  font-weight: 700;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .transparency-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-strip {
    justify-content: center;
  }

  .hero-offer-actions,
  .hero-disclosure {
    margin-inline: auto;
  }

  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

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

  .product-card {
    grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.2fr);
  }

  .split-grid.reverse .split-copy {
    order: initial;
  }

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

  .faq-intro h2 {
    position: static;
  }
}

@media (max-width: 860px) {
  .header-shell {
    min-height: 60px;
    padding-right: 8px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    order: 3;
  }

  .js .nav-toggle {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    order: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    flex: 1 0 100%;
    gap: 6px;
    padding: 8px;
    background: rgba(255, 250, 241, 0.66);
    border: 1px solid rgba(72, 58, 39, 0.12);
    border-radius: 20px;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: auto;
    flex: none;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 250, 241, 0.96);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(46, 145, 125, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

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

  .framed-media {
    height: clamp(260px, 48vw, 360px);
    aspect-ratio: 1.35;
  }

  .trust-cards,
  .benefit-cards {
    grid-template-columns: 1fr;
  }
}

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

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding-block: 7px;
  }

  .header-shell {
    min-height: 54px;
    padding: 6px 8px 6px 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  h1 {
    max-width: 8.4ch;
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 0.94;
  }

  .hero-text {
    max-width: 34ch;
    margin-top: 14px;
    font-size: clamp(0.96rem, 3.8vw, 1.06rem);
    line-height: 1.52;
  }

  .hero-offer-actions {
    display: none;
  }

  .hero-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button-link {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 390px;
    gap: 10px;
    margin: 22px auto 0;
  }

  .hero-actions .button {
    width: auto;
    min-height: 48px;
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .hero-disclosure,
  .trust-strip {
    display: none;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 460px;
    min-height: auto;
    gap: 12px;
    margin-inline: auto;
    padding: 0;
  }

  .floating-card-main,
  .floating-card-side,
  .hero-note {
    grid-column: 1;
    margin-top: 0;
  }

  .floating-card,
  .hero-note {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .floating-card {
    display: grid;
    grid-template-areas:
      "media tag"
      "media copy"
      "media cta";
    grid-template-columns: minmax(106px, 31%) minmax(0, 1fr);
    align-items: center;
    height: auto;
    gap: 8px 14px;
    padding: 16px;
    border-radius: 26px;
  }

  .floating-card > div {
    grid-area: copy;
    margin-top: 0;
  }

  .floating-card .product-tag {
    grid-area: tag;
    grid-column: auto;
    align-self: end;
  }

  .floating-card img {
    grid-area: media;
    height: clamp(108px, 30vw, 138px);
    max-height: none;
    padding: 9px;
    object-fit: contain;
    aspect-ratio: 1;
    border-radius: 19px;
  }

  .floating-card h2 {
    font-size: clamp(1.42rem, 5.3vw, 1.72rem);
    line-height: 0.98;
  }

  .floating-card p {
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .floating-card-side img {
    aspect-ratio: 1;
    max-height: none;
  }

  .hero-product-cta {
    grid-area: cta;
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    padding: 10px 13px;
    font-size: 0.84rem;
  }

  .hero-note {
    gap: 8px;
    margin-top: 2px;
    padding: 16px;
    text-align: left;
    background: rgba(255, 250, 241, 0.74);
    border-radius: 24px;
  }

  .hero-note strong {
    font-size: 1.08rem;
  }

  .hero-note span {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-note-disclosure {
    display: block;
  }

  .mobile-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 2px;
  }

  .mobile-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 6px 9px;
    color: rgba(36, 31, 24, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    background: rgba(255, 250, 241, 0.58);
    border: 1px solid rgba(72, 58, 39, 0.1);
    border-radius: 999px;
    box-shadow: none;
  }

  .mobile-trust-list span::before {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    content: "";
    background: var(--mint);
    border-radius: 50%;
  }

  .section-heading h2 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 0.98;
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .product-card {
    gap: 20px;
    padding: 20px;
    border-radius: 28px;
  }

  .framed-media {
    height: clamp(220px, 56vw, 290px);
  }

  .product-content h3 {
    font-size: clamp(1.72rem, 7vw, 2.3rem);
    line-height: 1;
  }

  .product-content p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .check-list {
    margin-top: 18px;
  }

  .product-card .card-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 22px;
  }

  .product-card .card-actions .button {
    min-height: 50px;
  }

  .orb {
    display: none;
  }

  .section {
    padding-block: 56px;
  }

  .floating-card,
  .product-card,
  .benefit-board,
  .comparison-table-wrap,
  .trust-cards article,
  .faq-item,
  .final-cta {
    box-shadow: 0 14px 34px rgba(67, 50, 24, 0.1);
    backdrop-filter: none;
  }

  .split-section,
  .comparison-section,
  .transparency-section,
  .faq-section {
    padding-top: 0;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table {
    padding: 12px;
    background: transparent;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .comparison-table tbody {
    display: grid;
    gap: 12px;
  }

  .comparison-table tbody tr {
    padding: 16px;
    background: rgba(255, 250, 241, 0.84);
    border: 1px solid rgba(72, 58, 39, 0.1);
    border-radius: 22px;
  }

  .comparison-table tbody th,
  .comparison-table tbody td {
    padding: 0;
    border: 0;
  }

  .comparison-table tbody th {
    margin-bottom: 14px;
    color: var(--ink);
  }

  .comparison-table tbody td {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    color: var(--ink-muted);
    border-top: 1px solid rgba(72, 58, 39, 0.1);
  }

  .comparison-table tbody td::before {
    content: attr(data-label);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

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

  .final-cta {
    text-align: left;
  }

  .final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding-block: 6px;
  }

  .header-shell {
    border-radius: 24px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy h1,
  .hero-text {
    margin-inline: auto;
  }

  h1 {
    max-width: 8.4ch;
    font-size: clamp(2.25rem, 9.6vw, 2.62rem);
  }

  .hero-actions {
    max-width: 360px;
  }

  .trust-strip span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .product-card,
  .benefit-board,
  .comparison-table-wrap,
  .trust-cards article,
  .faq-item {
    border-radius: 24px;
  }

  .product-card {
    padding: 16px;
  }

  .framed-media {
    height: clamp(210px, 60vw, 260px);
    border-radius: 20px;
  }

  .faq-item button {
    padding-left: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

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

  .floating-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 7px 12px;
    padding: 14px;
  }

  .floating-card img {
    height: 104px;
    padding: 8px;
  }

  .floating-card p {
    font-size: 0.84rem;
  }

  .hero-product-cta {
    min-height: 40px;
    font-size: 0.8rem;
  }

  .mobile-trust-list span {
    font-size: 0.72rem;
  }
}

@media (max-width: 340px) {
  .floating-card {
    grid-template-areas:
      "media"
      "tag"
      "copy"
      "cta";
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .floating-card img {
    width: min(100%, 180px);
    height: 150px;
  }

  .floating-card .product-tag,
  .hero-product-cta {
    justify-self: center;
  }

  .hero-product-cta {
    width: min(100%, 220px);
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
