:root {
  --bg: #fff6ef;
  --bg-deep: #ffe8dc;
  --surface: rgba(255, 251, 247, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(255, 244, 237, 0.9);
  --line: rgba(114, 42, 27, 0.11);
  --line-strong: rgba(224, 89, 52, 0.28);
  --text: #2c170f;
  --muted: #775347;
  --primary: #e24f2b;
  --primary-dark: #ab3218;
  --accent: #ff9d4d;
  --accent-soft: rgba(255, 157, 77, 0.2);
  --shadow: 0 28px 70px rgba(140, 58, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 157, 77, 0.2), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(226, 79, 43, 0.15), transparent 26%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 48%, #fff2e8 100%);
  overflow-x: hidden;
  padding-bottom: 92px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(153, 63, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 63, 35, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 90%);
}

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

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.ambient-top {
  width: 420px;
  height: 420px;
  top: -180px;
  left: 22%;
  background: radial-gradient(circle, rgba(255, 157, 77, 0.22), transparent 70%);
}

.ambient-left {
  width: 340px;
  height: 340px;
  top: 18%;
  left: -140px;
  background: radial-gradient(circle, rgba(255, 133, 87, 0.22), transparent 70%);
}

.ambient-right {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 42%;
  background: radial-gradient(circle, rgba(226, 79, 43, 0.16), transparent 72%);
}

.container {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 244, 0.74);
  border-bottom: 1px solid rgba(171, 50, 24, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(176px, 46vw);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-secondary,
.btn-primary,
.cta-main,
.cta-link {
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.btn-secondary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(171, 50, 24, 0.14);
}

.btn-primary {
  color: #fff8f4;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(171, 50, 24, 0.24);
  box-shadow: 0 18px 36px rgba(171, 50, 24, 0.18);
}

.btn-secondary:hover,
.btn-primary:hover,
.cta-main:hover,
.cta-link:hover,
.whatsapp-float:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
  padding: 4.9rem 0 3rem;
}

.hero-copy {
  padding: 1.2rem 0 1rem;
}

.eyebrow,
.card-kicker,
.compare-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}

.eyebrow.light {
  color: rgba(255, 237, 228, 0.84);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  max-width: 11ch;
}

h1 span {
  display: block;
  color: var(--primary);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-lead {
  margin: 1.35rem 0 0.45rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  color: #6e392c;
}

.hero-text,
.hero-note,
.section-intro p,
.panel p,
.proof-card p,
.formula-card p,
.alert-card p,
.footer-wrap p,
.footer-wrap small {
  color: var(--muted);
}

.hero-text {
  margin: 0;
  max-width: 38rem;
  font-size: 1.08rem;
}

.hero-note {
  margin: 0.95rem 0 0;
  max-width: 39rem;
  font-size: 1.06rem;
  color: #4b261d;
  font-weight: 700;
}

.hero-actions,
.signal-row,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  align-items: center;
  margin-top: 1.5rem;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.92rem 1.22rem;
  border-radius: 16px;
  color: #fff9f5;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(171, 50, 24, 0.22);
  box-shadow: 0 24px 46px rgba(171, 50, 24, 0.22);
  font-weight: 800;
}

.cta-link {
  font-weight: 800;
  color: var(--primary-dark);
}

.cta-link.strong {
  color: #fff2ea;
}

.signal-row {
  margin-top: 1.45rem;
}

.signal-row span,
.routine-grid span,
.inline-list li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.56rem 0.86rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(171, 50, 24, 0.12);
  color: #5d3428;
  font-size: 0.92rem;
  font-weight: 700;
}

.proof-grid,
.hero-visual,
.compare-grid,
.cards-grid,
.split-grid,
.routine-grid,
.footer-wrap {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.55rem;
}

.proof-card,
.product-card,
.formula-card,
.panel,
.feature-band,
.routine-band,
.closing-card,
.alert-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-card {
  border-radius: 22px;
  padding: 1rem;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.hero-visual {
  align-items: start;
}

.product-card {
  position: relative;
  margin: 0;
  padding: 1.7rem 1.4rem 1.3rem;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 171, 92, 0.28), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 231, 0.92));
}

.product-halo {
  position: absolute;
  inset: 10% auto auto 50%;
  width: 66%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 79, 43, 0.18), transparent 68%);
  pointer-events: none;
}

.product-main {
  position: relative;
  width: auto;
  max-width: 100%;
  height: min(620px, 72vh);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 36px rgba(103, 34, 18, 0.18));
}

.product-card figcaption {
  position: relative;
  margin-top: 0.9rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.formula-card {
  border-radius: 28px;
  padding: 1.45rem;
  background:
    linear-gradient(155deg, rgba(115, 35, 20, 0.96), rgba(171, 50, 24, 0.94)),
    var(--surface);
}

.formula-card h2,
.formula-card p,
.formula-card .card-kicker,
.formula-card li {
  color: #fff4ec;
}

.formula-card h2 {
  margin-top: 0.35rem;
  max-width: 11ch;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.formula-card p {
  margin: 0.6rem 0 0;
}

.inline-list,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.inline-list li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 240, 232, 0.18);
  color: #fff3ea;
}

.section {
  padding: 1.7rem 0 0.7rem;
}

.section-intro {
  margin-bottom: 1.25rem;
  max-width: 46rem;
}

.section-intro.narrow {
  max-width: 39rem;
}

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

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

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

.split-grid.align-start {
  align-items: start;
}

.panel {
  border-radius: 28px;
  padding: 1.45rem;
  background: var(--surface-strong);
}

.issue-card,
.benefit-card,
.ingredient-card,
.faq-card,
.support-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 236, 0.92)),
    var(--surface);
}

.issue-card h3,
.benefit-card h3,
.ingredient-card h3,
.faq-card h3,
.support-panel h3,
.flow-card h3 {
  margin-bottom: 0.6rem;
}

.feature-band {
  border-radius: 34px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 91, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(117, 34, 18, 0.98), rgba(61, 24, 16, 0.98));
}

.feature-copy h2,
.feature-copy p {
  max-width: 38rem;
  color: #fff4ec;
}

.compare-grid {
  align-content: stretch;
}

.compare-card {
  border-radius: 26px;
  padding: 1.25rem;
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(255, 240, 232, 0.14);
}

.compare-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.compare-card span {
  color: rgba(255, 241, 233, 0.84);
}

.compare-muted {
  background: rgba(255, 255, 255, 0.08);
}

.compare-strong {
  background: linear-gradient(145deg, rgba(255, 162, 82, 0.18), rgba(255, 255, 255, 0.1));
}

.benefit-card,
.ingredient-card,
.faq-card,
.issue-card {
  min-height: 100%;
}

.ingredients-grid .ingredient-card {
  min-height: 220px;
}

.statement-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 170, 91, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(117, 34, 18, 0.96), rgba(171, 50, 24, 0.94));
  color: #fff5ef;
}

.statement-panel h2,
.statement-panel p {
  color: #fff5ef;
}

.flow-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 235, 0.92)),
    var(--surface);
}

.check-list {
  padding-left: 1.1rem;
  list-style: disc;
}

.check-list li {
  margin-bottom: 0.6rem;
}

.audience-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 238, 0.92)),
    var(--surface);
}

.support-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.routine-band {
  border-radius: 34px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 91, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 231, 0.94));
}

.routine-copy p:last-child {
  margin-bottom: 0;
}

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

.closing-card {
  border-radius: 36px;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 157, 77, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(117, 34, 18, 0.98), rgba(61, 24, 16, 0.98));
}

.closing-copy {
  max-width: 44rem;
  margin: 0 auto;
}

.closing-copy h2,
.closing-copy p {
  color: #fff5ee;
}

.closing-copy h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.closing-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.alert-card {
  border-radius: 24px;
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 249, 244, 0.96), rgba(255, 241, 232, 0.92)),
    var(--surface);
}

.alert-card h3 {
  margin-bottom: 0.55rem;
}

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(145deg, #5a2014, #8f311b);
  color: #fff1e9;
  padding: 1.6rem 0 2rem;
}

.footer-wrap {
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: 170px;
  filter: brightness(0) invert(1);
}

.footer-wrap p,
.footer-wrap small {
  margin: 0;
  color: #ffe7dc;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: #fff9f5;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(171, 50, 24, 0.2);
  box-shadow: 0 18px 36px rgba(171, 50, 24, 0.24);
}

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

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

@media (max-width: 1060px) {
  .hero,
  .feature-band,
  .routine-band,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 3.8rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 24px, 1160px);
  }

  .nav {
    min-height: 72px;
    flex-wrap: wrap;
  }

  .brand {
    width: 150px;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 2.8rem;
    gap: 1.4rem;
  }

  h1 {
    max-width: 12ch;
  }

  .cards-2,
  .cards-4,
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .product-main {
    height: min(480px, 58vh);
  }

  .panel,
  .proof-card,
  .formula-card {
    padding: 1.15rem;
  }

  .section {
    padding-top: 1.35rem;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 82px;
  }

  .btn-secondary,
  .btn-primary {
    font-size: 0.85rem;
    padding: 0.66rem 0.74rem;
  }

  .cta-main,
  .cta-link,
  .whatsapp-float {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .signal-row,
  .closing-actions {
    display: grid;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    font-size: 0.9rem;
    padding: 0.72rem 0.84rem;
  }
}
