:root {
  --magenta: #e2186a;
  --magenta-hot: #ff3d8a;
  --magenta-deep: #7a0a3a;
  --magenta-ink: #2a0614;
  --gold: #e8c547;
  --gold-pale: #f6e7a1;
  --gold-deep: #9a6b12;
  --black: #07040a;
  --ink: #12060e;
  --cream: #fbf4ea;
  --muted: #c9b3be;
  --line: rgba(232, 197, 71, 0.28);
  --card: rgba(255, 255, 255, 0.035);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --wrap: 1180px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-script: "Great Vibes", "Palatino", cursive;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--black);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: 0.04em; margin: 0; }
p { margin: 0; }

.gold-text {
  background: linear-gradient(180deg, #fff4c2 0%, #e8c547 40%, #b8860b 74%, #f6e7a1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}
.center { text-align: center; }
.center .lede, .center .eyebrow { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #f6e7a1, #d4af37 55%, #b8860b);
  color: #1a0a12;
  box-shadow: 0 10px 30px rgba(232, 197, 71, 0.22);
}
.btn-magenta {
  background: linear-gradient(180deg, #ff4d9a, #c2185b);
  color: white;
  box-shadow: 0 10px 30px rgba(226, 24, 106, 0.28);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-pale); }
.btn-wa { background: #25d366; color: #06210f; }

.grain, body::before {
  pointer-events: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ticker */
.ticker {
  background: linear-gradient(90deg, #1a070f, #7a0a3a 40%, #c2185b 70%, #1a070f);
  color: var(--gold-pale);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 9px 0;
  animation: marquee 36s linear infinite;
}
.ticker-track span { white-space: nowrap; opacity: 0.92; }
.ticker-track i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline: 0.2rem 0;
  transform: translateY(-2px);
  box-shadow: 0 0 8px var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 4, 10, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 4, 10, 0.88);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.brand svg { width: 34px; height: 40px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #fff4c2, #e8c547 60%, #9a6b12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-pale); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  margin: 4px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(7, 4, 10, 0.55);
  z-index: 30;
}

.nav-drawer {
  display: none;
}

/* hero */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: visible;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1000px 480px at 80% 20%, rgba(226, 24, 106, 0.28), transparent 55%),
    radial-gradient(800px 500px at 10% 80%, rgba(122, 10, 58, 0.55), transparent 50%),
    linear-gradient(180deg, #07040a 0%, #12060e 48%, #7a0a3a 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: lighten;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0 72px;
}
.hero-copy .castle-mark { width: 52px; height: 60px; margin-bottom: 18px; }
.kicker {
  color: var(--gold);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  letter-spacing: 0.08em;
  line-height: 0.86;
}
.hero h1 .script {
  display: block;
  font-size: 0.52em;
  margin-top: -0.08em;
  margin-left: 0.08em;
  background: linear-gradient(180deg, #fff4c2, #e8c547);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nad-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 16px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.nad-pill b { color: var(--gold); font-weight: 700; }
.hero .lede { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stage {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stage .orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff4c2, #e8c547 35%, #9a6b12 70%, rgba(0,0,0,0) 72%);
  filter: blur(0.2px);
  animation: float 7s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(232, 197, 71, 0.35);
}
.hero-stage .orb.a { width: 86px; height: 86px; right: 8%; top: 8%; animation-delay: -1s; }
.hero-stage .orb.b { width: 48px; height: 48px; right: 22%; bottom: 18%; animation-delay: -2.4s; }
.hero-stage .orb.c { width: 28px; height: 28px; left: 8%; top: 28%; animation-delay: -3.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.product-frame {
  position: relative;
  margin: 0 auto;
  width: min(100%, 420px);
  max-height: min(520px, 68vh);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.product-frame img {
  width: 100%;
  height: auto;
  max-height: min(520px, 68vh);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}
.product-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px -40px;
  height: 70px;
  background: radial-gradient(closest-side, rgba(226,24,106,.55), transparent);
  filter: blur(12px);
  z-index: -1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: #0d070b;
  padding: 28px 18px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
}
.stat .lbl {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section.magenta {
  background:
    linear-gradient(180deg, rgba(7,4,10,0) 0%, rgba(122,10,58,.35) 18%, #8b0d44 52%, #12060e 100%);
}
.section.dark { background: #0b0509; }
.section h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 10px 0 16px; }
.section-head { margin-bottom: 42px; }

.marquee-band {
  border-block: 1px solid var(--line);
  background: #12060e;
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 2.8rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
}
.marquee-track span { opacity: 0.85; }

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.split.top { align-items: start; }
.split.reverse { grid-template-columns: 1.08fr 0.92fr; }
.split-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-media.wide img { aspect-ratio: 16/10; }
.split-media.packshot {
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.split-media.packshot img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
}
.caption-gold {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,4,10,.55);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.formula-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 20px;
  min-height: 168px;
  position: relative;
  overflow: hidden;
}
.formula-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -20px;
  top: -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(246,231,161,.55), rgba(232,197,71,.0) 70%);
}
.formula-card .amt {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.formula-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.formula-card p { color: var(--muted); font-size: 0.92rem; }
@media (min-width: 981px) {
  .formula-grid .formula-card:last-child:nth-child(3n+1) { grid-column: 2; }
}

.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--cream);
}
.feature-list svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--gold); margin-top: 2px; }

.kit {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.kit-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.kit-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.kit-aside {
  display: grid;
  gap: 16px;
}
.kit-card {
  background: linear-gradient(180deg, rgba(226,24,106,.16), rgba(18,6,14,.4));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.kit-card h3 { margin: 8px 0 10px; font-size: 1.3rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(7,4,10,.55), rgba(122,10,58,.35)),
    url("/assets/img/texture.webp") center/cover;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 40rem; margin: 0 auto 24px; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--cream); font-size: 0.98rem; }
.reviewer { margin-top: 18px; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 16px 36px 16px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--gold);
  font-size: 1.4rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); padding: 0 0 18px; max-width: 52rem; }

.form {
  display: grid;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.form label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form input, .form select, .form textarea {
  width: 100%;
  margin-top: 6px;
  background: rgba(0,0,0,.28);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status { min-height: 1.2em; font-size: 0.9rem; color: var(--gold-pale); }

.page-hero {
  padding: 72px 0 28px;
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(226,24,106,.28), transparent 60%),
    linear-gradient(180deg, #12060e, #07040a);
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin: 10px 0 12px; }
.page-hero .script { font-size: 0.62em; display: inline-block; margin-left: 8px; vertical-align: baseline; }

.footer {
  background: #090308;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}
.flogo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.flogo svg { width: 32px; height: 38px; }
.footer-note { color: var(--muted); font-size: 0.92rem; max-width: 28rem; }
.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--gold-pale); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}
.disclaimer {
  color: #8d7a82;
  font-size: 0.78rem;
  line-height: 1.55;
  max-width: 70rem;
  margin-top: 16px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #06210f;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.wa-float svg { width: 28px; height: 28px; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.in { opacity: 1; transform: none; }
.js .hero-copy { animation: rise .9s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.legal { color: var(--muted); display: grid; gap: 14px; max-width: 46rem; }
.legal h2 { font-size: 1.4rem; color: var(--cream); margin-top: 18px; }

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: clamp(4rem, 12vw, 8rem); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-drawer {
    display: block;
    position: fixed;
    inset: calc(var(--header-h) + 32px) 16px auto;
    z-index: 46;
    background: rgba(12, 6, 10, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-drawer.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-drawer a {
    display: block;
    padding: 12px 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(232,197,71,.12);
  }
  .hero-grid, .split, .split.reverse, .formula-grid, .kit, .reviews, .footer-grid, .stats, .form-row {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; }
  .hero-stage { min-height: 0; order: -1; }
  .hero-grid { padding: 12px 0 28px; gap: 18px; }
  .product-frame,
  .product-frame img {
    max-height: min(420px, 58vh);
  }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 3.8rem); }
  .hero-copy .castle-mark { display: none; }
  .nav-cta .btn { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
