:root {
  --ink: #26242a;
  --muted: #6d6972;
  --paper: #fffaf7;
  --green: #3b9829;
  --matcha: #3b9829;
  --matcha-soft: #d9f29a;
  --cocoa: #4b2c20;
  --cocoa-soft: #e8c6ad;
  --lemon: #f5b72f;
  --lemon-soft: #ffe48b;
  --pink: #fff1d5;
  --white: #fff;
  --line: rgba(38, 36, 42, .1);
  --shadow: 0 28px 80px rgba(70, 52, 36, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 213, 220, .42), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(217, 242, 154, .52), transparent 20rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 72%, #fff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1360px, calc(100% - 44px));
  margin: 18px auto 0;
  padding: 16px 70px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(85, 62, 45, .09);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: center;
}

.brand-logo {
  width: 122px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 76px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.nav-right {
  justify-self: end;
}

.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn.primary,
.header-cta {
  color: white;
  background: var(--lemon);
  box-shadow: 0 14px 24px rgba(245, 183, 47, .28);
}

.btn.secondary {
  color: white;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .45);
}

.btn:hover,
.header-cta:hover,
.product-tabs button:hover,
.choice-group button:hover,
.round-btn:hover {
  transform: translateY(-2px);
}

.section-band {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0;
}

.hero {
  --hero-bg: #3b9829;
  --hero-bg-deep: #247b25;
  --hero-cream: rgba(226, 244, 151, .46);
  --hero-splash: #f5b72f;
  --hero-splash-soft: #ffe48b;
  --hero-word: rgba(233, 244, 183, .44);
  position: relative;
  min-height: 610px;
  margin-top: 22px;
  padding: 54px 78px 34px;
  overflow: visible;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 60% 28%, var(--hero-cream), transparent 17rem),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .16), transparent 15rem),
    linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-deep) 100%);
  box-shadow: var(--shadow);
}

.hero[data-active-product="cocoa"] {
  --hero-bg: #5a3425;
  --hero-bg-deep: #2f1b14;
  --hero-cream: rgba(232, 198, 173, .42);
  --hero-splash: #7a4a32;
  --hero-splash-soft: #d8aa85;
  --hero-word: rgba(232, 198, 173, .38);
}

.hero[data-active-product="lemon"] {
  --hero-bg: #c58612;
  --hero-bg-deep: #8b5a09;
  --hero-cream: rgba(255, 218, 103, .38);
  --hero-splash: #2f842b;
  --hero-splash-soft: #ffe48b;
  --hero-word: rgba(255, 235, 152, .42);
}

.hero-count {
  position: absolute;
  top: 112px;
  left: 138px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .82rem;
  font-weight: 800;
}

.hero-count i {
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, .7);
}

.hero-count b {
  color: rgba(255, 255, 255, .72);
}

.eyebrow {
  margin: 0 0 12px;
  color: inherit;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: .82;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fredoka, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  position: absolute;
  top: 158px;
  left: 134px;
  right: 24px;
  z-index: 1;
  color: var(--hero-word);
  font-size: clamp(5.8rem, 11vw, 10rem);
  line-height: .8;
  white-space: nowrap;
}

h2 {
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

p {
  line-height: 1.68;
}

.hero-text {
  position: absolute;
  left: 138px;
  top: 292px;
  z-index: 4;
  max-width: 245px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .92rem;
  line-height: 1.42;
}

.hero-hpp {
  position: absolute;
  right: 126px;
  top: 206px;
  z-index: 5;
  display: grid;
  gap: 8px;
  width: 340px;
  padding: 14px;
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(12px);
}

.hero-hpp label,
.hero-hpp span {
  font-size: .78rem;
  font-weight: 800;
  opacity: .82;
}

.hero-hpp input {
  width: 100%;
  accent-color: var(--lemon);
}

.hero-hpp div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hero-hpp strong {
  font-size: .95rem;
  line-height: 1;
}

.hero-hpp .hero-profit {
  margin-top: 2px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lemon);
}

.hero-actions {
  position: absolute;
  right: 126px;
  top: 388px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 340px;
}

.hero-actions .btn {
  flex: 1;
  white-space: nowrap;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-product {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 58px;
  width: min(360px, 38vw);
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(41, 36, 28, .34));
  animation: floatProduct 5s ease-in-out infinite;
  transition: opacity .55s ease;
}

.hero-splash-img {
  position: absolute;
  left: 50%;
  bottom: 74px;
  z-index: 3;
  width: min(820px, 68vw);
  height: 360px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(41, 36, 28, .18));
  transition: opacity .55s ease;
}

.hero.is-dissolving .hero-product,
.hero.is-dissolving .hero-splash-img,
.hero.is-dissolving .hero-garnish {
  opacity: 0;
}

@keyframes floatProduct {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateX(-50%) translateY(-12px) rotate(2deg);
  }
}

.splash {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-garnish {
  position: absolute;
  z-index: 5;
  width: 132px;
  height: 132px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 14px rgba(41, 36, 28, .16));
  transition: opacity .55s ease;
}

.garnish-one {
  top: -54px;
  right: 20%;
  transform: rotate(20deg);
}

.garnish-two {
  left: 8%;
  bottom: 58px;
  width: 162px;
  height: 162px;
  transform: rotate(-24deg);
}

.garnish-three {
  right: -34px;
  bottom: 172px;
  width: 124px;
  height: 124px;
  transform: rotate(38deg);
}

.hero[data-active-product="cocoa"] .hero-garnish {
  width: 146px;
  height: 146px;
}

.hero[data-active-product="lemon"] .hero-garnish {
  width: 142px;
  height: 142px;
}

.hero[data-active-product="lemon"] .garnish-two {
  width: 174px;
  height: 174px;
}

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

.problem .eyebrow,
.solution .eyebrow,
.benefits .eyebrow,
.products .eyebrow,
.testimonials .eyebrow,
.cta .eyebrow {
  color: var(--matcha);
}

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

.problem-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(70, 52, 36, .08);
}

.problem-grid article:nth-child(1) {
  background: var(--matcha-soft);
}

.problem-grid article:nth-child(2) {
  background: #ffe8b0;
}

.problem-grid article:nth-child(3) {
  background: #fff1d5;
}

.problem-grid article:nth-child(4) {
  background: var(--cocoa-soft);
}

.problem-grid p,
.benefit-list p,
.solution-copy p,
.cta-copy p,
.calc-note,
.form-note {
  color: var(--muted);
}

.icon-dot {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: white;
  background: var(--matcha);
  font-weight: 900;
}

.solution {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.solution-copy {
  padding-left: 90px;
}

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

.solution-list div {
  display: flex;
  align-items: end;
  min-height: 138px;
  padding: 22px;
  border-radius: 22px;
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(70, 52, 36, .08);
}

.matcha-card {
  background: var(--matcha-soft);
}

.lemon-card {
  background: var(--lemon-soft);
}

.cream-card {
  background: #fff1d5;
}

.cocoa-card {
  background: var(--cocoa);
  color: white !important;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

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

.benefit-list article,
.calculator,
.lead-form,
.testimonial-box {
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 46px rgba(70, 52, 36, .08);
}

.benefit-list article {
  padding: 24px;
}

.calculator {
  padding: 24px;
  color: white;
  background:
    radial-gradient(circle at 80% 16%, rgba(245, 183, 47, .55), transparent 10rem),
    var(--cocoa);
}

.calculator label {
  display: block;
  margin: 22px 0 12px;
  color: rgba(255, 255, 255, .74);
  font-weight: 800;
}

.calculator input {
  width: 100%;
  accent-color: var(--lemon);
}

.calc-row,
.calc-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.calc-total {
  margin-top: 8px;
  padding: 18px;
  border: 0;
  border-radius: 18px;
  background: var(--lemon);
  color: var(--ink);
}

.calc-note {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

.product-tabs,
.choice-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.product-tabs button,
.choice-group button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #edf6d5;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.product-tabs button:nth-child(2) {
  background: var(--cocoa-soft);
}

.product-tabs button:nth-child(3) {
  background: var(--lemon-soft);
}

.product-tabs button.active,
.choice-group button.active {
  color: white;
  background: var(--active, var(--matcha));
}

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

.product-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 46px rgba(70, 52, 36, .09);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.product-card p {
  margin: 8px 0 12px;
  color: var(--muted);
}

.product-card strong {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
}

.product-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  color: white;
  background: var(--matcha);
  font-weight: 900;
}

.cocoa-product a {
  background: var(--cocoa);
}

.lemon-product a {
  background: var(--lemon);
}

.testimonial-box {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, #fff 0%, #fff0c9 100%);
}

.testimonial-box blockquote {
  margin: 0;
}

.testimonial-box p {
  margin: 0 0 14px;
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
}

.testimonial-box footer {
  color: var(--matcha);
  font-weight: 900;
}

.round-btn {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--lemon);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 56px;
  overflow: hidden;
  border-radius: 34px;
  color: white;
  background: linear-gradient(135deg, #3b9829 0%, #2f842b 100%);
  box-shadow: var(--shadow);
}

.cta .eyebrow,
.cta-copy p {
  color: white;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-drop {
  display: none;
}

.drop-one {
  width: 120px;
  height: 120px;
  left: 32%;
  top: 38px;
}

.drop-two {
  width: 70px;
  height: 70px;
  left: 8%;
  bottom: 42px;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(14px);
}

.lead-form label {
  margin: 10px 0 8px;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
}

.btn.full {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin-bottom: 0;
  font-size: .86rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  padding: 30px 0 40px;
  color: var(--muted);
  font-weight: 800;
}

.footer-logo {
  grid-column: 2;
  justify-self: center;
  width: 124px;
  height: 46px;
  object-fit: contain;
}

.back-top {
  grid-column: 3;
  justify-self: end;
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 30;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: var(--matcha);
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(59, 152, 41, .22);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .nav-links {
    display: none;
  }

  .solution,
  .benefit-layout,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 600px;
    padding-inline: 40px;
  }

  h1 {
    left: 50px;
    right: 50px;
    font-size: clamp(4.2rem, 13vw, 7.4rem);
  }

  .hero-count,
  .hero-text {
    left: 58px;
  }

  .hero-actions {
    right: 58px;
  }

  .hero-hpp {
    right: 58px;
  }

  .hero-product {
    width: min(330px, 48vw);
  }

  .solution-copy {
    padding-left: 0;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-band,
  .site-footer {
    width: calc(100% - 22px);
  }

  .site-header {
    top: 10px;
    display: flex;
    justify-content: center;
    padding: 10px 14px;
  }

  .brand {
    justify-self: center;
  }

  .header-cta {
    display: none;
  }

  .section-band {
    padding: 52px 0;
  }

  .hero {
    min-height: 840px;
    padding: 28px;
    border-radius: 26px;
    overflow: hidden;
  }

  h1 {
    top: 92px;
    left: 22px;
    right: 22px;
    max-width: calc(100% - 44px);
    font-size: clamp(3.3rem, 15vw, 5rem);
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: .88;
  }

  .hero-count {
    top: 62px;
    left: 28px;
  }

  .hero-text {
    left: 28px;
    right: 28px;
    top: 515px;
    max-width: none;
    font-size: .84rem;
  }

  .hero-hpp {
    left: 28px;
    right: auto;
    top: 595px;
    width: calc(100% - 56px);
    padding: 10px 13px;
  }

  .hero-actions {
    left: 28px;
    right: auto;
    top: 758px;
    width: calc(100% - 56px);
  }

  .hero-product {
    top: 154px;
    width: min(300px, 72vw);
    height: 330px;
  }

  .hero-splash-img {
    top: 290px;
    bottom: auto;
    z-index: 3;
    width: 560px;
    height: 260px;
  }

  .garnish-one {
    right: 5%;
    top: -26px;
    width: 70px;
    height: 70px;
  }

  .garnish-two {
    left: -8px;
    bottom: 96px;
    width: 84px;
    height: 84px;
  }

  .garnish-three {
    right: -8px;
    bottom: 235px;
    width: 64px;
    height: 64px;
  }

  .problem-grid,
  .benefit-list,
  .solution-list,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 24px;
    border-radius: 26px;
  }

  .testimonial-box {
    grid-template-columns: 1fr;
  }

  .round-btn {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-logo,
  .back-top {
    grid-column: auto;
    justify-self: center;
  }

  .back-top {
    right: 18px;
    bottom: 18px;
  }
}
