:root {
  --green: #7fc800;
  --green-dark: #3e9300;
  --lime: #b8ea22;
  --orange: #ff7a00;
  --pink: #e7337a;
  --navy: #092244;
  --text: #24344d;
  --muted: #6c7a8c;
  --cream: #fffaf2;
  --paper: #ffffff;
  --line: rgba(9, 34, 68, .08);
  --shadow: 0 24px 70px rgba(9, 34, 68, .10);
  --shadow-soft: 0 14px 34px rgba(9, 34, 68, .08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(127, 200, 0, .14), transparent 22rem),
    radial-gradient(circle at 94% 12%, rgba(255, 122, 0, .12), transparent 20rem),
    linear-gradient(180deg, #fbfff4 0%, #fff 22%, #fffaf5 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture { display: block; }

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

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

.landing-page {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(22px, 4vw, 56px) 0 clamp(28px, 5vw, 68px);
}

.landing-page::before,
.landing-page::after {
  content: "";
  position: fixed;
  inset: auto auto 4% -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(231, 51, 122, .11), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.landing-page::after {
  inset: 22% -10rem auto auto;
  background: radial-gradient(circle, rgba(255, 122, 0, .12), transparent 70%);
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 72px)));
  margin-inline: auto;
}

.kicker,
.label {
  margin: 0 0 .9rem;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: clamp(.74rem, .9vw, .82rem);
}

.label {
  color: var(--pink);
  text-align: center;
  margin-bottom: .45rem;
}

.label--green { color: var(--lime); text-align: left; }

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

h1,
h2,
h3 { color: var(--navy); letter-spacing: 0; }

h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 7.6vw, 7.3rem);
  line-height: .88;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: .98;
  margin-bottom: 1.15rem;
}

h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.08;
  margin-bottom: .38rem;
}

p {
  font-size: clamp(.98rem, 1vw, 1.08rem);
  line-height: 1.72;
  color: var(--text);
}

.hero {
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(420px, 1.35fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
  position: relative;
  padding: clamp(28px, 4.5vw, 64px) 0 clamp(20px, 3vw, 36px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3rem auto auto -5rem;
  width: clamp(210px, 26vw, 400px);
  height: clamp(210px, 26vw, 400px);
  background:
    linear-gradient(45deg, rgba(127, 200, 0, .22), transparent 55%),
    radial-gradient(circle, rgba(127, 200, 0, .12), transparent 65%);
  border-radius: 999px;
  filter: blur(4px);
  opacity: .85;
  z-index: -1;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__lead {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  color: #2e405b;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-bottom: clamp(1.6rem, 2.4vw, 2.3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .9rem 1.55rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button:focus-visible {
  outline: 3px solid rgba(127, 200, 0, .35);
  outline-offset: 4px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, #55ae00 100%);
  box-shadow: 0 14px 30px rgba(91, 170, 0, .25);
}

.button--ghost {
  color: var(--green-dark);
  background: rgba(255, 255, 255, .75);
  border-color: rgba(91, 170, 0, .45);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.35rem;
}

.mini-fact {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #40516a;
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.25;
}

.mini-fact__icon,
.feature-item__icon,
.badge {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(127, 200, 0, .12);
  color: var(--green-dark);
}

.mini-fact__icon::before,
.feature-item__icon::before,
.badge::before {
  font-weight: 900;
  line-height: 1;
}

.leaf::before { content: "◒"; transform: rotate(-32deg); font-size: 1.45rem; }
.bolt::before { content: "ϟ"; font-size: 1.7rem; color: var(--pink); }
.drop::before { content: "◌"; font-size: 1.45rem; }

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127, 200, 0, .17), transparent 64%);
  filter: blur(18px);
  z-index: -1;
}

.hero__visual picture {
  width: 100%;
}

.hero__visual img {
  width: 100%;
  filter: drop-shadow(0 30px 45px rgba(9, 34, 68, .08));
  transform: scale(1.04);
  transform-origin: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: clamp(12px, 2vw, 28px);
}

.intro__photo {
  min-height: clamp(460px, 46vw, 620px);
  overflow: hidden;
  background: #f7e5c8;
}

.intro__photo picture,
.intro__photo img,
.moment-card picture,
.moment-card img,
.flavor-card picture,
.flavor-card img {
  width: 100%;
  height: 100%;
}

.intro__photo img,
.moment-card img,
.flavor-card img {
  object-fit: cover;
}

.intro__photo img {
  object-position: 50% 42%;
}

.intro__content {
  padding: clamp(28px, 5vw, 70px);
  align-self: center;
}

.intro__content > p:not(.kicker) {
  max-width: 56ch;
  margin-bottom: 2rem;
}

.feature-list {
  display: grid;
  gap: 1.15rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,250,242,.72));
  border: 1px solid rgba(9, 34, 68, .06);
}

.feature-item p {
  margin-bottom: 0;
  font-size: .94rem;
  line-height: 1.55;
  color: #536176;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(127, 200, 0, .17), rgba(127, 200, 0, .08));
}

.feature-item__icon.citrus::before { content: "◎"; font-size: 1.45rem; color: var(--green-dark); }
.feature-item__icon.energy { background: rgba(231, 51, 122, .12); }
.feature-item__icon.energy::before { content: "ϟ"; font-size: 1.9rem; color: var(--pink); }
.feature-item__icon.design::before { content: "✦"; font-size: 1.35rem; color: var(--green-dark); }

.flavors,
.moments,
.energy-block,
.final-cta {
  margin-top: clamp(46px, 6vw, 86px);
}

.section-heading {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(18px, 3vw, 32px);
}

.section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.flavor-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(250px, 24vw, 340px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, .52);
}

.flavor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.38) 52%, rgba(0,0,0,.72) 100%);
}

.flavor-card--orange::after {
  background: linear-gradient(90deg, rgba(0,0,0,.06) 0%, rgba(102,36,0,.34) 52%, rgba(102,36,0,.72) 100%);
}

.flavor-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 52%;
  padding: clamp(18px, 3vw, 34px);
  color: #fff;
}

.flavor-card__copy h3,
.flavor-card__copy p {
  color: #fff;
}

.flavor-card__copy h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  margin-bottom: .55rem;
}

.flavor-card__copy p {
  margin-bottom: 0;
  font-size: clamp(.9rem, 1vw, 1rem);
  line-height: 1.55;
  opacity: .94;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.moment-card {
  position: relative;
  min-height: clamp(310px, 32vw, 440px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 26%, rgba(0,0,0,.68) 100%);
  z-index: 1;
}

.moment-card__text {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
  color: #fff;
  max-width: 28rem;
}

.moment-card__text h3,
.moment-card__text p {
  color: #fff;
}

.moment-card__text h3 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}

.moment-card__text p {
  max-width: 24rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.badge {
  width: 42px;
  height: 42px;
  margin-bottom: .7rem;
  background: var(--green);
  color: white;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.badge.heart { background: var(--pink); }
.badge.heart::before { content: "♥"; font-size: 1.2rem; }

.energy-block {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, .55fr);
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  min-height: clamp(480px, 43vw, 620px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 30%, rgba(127, 200, 0, .18), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(255, 122, 0, .13), transparent 28%),
    linear-gradient(135deg, #081019 0%, #111b22 52%, #20282d 100%);
  box-shadow: 0 36px 90px rgba(3, 10, 18, .32);
  color: #fff;
  position: relative;
  isolation: isolate;
}

.energy-block::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.24) 0 1px, transparent 1.8px), radial-gradient(circle at 72% 62%, rgba(255,255,255,.2) 0 1px, transparent 1.8px);
  background-size: 34px 34px, 52px 52px;
  z-index: -1;
}

.energy-block h2,
.energy-block h3,
.energy-block p {
  color: #fff;
}

.energy-block__copy > p:not(.label) {
  max-width: 58ch;
  color: rgba(255,255,255,.82);
}

.energy-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: clamp(24px, 3vw, 38px);
}

.energy-benefits article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.energy-benefits__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: .8rem;
  border-radius: 14px;
  color: var(--lime);
  font-weight: 900;
  background: rgba(184,234,34,.12);
}

.energy-benefits h3 {
  letter-spacing: 0;
}

.energy-benefits p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}

.energy-block__visual {
  align-self: end;
  justify-self: center;
  width: min(330px, 100%);
}

.energy-block__visual img {
  width: 100%;
  border-radius: 18px;
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.45));
  mix-blend-mode: screen;
}

.final-cta {
  min-height: clamp(290px, 32vw, 390px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, .6fr) minmax(280px, 1fr) minmax(190px, .6fr);
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 50px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72)),
    radial-gradient(circle at 12% 72%, rgba(127,200,0,.25), transparent 25%),
    radial-gradient(circle at 90% 68%, rgba(255,122,0,.22), transparent 25%),
    #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(9,34,68,.55) 0 1px, transparent 1.8px);
  background-size: 42px 42px;
  pointer-events: none;
}

.final-cta__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta__content h2 {
  max-width: 620px;
  margin-inline: auto;
}

.final-cta__content p {
  color: #485872;
  margin-bottom: 1.6rem;
}

.final-cta__fruit {
  position: relative;
  min-height: 240px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.final-cta__fruit--lime {
  background: linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.08)), url("../images/flavor-lime-720.webp") center/cover;
}

.final-cta__fruit--orange {
  background: linear-gradient(270deg, rgba(255,255,255,.72), rgba(255,255,255,.08)), url("../images/flavor-orange-720.webp") center/cover;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease var(--delay, 0s), transform .65s ease var(--delay, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root { --radius-xl: 30px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 38px;
  }

  .hero__copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  h1 {
    max-width: 11ch;
    margin-inline: auto;
  }

  .hero__lead { margin-inline: auto; }
  .button-row,
  .hero__facts { justify-content: center; }

  .hero__visual {
    width: min(960px, 100%);
    margin-inline: auto;
  }

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

  .intro__content {
    padding: clamp(26px, 4vw, 48px);
  }

  .energy-block {
    grid-template-columns: 1fr .42fr;
  }
}

@media (max-width: 820px) {
  .section-shell {
    width: min(100% - 28px, 680px);
  }

  .landing-page {
    padding-top: 18px;
  }

  .kicker { text-align: center; }

  h1 {
    font-size: clamp(3.15rem, 12vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 8vw, 3.2rem);
  }

  .hero__visual img {
    transform: scale(1.08);
  }

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

  .intro__photo {
    min-height: clamp(420px, 95vw, 650px);
  }

  .intro__content {
    text-align: left;
  }

  .intro__content .kicker { text-align: left; }

  .flavor-grid,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .flavor-card {
    min-height: 350px;
  }

  .flavor-card::after,
  .flavor-card--orange::after {
    background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.72) 100%);
  }

  .flavor-card__copy {
    max-width: 100%;
    left: 0;
    right: 0;
  }

  .moment-card {
    min-height: 390px;
  }

  .energy-block {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .energy-benefits {
    grid-template-columns: 1fr;
  }

  .energy-block__visual {
    width: min(280px, 78%);
    align-self: center;
  }

  .energy-block__visual img {
    mix-blend-mode: normal;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .final-cta__fruit {
    min-height: 150px;
  }

  .final-cta__fruit--orange { order: 3; }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 22px, 460px);
  }

  .hero {
    gap: 8px;
  }

  .hero__copy {
    text-align: left;
  }

  .hero__copy .kicker,
  h1,
  .hero__lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 4.4rem);
    max-width: 9ch;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
    gap: .7rem;
  }

  .button-row .button {
    flex: 1 1 140px;
  }

  .hero__facts {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr;
  }

  .mini-fact {
    padding: .55rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--line);
  }

  .intro,
  .energy-block,
  .final-cta {
    border-radius: 24px;
  }

  .intro__photo {
    min-height: 470px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .flavors,
  .moments,
  .energy-block,
  .final-cta {
    margin-top: 48px;
  }

  .flavor-card,
  .moment-card {
    border-radius: 22px;
    min-height: 420px;
  }

  .flavor-card__copy,
  .moment-card__text {
    padding: 22px;
    left: 0;
    right: 0;
  }

  .moment-card__text {
    bottom: 0;
  }

  .energy-block {
    padding: 24px;
  }

  .energy-block__visual {
    width: min(250px, 88%);
  }

  .final-cta {
    padding: 18px;
  }

  .final-cta__content {
    padding: 4px 4px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}
