:root {
  --navy: #071426;
  --navy-2: #0d223a;
  --blue: #1e5f9f;
  --blue-soft: #dcecf8;
  --white: #ffffff;
  --paper: #f7f9fb;
  --text: #172033;
  --muted: #637083;
  --line: #dce4ee;
  --amber: #c9862b;
  --amber-2: #f3c06d;
  --brown: #70451f;
  --shadow: 0 24px 70px rgba(7, 20, 38, .15);
  --radius: 8px;
  --max: 1180px;
}

* {
  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(--text);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.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 {
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
}

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

.narrow {
  max-width: 900px;
}

.top-notice {
  background: #0a1b30;
  color: #eaf3ff;
  padding: 11px 18px;
  font-size: .91rem;
  text-align: center;
}

.top-notice strong {
  color: var(--amber-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, .92);
  border-bottom: 1px solid rgba(220, 228, 238, .9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--navy));
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(30, 95, 159, .25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #29364a;
  font-size: .95rem;
}

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

.nav-menu a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  place-items: center;
  padding: 11px;
}

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

.button,
.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.primary,
.nav-cta {
  color: #12100b;
  background: linear-gradient(180deg, #f4c677, #c9862b);
  box-shadow: 0 16px 36px rgba(201, 134, 43, .25);
}

.primary:hover,
.nav-cta:hover {
  filter: brightness(1.04);
}

.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .25);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 30%, rgba(201, 134, 43, .22), transparent 30%), linear-gradient(135deg, #071426 0%, #0e2a48 54%, #081322 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 38, .32));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  align-items: center;
  gap: 58px;
  padding: 56px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber-2);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.18;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  color: #dbe7f4;
  font-size: 1.12rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.hero-badges span,
.trust-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #f7fbff;
  background: rgba(255, 255, 255, .08);
  font-size: .91rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.disclosure-note,
.fine-print,
.price-note {
  color: #6b7788;
  font-size: .93rem;
}

.hero .disclosure-note {
  max-width: 680px;
  color: #c9d7e8;
}

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

.product-stage::before {
  content: "";
  position: absolute;
  width: min(88%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(30, 95, 159, .38), rgba(201, 134, 43, .2));
  filter: blur(2px);
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: min(88%, 470px);
  filter: drop-shadow(0 35px 42px rgba(0, 0, 0, .38));
}

.stage-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 34px;
  max-width: 250px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 21, 38, .82);
  box-shadow: var(--shadow);
}

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

.section {
  padding: 86px 0;
  background: var(--white);
}

.tinted {
  background: #eef4f9;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 34px;
  align-items: start;
}

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

.info-panel,
.cta-panel,
.benefit-card,
.reason-card,
.ingredient-grid article,
.price-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9, 25, 44, .07);
}

.info-panel,
.cta-panel {
  padding: 26px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
}

.check-list li:first-child {
  border-top: 0;
}

.check-list li::before,
.benefit-card span::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
}

.check-list li::before {
  left: 4px;
  top: 18px;
}

.benefit-grid,
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 214px;
  padding: 22px;
}

.benefit-card span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 134, 43, .35);
  border-radius: 8px;
  background: #fff6e8;
}

.benefit-card span::before {
  left: 10px;
  top: 10px;
}

.reason-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reason-card {
  min-height: 230px;
  padding: 24px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 850;
}

.dark-section {
  color: #d7e3f0;
  background: linear-gradient(135deg, #071426, #102c4a);
}

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

.routine-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

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

.mini-grid div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

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

.mini-grid strong {
  margin-bottom: 8px;
  color: var(--white);
}

.ingredient-grid article {
  min-height: 176px;
  padding: 22px;
}

.pricing-section {
  background: linear-gradient(180deg, #f7f9fb, #eaf1f7);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(201, 134, 43, .7);
  transform: translateY(-10px);
  box-shadow: 0 26px 70px rgba(112, 69, 31, .18);
}

.label {
  align-self: center;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  color: var(--navy);
  background: #fff0d5;
  border: 1px solid rgba(201, 134, 43, .32);
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 850;
}

.price-card img {
  width: min(100%, 280px);
  height: 230px;
  object-fit: contain;
  margin: 16px auto;
}

.supply {
  margin-top: -2px;
  color: var(--blue);
  font-weight: 850;
}

.price {
  margin: 12px 0 2px;
  color: var(--navy);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

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

.best-for {
  font-weight: 750;
}

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

.price-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.trust-strip {
  padding: 34px 0;
  color: var(--white);
  background: var(--navy);
}

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

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

.review-card {
  overflow: hidden;
}

.review-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  background: var(--blue-soft);
}

.review-card h3,
.review-card p,
.review-card .stars {
  margin-left: 18px;
  margin-right: 18px;
}

.review-card .stars {
  margin-top: 18px;
  color: var(--amber);
  letter-spacing: .04em;
}

.reviewer {
  color: var(--blue);
  font-size: .92rem;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9, 25, 44, .07);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--white);
  background: var(--navy-2);
}

tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  color: var(--navy);
  font-weight: 850;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #3e4b5d;
}

.safety-section {
  background: #f3f6f9;
}

.cta-panel {
  background: linear-gradient(145deg, #ffffff, #edf5fb);
}

.site-footer {
  padding: 46px 0;
  color: #ccd8e6;
  background: #071426;
}

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

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 720px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 500px;
}

.footer-links button {
  min-height: 40px;
  padding: 9px 12px;
  color: #dce9f6;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 13, 25, .72);
}

.modal.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: min(88vh, 680px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  padding-right: 34px;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .benefit-grid,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: relative;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-menu.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open a {
    padding: 13px 10px;
  }

  .hero-grid,
  .split-grid,
  .routine-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 44px;
    gap: 26px;
  }

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

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .top-notice {
    text-align: left;
    font-size: .86rem;
  }

  .section {
    padding: 62px 0;
  }

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

  .hero-badges span {
    width: 100%;
  }

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

  .stage-card {
    left: 8px;
    bottom: 8px;
    max-width: 220px;
  }

  .benefit-grid,
  .reason-grid,
  .ingredient-grid,
  .mini-grid,
  .trust-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .reason-card,
  .ingredient-grid article {
    min-height: auto;
  }

  .review-card img {
    height: 210px;
  }

  .modal-card {
    padding: 24px;
  }
}
