:root {
  --bg: #fffaf2;
  --bg-soft: #fff2dc;
  --surface: rgba(255,255,255,0.86);
  --surface-strong: #ffffff;
  --ink: #22160f;
  --muted: #6b5646;
  --gold: #f4bf57;
  --gold-deep: #d98c13;
  --plum: #7c28d6;
  --plum-deep: #54149d;
  --blue: #0f4d79;
  --green: #1d7a4a;
  --red: #9b2f33;
  --line: rgba(75, 44, 21, 0.12);
  --ok: #1d7a4a;
  --ok-bg: rgba(29,122,74,.09);
  --ok-border: rgba(29,122,74,.16);
  --err: #8b1e2d;
  --err-bg: rgba(185, 50, 69, 0.10);
  --err-border: rgba(185, 50, 69, 0.18);
  --info: #4a3628;
  --info-bg: rgba(124,40,214,.08);
  --info-border: rgba(124,40,214,.15);
  --shadow: 0 24px 70px rgba(87, 48, 18, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244,191,87,.34), transparent 34%),
    radial-gradient(circle at right 12%, rgba(124,40,214,.12), transparent 28%),
    radial-gradient(circle at 45% 8%, rgba(29,122,74,.10), transparent 20%),
    linear-gradient(180deg, #fff7ea 0%, #fffaf2 42%, #ffffff 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 4.7rem 0; }
.narrow { max-width: 820px; margin: 0 auto; }
.center-text { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(124,40,214,.09);
  color: var(--plum-deep);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.eyebrow::before { content: "✦"; color: var(--gold-deep); }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  margin: 0 0 1rem;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.55rem, 6.5vw, 5.15rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.22rem, 2.5vw, 1.65rem); }
p { margin: 0 0 1rem; color: var(--muted); font-size: 1.04rem; }
.lead { font-size: clamp(1.1rem, 2.15vw, 1.3rem); color: #4a3628; }
.tiny { font-size: .88rem; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 58px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 16px 34px rgba(91,22,171,.29);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(91,22,171,.36); }
.btn:disabled { opacity: .75; cursor: not-allowed; transform: none; }
.btn.secondary { background: linear-gradient(135deg, #ffd27a 0%, #f0b647 100%); color: #43230f; box-shadow: 0 14px 30px rgba(223,155,23,.22); }
.btn.full { width: 100%; }
.pulse { animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 16px 34px rgba(91,22,171,.29); } 50% { box-shadow: 0 18px 48px rgba(91,22,171,.44); } }

.topbar {
  background: #000;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* STACKED BRAND */
.brand {
  text-decoration: none;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* MAIN TITLE */
.brand-title {
  font-size: 28px;
  font-weight: 800;
  color: #f4c542; /* gold */
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(244,197,66,0.4);
}

/* LOGO IMAGE */
.brand-mark {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* SUBTITLE */
.brand-subtitle {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-text small { display: block; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .7rem; }

.hero { padding: 3.1rem 0 2rem; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start; /* 👈 FIX */
}
.hero-copy { padding: 1.2rem 0; }
.hero-note { padding: 1rem 1.1rem; border-radius: 18px; background: rgba(255,255,255,.78); border: 1px solid var(--line); color: #4a3628; }
.hero-card, .glass { background: var(--surface); border: 1px solid rgba(255,255,255,.55); box-shadow: var(--shadow); backdrop-filter: blur(10px); border-radius: var(--radius); }
.hero-points { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.35rem 0 1.3rem; }
.hero-points span { padding: .6rem .82rem; border-radius: 999px; background: rgba(255,255,255,.85); border: 1px solid rgba(75,44,21,.08); font-size: .95rem; font-weight: 800; color: #4f392b; }
.stat-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.stat { flex: 1 1 155px; padding: 1rem 1.05rem; border-radius: 18px; background: rgba(255,255,255,.74); border: 1px solid rgba(75,44,21,.07); }
.stat strong { display: block; font-size: 1.1rem; color: var(--ink); }
.hero-visual { display: grid; gap: 1rem; }

.form-card { padding: 1.25rem; }
.first-sight { border: 2px solid rgba(244,191,87,.55); position: relative; }
.download-badge { display: inline-flex; padding: .45rem .78rem; border-radius: 999px; background: rgba(29,122,74,.10); color: var(--green); font-weight: 900; margin-bottom: .8rem; font-size: .9rem; }
.form-grid { display: grid; gap: .85rem; margin-top: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
label { font-size: .92rem; font-weight: 800; color: #4f392b; }
input, select { width: 100%; min-height: 56px; border-radius: 15px; border: 1px solid rgba(75,44,21,.12); padding: 0 1rem; font-size: 1rem; background: rgba(255,255,255,.94); color: var(--ink); }
input:focus, select:focus { outline: 2px solid rgba(124,40,214,.18); border-color: rgba(124,40,214,.3); }
select { appearance: none; padding-right: 3rem; background-image: linear-gradient(45deg, transparent 50%, var(--plum-deep) 50%), linear-gradient(135deg, var(--plum-deep) 50%, transparent 50%); background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.secure { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.secure strong { color: var(--ink); }
.message { display: none; margin-top: 1rem; padding: 1rem; border-radius: 16px; border: 1px solid transparent; }
.message.show { display: block; }
.message.success { background: var(--ok-bg); color: #185b38; border-color: var(--ok-border); }
.message.error { background: var(--err-bg); color: var(--err); border-color: var(--err-border); }
.message.info { background: var(--info-bg); color: var(--info); border-color: var(--info-border); }
.hp-wrap { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.visual-wrap { padding: 1rem; background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,247,236,.9)); }
.nutrition-card { min-height: 350px; display: grid; place-items: center; overflow: hidden; }
.plate { width: min(430px, 100%); aspect-ratio: 1; border-radius: 50%; position: relative; background: radial-gradient(circle, #fff 0 28%, #fff4dc 29% 50%, #f7d99c 51% 100%); border: 14px solid rgba(255,255,255,.8); box-shadow: inset 0 0 0 1px rgba(75,44,21,.08), 0 25px 50px rgba(96,60,28,.15); }
.plate-center { position: absolute; inset: 33%; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--plum), var(--plum-deep)); color: white; font-family: Georgia, serif; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; letter-spacing: .08em; }
.meal { position: absolute; width: 34%; min-height: 74px; border-radius: 18px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 24px rgba(75,44,21,.10); display: grid; place-items: center; text-align: center; padding: .65rem; }
.meal strong { color: var(--ink); }
.meal span { color: var(--muted); font-size: .86rem; }
.meal-pharmacy { left: 5%; top: 17%; }
.meal-milk { right: 4%; top: 17%; }
.meal-meat { left: 9%; bottom: 17%; }
.meal-water { right: 8%; bottom: 17%; }
.meal-combo { left: 33%; bottom: 3%; }

.section-alt { background: linear-gradient(180deg, rgba(255,244,223,.70), rgba(255,255,255,0)); }
.pain-grid, .benefit-grid, .trust-grid, .cta-grid { display: grid; gap: 1.15rem; }
.pain-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 1.5rem; }
.benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 1.6rem; }
.five-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
.trust-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 1.5rem; }
.card { padding: 1.4rem; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 15px 35px rgba(95,63,31,.06); }
.card strong { color: var(--ink); }
.feature-card { min-height: 245px; }
.icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; font-size: 1.25rem; background: linear-gradient(180deg, #fff3d2, #ffe4b1); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); margin-bottom: .8rem; }
ul.clean { list-style: none; padding: 0; margin: 0; display: grid; gap: .95rem; }
ul.clean li { display: grid; grid-template-columns: 34px 1fr; gap: .8rem; align-items: start; padding: 1rem; border-radius: 18px; background: rgba(255,255,255,.82); border: 1px solid var(--line); }
ul.clean li span:first-child { width: 34px; height: 34px; border-radius: 50%; background: rgba(29,122,74,.12); color: var(--ok); display: grid; place-items: center; font-weight: 900; }
.mechanism { display: grid; grid-template-columns: .98fr 1.02fr; gap: 1.25rem; align-items: center; padding: 1.35rem; }
.clean-offset { margin-top: 1.25rem; }
.scripture-box { padding: 2rem; border-radius: 24px; background: linear-gradient(180deg, #fff8ea, #ffffff); border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(75,44,21,.07); }
.scripture-label { display: inline-flex; padding: .35rem .7rem; border-radius: 999px; background: rgba(124,40,214,.08); color: var(--plum-deep); font-weight: 900; margin-bottom: 1rem; }
blockquote { margin: 0 0 .6rem; font-family: Georgia, serif; font-size: clamp(1.28rem, 3vw, 1.75rem); line-height: 1.18; color: var(--ink); }
cite { color: var(--gold-deep); font-style: normal; font-weight: 900; }
.scripture-divider { height: 1px; background: var(--line); margin: 1.5rem 0; }
.cta-band { padding: 1.6rem; grid-template-columns: 1fr auto; align-items: center; background: linear-gradient(135deg, #fff3d0 0%, #ffe6bd 45%, #fdf9f1 100%); }
.cta-title { margin-top: .55rem; }
/* REMOVE GLASS LOOK */
.footer-box {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
/* CENTER BRAND */
.brand-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.brand-centered .brand-mark {
  width: 90px;
  height: auto;
}
.brand-centered .brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* TEXT */
.brand-centered .brand-text {
  text-align: center;
}
.brand-centered .brand-text strong {
  display: block;
  font-size: 16px;
  color: #f4c542; /* gold accent */
  margin-bottom: 4px;
}

.brand-centered .brand-text small {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.final-section {
  background: #000;
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

/* HEADING */
.final-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

/* PARAGRAPH */
.final-section .lead {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* BUTTON */
.final-section .btn {
  background: linear-gradient(135deg, #7b2ff7, #4a00e0);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.site-footer { padding: 2rem 0 3rem; color: var(--muted); font-size: .95rem; text-align: center; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) { .five-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 980px) {
  .hero-grid, .mechanism, .cta-band { grid-template-columns: 1fr; }
  .pain-grid, .benefit-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 1.8rem; }
}
@media (max-width: 720px) {
  .section { padding: 3.6rem 0; }
  .topbar-inner { min-height: 70px; }
  .hide-mobile { display: none; }
  .brand-text span { display: none; }
  .field-row, .five-grid { grid-template-columns: 1fr; }
  .nutrition-card { min-height: 320px; }
  .meal { width: 38%; min-height: 64px; font-size: .9rem; }
  .plate { border-width: 10px; }
}


/* Actual hero image asset */
.image-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: .25rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,250,242,.92);
  border: 1px solid rgba(75,44,21,.10);
  box-shadow: 0 15px 34px rgba(25,18,10,.16);
  backdrop-filter: blur(8px);
}

.image-caption strong {
  color: var(--ink);
  font-weight: 900;
}

.image-caption span {
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 980px) {
  .image-card { order: -1; }
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #7b2ff7;
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
}

.faq-answer p {
  margin: 10px 0 15px;
  color: #555;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
