/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:     #6B4EFF;
  --purple-lt:  #EDE8FF;
  --purple-dk:  #4A30E0;
  --warm-white: #FEFCF9;
  --cream:      #F7F3EE;
  --cream-dk:   #EFE9E0;
  --ink:        #1A1714;
  --ink-mid:    #4A453F;
  --ink-lt:     #8C857C;
  --wa-green:   #25D366;
  --wa-dk:      #1EAD53;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --max-w: 1120px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

/* Display font for headings */
h1, h2, h3, .hero__kicker, .noise__label, .proof__label, .glp__kicker {
  font-family: 'Fraunces', Georgia, serif;
}

h1, h2, h3 { line-height: 1.15; }

em { font-style: italic; color: var(--purple); }

p { color: var(--ink-mid); }

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

ul { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.container--narrow { max-width: 740px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107,78,255,0.3);
}
.btn--primary:hover {
  background: var(--purple-dk);
  box-shadow: 0 8px 28px rgba(107,78,255,0.4);
}

.btn--wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn--wa:hover { background: var(--wa-dk); }

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--purple-lt);
}

.btn--lg { padding: 16px 32px; font-size: 16px; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,252,249,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: var(--nav-h);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo img { display: block; height: 34px; }

.nav__links {
  display: flex;
  gap: 28px;
  margin-right: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--purple); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(60px, 10vw, 120px);
  background: var(--warm-white);
}

.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__kicker {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__body {
  font-size: 18px;
  color: var(--ink-mid);
  margin-bottom: 16px;
  max-width: 52ch;
}

.hero__body--quiet {
  font-size: 15px;
  color: var(--ink-lt);
  margin-bottom: 32px;
}

.hero__actions { margin-bottom: 24px; }

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-lt);
}

/* Hero person image */
.hero__person {
  margin-bottom: 20px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(107,78,255,0.12);
  aspect-ratio: 16/9;
}

.hero__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Chat Mockup */
.hero__visual { position: relative; }

.chat {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  max-width: 380px;
  margin-left: auto;
}

.chat__header {
  background: var(--purple);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat__avatar img { width: 28px; height: auto; }

.chat__name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.chat__status {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.chat__body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ECE5DD;
  min-height: 340px;
}

.chat__bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.chat__bubble--in {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.chat__bubble--out {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* ── NOISE SECTION ───────────────────────────────────────────── */
.noise {
  background: var(--cream);
  padding-block: clamp(60px, 8vw, 100px);
}

.noise__label {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-lt);
  margin-bottom: 32px;
  text-align: center;
}

.noise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}

.noise__quote {
  background: #fff;
  border-left: 3px solid var(--cream-dk);
  padding: 18px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.4;
}

.noise__answer {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.noise__answer p {
  font-size: 18px;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.noise__answer--big {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px) !important;
  color: var(--ink) !important;
  line-height: 1.3;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how {
  background: var(--warm-white);
  padding-block: clamp(60px, 8vw, 100px);
}

.how__header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-mid);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple-lt);
  color: var(--purple);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step__content h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.step__content p {
  font-size: 14px;
  color: var(--ink-lt);
  line-height: 1.6;
}

.step__connector {
  height: 2px;
  background: var(--cream-dk);
  width: 40px;
  align-self: center;
  margin-top: -36px;
  flex-shrink: 0;
}

.how__cta { text-align: center; }

/* ── PROOF ───────────────────────────────────────────────────── */
.proof {
  background: var(--purple);
  padding-block: clamp(60px, 8vw, 80px);
}

.proof__label {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 40px;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.proof__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.proof__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.proof__compare {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── FULL-BLEED IMAGE BREAK ─────────────────────────────────── */
.img-break {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  overflow: hidden;
}

.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.82);
}

.img-break__caption {
  position: absolute;
  bottom: 32px;
  left: clamp(24px, 6vw, 80px);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: #fff;
  max-width: 580px;
  line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* ── GLP-1 SECTION ───────────────────────────────────────────── */
.glp {
  background: var(--cream);
  padding-block: clamp(60px, 8vw, 100px);
}

.glp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.glp__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.glp__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glp__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.glp__text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.glp__text p {
  font-size: 16px;
  color: var(--ink-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

.glp__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.glp__card-q {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.glp__card-a {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── PROMISE ─────────────────────────────────────────────────── */
.promise {
  background: var(--warm-white);
  padding-block: clamp(60px, 8vw, 100px);
}

.promise .section-title { text-align: center; margin-bottom: 48px; }

.promise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.promise__item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--r-md);
  background: var(--cream);
  align-items: flex-start;
}

.promise__x {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  height: 28px;
  background: var(--purple-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.promise__item strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 600;
}

.promise__item p {
  font-size: 14px;
  color: var(--ink-lt);
  line-height: 1.55;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--cream);
  padding-block: clamp(60px, 8vw, 100px);
}

.faq .section-title { text-align: center; margin-bottom: 40px; }

.faq__list { display: flex; flex-direction: column; gap: 2px; }

.faq__item {
  background: #fff;
  border-radius: var(--r-sm);
  overflow: hidden;
}

.faq__item + .faq__item { margin-top: 8px; }

.faq__q {
  display: block;
  padding: 20px 24px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
  transition: color 0.15s;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--purple);
  transition: transform 0.2s;
}

details[open] .faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}

details[open] .faq__q { color: var(--purple); }

.faq__a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  background: var(--warm-white);
  padding-block: clamp(80px, 10vw, 120px);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.final-cta p {
  font-size: 18px;
  color: var(--ink-lt);
  margin-bottom: 36px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding-block: 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 600px;
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { order: -1; }
  .chat { max-width: 100%; margin: 0; }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step { flex-direction: row; text-align: left; gap: 16px; padding: 0; margin-bottom: 28px; }
  .step__num { margin-bottom: 0; flex-shrink: 0; }
  .step__content h3 { margin-bottom: 4px; }
  .step__connector { display: none; }

  .glp__inner { grid-template-columns: 1fr; }
  .glp__image { position: static; aspect-ratio: 16/9; }

  .img-break { height: clamp(220px, 55vw, 320px); }
  .img-break__caption { font-size: 16px; bottom: 20px; }

  .hero__person { aspect-ratio: 4/3; }

  .nav__links { display: none; }
}

@media (max-width: 480px) {
  .hero__trust { flex-direction: column; gap: 8px; }
  .noise__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }
}
