:root {
  --navy: #102A43;
  --deep-navy: #071D2F;
  --blue: #257BA8;
  --teal: #1D607C;
  --sky: #D9ECF5;
  --ice: #EEF6F8;
  --silver: #D8E0E5;
  --paper: #FFFFFF;
  --off-white: #F7F8F6;
  --charcoal: #202A30;
  --muted: #64717A;
  --line: #DCE4E8;
  --sage: #547A6A;
  --gold: #B89555;
  --shadow: 0 24px 60px rgba(7, 29, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only,
.skip-link {
  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:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--deep-navy);
  clip: auto;
  border: 2px solid var(--gold);
}

.market-bar {
  background: var(--deep-navy);
  color: var(--sky);
  font-size: 0.9rem;
}

.market-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 229, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--deep-navy);
}

.brand-mark__symbol {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.brand-mark strong,
.brand-mark small {
  display: block;
  line-height: 1.15;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #384850;
  font-size: 0.95rem;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.offer-button,
.ghost-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.offer-button {
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 26px rgba(37, 123, 168, 0.24);
}

.offer-button:hover,
.offer-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 123, 168, 0.3);
}

.ghost-button {
  color: var(--deep-navy);
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 248, 0.92)),
    radial-gradient(circle at 85% 20%, rgba(37, 123, 168, 0.2), transparent 35%);
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 3.7rem;
  max-width: 820px;
}

h2 {
  font-size: 3.00rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 690px;
  margin-top: 24px;
  color: #41525B;
  font-size: 1.16rem;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.benefit-list span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.91rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.product-stage {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.stage-grid {
  position: absolute;
  inset: 28px 0 14px;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(16, 42, 67, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 67, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(900px) rotateY(-10deg);
  opacity: 0.44;
}

.stage-ring {
  position: absolute;
  border: 1px solid rgba(37, 123, 168, 0.32);
  border-radius: 50%;
  z-index: -1;
}

.stage-ring--one {
  width: 440px;
  height: 440px;
}

.stage-ring--two {
  width: 560px;
  height: 560px;
  border-color: rgba(184, 149, 85, 0.36);
}

.hero-bottle {
  width: min(88vw, 455px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 44px rgba(7, 29, 47, 0.22));
}

.stage-note {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(280px, 70%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stage-note strong,
.stage-note span {
  display: block;
}

.stage-note span {
  color: var(--muted);
  margin-top: 4px;
}

section {
  padding: 86px 0;
}

.snapshot-section {
  padding: 34px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
}

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

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  max-width: 760px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--paper);
}

.section-heading.light .eyebrow {
  color: var(--sky);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.snapshot-grid div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.snapshot-grid div:last-child {
  border-right: 0;
}

.snapshot-grid span,
.snapshot-grid strong {
  display: block;
}

.snapshot-grid span {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.snapshot-grid strong {
  color: var(--deep-navy);
  line-height: 1.25;
}

.editorial-section,
.quality-section,
.buyer-section {
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.prose-panel {
  color: #43525A;
  font-size: 1.06rem;
}

.prose-panel p + p,
.formula-section p + p,
.guarantee-section p + p,
.safety-section p + p {
  margin-top: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 3px var(--ice);
}

.formula-section {
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(37, 123, 168, 0.86)),
    var(--navy);
  color: var(--ice);
}

.formula-section h2,
.formula-section h3,
.formula-section .eyebrow {
  color: var(--paper);
}

.formula-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}

.product-card,
.formula-panel,
.guarantee-panel,
.notice-panel,
.safety-list,
.legal-box,
.exit-box {
  border-radius: 8px;
}

.formula-visual {
  padding: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.formula-visual img {
  width: min(360px, 100%);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.22));
}

.formula-caption {
  margin-top: 24px;
  color: var(--sky);
  text-align: center;
}

.formula-panel {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.formula-panel p {
  color: var(--sky);
  margin-top: 10px;
}

.routine-section {
  background: var(--ice);
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.routine-grid article,
.review-card,
.package-card,
.market-card,
.check-grid div,
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.routine-grid article {
  padding: 24px;
  min-height: 235px;
}

.routine-grid span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.routine-grid p,
.package-card p,
.market-card span,
.check-grid span,
.faq-list p {
  color: var(--muted);
}

.feedback-section {
  background:
    linear-gradient(rgba(7, 29, 47, 0.92), rgba(7, 29, 47, 0.92)),
    var(--deep-navy);
}

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

.review-card {
  position: relative;
  min-height: 248px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--paper);
  overflow: hidden;
}

.review-card[hidden] {
  display: none;
}

.country-marker {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--sky);
  font-weight: 900;
}

.review-card h3 {
  color: var(--paper);
  margin-top: 18px;
}

.quote-mark {
  position: absolute;
  right: 24px;
  top: 10px;
  color: rgba(217, 236, 245, 0.18);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.review-card p:not(.quote-mark) {
  margin-top: 16px;
  color: var(--sky);
}

.review-card small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
}

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

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(7, 29, 47, 0.08);
}

.package-card--featured {
  border-color: rgba(184, 149, 85, 0.7);
  transform: translateY(-10px);
}

.package-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.package-image img {
  max-height: 230px;
  width: auto;
  object-fit: contain;
}

.package-badge {
  align-self: flex-start;
  padding: 7px 10px;
  margin-bottom: 14px;
  color: var(--deep-navy);
  background: rgba(184, 149, 85, 0.18);
  border: 1px solid rgba(184, 149, 85, 0.42);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.package-badge.muted {
  background: var(--ice);
  border-color: var(--line);
}

.price-line {
  margin: 18px 0 10px;
}

.price-line strong,
.price-line span {
  display: block;
}

.price-line strong {
  color: var(--deep-navy);
  font-size: 1.6rem;
  line-height: 1.18;
}

.price-line span {
  color: var(--muted);
  margin-top: 5px;
}

.saving-line,
.shipping-note {
  margin-bottom: 14px;
}

.package-card .offer-button {
  width: 100%;
  margin-top: auto;
}

.notice-panel {
  margin-top: 26px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.availability-section {
  background: var(--paper);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.market-card {
  padding: 22px;
  min-height: 158px;
}

.market-card strong,
.market-card span {
  display: block;
}

.market-card span {
  margin-top: 10px;
}

.guarantee-section {
  background: linear-gradient(135deg, var(--ice), var(--paper));
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.guarantee-section .offer-button {
  margin-top: 26px;
}

.guarantee-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.guarantee-panel img {
  max-height: 240px;
  object-fit: contain;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-grid div {
  padding: 22px;
}

.check-grid strong,
.check-grid span {
  display: block;
}

.check-grid span {
  margin-top: 8px;
}

.safety-section {
  background: var(--deep-navy);
  color: var(--ice);
}

.safety-section h2,
.safety-section .eyebrow {
  color: var(--paper);
}

.safety-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: start;
}

.safety-list {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.safety-list strong {
  color: var(--paper);
}

.safety-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep-navy);
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.final-section {
  background: var(--paper);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(238, 246, 248, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.final-grid p {
  margin-top: 18px;
  color: var(--muted);
}

.final-grid .offer-button {
  margin-top: 28px;
}

.final-grid img {
  width: min(420px, 100%);
  margin: 0 auto;
  object-fit: contain;
}

.site-footer {
  background: #061421;
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 116px;
}

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

.footer-brand {
  color: var(--paper);
  margin-bottom: 18px;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  color: var(--paper);
  font-size: 1rem;
  margin-bottom: 14px;
}

.legal-link {
  display: block;
  min-height: 34px;
  padding: 0;
  margin: 6px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.legal-modal,
.exit-panel {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.legal-modal[hidden],
.exit-panel[hidden],
.right-note[hidden] {
  display: none;
}

.legal-backdrop,
.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 22, 0.72);
}

.legal-box,
.exit-box {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 42px));
  overflow: auto;
  padding: 34px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.legal-content p {
  margin-top: 16px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--deep-navy);
  border-radius: 8px;
  cursor: pointer;
}

.exit-box {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: center;
}

.exit-box img {
  max-height: 275px;
  object-fit: contain;
}

.exit-box p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 14px;
}

.exit-box .offer-button {
  margin-top: 24px;
}

.right-note {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 650;
  padding: 12px 14px;
  background: var(--deep-navy);
  color: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(7, 29, 47, 0.1);
}

.mobile-sticky .offer-button {
  width: 100%;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3rem;
  }

  .header-offer {
    display: none;
  }

  .snapshot-grid,
  .routine-grid,
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .package-card--featured {
    transform: none;
  }

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

@media (max-width: 840px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 116px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:focus-visible,
  .site-nav a:hover {
    background: var(--ice);
  }

  .hero-section {
    padding: 56px 0 42px;
  }

  .hero-grid,
  .formula-grid,
  .split-layout,
  .split-layout.reverse,
  .guarantee-grid,
  .safety-layout,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 490px;
  }

  .stage-note {
    position: static;
    width: 100%;
    margin-top: -22px;
  }

  .review-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .final-grid {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky {
    display: block;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark small {
    display: none;
  }

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

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

  .snapshot-grid,
  .routine-grid,
  .market-grid,
  .trust-strip,
  .guarantee-panel,
  .exit-box {
    grid-template-columns: 1fr;
  }

  .snapshot-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .snapshot-grid div:last-child {
    border-bottom: 0;
  }

  .product-stage {
    min-height: 420px;
  }

  .stage-ring--one {
    width: 320px;
    height: 320px;
  }

  .stage-ring--two {
    width: 390px;
    height: 390px;
  }

  section {
    padding: 62px 0;
  }

  .legal-box,
  .exit-box {
    padding: 28px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
