:root {
  --ink: #111827;
  --ink-strong: #07111f;
  --muted: #5d6676;
  --line: #dde4ea;
  --paper: #ffffff;
  --soft: #f3f7f2;
  --navy: #0d1528;
  --green: #63b835;
  --green-dark: #2d7d2a;
  --gold: #d9831e;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(7, 17, 31, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.page-shell {
  overflow: hidden;
}

.advertisement {
  padding: 7px 16px;
  color: #dbeafe;
  background: #153a67;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #145895;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.topbar-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand span:first-child {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand span:last-child {
  color: #b8e8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #eaf6ff;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(45, 125, 42, 0.28);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.top-cta {
  min-height: 48px;
  padding: 0 22px;
  font-size: 13px;
  box-shadow: 0 16px 34px rgba(45, 125, 42, 0.34);
}

.hero-cta {
  min-height: 68px;
  padding: 0 38px;
  background: linear-gradient(135deg, #72d23d, #2f8c29);
  box-shadow: 0 22px 42px rgba(84, 190, 49, 0.4);
  font-size: 18px;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 28px rgba(45, 125, 42, 0.34);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink-strong);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  background:
    radial-gradient(circle at 25% 48%, rgba(65, 159, 219, 0.42), transparent 34%),
    linear-gradient(110deg, #155d97 0%, #183f7c 46%, #1a255d 100%);
  color: #ffffff;
}

.hero-inner {
  width: min(1040px, calc(100% - 32px));
  min-height: 530px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 42px;
  padding: 54px 0 46px;
}

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

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-product::before {
  position: absolute;
  inset: auto 4% 4% 4%;
  height: 42%;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent 68%);
  filter: blur(8px);
}

.hero-product img {
  position: relative;
  width: min(430px, 100%);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.34));
}

.hero-product-badge {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
  padding: 9px 14px;
  color: #0b1b31;
  background: #e8fbe0;
  border: 1px solid rgba(99, 184, 53, 0.45);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.hero-proof-strip {
  width: min(430px, 100%);
  margin-top: 18px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero-proof-strip img {
  width: 100%;
  height: 52px;
  object-fit: contain;
}

.stars {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars span {
  color: var(--gold);
  letter-spacing: 0.03em;
}

h1 {
  margin: 12px 0 14px;
  max-width: 660px;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.07;
  letter-spacing: 0;
}

.subheadline {
  max-width: 600px;
  margin: 0 0 22px;
  color: #dbe7d8;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.45;
  font-weight: 750;
}

.hero-checklist {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-checklist li {
  position: relative;
  padding-left: 28px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.hero-checklist li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  content: "✓";
  color: #155d97;
  background: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cert-note {
  max-width: 560px;
  margin: 8px 0 0;
  color: #e2edf7;
  font-size: 13px;
  font-weight: 650;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-bullets span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #e7f8dd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-decision {
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.hero-decision img {
  width: min(330px, 100%);
  margin: 0 auto 14px;
}

.hero-decision-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--ink);
  text-align: center;
}

.hero-decision-copy strong {
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.2;
}

.hero-decision-copy span {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

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

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: #173511;
  background: #e7f8dd;
  border: 1px solid rgba(99, 184, 53, 0.45);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  color: #ffffff;
  background: var(--navy);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dark .section-kicker {
  color: #9be070;
}

h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.dark h2 {
  color: #ffffff;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.dark .lead {
  color: #d7dfd5;
}

.hook-grid,
.what-grid,
.ingredient-grid,
.warning-grid,
.verdict-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
}

.story-panel {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-panel p {
  margin: 0 0 18px;
  color: #344054;
  font-size: 18px;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #344054;
  font-size: 17px;
}

.check {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.image-frame {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame.pad {
  padding: 24px;
}

.image-frame.dark-pad {
  padding: 28px;
  background: #07111f;
  border-color: rgba(255, 255, 255, 0.12);
}

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-column {
  background: #ffffff;
}

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

.compare-head {
  padding: 18px 22px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.compare-column.cons .compare-head {
  background: var(--navy);
}

.compare-row {
  min-height: 92px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.compare-row strong {
  display: block;
  color: var(--ink-strong);
  font-size: 17px;
  line-height: 1.25;
}

.compare-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.ingredient-cards {
  display: grid;
  gap: 16px;
}

.ingredient-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ingredient-card h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.25;
}

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

.warning-box {
  padding: 34px;
  background: #fff6f5;
  border: 1px solid rgba(180, 35, 24, 0.24);
  border-left: 7px solid var(--danger);
  border-radius: var(--radius);
}

.warning-box h2 {
  color: var(--danger);
}

.warning-box p {
  color: #47312f;
}

.certifications {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.offer-copy {
  padding: 34px;
}

.offer-copy h2 {
  margin-bottom: 18px;
}

.offer-copy p {
  color: #dce6db;
}

.offer-media {
  display: grid;
  place-items: center;
  padding: 24px;
  background: #ffffff;
}

.offer .status {
  margin: 20px 0 24px;
}

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

.faq-item {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 20px;
}

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

.site-footer {
  color: #cbd5e1;
  background: #07111f;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 780px;
  margin: 12px 0 0;
  color: #9ca8b8;
  font-size: 13px;
}

.footer-owner {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 10px 22px;
}

.footer-links a {
  color: #e5eef8;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.footer-links a:hover {
  color: #9be070;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca8b8;
  font-size: 13px;
}

.legal-page {
  background: #f7faf6;
}

.legal-hero {
  padding: 56px 0 38px;
  color: #ffffff;
  background: var(--navy);
}

.legal-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
}

.legal-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 76px;
}

.legal-box {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-box h2 {
  margin: 32px 0 10px;
  font-size: 26px;
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-box p,
.legal-box li {
  color: #475467;
}

.legal-box ul {
  padding-left: 20px;
}

.notice {
  padding: 18px;
  color: #26331f;
  background: #eef9e8;
  border: 1px solid rgba(99, 184, 53, 0.35);
  border-radius: var(--radius);
  font-weight: 750;
}

@media (max-width: 860px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero {
    background:
      radial-gradient(circle at 50% 20%, rgba(65, 159, 219, 0.28), transparent 42%),
      linear-gradient(180deg, #155d97 0%, #183f7c 45%, #111b3d 100%);
  }

  .hero-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-product {
    order: 2;
  }

  .hero-proof-strip img {
    height: 48px;
  }

  .hero-decision {
    max-width: 430px;
  }

  .hook-grid,
  .what-grid,
  .ingredient-grid,
  .warning-grid,
  .verdict-grid,
  .footer-top,
  .legal-hero .container {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 58px 0;
  }

  .story-panel,
  .warning-box,
  .offer-copy,
  .legal-box {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .container,
  .hero-inner,
  .footer-inner,
  .legal-content {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .nav-links a {
    min-width: 0;
    font-size: 13px;
    text-align: center;
  }

  .nav-links .button {
    grid-column: 1 / -1;
  }

  .hero-copy,
  .section-heading,
  .story-panel,
  .faq-item,
  .legal-box {
    width: calc(100vw - 32px);
    min-width: 0;
    max-width: calc(100vw - 32px);
  }

  h1 {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    font-size: 30px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 29px;
    overflow-wrap: anywhere;
  }

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

  .button {
    max-width: calc(100vw - 32px);
    min-height: 58px;
    padding: 0 14px;
    font-size: 13px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .status {
    max-width: calc(100vw - 32px);
    min-height: 48px;
    padding: 8px 12px;
    overflow-wrap: anywhere;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-proof-strip {
    margin-top: 16px;
    padding: 8px 10px;
  }

  .hero-proof-strip img {
    height: 42px;
  }

  .hero-product img {
    width: min(330px, 100%);
    max-height: 300px;
  }

  .hero-product-badge {
    width: 100%;
    text-align: center;
  }

  .hero-checklist li {
    font-size: 15px;
  }

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