:root {
  color-scheme: light;
  --ink: #071d36;
  --muted: #47586b;
  --blue: #09a9ee;
  --navy: #071d3d;
  --navy-2: #0c2f5a;
  --soft-blue: #eaf9ff;
  --line: #d8e8f0;
  --paper: #ffffff;
  --shadow: 0 18px 44px rgba(2, 28, 56, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  font-size: 18px;
  line-height: 1.55;
}

body.modal-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  z-index: 2000;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

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

.page-shell {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: grid;
  place-items: center;
  min-height: 74px;
  background: #fff;
}

.site-header img {
  width: 205px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 36%, rgba(11, 129, 189, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(7, 28, 60, 0.98), rgba(9, 42, 77, 0.97)),
    var(--navy);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -54px;
  height: 120px;
  background: #fff;
  transform: rotate(-3.5deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  padding: 54px 0 84px;
}

.hero-copy {
  text-align: left;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.8vw, 4.55rem);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #e8f4fb;
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-bottles {
  width: min(520px, 100%);
  justify-self: center;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.24));
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  background: linear-gradient(180deg, #10c2ff, #079fe0);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(4, 107, 157, 0.3);
}

.intro-section {
  padding: 46px 0 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 34px;
}

.intro-copy {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 500;
}

.intro-copy p {
  margin-bottom: 22px;
}

.highlight-copy {
  color: var(--ink);
  font-weight: 800;
}

.intro-grid img {
  border-radius: 0;
  justify-self: end;
}

.statement-section {
  padding: 0 0 36px;
}

.statement-card {
  padding: 46px 44px;
  background: linear-gradient(180deg, #f0fbff, #ffffff);
  text-align: center;
  box-shadow: inset 0 -18px 0 rgba(9, 169, 238, 0.08);
}

.statement-card h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.statement-card h2::first-line {
  color: var(--blue);
}

.statement-card p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.ingredients-section {
  padding: 50px 0;
  background: var(--soft-blue);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 40px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-list span {
  padding: 10px 14px;
  border: 1px solid #b9e7f7;
  border-radius: 999px;
  background: #fff;
  color: #113b61;
  font-weight: 800;
}

.ingredients-grid img {
  justify-self: center;
  max-height: 420px;
}

.benefits-section {
  padding: 58px 0 64px;
}

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

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

.benefit-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 28, 56, 0.07);
}

.benefit-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.center-cta {
  display: flex;
  width: min(420px, 100%);
  margin: 28px auto 0;
}

.guarantee-section {
  padding: 54px 0;
  background: #f6fbfe;
}

.guarantee-box {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.guarantee-box > img {
  width: 140px;
}

.guarantee-box p {
  color: var(--muted);
}

.payment {
  width: 190px;
  margin-top: 10px;
}

.footer {
  padding: 34px 0;
  background: #071d36;
  color: #dbeaf2;
}

.footer p {
  max-width: 980px;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  right: auto;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 100vw;
  max-width: 100vw;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
  overflow: hidden;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50vw;
  transform: translate(-50%, -50%);
  width: min(704px, calc(100vw - 40px));
  padding: 58px 31px 32px;
  border: 4px solid #050505;
  border-radius: 14px;
  background:
    linear-gradient(111deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 72%, rgba(246, 246, 246, 0.96) 72%),
    #fff;
  color: #030303;
  text-align: center;
  box-shadow: var(--shadow);
}

.cookie-close {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 31px;
  height: 31px;
  border: 1px solid #1d1d1d;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal h2 {
  margin-bottom: 32px;
  color: #07515d;
  font-size: 1.84rem;
  line-height: 1.1;
  font-weight: 900;
}

.cookie-modal p {
  width: min(630px, 100%);
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.cookie-modal a {
  color: #0000ee;
  text-decoration: none;
}

.cookie-button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: #0b5661;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 920px) {
  .hero-inner,
  .intro-grid,
  .ingredients-grid,
  .benefit-grid,
  .guarantee-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 36px 0 86px;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p:not(.eyebrow),
  h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-grid img {
    justify-self: center;
  }

  .guarantee-box {
    text-align: center;
  }

  .guarantee-box > img,
  .payment {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 60px;
  }

  .site-header img {
    width: 150px;
  }

  .page-shell {
    width: min(100% - 28px, 1140px);
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding-top: 28px;
    padding-bottom: 68px;
  }

  h1 {
    font-size: 1.92rem;
    line-height: 1.2;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-bottles {
    width: min(330px, 100%);
  }

  .primary-cta {
    width: 100%;
  }

  .intro-section {
    padding-top: 32px;
  }

  .intro-copy {
    font-size: 1.08rem;
  }

  .statement-card {
    padding: 34px 18px;
  }

  .ingredients-section,
  .benefits-section,
  .guarantee-section {
    padding: 42px 0;
  }

  .cookie-overlay {
    padding: 0;
  }

  .cookie-modal {
    width: min(330px, calc(100vw - 56px));
    padding: 72px 28px 30px;
    border-width: 3px;
    border-radius: 11px;
  }

  .cookie-close {
    top: 28px;
    right: 29px;
  }

  .cookie-modal h2 {
    margin-bottom: 34px;
    font-size: 1.45rem;
  }

  .cookie-modal p {
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.18;
  }
}
