:root {
  --ink: #17110f;
  --paper: #fff7ef;
  --cream: #ffe8d2;
  --coral: #ff3f2e;
  --deep-coral: #b51b12;
  --green: #08784f;
  --leaf: #b9f23d;
  --gold: #ffc247;
  --rose: #ffb4a6;
  --line: rgba(34, 24, 21, 0.14);
  --shadow: 0 24px 70px rgba(56, 30, 24, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(35, 20, 16, 0.76), rgba(35, 20, 16, 0));
}

.brand,
.header-nav,
.hero-actions,
.trust-strip,
.site-footer,
.sticky-buy {
  display: flex;
  align-items: center;
}

.brand {
  text-decoration: none;
  font-weight: 900;
}

.brand-word {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-dot {
  color: var(--leaf);
}

.header-nav {
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 750;
}

.header-nav a,
.nav-cta,
.site-footer a {
  text-decoration: none;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--deep-coral);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 74px) 76px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-cucumber-face-mask.png");
  background-size: cover;
  background-position: 64% center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 10, 8, 0.96) 0%, rgba(20, 10, 8, 0.77) 42%, rgba(20, 10, 8, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 63, 46, 0.28), rgba(34, 24, 21, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd0c7;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 9.6vw, 8.9rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  line-height: 1.05;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  border: 2px solid transparent;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.button-primary,
.button-checkout {
  background: var(--leaf);
  color: #111;
  box-shadow: 0 16px 34px rgba(185, 242, 61, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(255, 63, 46, 0.5);
}

.price-battle {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 190px));
  gap: 10px;
  margin: 0 0 20px;
}

.price-battle div {
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.price-battle div:first-child {
  position: relative;
  overflow: hidden;
}

.price-battle div:first-child::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 5px;
  background: var(--coral);
  transform: rotate(-8deg);
}

.price-battle strong,
.price-battle span {
  display: block;
}

.price-battle strong {
  font-size: 2rem;
  line-height: 1;
}

.price-battle span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.intro-section,
.label-section,
.recipes-section,
.inside-section,
.audience-section,
.faq-section,
.checkout-section {
  padding: clamp(68px, 9vw, 120px) clamp(20px, 5vw, 74px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.inside-copy h2,
.audience-section h2,
.checkout-panel h2 {
  margin-bottom: 0;
}

.intro-grid p,
.label-copy p,
.inside-copy p,
.checkout-copy,
.faq-list p {
  color: rgba(34, 24, 21, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.label-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(30px, 5vw, 70px);
  background: #fff;
}

.label-copy h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.label-copy .button {
  margin-top: 14px;
}

.ingredient-ad {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(23, 17, 15, 0.18);
}

.ingredient-ad img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.sticker {
  position: absolute;
  width: min(34vw, 330px);
  min-width: 210px;
  padding: 16px 18px 18px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, transparent 68%, rgba(0, 0, 0, 0.16) 69%, rgba(0, 0, 0, 0.16) 72%, transparent 73%),
    #fff;
  color: #080808;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.sticker strong,
.sticker span {
  display: block;
}

.sticker strong {
  font-size: clamp(1rem, 2.1vw, 1.55rem);
  line-height: 0.98;
}

.sticker span {
  margin-top: 20px;
  color: rgba(8, 8, 8, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sticker-one {
  top: 19%;
  right: 9%;
  transform: rotate(-5deg);
}

.sticker-two {
  top: 15%;
  left: 8%;
  transform: rotate(4deg);
}

.sticker-three {
  right: 18%;
  bottom: 10%;
  transform: rotate(6deg);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 74px) clamp(68px, 8vw, 110px);
}

.benefit-card,
.recipe-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.benefit-card {
  min-height: 245px;
}

.benefit-card span,
.recipe-grid span {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-weight: 950;
}

.benefit-card h3,
.recipe-grid h3 {
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.benefit-card p,
.recipe-grid p {
  margin-bottom: 0;
  color: rgba(34, 24, 21, 0.7);
  line-height: 1.55;
}

.benefit-card.coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.benefit-card.green {
  background: var(--leaf);
  border-color: var(--leaf);
}

.benefit-card.gold {
  background: var(--gold);
  border-color: var(--gold);
}

.benefit-card.coral p {
  color: rgba(255, 255, 255, 0.78);
}

.recipes-section {
  background: #15100f;
  color: #fff;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.recipe-grid article {
  min-height: 224px;
  background: #fff7ef;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--ink);
}

.recipe-grid span {
  color: var(--deep-coral);
}

.recipe-grid p {
  color: rgba(34, 24, 21, 0.72);
}

.inside-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(239, 92, 69, 0.16), rgba(158, 207, 118, 0.16)),
    var(--cream);
}

.inside-copy .button {
  margin-top: 12px;
}

.ebook-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.pdf-preview {
  margin: 0;
}

.pdf-preview img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(34, 24, 21, 0.16);
  box-shadow: var(--shadow);
}

.pdf-preview figcaption {
  margin-top: 8px;
  color: rgba(34, 24, 21, 0.48);
  font-size: 0.82rem;
  font-weight: 750;
}

.inside-panel {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  border: 1px solid rgba(34, 24, 21, 0.08);
  background: rgba(255, 255, 255, 0.46);
}

.inside-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inside-panel-title {
  margin: 0 0 16px;
  color: var(--deep-coral);
  font-weight: 950;
  text-transform: uppercase;
}

.inside-list li,
.audience-list p,
.faq-list details {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.inside-list li {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
}

.inside-list strong {
  font-weight: 950;
}

.inside-list span {
  color: rgba(34, 24, 21, 0.66);
  line-height: 1.45;
}

.audience-section {
  background: var(--paper);
}

.audience-section h2 {
  max-width: 760px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.audience-list p {
  min-height: 155px;
  margin: 0;
  padding: 22px;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.35;
}

.checkout-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(20, 10, 8, 0.95), rgba(255, 63, 46, 0.7)),
    url("assets/face-recipe-campaign.png") center/cover;
}

.checkout-panel {
  width: min(760px, 100%);
}

.price {
  margin: 26px 0 12px;
  color: #ffd0c7;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.checkout-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
}

.button-checkout {
  margin: 16px 0 12px;
  background: var(--leaf);
  color: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.checkout-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.faq-section {
  background: #fff;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 74px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: #ffd0c7;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: flex-end;
}

.legal-page {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(239, 92, 69, 0.1), rgba(158, 207, 118, 0.12)),
    var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 74px);
  background: var(--ink);
  color: #fff;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.legal-main h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
}

.legal-updated {
  margin-bottom: 34px;
  color: rgba(34, 24, 21, 0.58);
  font-weight: 800;
}

.legal-main section {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-main h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.legal-main p {
  margin-bottom: 0;
  color: rgba(34, 24, 21, 0.74);
  font-size: 1.05rem;
  line-height: 1.68;
}

.legal-main p + p {
  margin-top: 14px;
}

.legal-main a {
  color: var(--deep-coral);
  font-weight: 900;
}

.legal-footer {
  margin-top: auto;
}

.sticky-buy {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border-radius: 999px;
  background: rgba(34, 24, 21, 0.92);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: translateY(120%);
  transition: transform 180ms ease;
}

.sticky-buy.is-visible {
  transform: translateY(0);
}

.sticky-buy span {
  font-size: 0.92rem;
  font-weight: 900;
}

.sticky-buy a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
}

.status-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(20, 10, 8, 0.86), rgba(255, 63, 46, 0.5)),
    url("assets/hero-cucumber-face-mask.png") center/cover;
}

.status-panel {
  width: min(720px, 100%);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 58px);
  background: rgba(255, 247, 239, 0.94);
  box-shadow: var(--shadow);
}

.status-panel h1 {
  color: var(--ink);
}

.status-panel p:not(.eyebrow) {
  color: rgba(34, 24, 21, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .header-nav {
    display: none;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 92svh;
    padding: 96px 20px 58px;
  }

  .hero-media {
    background-position: 72% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 10, 8, 0.94), rgba(20, 10, 8, 0.58)),
      linear-gradient(0deg, rgba(255, 63, 46, 0.4), rgba(34, 24, 21, 0));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-copy {
    font-size: 1.04rem;
  }

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

  .button {
    width: 100%;
  }

  .intro-grid,
  .label-section,
  .inside-section,
  .ebook-preview {
    grid-template-columns: 1fr;
  }

  .ingredient-ad,
  .ingredient-ad img {
    min-height: 470px;
  }

  .sticker {
    width: min(74vw, 285px);
    min-width: 0;
  }

  .sticker-one {
    top: 16%;
    right: 5%;
  }

  .sticker-two {
    top: 7%;
    left: 5%;
  }

  .sticker-three {
    right: 8%;
    bottom: 8%;
  }

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

  .recipe-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list p {
    min-height: auto;
  }

  .sticky-buy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .site-footer,
  .footer-links {
    justify-content: flex-start;
  }

  .legal-header {
    padding: 14px 16px;
  }
}
