:root {
  --green-950: #09251f;
  --green-900: #123b31;
  --green-800: #185242;
  --green-700: #1f6b55;
  --green-600: #2f896c;
  --mint-300: #9bd9bf;
  --mint-200: #c6ead8;
  --mint-100: #e4f5ec;
  --mint-50: #f3faf6;
  --cream: #fffaf0;
  --cream-deep: #f6ecd8;
  --orange: #ed7c3b;
  --orange-dark: #ca5a1e;
  --ink: #172720;
  --muted: #5d6d66;
  --line: #dce8e1;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(9, 37, 31, 0.08);
  --shadow-lg: 0 28px 70px rgba(9, 37, 31, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: 1.25rem;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.disclosure-bar {
  position: relative;
  z-index: 21;
  color: #d9f1e5;
  background: var(--green-950);
  font-size: 0.78rem;
}

.disclosure-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 37px;
  text-align: center;
}

.disclosure-bar__label {
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(18, 59, 49, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 25px rgba(9, 37, 31, 0.04);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  box-shadow: 0 9px 20px rgba(31, 107, 85, 0.24);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--green-950);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #45564f;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--green-700);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
summary:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(237, 124, 59, 0.42);
  outline-offset: 4px;
}

.button--small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 0.83rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 29px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #f39a55);
  box-shadow: 0 15px 32px rgba(202, 90, 30, 0.26);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: 0 18px 38px rgba(202, 90, 30, 0.32);
}

.button--outline {
  border-color: var(--green-700);
  color: var(--green-800);
  background: var(--white);
}

.button--outline:hover {
  color: var(--white);
  background: var(--green-800);
}

.button--cream {
  color: var(--green-950);
  background: var(--cream);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.button--block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 36%, rgba(104, 190, 152, 0.2), transparent 23rem),
    linear-gradient(125deg, var(--green-950) 0%, var(--green-900) 53%, #1a5948 100%);
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: -290px;
  left: -15%;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 70px;
  min-height: 690px;
  padding-block: 88px 96px;
}

.hero__copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #b9e4d0;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d7e8e0;
  font-size: clamp(1.04rem, 1.8vw, 1.23rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 5px;
}

.text-link--green {
  color: var(--green-700);
  text-decoration-color: rgba(31, 107, 85, 0.3);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.product-card {
  position: relative;
  z-index: 2;
  width: min(100%, 450px);
  padding: 20px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(235, 247, 240, 0.92));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
  transform: rotate(1.5deg);
}

.product-card::after {
  position: absolute;
  right: 12%;
  bottom: 52px;
  left: 12%;
  height: 36px;
  border-radius: 50%;
  background: rgba(5, 35, 27, 0.23);
  filter: blur(18px);
  content: "";
}

.product-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-card__tag {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--mint-100);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--green-950);
}

.product-card__caption strong,
.product-card__caption span {
  display: block;
}

.product-card__caption span {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(198, 234, 216, 0.2);
  border-radius: 50%;
}

.product-orbit--one {
  width: 525px;
  height: 525px;
}

.product-orbit--two {
  width: 620px;
  height: 390px;
  transform: rotate(-24deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero__glow--one {
  top: 80px;
  right: 2%;
  width: 270px;
  height: 270px;
  background: rgba(116, 203, 165, 0.12);
}

.hero__glow--two {
  bottom: -70px;
  left: 38%;
  width: 190px;
  height: 190px;
  background: rgba(237, 124, 59, 0.12);
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px 30px;
}

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

.trust-item__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--mint-100);
  font-weight: 900;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 0.92rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.72rem;
}

.section {
  padding-block: 104px;
}

.section--tint {
  background: var(--mint-50);
}

.section--soft {
  padding-block: 80px;
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.section-heading {
  max-width: 650px;
  margin-bottom: 48px;
}

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

.section-heading p,
.ingredients-copy > p,
.refund-card__copy > p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

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

.fact-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 34px 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fact-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c7d8cf;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.fact-card__icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 27px;
  border-radius: 16px;
  background: var(--mint-100);
  font-size: 1.35rem;
}

.fact-card h3 {
  color: var(--green-950);
}

.fact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ingredients-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 90px;
}

.ingredients-copy {
  max-width: 500px;
}

.fine-print {
  padding: 15px 17px;
  border-left: 3px solid var(--green-600);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.ingredient-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 13px 18px;
  border: 1px solid rgba(31, 107, 85, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 23px rgba(9, 37, 31, 0.05);
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.ingredient-pill span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--green-800);
  background: var(--mint-100);
  font-size: 0.72rem;
}

.section-kicker--light {
  color: #b8e1ce;
}

.refund-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 45px;
  padding: 44px 55px;
  border: 1px solid #e8deca;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: var(--shadow-sm);
}

.refund-card__seal img {
  width: 190px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 252 / 255;
  object-fit: contain;
  margin-inline: auto;
}

.refund-card__copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 74px;
  color: var(--white);
  background: linear-gradient(115deg, var(--green-950), var(--green-700));
}

.final-cta__glow {
  position: absolute;
  top: -190px;
  right: 2%;
  width: 440px;
  height: 440px;
  border: 80px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta__inner > div {
  max-width: 720px;
}

.final-cta__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffe0ca;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.final-cta__status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff9451;
  box-shadow: 0 0 0 0 rgba(255, 148, 81, 0.6);
  animation: availability-pulse 1.8s ease-out infinite;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 0;
  color: #cce0d7;
}

.final-cta__button {
  min-width: 330px;
  box-shadow: 0 18px 42px rgba(202, 90, 30, 0.38);
}

@keyframes availability-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 148, 81, 0.6);
  }

  70%,
  100% {
    box-shadow: 0 0 0 10px rgba(255, 148, 81, 0);
  }
}

.site-footer {
  padding-block: 72px 30px;
  color: #a9beb5;
  background: #071c17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 48px;
}

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

.brand--footer small {
  color: #93afa2;
}

.footer-grid > div:first-child p {
  max-width: 440px;
  margin: 20px 0 0;
  color: #8ea79c;
  font-size: 0.84rem;
}

.footer-grid h3 {
  margin: 7px 0 20px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin-bottom: 11px;
  font-size: 0.8rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-legal {
  padding-top: 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal > p {
  margin-bottom: 10px;
  color: #82998f;
  font-size: 0.7rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.68rem;
}

.mobile-cta {
  display: none;
}

.policy-page {
  min-height: 70vh;
  padding-block: 70px 110px;
  background: var(--mint-50);
}

.policy-card {
  max-width: 860px;
  margin-inline: auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-card h1 {
  color: var(--green-950);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.policy-card h2 {
  margin-top: 38px;
  font-size: 1.4rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-card .updated {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 30px;
  }

  .product-orbit--two {
    display: none;
  }

  .facts-grid {
    gap: 15px;
  }

  .fact-card {
    padding: 28px 24px;
  }

  .ingredients-layout {
    gap: 45px;
  }

}

@media (max-width: 820px) {
  body {
    padding-bottom: 81px;
  }

  .disclosure-bar__inner {
    align-items: flex-start;
    padding-block: 9px;
    line-height: 1.35;
  }

  .disclosure-bar__label {
    display: none;
  }

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

  .header-inner > .button {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 68px 65px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    min-height: auto;
    margin-top: 20px;
  }

  .product-card {
    width: min(90%, 430px);
  }

  .product-orbit--one {
    width: 430px;
    height: 430px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: 84px;
    padding: 15px 10%;
  }

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

  .facts-grid,
  .ingredients-layout {
    grid-template-columns: 1fr;
  }

  .ingredients-layout {
    gap: 38px;
  }

  .refund-card {
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 35px;
  }

  .refund-card__seal img {
    width: 145px;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 35px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 80px;
    padding: 10px max(16px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 30px rgba(9, 37, 31, 0.13);
    backdrop-filter: blur(14px);
  }

  .mobile-cta strong,
  .mobile-cta span {
    display: block;
  }

  .mobile-cta strong {
    color: var(--green-950);
    font-size: 0.8rem;
  }

  .mobile-cta > div > span {
    color: var(--muted);
    font-size: 0.66rem;
  }

  .mobile-cta .button {
    min-height: 47px;
    padding-inline: 19px;
    font-size: 0.78rem;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  h1 {
    font-size: clamp(2.28rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding-block: 75px;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .hero__grid {
    padding-top: 54px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .product-card {
    width: 100%;
    padding: 18px;
    border-radius: 24px;
  }

  .product-card__tag {
    font-size: 0.55rem;
  }

  .product-orbit--one {
    width: 350px;
    height: 350px;
  }

  .trust-item {
    padding-inline: 15px;
  }

  .fact-card {
    min-height: auto;
  }

  .ingredient-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .ingredient-pill {
    min-height: 58px;
    padding: 9px 10px;
    gap: 8px;
    border-radius: 13px;
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .ingredient-pill span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.58rem;
  }

  .refund-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 31px 23px;
    text-align: center;
  }

  .refund-card__seal img {
    width: 130px;
  }

  .refund-card__copy .text-link {
    justify-content: center;
  }

  .final-cta {
    padding-block: 62px;
    text-align: center;
  }

  .final-cta__inner {
    align-items: stretch;
  }

  .final-cta__button {
    width: 100%;
    min-width: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta > div {
    display: none;
  }

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

  .policy-card {
    padding: 32px 23px;
    border-radius: 22px;
  }
}

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

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