:root {
  --ink: #16221f;
  --muted: #5f6f68;
  --paper: #f7faf5;
  --panel: #ffffff;
  --line: #d7e3db;
  --teal: #0b6f63;
  --teal-dark: #074d45;
  --amber: #d59b31;
  --coral: #b84e4c;
  --leaf: #466f3b;
  --shadow: 0 18px 42px rgba(13, 45, 39, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  overflow-x: hidden;
}

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

a {
  color: var(--teal-dark);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.status-ribbon {
  background: #12302b;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: .94rem;
}

.status-ribbon strong {
  color: #f3c867;
}

.site-head {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.head-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: 230px;
}

.brand-stamp {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .16);
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: -2px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
}

.top-nav a:hover {
  background: #eaf3ef;
}

.hero-portal {
  background: linear-gradient(115deg, #f2f8f0 0%, #ffffff 52%, #eef7f7 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 58px 0 72px;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.45rem);
  line-height: 1.02;
  margin: 10px 0 18px;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .82rem;
  margin: 0 0 8px;
}

.page-lead {
  font-size: 1.14rem;
  color: #34433e;
  max-width: 760px;
}

.hero-actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.buy-button,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 0;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(11, 111, 99, .24);
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.buy-button:hover,
.form-button:hover {
  background: var(--teal-dark);
}

.buy-button.wide {
  min-width: 230px;
}

.text-link {
  font-weight: 800;
  color: var(--teal-dark);
  overflow-wrap: anywhere;
}

.rating-row {
  margin-top: 24px;
  display: grid;
  gap: 2px;
  color: var(--muted);
}

.rating-row b {
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-product {
  margin: 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-product img {
  margin: auto;
  max-height: 500px;
  object-fit: contain;
}

.hero-product figcaption {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  font-size: .92rem;
}

.proofrail {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.proofgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 18px 0;
}

.proof-pill {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdfb;
}

.proof-pill strong,
.proof-pill span {
  display: block;
}

.proof-pill span {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 5px;
}

.content-bay {
  padding: 58px 0;
}

.content-bay:nth-of-type(even) {
  background: #fff;
}

.content-bay h2,
.cta-band h2,
.final-signal h2,
.site-footer h2 {
  margin: 0 0 16px;
  line-height: 1.14;
  letter-spacing: 0;
}

.plain-copy p,
.article-body p,
.content-bay p {
  max-width: 900px;
}

.audit-table,
.info-ledger,
.score-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.audit-table div,
.info-ledger div,
.score-board div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.audit-table div:nth-child(2n),
.info-ledger div:nth-child(2n),
.score-board div:nth-child(2n) {
  border-right: 0;
}

.audit-table b,
.info-ledger b,
.score-board b,
.audit-table span,
.info-ledger span,
.score-board span {
  display: block;
}

.audit-table span,
.info-ledger span {
  color: var(--muted);
  margin-top: 4px;
}

.protocol-list,
.check-list {
  padding-left: 22px;
  max-width: 900px;
}

.protocol-list li,
.check-list li {
  margin: 10px 0;
}

.faq-preview,
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.cta-band {
  background: #173c36;
  color: #fff;
  padding: 42px 0;
}

.cta-band p {
  color: #d9ebe6;
  margin: 0;
}

.cta-row {
  justify-content: space-between;
  margin-top: 0;
}

.review-row,
.contact-grid,
.review-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-row article,
.review-stack article,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.review-row b,
.review-row span {
  display: block;
}

.review-row span {
  margin-top: 8px;
  color: var(--muted);
}

.order-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}

.order-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(22, 34, 31, .08);
  position: relative;
  display: grid;
  gap: 10px;
}

.order-tile.raised {
  border: 2px solid var(--amber);
  transform: translateY(-12px);
}

.tile-tag {
  color: #fff;
  background: var(--coral);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 900;
  justify-self: start;
}

.order-tile.raised .tile-tag {
  background: var(--amber);
  color: #1d211b;
}

.order-tile h3 {
  margin: 4px 0 0;
  font-size: 1.45rem;
}

.supply-line,
.day-line,
.ship-line,
.guarantee-line,
.card-note {
  color: var(--muted);
  margin: 0;
}

.order-tile img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin: 4px 0;
}

.price-line strong {
  font-size: 2.2rem;
  color: var(--teal-dark);
}

.retail-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.retail-line span {
  color: var(--muted);
  text-decoration: line-through;
}

.final-signal {
  padding: 54px 0 70px;
  background: #f0f6f2;
  text-align: center;
}

.final-signal p {
  margin-inline: auto;
  max-width: 720px;
}

.page-hero {
  background: #edf6f1;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact .wrap {
  padding: 56px 0;
}

.ingredient-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.ingredient-wall span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.score-board span {
  color: var(--coral);
  font-weight: 900;
  font-size: 1.3rem;
  margin: 6px 0;
}

.review-stack {
  grid-template-columns: repeat(2, 1fr);
}

.mail-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.mail-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.mail-form input,
.mail-form textarea {
  width: 100%;
  border: 1px solid #b8c9c0;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  background: #fbfdfb;
}

.microcopy {
  color: var(--muted);
  font-size: .94rem;
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(620px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.site-footer {
  background: #101f1b;
  color: #e8f2ee;
  padding: 48px 0 24px;
}

.site-footer a {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer p {
  color: #c8d7d2;
}

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

.legal-strip {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 28px;
  padding-top: 18px;
  font-size: .9rem;
}

@media (max-width: 920px) {
  .head-inner,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .head-inner {
    display: grid;
    justify-items: stretch;
    padding: 14px 0;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .brand-lockup {
    justify-self: start;
  }

  .hero-grid {
    min-height: auto;
    padding: 40px 0 56px;
  }

  .proofgrid,
  .order-matrix,
  .review-row,
  .contact-grid,
  .review-stack,
  .audit-table,
  .info-ledger,
  .score-board {
    grid-template-columns: 1fr;
  }

  .audit-table div,
  .info-ledger div,
  .score-board div {
    border-right: 0;
  }

  .order-tile.raised {
    transform: none;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 22px, 1160px);
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .top-nav a {
    padding: 8px 9px;
    font-size: .92rem;
  }

  .top-nav {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: hidden;
  }

  .top-nav a {
    text-align: center;
    min-width: 0;
    overflow-wrap: anywhere;
  }

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

  .brand-lockup {
    min-width: 0;
  }

  .hero-product {
    padding: 14px;
  }

  .content-bay {
    padding: 42px 0;
  }

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