:root {
  --navy: #10183f;
  --red: #e3262e;
  --blue: #76aee2;
  --soft-blue: #eaf4ff;
  --white: #fcfcfa;
  --grey: #f3f5f8;
  --text: #202636;
  --muted: #647081;
  --line: rgba(16, 24, 63, 0.13);
  --shadow: 0 22px 65px rgba(16, 24, 63, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

button,
select,
input,
textarea {
  font: inherit;
}

button,
a {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(118, 174, 226, 0.8);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.top-line {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
}

.site-note {
  text-align: center;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 4vw, 60px);
  background: rgba(252, 252, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark,
.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-mark strong,
.footer-logo strong {
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 13px 23px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(227, 38, 46, 0.24);
  cursor: pointer;
}

.button.small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.button.ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
}

.plain-button,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle,
.close-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 82px 12px auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu nav {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 800;
}

.mobile-menu[hidden],
.legal-modal[hidden],
.exit-layer[hidden] {
  display: none !important;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding: 54px 0 38px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 0.98;
}

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

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

.hero-lead,
.section-lead,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.hero-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0;
}

.hero-list li,
.mini-points span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.hero-list li::before,
.compare-layout li::before,
.sticky-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-product-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(118, 174, 226, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(118, 174, 226, 0.45), transparent 35%),
    radial-gradient(circle at 84% 22%, rgba(227, 38, 46, 0.16), transparent 34%),
    linear-gradient(135deg, var(--soft-blue), #fff);
  box-shadow: var(--shadow);
}

.hero-bg-mark {
  position: absolute;
  right: -22px;
  top: 8px;
  color: rgba(16, 24, 63, 0.06);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
}

.hero-product-panel img {
  position: relative;
  z-index: 1;
  max-height: 430px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(16, 24, 63, 0.18));
}

.trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.trust-grid span {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  padding: 11px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.trust-strip,
.feature-grid,
.quality-grid,
.review-grid,
.use-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

.trust-strip {
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 0 72px;
}

.trust-card,
.feature-card,
.formula-card,
.info-panel,
.package-card,
.review-card,
.sticky-panel,
.nutrition-panel,
.compare-layout article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 45px rgba(16, 24, 63, 0.07);
}

.trust-card {
  padding: 20px;
}

.trust-card h2,
.trust-card h3 {
  font-size: 18px;
}

.trust-card p,
.feature-card p,
.formula-card p,
.info-panel p,
.package-card p,
.review-card p,
.nutrition-panel p,
.compare-layout p {
  color: var(--muted);
  margin: 0;
}

.intro-section,
.ingredient-section,
.wellness-section,
.guarantee-section,
.reviews-section,
.final-cta {
  background: linear-gradient(180deg, var(--grey), #fff);
  padding: 78px 0;
}

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

.content-stack {
  display: grid;
  gap: 16px;
}

.content-stack .button {
  justify-self: start;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 76px;
}

.feature-card {
  padding: 24px;
}

.feature-card span,
.info-panel span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--red);
  font-weight: 900;
}

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 34px;
}

.ingredient-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.formula-card {
  padding: 20px;
  border-left: 5px solid var(--blue);
}

.nutrition-panel {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 22px;
}

.nutrition-panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.nutrition-panel th,
.nutrition-panel td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.nutrition-panel th:nth-child(2),
.nutrition-panel td:nth-child(2),
.nutrition-panel th:nth-child(3),
.nutrition-panel td:nth-child(3) {
  text-align: right;
}

.use-section,
.quality-section,
.faq-layout {
  padding: 78px 0;
}

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

.info-panel {
  padding: 24px;
}

.soft-note {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-blue);
  padding: 16px 18px;
}

.soft-note summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.warning-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.warning-list li {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
}

.compare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-layout article {
  padding: 24px;
}

.compare-layout ul,
.sticky-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.centre {
  text-align: center;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.package-card.highlighted {
  border: 2px solid var(--red);
  background: linear-gradient(180deg, #fff, #fff7f7);
  transform: translateY(-10px);
}

.package-badge {
  display: inline-flex;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pack-stack {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 230px;
  margin: 10px 0 18px;
}

.pack-stack img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(260px, 78%);
  max-height: 220px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 15px 18px rgba(16, 24, 63, 0.16));
}

.pack-stack.two img:nth-child(1) {
  transform: translate(-72%, -50%) rotate(-4deg);
}

.pack-stack.two img:nth-child(2) {
  transform: translate(-28%, -50%) rotate(4deg);
}

.pack-stack.three img:nth-child(1) {
  transform: translate(-88%, -48%) rotate(-7deg);
}

.pack-stack.three img:nth-child(2) {
  z-index: 2;
  transform: translate(-50%, -53%);
}

.pack-stack.three img:nth-child(3) {
  transform: translate(-12%, -48%) rotate(7deg);
}

.package-card dl {
  width: 100%;
  margin: 10px 0 16px;
}

.package-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.package-card dt {
  color: var(--muted);
  text-align: left;
}

.package-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}

.daily-note {
  color: var(--red) !important;
  font-weight: 900;
}

.guarantee-layout {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.guarantee-layout img {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quality-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quality-grid a {
  color: var(--red);
  font-weight: 900;
}

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

.review-card {
  padding: 22px;
}

.review-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(16, 24, 63, 0.14);
  margin-bottom: 14px;
}

.review-card p:last-child {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

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

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

.faq-item button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 18px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item div {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item p {
  margin: 0;
}

.sticky-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.sticky-panel img {
  max-height: 210px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.sticky-panel .button {
  width: 100%;
  margin: 18px 0 12px;
}

.final-cta {
  background: linear-gradient(135deg, var(--navy), #1b2c68);
  color: #fff;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: center;
}

.final-actions {
  display: grid;
  gap: 18px;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-points span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-footer {
  background: #080d27;
  color: #fff;
  padding: 56px 0 84px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 26px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer h3 {
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a,
.site-footer button {
  display: block;
  margin: 8px 0;
  text-align: left;
}

.mobile-action {
  display: none;
  position: fixed;
  z-index: 70;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: rgba(252, 252, 250, 0.96);
  border-top: 1px solid var(--line);
}

.mobile-action .button {
  width: 100%;
}

.legal-modal,
.exit-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 24, 63, 0.58);
}

.modal-card,
.exit-card {
  position: relative;
  width: min(760px, 100%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 30px;
}

.close-button {
  position: absolute;
  right: 14px;
  top: 14px;
}

.modal-card h2,
.exit-card h2 {
  margin-right: 40px;
}

.exit-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.exit-card img {
  max-height: 260px;
  object-fit: contain;
}

.exit-card .plain-button {
  margin-left: 12px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions .small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .split-layout,
  .ingredient-layout,
  .guarantee-layout,
  .faq-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .nutrition-panel,
  .sticky-panel {
    position: static;
  }

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

  .mobile-action {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    font-size: 30px;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 0 26px;
  }

  .hero-list,
  .trust-grid,
  .trust-strip,
  .feature-grid,
  .quality-grid,
  .review-grid,
  .use-grid,
  .package-grid,
  .compare-layout,
  .warning-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-panel {
    border-radius: 18px;
    padding: 18px;
  }

  .hero-product-panel img {
    max-height: 320px;
  }

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

  .nutrition-panel {
    overflow-x: auto;
  }

  .nutrition-panel table {
    min-width: 0;
    font-size: 12px;
  }

  .nutrition-panel th,
  .nutrition-panel td {
    overflow-wrap: anywhere;
  }

  .hero-bg-mark {
    display: none;
  }

  .pack-stack img {
    width: min(220px, 70%);
  }

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

  .exit-card img {
    display: none;
  }
}

@media (max-width: 360px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
    padding-inline: 14px;
  }
}
