:root {
  --bg: #f7f0e3;
  --bg-deep: #ead5a4;
  --surface: rgba(255, 250, 241, 0.84);
  --surface-strong: rgba(255, 253, 247, 0.95);
  --line: rgba(98, 59, 26, 0.12);
  --text: #2b180c;
  --muted: #6c503f;
  --primary: #f1b419;
  --primary-strong: #d28a12;
  --coffee: #4c2a17;
  --coffee-soft: #6b3c22;
  --cream: #fff8ee;
  --shadow: 0 28px 70px rgba(84, 49, 20, 0.14);
}

* {
  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% 12%, rgba(241, 180, 25, 0.2), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(107, 60, 34, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 55%, #f5ecd9 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(101, 63, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 63, 27, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  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: 440px;
  height: 440px;
  top: -180px;
  left: 28%;
  background: radial-gradient(circle, rgba(241, 180, 25, 0.22), transparent 70%);
}

.ambient-left {
  width: 360px;
  height: 360px;
  top: 18%;
  left: -140px;
  background: radial-gradient(circle, rgba(210, 138, 18, 0.18), transparent 70%);
}

.ambient-right {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 48%;
  background: radial-gradient(circle, rgba(76, 42, 23, 0.14), 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, 239, 0.76);
  border-bottom: 1px solid rgba(76, 42, 23, 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(168px, 44vw);
}

.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(--coffee);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(76, 42, 23, 0.12);
}

.btn-primary {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--coffee-soft), var(--coffee));
  border: 1px solid rgba(76, 42, 23, 0.22);
  box-shadow: 0 18px 36px rgba(76, 42, 23, 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.02fr) minmax(320px, 0.98fr);
  gap: 2.5rem;
  align-items: center;
  padding: 4.9rem 0 3rem;
}

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

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

h1 {
  font-size: clamp(3rem, 6vw, 5.1rem);
  max-width: 10.8ch;
}

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

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.7rem);
  color: #734218;
}

.hero-text,
.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: 39rem;
  font-size: 1.08rem;
}

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

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

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.92rem 1.22rem;
  border-radius: 16px;
  color: #fffaf4;
  background: linear-gradient(135deg, var(--coffee-soft), var(--coffee));
  border: 1px solid rgba(76, 42, 23, 0.18);
  box-shadow: 0 24px 46px rgba(76, 42, 23, 0.2);
  font-weight: 800;
}

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

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

.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(76, 42, 23, 0.11);
  color: #5a3922;
  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.6rem;
}

.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.8rem 1.4rem 1.2rem;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(241, 180, 25, 0.22), transparent 32%),
    linear-gradient(155deg, rgba(255, 252, 244, 0.96), rgba(248, 236, 208, 0.92));
}

.product-halo {
  position: absolute;
  inset: 8% auto auto 50%;
  width: 68%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 180, 25, 0.24), transparent 68%);
  pointer-events: none;
}

.product-main {
  position: relative;
  width: auto;
  max-width: 100%;
  height: min(640px, 72vh);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(84, 49, 20, 0.2));
}

.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(150deg, rgba(76, 42, 23, 0.98), rgba(107, 60, 34, 0.96)),
    var(--surface);
}

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

.formula-card h2 {
  max-width: 12ch;
}

.formula-card p {
  margin: 0.55rem 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.1);
  border-color: rgba(255, 245, 235, 0.14);
  color: #fff6ed;
}

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

.section-intro {
  margin-bottom: 1.3rem;
  max-width: 47rem;
}

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

.section-after {
  margin-top: 1rem;
}

.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,
.flow-card,
.audience-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(247, 238, 219, 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(241, 180, 25, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(76, 42, 23, 0.98), rgba(55, 30, 16, 0.98));
}

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

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

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

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

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

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

.compare-strong {
  background: linear-gradient(145deg, rgba(241, 180, 25, 0.16), rgba(255, 255, 255, 0.08));
}

.statement-panel {
  background:
    radial-gradient(circle at top right, rgba(241, 180, 25, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(76, 42, 23, 0.98), rgba(107, 60, 34, 0.96));
}

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

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

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

.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(241, 180, 25, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 252, 245, 0.96), rgba(246, 234, 209, 0.94));
}

.closing-card {
  border-radius: 36px;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(241, 180, 25, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(76, 42, 23, 0.98), rgba(55, 30, 16, 0.98));
}

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

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

.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, 252, 245, 0.96), rgba(247, 238, 219, 0.92)),
    var(--surface);
}

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

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(145deg, #4c2a17, #6b3c22);
  color: #fff4e8;
  padding: 1.6rem 0 2rem;
}

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

.footer-logo {
  width: 168px;
}

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

.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: #fffaf4;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--coffee-soft), var(--coffee));
  border: 1px solid rgba(76, 42, 23, 0.18);
  box-shadow: 0 18px 36px rgba(76, 42, 23, 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: 148px;
  }

  .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(500px, 58vh);
  }

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

  .whatsapp-float {
    display: none;
  }
}

@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 {
    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;
  }
}
