/* Melatonin Mélange — nighttime Dune palette (deep black, cyan neon, desert orange) */
:root {
  --bg-deep: #000000;
  --bg: #030201;
  --accent-cyan: #00bfff;
  --accent-cyan-bright: #00e8ff;
  --accent-blue: #00a8cc;
  /* Subdued desert / spice orange — matches dunebackground */
  --accent-orange: #a84a12;
  --accent-orange-fire: #8b3d0f;
  --accent-orange-glow: #c45c1a;
  --accent-spice: #6b2f0a;
  --card: rgba(0, 0, 0, 0.42);
  --card-border: rgba(0, 191, 255, 0.1);
  --text: #c4e4f2;
  --text-body: rgba(184, 228, 248, 0.88);
  --text-soft: rgba(0, 191, 255, 0.68);
  --text-faint: rgba(0, 191, 255, 0.38);
  --muted: rgba(0, 191, 255, 0.48);
  --neon-cyan-shadow:
    0 0 6px rgba(0, 191, 255, 0.45),
    0 0 14px rgba(0, 191, 255, 0.3),
    0 0 28px rgba(0, 191, 255, 0.12);
  --dune-overlay: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.22) 35%,
    rgba(0, 0, 0, 0.45) 70%,
    rgba(0, 0, 0, 0.62) 100%
  );
  --fire-gradient: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 61, 15, 0.04) 40%,
    rgba(168, 74, 18, 0.1) 70%,
    rgba(196, 92, 26, 0.14) 100%
  );
  --fire-wave-line: linear-gradient(
    90deg,
    rgba(139, 61, 15, 0.28) 0%,
    rgba(168, 74, 18, 0.12) 45%,
    transparent 85%
  );
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg-deep);
  background-image:
    var(--dune-overlay),
    url('dunebackground.png');
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

/* Nighttime spice glow + bottom desert warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 140% 50% at 50% 100%, rgba(139, 61, 15, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 70% 20%, rgba(0, 191, 255, 0.04) 0%, transparent 50%),
    var(--fire-wave-line);
  opacity: 0.65;
}

/* Soft night vignette — lets dunes breathe */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 45%);
}

body > * { position: relative; z-index: 1; }

@media (max-width: 768px) {
  body {
    background-attachment: scroll, scroll;
  }
}

.cosmic-bg { background: none; }

.heading-font {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
}
.heading-font .melange-badge,
.melange-badge {
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* ─── Utilities ─── */
.text-neon-cyan { color: var(--accent-cyan) !important; }
.text-neon-cyan:hover { color: var(--accent-cyan-bright) !important; }
.text-spice { color: var(--accent-orange-glow); }

/* ─── Navigation ─── */
.site-nav {
  border-bottom: 1px solid rgba(0, 191, 255, 0.08) !important;
  background: rgba(0, 0, 0, 0.52) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 191, 255, 0.04);
}

/* Mxlogo — primary site logo */
.site-logo {
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 6px rgba(0, 191, 255, 0.55))
    drop-shadow(0 0 14px rgba(0, 191, 255, 0.25));
}
.site-logo--nav {
  width: 2.5rem;
  height: 2.5rem;
}
.site-logo--footer {
  width: 2rem;
  height: 2rem;
}
.site-logo--hero {
  width: clamp(3.5rem, 10vw, 5rem);
  height: clamp(3.5rem, 10vw, 5rem);
  margin: 0 auto 1rem;
  border-radius: 0.65rem;
}

.nav-link {
  transition: color 0.2s ease, text-shadow 0.2s ease;
  color: var(--text-soft);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--accent-cyan-bright);
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

#nav-mobile a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ─── Cards ─── */
.section-card {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s;
  border: 1px solid var(--card-border);
  background: var(--card);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.section-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: var(--fire-gradient);
  pointer-events: none;
  opacity: 0.6;
}
.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 191, 255, 0.08);
  border-color: rgba(168, 74, 18, 0.35);
}

.insight-card {
  border-left: 3px solid var(--accent-orange);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(0, 191, 255, 0.08);
  border-left-width: 3px;
  border-left-color: var(--accent-orange-fire);
  backdrop-filter: blur(8px);
}

/* ─── Buttons ─── */
.btn-primary {
  background: linear-gradient(135deg, #6b2f0a 0%, #8b3d0f 40%, #a84a12 100%);
  color: rgba(255, 230, 200, 0.95);
  font-weight: 700;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  box-shadow: 0 4px 20px rgba(107, 47, 10, 0.45), inset 0 1px 0 rgba(196, 92, 26, 0.2);
  border: 1px solid rgba(168, 74, 18, 0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8b3d0f 0%, #a84a12 60%, #c45c1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(107, 47, 10, 0.55), 0 0 16px rgba(168, 74, 18, 0.2);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(0, 191, 255, 0.16);
  color: var(--text);
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover {
  background: rgba(0, 191, 255, 0.07);
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.14);
}

.melange-badge {
  background: linear-gradient(90deg, #a84a12, #00bfff, #00e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Shop / Checkout */
.wrap { max-width: 620px; margin: auto; position: relative; z-index: 2; }
.card {
  border-radius: 28px; padding: 28px; background: var(--card);
  backdrop-filter: blur(16px); border: 1px solid rgba(0, 191, 255, 0.28);
  box-shadow: 0 0 48px rgba(0, 191, 255, 0.08), 0 0 56px rgba(107, 47, 10, 0.12), inset 0 1px 0 rgba(0, 191, 255, 0.04);
}
.hero-box {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.5)) drop-shadow(0 0 40px rgba(139, 61, 15, 0.35));
  animation: floatBox 6s ease-in-out infinite;
}
@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-box { animation: none; }
  .section-card:hover { transform: none; }
}

.glow-blue {
  text-shadow: 0 0 8px #00bfff, 0 0 18px #00bfff, 0 0 36px rgba(0, 255, 255, 0.35);
  transition: text-shadow 0.2s ease;
}
.glow-blue:hover {
  text-shadow: 0 0 10px #00ffff, 0 0 24px #00bfff, 0 0 48px rgba(0, 255, 255, 0.5);
}

.btn-glow-blue {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 191, 255, 0.55);
  color: var(--accent-cyan-bright);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
  transition: all 0.25s ease;
  min-height: 48px;
}
.btn-glow-blue:hover {
  background: rgba(0, 191, 255, 0.08);
  box-shadow: 0 0 24px rgba(0, 191, 255, 0.4), inset 0 0 16px rgba(0, 191, 255, 0.08);
  transform: translateY(-1px);
}

.package, .token-btn {
  width: 100%; padding: 16px; margin: 6px 0; border-radius: 16px;
  border: 1px solid rgba(0, 191, 255, 0.14); background: rgba(0, 0, 0, 0.5);
  color: var(--text); font-size: 15px; cursor: pointer; transition: all 0.2s;
  min-height: 48px;
}
.package:hover, .package.selected, .token-btn.selected {
  background: rgba(139, 61, 15, 0.18); border-color: var(--accent-orange-fire);
}
.token-row { display: flex; gap: 8px; margin: 10px 0; }
.token-btn { flex: 1; text-align: center; padding: 12px; font-weight: 500; }

.continue, .pay-btn, a.pay-btn {
  display: block;
  width: 100%; padding: 16px; margin-top: 12px; border: none;
  background: linear-gradient(90deg, #8b3d0f, #00a8cc); color: rgba(255, 235, 210, 0.95);
  font-weight: 700; font-size: 16px; cursor: pointer; border-radius: 16px;
  transition: transform .2s, box-shadow .2s;
  min-height: 52px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.continue:hover, .pay-btn:hover, a.pay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(107, 47, 10, 0.4), 0 0 20px rgba(0, 191, 255, 0.15);
}

#debug { color: var(--accent-orange-glow); white-space: pre-wrap; font-size: 13px; margin: 10px 0; min-height: 1.2em; }

input, .form-input, textarea, select {
  width: 100%; padding: 12px 14px; margin: 5px 0; border-radius: 12px;
  border: 1px solid rgba(0, 191, 255, 0.18); background: rgba(0, 0, 0, 0.55);
  color: var(--text); font-size: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent-cyan);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.18);
}

#payment { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
#qr { width: 240px; height: 240px; max-width: 100%; display: block; margin: 12px auto; border-radius: 16px; background: #fff; }

.modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 1rem;
}
.modal-content {
  background: var(--card); border: 1px solid rgba(0, 191, 255, 0.32); border-radius: 20px;
  max-width: 520px; width: 100%; padding: 28px; color: var(--text);
}

footer, .site-footer {
  border-top: 1px solid rgba(0, 191, 255, 0.08) !important;
  background: rgba(0, 0, 0, 0.48) !important;
  backdrop-filter: blur(12px);
  padding: 20px 0; font-size: 11px; color: var(--muted); text-align: center;
}

.insight-card { padding: 1.75rem; border-radius: 1.25rem; }
.stats { font-variant-numeric: tabular-nums; }

/* ─── Content ─── */
.prose-content { font-size: 1rem; line-height: 1.75; color: var(--text-body); }
.prose-content h2 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.65rem); font-weight: 600;
  margin: 2.5rem 0 1rem; color: var(--accent-cyan-bright); letter-spacing: -0.02em;
  text-shadow: var(--neon-cyan-shadow);
}
.prose-content h3 { font-size: 1.1rem; font-weight: 600; margin: 1.75rem 0 0.75rem; color: var(--accent-cyan); }
.prose-content p { margin: 0 0 1rem; }
.prose-content ul, .prose-content ol { margin: 0 0 1.25rem 1.25rem; padding-right: 0.5rem; }
.prose-content li { margin-bottom: 0.4rem; }
.prose-content a { color: var(--accent-cyan); text-decoration: underline; text-underline-offset: 2px; }
.prose-content a:hover { color: var(--accent-cyan-bright); }
.prose-content blockquote {
  border-left: 3px solid var(--accent-orange);
  padding: 0.75rem 1.25rem; margin: 1.5rem 0;
  background: rgba(139, 61, 15, 0.08); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--text-body);
}
.prose-content .cite { font-size: 0.8rem; color: var(--text-faint); margin-top: 0.25rem; }

.hero-pill {
  display: inline-block; padding: 0.4rem 1rem; font-size: 0.6rem; letter-spacing: 3px;
  border: 1px solid rgba(0, 191, 255, 0.2); border-radius: 999px;
  background: rgba(0, 0, 0, 0.35); color: var(--accent-cyan);
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
  backdrop-filter: blur(6px);
}

.thesis-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 1.5rem;
  padding: 1.5rem; backdrop-filter: blur(10px);
}
.framework-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .framework-grid { grid-template-columns: 1fr 1fr; } }

.chart-wrap {
  background: rgba(0, 0, 0, 0.45); border: 1px solid rgba(0, 191, 255, 0.14);
  border-radius: 1.25rem; padding: 1rem; margin: 1.5rem 0;
}
.chart-title { font-size: 0.85rem; margin-bottom: 0.5rem; display: flex; flex-direction: column; gap: 0.15rem; }
.chart-title strong { color: var(--accent-cyan-bright); text-shadow: var(--neon-cyan-shadow); }
.chart-sub { color: var(--text-faint); font-size: 0.75rem; }
.circadian-chart { width: 100%; height: auto; display: block; }

.explainer-panel {
  background: var(--card); border: 1px solid rgba(139, 61, 15, 0.25);
  border-radius: 1.5rem; padding: 1.25rem;
}
.explainer-slider { width: 100%; accent-color: var(--accent-cyan); margin: 0.5rem 0 1rem; min-height: 44px; }
.meter-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.meter-fill-pressure { height: 100%; background: linear-gradient(90deg, #8b3d0f, #c45c1a); border-radius: 999px; transition: width 0.3s ease; }
.meter-fill-signal { height: 100%; background: linear-gradient(90deg, #00bfff, #00ffff); border-radius: 999px; transition: width 0.3s ease; }

.study-card {
  background: rgba(0, 0, 0, 0.38); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem; padding: 1.25rem 1.5rem; transition: border-color 0.2s;
}
.study-card:hover { border-color: rgba(0, 191, 255, 0.35); }
.study-tag { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-orange-fire); }

.blog-card { display: block; text-decoration: none; color: inherit; }
.blog-card:hover .blog-title { color: var(--accent-cyan); }
.blog-meta { font-size: 0.7rem; color: var(--text-faint); letter-spacing: 1px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr));
  gap: 0.75rem;
}
.gallery-item {
  border-radius: 1rem; overflow: hidden; border: 1px solid rgba(0, 191, 255, 0.12);
  aspect-ratio: 1; object-fit: cover; width: 100%;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
  transform: scale(1.02);
  border-color: rgba(0, 191, 255, 0.45);
  box-shadow: 0 0 24px rgba(0, 191, 255, 0.18);
}

.callout-orange {
  background: rgba(139, 61, 15, 0.1); border: 1px solid rgba(168, 74, 18, 0.28);
  border-radius: 1.25rem; padding: 1.25rem 1.5rem;
  box-shadow: inset 0 -24px 48px rgba(107, 47, 10, 0.08);
  backdrop-filter: blur(6px);
}
.callout-cyan {
  background: rgba(0, 191, 255, 0.03); border: 1px solid rgba(0, 191, 255, 0.14);
  backdrop-filter: blur(6px);
  border-radius: 1.25rem; padding: 1.25rem 1.5rem;
}

.protocol-step {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.protocol-num {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%;
  background: linear-gradient(135deg, #8b3d0f, #00a8cc); color: rgba(255, 235, 210, 0.95);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Video embed ─── */
.video-hero {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.28);
  box-shadow: 0 0 48px rgba(0, 191, 255, 0.1), 0 0 56px rgba(107, 47, 10, 0.12);
  background: #000;
  margin: 2rem 0;
}
.video-hero video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: contain;
}
.video-caption {
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(0, 191, 255, 0.12);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ─── Testimonials / Stories ─── */
.story-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.story-card::after {
  content: '"';
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 191, 255, 0.1);
  font-family: Georgia, serif;
}
.story-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  border-left: 2px solid var(--accent-orange-fire);
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.story-meta { font-size: 0.8rem; color: var(--muted); }
.story-role { color: var(--accent-cyan); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }

.status-pending { color: var(--accent-orange-glow); }
.status-approved { color: var(--accent-cyan-bright); }
.status-rejected { color: #666; }

.admin-panel {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 74, 18, 0.28);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

/* ─── Mobile typography & spacing ─── */
@media (max-width: 640px) {
  .prose-content { font-size: 0.95rem; }
  .insight-card { padding: 1.25rem; }
  .card { padding: 1.25rem; border-radius: 1.25rem; }
  h1.text-6xl, h1.text-5xl { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .hero-box { max-width: 280px; }
  .protocol-step { flex-direction: column; gap: 0.5rem; }
}

.page-main { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) {
  .page-main { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ─── Pump.Science partner ─── */
.btn-pump-external {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(96, 165, 250, 0.45);
  color: var(--accent-cyan-bright);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: all 0.25s ease;
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.15);
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}
.btn-pump-external:hover {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 28px rgba(96, 165, 250, 0.28);
  transform: translateY(-1px);
}

.btn-pump-partner {
  background: #000000;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.btn-pump-partner:hover {
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.2);
  transform: translateY(-1px);
}
.btn-pump-partner img {
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (min-width: 640px) {
  .btn-pump-partner img { height: 32px; max-width: 200px; }
}

.pump-hero-card {
  background: var(--card);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 0 40px rgba(96, 165, 250, 0.08);
}
.pump-logo-hero {
  border-radius: 0.75rem;
  background: #000;
}
.pump-results-figure {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 32px rgba(74, 222, 128, 0.08);
}
.pump-hub-banner {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.35) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .pump-hub-banner { grid-template-columns: auto 1fr auto; }
}
.mito-hub-banner {
  border-color: rgba(255, 107, 53, 0.22);
}
@media (min-width: 900px) {
  .mito-hub-banner {
    grid-template-columns: 1fr minmax(240px, 320px) auto;
  }
}
.reiter-video--hub {
  margin: 0;
  width: 100%;
  min-width: 0;
}
.reiter-video--page {
  margin: 0;
}
.reiter-video--hub .reiter-video__frame,
.reiter-video--page .reiter-video__frame {
  border-radius: 14px;
}

.seo-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Worm Sign Banner ─── */
.worm-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(8, 4, 2, 0.65) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(168, 74, 18, 0.22);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(0, 191, 255, 0.05);
  z-index: 60;
}

.worm-banner__sand {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0px,
      transparent 3px,
      rgba(255, 140, 0, 0.03) 3px,
      rgba(255, 140, 0, 0.03) 6px
    ),
    radial-gradient(ellipse 120% 80% at 20% 100%, rgba(139, 61, 15, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(0, 191, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: sandDrift 18s ease-in-out infinite alternate;
}

@keyframes sandDrift {
  0% { transform: translateX(0); opacity: 0.3; }
  100% { transform: translateX(8px); opacity: 0.4; }
}

.worm-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(139, 61, 15, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: wormPulse 4s ease-in-out infinite;
}

@keyframes wormPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.worm-banner__text {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1rem;
  font-size: clamp(0.7rem, 2vw, 0.82rem);
  line-height: 1.65;
  letter-spacing: 0.03em;
  text-align: center;
  color: rgba(255, 220, 180, 0.88);
  text-shadow:
    0 0 12px rgba(168, 74, 18, 0.35),
    0 0 24px rgba(0, 191, 255, 0.12);
  font-style: italic;
}

.worm-banner__sigil {
  color: rgba(0, 191, 255, 0.6);
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
  margin: 0 0.35rem;
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  .worm-banner__sand, .worm-banner__glow { animation: none; }
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: default;
  background: linear-gradient(90deg, rgba(107, 47, 10, 0.55), rgba(0, 0, 0, 0.45));
  border: 1px solid rgba(168, 74, 18, 0.4);
  color: rgba(255, 230, 200, 0.88);
  box-shadow:
    0 0 20px rgba(107, 47, 10, 0.25),
    0 0 24px rgba(0, 191, 255, 0.08),
    inset 0 0 16px rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 10px rgba(168, 74, 18, 0.35);
  letter-spacing: 0.04em;
}

/* ─── Minimal Product Homepage ─── */
.product-home {
  background-image:
    radial-gradient(ellipse 90% 55% at 50% 45%, rgba(0, 191, 255, 0.03) 0%, transparent 55%),
    var(--dune-overlay),
    url('dunebackground.png');
}

.product-hero {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 8rem);
  justify-content: center;
  gap: 2.5rem;
}

.product-hero__glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 480px);
  height: min(90vw, 480px);
  background: radial-gradient(circle, rgba(0, 191, 255, 0.08) 0%, rgba(139, 61, 15, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.product-hero__visual {
  position: relative;
  z-index: 1;
  margin: 0;
}

.product-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.25rem;
}

.product-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-faint);
  margin: 0 0 1.25rem;
}

.product-hero__title {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
  text-transform: lowercase;
}

.product-hero__formula {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 1.75rem;
  font-weight: 400;
}

.product-hero__mystery {
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.8;
  color: var(--text-faint);
  margin: 0 0 2.5rem;
  font-style: italic;
}

.product-hero__mystery em {
  color: rgba(0, 191, 255, 0.75);
  font-style: italic;
}

.product-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 480px) {
  .product-hero__ctas {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .product-cta-buy, .product-cta-explore {
    width: auto;
  }
}

.product-cta-buy {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
}

.product-cta-explore {
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 999px;
}

/* Prominent NFHC link — home page (links to full disclaimer) */
.nfhc-banner-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(90deg, rgba(139, 61, 15, 0.45), rgba(107, 47, 10, 0.55), rgba(139, 61, 15, 0.45));
  border: 2px solid rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 20px rgba(139, 61, 15, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: disclaimer-pulse 3.5s ease-in-out infinite;
}
.nfhc-banner-link:hover {
  border-color: rgba(255, 179, 71, 0.7);
  box-shadow: 0 0 28px rgba(255, 107, 53, 0.28);
  transform: translateY(-1px);
}
.nfhc-banner-link__sigil {
  color: rgba(255, 179, 71, 0.85);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.nfhc-banner-link__main {
  display: block;
  width: 100%;
  font-size: clamp(0.78rem, 3.2vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffb347;
  text-shadow: 0 0 12px rgba(255, 107, 53, 0.35);
}
.nfhc-banner-link__sub {
  display: block;
  width: 100%;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(255, 220, 180, 0.75);
  font-weight: 500;
}

/* Full disclaimer page */
.disclaimer-page-body { min-height: 100vh; }
.disclaimer-page {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
.disclaimer-page__back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.disclaimer-page__back:hover {
  color: var(--accent-cyan-bright);
  text-decoration: underline;
}
.legal-disclaimer--page {
  margin: 0;
}
.legal-disclaimer--page .legal-disclaimer__body {
  max-height: none;
  overflow: visible;
  font-size: 0.85rem;
}

.checkout-panel.hidden { display: none; }
.checkout-panel:not(.hidden) { display: block; }

/* ─── Secret test checkout (/secret) ─── */
.secret-page { min-height: 100vh; }
.secret-wrap {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}
.secret-card {
  background: var(--card);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}
.secret-eyebrow {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-orange-glow);
  margin: 0 0 0.5rem;
}
.secret-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
}
.secret-sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.secret-h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--accent-cyan);
  margin: 0 0 0.75rem;
}
.secret-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
}
.secret-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.65fr;
  gap: 0.5rem;
}
.secret-test-badge {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffb347;
  background: rgba(139, 61, 15, 0.35);
  border: 1px solid var(--accent-orange-fire);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}
.secret-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.75rem 0;
}
.secret-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.secret-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.hidden { display: none !important; }

/* ─── Legal disclaimer (site-wide) ─── */
.legal-disclaimer-section {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem 3rem;
  background:
    linear-gradient(180deg, rgba(139, 61, 15, 0.12) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.72) 100%);
  border-top: 2px solid rgba(196, 92, 26, 0.45);
  border-bottom: 2px solid rgba(196, 92, 26, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 179, 71, 0.08),
    0 -8px 40px rgba(139, 61, 15, 0.15);
}
.legal-disclaimer-section__inner {
  max-width: 52rem;
  margin: 0 auto;
}
.legal-disclaimer-section__anchor {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 179, 71, 0.75);
  margin: 0 0 1rem;
}
.legal-disclaimer {
  background: rgba(0, 0, 0, 0.62);
  border: 2px solid rgba(196, 92, 26, 0.55);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow:
    0 0 0 1px rgba(0, 191, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(139, 61, 15, 0.12);
}
.legal-disclaimer--checkout {
  margin-bottom: 1.25rem;
  padding: 1.15rem 1rem 1.25rem;
}
.legal-disclaimer__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(139, 61, 15, 0.45), rgba(107, 47, 10, 0.55), rgba(139, 61, 15, 0.45));
  border: 1px solid rgba(255, 107, 53, 0.45);
  animation: disclaimer-pulse 3.5s ease-in-out infinite;
}
@keyframes disclaimer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.15); }
  50% { box-shadow: 0 0 18px 2px rgba(255, 107, 53, 0.22); }
}
.legal-disclaimer__sigil {
  color: rgba(255, 179, 71, 0.85);
  font-size: 0.75rem;
}
.legal-disclaimer__nfhc {
  font-size: clamp(0.85rem, 3.5vw, 1.05rem);
  letter-spacing: 0.14em;
  color: #ffb347;
  text-shadow: 0 0 12px rgba(255, 107, 53, 0.35);
}
.legal-disclaimer__title {
  text-align: center;
  font-size: clamp(1rem, 4vw, 1.2rem);
  color: var(--accent-cyan-bright);
  margin: 0 0 0.35rem;
  text-shadow: var(--neon-cyan-shadow);
}
.legal-disclaimer__entity {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 1rem;
}
.legal-disclaimer__body {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-body);
  max-height: 14rem;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 92, 26, 0.5) transparent;
}
.legal-disclaimer--checkout .legal-disclaimer__body {
  max-height: 11rem;
}
.legal-disclaimer__body p { margin: 0 0 0.85rem; }
.legal-disclaimer__body strong { color: rgba(255, 235, 210, 0.95); }
.legal-disclaimer__list {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
}
.legal-disclaimer__list li {
  margin-bottom: 0.65rem;
}
.legal-disclaimer__list li::marker {
  color: var(--accent-orange-glow);
}
.legal-disclaimer__closing {
  font-size: 0.72rem;
  color: rgba(255, 179, 71, 0.88);
  border-top: 1px solid rgba(196, 92, 26, 0.35);
  padding-top: 0.75rem;
  margin-bottom: 0 !important;
}
.legal-disclaimer__accept {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 2px solid rgba(0, 191, 255, 0.35);
  background: rgba(0, 191, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.legal-disclaimer__accept:hover {
  border-color: rgba(0, 191, 255, 0.55);
  background: rgba(0, 191, 255, 0.1);
}
.legal-disclaimer__accept input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  margin: 0.15rem 0 0;
  accent-color: var(--accent-orange-glow);
  cursor: pointer;
}
.legal-disclaimer__accept-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
  line-height: 1.45;
}
.continue--disabled,
.continue:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  filter: grayscale(0.35);
}
.continue--disabled:hover,
.continue:disabled:hover {
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .legal-disclaimer { padding: 1.75rem 2rem 2rem; }
  .legal-disclaimer__body { font-size: 0.82rem; max-height: none; }
  .legal-disclaimer--checkout .legal-disclaimer__body { max-height: 13rem; }
}

.btn-solana {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 767px) {
  .product-hero {
    min-height: auto;
    padding: 2rem 1rem 2.5rem;
    gap: 1.5rem;
    justify-content: flex-start;
  }
  .product-hero__visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .product-hero__title {
    text-align: center;
  }
  .product-hero__formula,
  .product-hero__mystery,
  .product-hero__eyebrow {
    text-align: center;
    max-width: 100%;
  }
  .product-hero__ctas {
    margin-left: auto;
    margin-right: auto;
  }
  .product-cta-buy,
  .product-cta-explore {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .worm-banner__text {
    padding: 0.7rem 0.85rem 0.85rem;
    line-height: 1.55;
  }
  .site-footer .grid {
    text-align: center;
  }
  .site-footer .flex.items-center {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .product-hero {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem 5rem;
  }
  .product-hero__visual { flex: 0 0 auto; }
  .product-hero__copy {
    flex: 1;
    max-width: 28rem;
    align-items: flex-start;
    text-align: left;
  }
  .product-hero__ctas {
    justify-content: flex-start;
    margin-left: 0;
    max-width: none;
  }
  .product-hero__glow { top: 20%; left: 25%; }
  .product-hero__copy .site-logo--hero { margin-left: 0; margin-right: auto; }
  .nfhc-banner-link {
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .nfhc-banner-link__main,
  .nfhc-banner-link__sub {
    text-align: left;
    width: auto;
  }
}

/* ─── Waitlist landing page ─── */
.landing-page {
  background-image: var(--dune-overlay), url('dunebackground.png');
  overflow-x: hidden;
}

.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 191, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  position: relative;
  flex-wrap: wrap;
}
.landing-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
.landing-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  flex-shrink: 0;
}
.landing-header__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--accent-cyan-bright);
  border-radius: 1px;
}
.landing-header__nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-header__nav--open {
  display: flex;
}
.landing-header__nav .landing-header__link {
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.landing-header__nav .landing-header__link:last-child {
  border-bottom: none;
}
@media (min-width: 640px) {
  .landing-header {
    flex-wrap: nowrap;
    padding: 1rem 1.25rem;
  }
  .landing-header__toggle { display: none; }
  .landing-header__nav {
    display: flex;
    width: auto;
    flex-direction: row;
    gap: 0.85rem;
    padding: 0;
    border-top: none;
  }
  .landing-header__nav .landing-header__link {
    padding: 0;
    border-bottom: none;
  }
}
.landing-header__link {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  white-space: nowrap;
}
.landing-header__link:hover {
  color: var(--accent-cyan-bright);
}
.landing-header__name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.landing-hero {
  position: relative;
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}
.landing-hero__glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 420px);
  height: min(90vw, 420px);
  background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.landing-hero__inner {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}
/* Product box — responsive, no stretch on mobile */
.landing-product {
  width: 100%;
  max-width: min(85vw, 300px);
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-product__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vw, 300px);
  object-fit: contain;
  object-position: center;
}
.landing-hero__box {
  max-width: min(72vw, 280px);
  margin: 0 auto;
}
.landing-hook {
  font-size: clamp(0.82rem, 2.4vw, 0.92rem);
  line-height: 1.65;
  color: var(--text-faint);
  margin: 0;
  max-width: 26rem;
  text-align: center;
}
.landing-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.15rem 0 0.25rem;
}
.landing-path--center { justify-content: center; }
.landing-path--page { justify-content: flex-start; }
.landing-path__step {
  color: var(--text-faint);
  text-decoration: none;
  padding: 0.2rem 0.35rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
a.landing-path__step:hover {
  color: var(--accent-cyan-bright);
}
.landing-path__step--here {
  color: var(--accent-cyan-bright);
  background: rgba(0, 191, 255, 0.08);
}
.landing-path__arrow {
  color: rgba(0, 191, 255, 0.22);
  font-size: 0.55rem;
}
.landing-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
  margin-top: 0.25rem;
}
.landing-cta-row .landing-btn { width: 100%; }
@media (min-width: 420px) {
  .landing-cta-row {
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
  }
  .landing-cta-row .landing-btn {
    width: auto;
    flex: 1;
    max-width: 14rem;
  }
}
.landing-hero__title {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
  letter-spacing: -0.03em;
}
.landing-hero__title--compound {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.landing-hero__compound-line {
  display: block;
  white-space: nowrap;
  font-size: clamp(0.58rem, 2.35vw + 0.38rem, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.landing-hero__compound-alias {
  display: block;
  font-size: clamp(1rem, 4vw, 1.55rem);
  font-weight: 600;
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
  letter-spacing: -0.01em;
}
.landing-hero__sub {
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
  max-width: 28rem;
}
.landing-hero__sub-strong {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 179, 71, 0.95);
}
.landing-hero__sub--lead {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--accent-cyan-bright);
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.35);
}
.landing-status-card {
  width: 100%;
  max-width: 26rem;
  padding: 1.15rem 1.25rem !important;
  border-color: rgba(255, 107, 53, 0.28) !important;
  text-align: center;
}
.landing-status-card__text {
  margin: 0;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  line-height: 1.65;
  color: var(--text-soft);
}
.landing-cta-row--single {
  max-width: 18rem;
}
.landing-cta-row--single .landing-btn {
  width: 100%;
}
.landing-hero__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0;
}
.landing-hero__specs {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
}
.landing-hero__spec-line {
  font-size: clamp(0.9rem, 2.6vw, 1.05rem);
  font-weight: 600;
  color: rgba(255, 235, 210, 0.92);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.landing-below {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
}
.landing-research {
  width: 100%;
  text-align: left;
}
.landing-research__finding {
  font-size: clamp(0.88rem, 2.4vw, 0.95rem);
  line-height: 1.6;
  color: var(--text-soft);
}
.science-path {
  width: 100%;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(0, 191, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
}
.science-path__indicator {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 0.35rem;
}
.science-path__current {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 235, 210, 0.9);
  margin: 0 0 1rem;
}
.science-path__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.science-path-card {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.science-path-card:hover {
  border-color: rgba(0, 191, 255, 0.35);
  transform: translateY(-1px);
}
.science-path-card__step {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}
.reframe-prose {
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}
.landing-hero__explore {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 191, 255, 0.25);
  margin-top: 0.25rem;
}
.landing-hero__explore:hover {
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
  border-color: rgba(0, 191, 255, 0.55);
}
.landing-hero--intro {
  padding-bottom: 1.5rem;
}

.landing-scarcity {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb347;
  background: rgba(139, 61, 15, 0.35);
  border: 1px solid rgba(255, 107, 53, 0.45);
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.15);
}
.landing-scarcity__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b35;
  animation: scarcity-pulse 1.8s ease-in-out infinite;
}
@keyframes scarcity-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.25); }
}
.landing-scarcity--soldout {
  color: var(--text-soft);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
}
.landing-scarcity__divider { opacity: 0.45; }

.landing-waitlist {
  width: 100%;
  max-width: 26rem;
}
.landing-waitlist__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-align: left;
}
.landing-waitlist__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .landing-waitlist__row {
    flex-direction: row;
    align-items: stretch;
  }
  .landing-waitlist__row .form-input { flex: 1; margin: 0; }
  .landing-waitlist__row .landing-btn { flex-shrink: 0; }
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  min-height: 48px;
}
.landing-btn--primary {
  background: linear-gradient(90deg, #8b3d0f, #00a8cc);
  color: rgba(255, 235, 210, 0.98);
  box-shadow: 0 8px 28px rgba(107, 47, 10, 0.35);
}
.landing-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(107, 47, 10, 0.45), 0 0 20px rgba(0, 191, 255, 0.15);
}
.landing-btn--secondary {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 191, 255, 0.35);
  color: var(--accent-cyan-bright);
}
.landing-btn--secondary:hover {
  border-color: rgba(0, 191, 255, 0.55);
  background: rgba(0, 191, 255, 0.08);
}
.landing-btn--large {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
  border-radius: 16px;
}
.landing-btn--disabled,
.landing-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.landing-form-msg {
  font-size: 0.82rem;
  color: var(--accent-orange-glow);
  margin: 0.5rem 0 0;
  min-height: 1.2em;
}

.landing-nfhc {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 74, 18, 0.9);
  text-decoration: none;
}
.landing-nfhc:hover { color: #ffb347; }

.landing-early {
  padding: 1rem 1.25rem 3rem;
  max-width: 28rem;
  margin: 0 auto;
}
.landing-early__card {
  background: var(--card);
  border: 1px solid rgba(0, 191, 255, 0.22);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(0, 191, 255, 0.06);
}
.landing-early__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 235, 210, 0.95);
  background: linear-gradient(90deg, #c45c1a, #ff6b35);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.landing-early__title {
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  margin: 0 0 0.75rem;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
}
.landing-early__urgency {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
}
.landing-early__urgency strong { color: #ffb347; }
.landing-early__fine {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.landing-price {
  margin-bottom: 1.25rem;
}
.landing-price__was {
  display: block;
  font-size: 1rem;
  color: var(--text-faint);
  text-decoration: line-through;
}
.landing-price__was-inline {
  font-size: 0.85em;
  color: var(--text-faint);
  text-decoration: line-through;
  margin-left: 0.35rem;
}
.landing-price__now {
  display: block;
  font-size: clamp(2.25rem, 10vw, 3rem);
  font-weight: 700;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
  line-height: 1.1;
  margin: 0.15rem 0;
}
.landing-price__note {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.landing-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.landing-perks li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
}
.landing-perks li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.65rem;
  top: 0.55rem;
}

.landing-checkout {
  padding: 0 1.25rem 3rem;
  max-width: 28rem;
  margin: 0 auto;
}
.landing-checkout__card {
  background: var(--card);
  border: 1px solid rgba(0, 191, 255, 0.18);
  border-radius: 20px;
  padding: 1.5rem;
}
.landing-checkout__title {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
}
.landing-checkout__price {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.landing-checkout__h3 {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin: 1rem 0 0.5rem;
}
.landing-checkout__row {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.65fr;
  gap: 0.5rem;
}
.landing-checkout__amount {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0;
}
.landing-checkout #qr {
  display: block;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: #fff;
  max-width: 100%;
}

.landing-footer {
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid rgba(0, 191, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}
.landing-footer__brand {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
}
.landing-footer__legal {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.landing-footer__link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin: 0 0.65rem;
  text-decoration: none;
}
.landing-footer__link:hover { text-decoration: underline; }

.landing-hero--continued {
  padding-top: 0;
  padding-bottom: 2rem;
}

/* ─── Dr. Reiter science section (video + quote) ─── */
.reiter-science {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.25rem 3rem;
}
.reiter-science--landing {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.4) 100%);
  border-top: 1px solid rgba(0, 191, 255, 0.12);
  border-bottom: 1px solid rgba(139, 61, 15, 0.2);
}
.reiter-science--page {
  padding-top: 0;
  margin-bottom: 0.5rem;
}
.reiter-science__inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.reiter-science__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 0.65rem;
}
.reiter-science__title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.reiter-science__lead {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  text-align: center;
}

.reiter-video {
  margin: 0 0 1.5rem;
}
.reiter-video__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 191, 255, 0.28);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8) inset,
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 191, 255, 0.08);
}
.reiter-video__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reiter-video__caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.reiter-video__timestamp {
  color: rgba(255, 179, 71, 0.9);
  letter-spacing: 0.04em;
}
.reiter-video__source {
  color: var(--text-faint);
}

.reiter-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  text-align: left;
  background: rgba(0, 0, 0, 0.45);
  border-left: 3px solid var(--accent-orange-glow);
  border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.reiter-quote__text {
  font-size: clamp(0.88rem, 2.4vw, 0.98rem);
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin: 0 0 1rem;
}
.reiter-quote__text strong {
  font-style: normal;
  color: #ffb347;
  font-weight: 600;
}
.reiter-quote__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.reiter-quote__name {
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--accent-cyan-bright);
  letter-spacing: 0.02em;
}
.reiter-quote__role {
  font-size: 0.68rem;
  font-style: normal;
  color: var(--text-faint);
  letter-spacing: 0.03em;
}

.reiter-points {
  text-align: left;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(0, 191, 255, 0.04);
  border: 1px solid rgba(0, 191, 255, 0.12);
}
.reiter-points__intro {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.65rem;
}
.reiter-points__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.reiter-points__list li {
  margin-bottom: 0.45rem;
}
.reiter-points__list li::marker {
  color: var(--accent-cyan);
}

.reiter-bridge {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
  text-align: left;
  margin: 0 0 1.25rem;
}
.reiter-bridge--compact {
  text-align: center;
  font-size: 0.85rem;
}
.reiter-bridge__link {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.reiter-bridge__link:hover {
  color: var(--accent-cyan-bright);
}

.reiter-science__cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
  text-decoration: none;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 191, 255, 0.25);
  transition: color 0.2s, border-color 0.2s;
}
.reiter-science__cta:hover {
  color: var(--accent-cyan-bright);
  text-shadow: var(--neon-cyan-shadow);
  border-color: rgba(0, 191, 255, 0.55);
}

.reiter-disclaimer {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(168, 74, 18, 0.95);
  margin: 0;
  line-height: 1.5;
}
.reiter-disclaimer strong {
  display: block;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reiter-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
  margin: 2.5rem 0 2rem;
}

@media (min-width: 768px) {
  .reiter-science--landing {
    padding: 3.5rem 2rem 4rem;
  }
  .reiter-science__inner {
    max-width: 40rem;
  }
}

.landing-flow {
  padding: 2.5rem 1.25rem 3.5rem;
  border-top: 1px solid rgba(139, 61, 15, 0.2);
}
.landing-flow__inner {
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
}
.landing-flow__card {
  padding: 1.5rem 1.25rem !important;
  text-align: center;
}
.landing-flow__card .landing-flow__actions {
  position: relative;
  z-index: 1;
}
.landing-flow__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 1.25rem;
}
.landing-flow__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.landing-flow__actions .landing-btn {
  width: 100%;
}
.landing-btn--accent {
  border-color: rgba(255, 179, 71, 0.35);
  color: #ffb347;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Expert Voices (Science page credibility) ─── */
.expert-voices__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.expert-voices__lead {
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 36rem;
  margin: 0 auto;
}
.expert-voices__card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.38) 100%);
  border: 1px solid rgba(0, 191, 255, 0.28);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 191, 255, 0.06);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .expert-voices__card {
    grid-template-columns: 1fr 1.1fr;
    padding: 2rem;
    gap: 1.75rem 2rem;
    align-items: start;
  }
  .expert-voices__profile { grid-column: 1; }
  .expert-voices__featured { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
  .expert-voices__quotes { grid-column: 1; }
  .expert-voices__video-grid { grid-column: 1 / -1; }
  .expert-voices__cta { grid-column: 1 / -1; }
}
.expert-voices__badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.65rem;
}
.expert-voices__name {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}
.expert-voices__bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 1rem;
}
.expert-voices__link {
  color: var(--accent-cyan-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.expert-voices__link:hover { color: var(--accent-cyan); }
.expert-voices__highlights {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-body);
}
.expert-voices__highlights li { margin-bottom: 0.5rem; }
.expert-voices__highlights li::marker { color: var(--accent-cyan); }
.expert-voices__highlights strong {
  color: var(--accent-cyan-bright);
  font-weight: 600;
}
.expert-voices__featured { margin: 0; }
.expert-voices__quotes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.expert-voices__quote {
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent-orange-glow);
  border-radius: 0 12px 12px 0;
  background: rgba(0, 0, 0, 0.35);
}
.expert-voices__quote-text {
  font-size: 0.82rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 0.45rem;
}
.expert-voices__quote-attr {
  font-size: 0.72rem;
  font-style: normal;
  color: var(--accent-cyan-bright);
  letter-spacing: 0.02em;
}
.expert-voices__quote-src {
  color: var(--text-faint);
  margin-left: 0.25rem;
}
.expert-voices__video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .expert-voices__video-grid { grid-template-columns: 1fr 1fr; }
}
.expert-voices__video { margin: 0; }
.expert-voices__cta {
  padding: 1.25rem 1.15rem;
  border-radius: 14px;
  background: rgba(0, 191, 255, 0.04);
  border: 1px solid rgba(0, 191, 255, 0.14);
  text-align: center;
}
.expert-voices__cta-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.expert-voices__cta-text strong { color: var(--accent-cyan-bright); }
.expert-voices__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.expert-voices__disclaimer {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(168, 74, 18, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* ─── Dune cyan text palette — overrides Tailwind text-white/* utilities ─── */
.text-white { color: var(--accent-cyan-bright) !important; text-shadow: var(--neon-cyan-shadow); }
.text-white\/95 { color: rgba(184, 236, 255, 0.95) !important; }
.text-white\/90 { color: rgba(184, 236, 255, 0.9) !important; }
.text-white\/88 { color: rgba(184, 236, 255, 0.88) !important; }
.text-white\/82 { color: var(--text-body) !important; }
.text-white\/80 { color: rgba(176, 228, 248, 0.85) !important; }
.text-white\/75 { color: rgba(168, 222, 245, 0.8) !important; }
.text-white\/72 { color: var(--text-soft) !important; }
.text-white\/70 { color: rgba(160, 218, 242, 0.78) !important; }
.text-white\/68 { color: rgba(0, 191, 255, 0.65) !important; }
.text-white\/65 { color: rgba(0, 191, 255, 0.62) !important; }
.text-white\/60 { color: rgba(0, 191, 255, 0.58) !important; }
.text-white\/55 { color: rgba(0, 191, 255, 0.52) !important; }
.text-white\/50 { color: rgba(0, 191, 255, 0.48) !important; }
.text-white\/45 { color: rgba(0, 191, 255, 0.42) !important; }
.text-white\/42 { color: rgba(0, 191, 255, 0.4) !important; }
.text-white\/40 { color: var(--text-faint) !important; }
.text-white\/38 { color: rgba(0, 191, 255, 0.36) !important; }
.text-white\/35 { color: rgba(0, 191, 255, 0.33) !important; }
.hover\:text-white:hover { color: var(--accent-cyan-bright) !important; text-shadow: var(--neon-cyan-shadow); }
.hover\:text-\[\#00e8ff\]:hover { color: var(--accent-cyan-bright) !important; text-shadow: var(--neon-cyan-shadow); }

/* ─── Learning Journey — breadcrumbs, progress, site map ─── */
.journey-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.journey-crumb__step {
  color: var(--text-faint);
  text-decoration: none;
  padding: 0.25rem 0.45rem;
  border-radius: 0.35rem;
  transition: color 0.2s, background 0.2s;
}
a.journey-crumb__step:hover {
  color: var(--accent-cyan-bright);
}
.journey-crumb__step--here {
  color: var(--accent-cyan-bright);
  background: rgba(0, 191, 255, 0.1);
}
.journey-crumb__arrow {
  color: rgba(0, 191, 255, 0.22);
  font-size: 0.55rem;
}
.journey-progress {
  width: 100%;
  margin-bottom: 1rem;
}
.journey-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
  gap: 0.5rem;
}
.journey-progress__label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}
.journey-progress__pct {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
}
.journey-progress__track {
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 191, 255, 0.12);
  overflow: hidden;
}
.journey-progress__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
  transition: width 0.4s ease;
}
.journey-stage-badge {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 0.75rem;
}
.journey-nav {
  width: 100%;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(0, 191, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
}
.journey-nav__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}
.journey-nav__map {
  color: var(--text-faint);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid rgba(0, 191, 255, 0.15);
}
.journey-nav__map:hover {
  color: var(--accent-cyan-bright);
}
.landing-hero__hook {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  font-style: italic;
}
.landing-hero__hook em {
  color: var(--accent-cyan-bright);
  font-style: normal;
}
.journey-preview {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
.journey-preview__header {
  text-align: center;
  margin-bottom: 2rem;
}
.journey-preview__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 0.5rem;
}
.journey-preview__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: rgba(255, 235, 210, 0.95);
}
.journey-preview__lead {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0 0 0.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.journey-preview__map-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 191, 255, 0.25);
}
.journey-preview__map-link:hover {
  text-shadow: var(--neon-cyan-shadow);
}
.journey-preview__grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .journey-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .journey-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.journey-preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.journey-preview-card:hover {
  border-color: rgba(0, 191, 255, 0.35);
  transform: translateY(-1px);
}
.journey-preview-card--done {
  border-color: rgba(0, 191, 255, 0.2);
}
.journey-preview-card__num {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
}
.journey-preview-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 235, 210, 0.92);
}
.journey-preview-card__hook {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-faint);
}
.journey-preview-card__check {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  font-size: 0.75rem;
  color: var(--accent-cyan);
}
.journey-map-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
}
.journey-map-stage {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.3);
}
.journey-map-stage--core {
  border-color: rgba(0, 191, 255, 0.2);
}
.journey-map-stage__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}
.journey-map-stage__label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}
.journey-map-stage__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}
.journey-map-stage__hook {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0 0 0.85rem;
  font-style: italic;
}
.journey-map-outline {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-faint);
}
.journey-map-outline li {
  margin-bottom: 0.35rem;
}
.journey-map-stage__cta {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
  text-decoration: none;
}
.journey-map-stage__cta:hover {
  text-shadow: var(--neon-cyan-shadow);
}
.journey-map-archive {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.journey-tone-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .journey-tone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.journey-tone-card {
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(139, 61, 15, 0.15);
  font-size: 0.82rem;
  line-height: 1.5;
}
.journey-tone-card strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb347;
  margin-bottom: 0.35rem;
}
.landing-cta-row--dual {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 22rem;
  width: 100%;
}
@media (min-width: 480px) {
  .landing-cta-row--dual {
    flex-direction: row;
    max-width: 28rem;
  }
  .landing-cta-row--dual .landing-btn {
    flex: 1;
  }
}

/* Stage 0 — risk comparison infographic */
.risk-infographic {
  margin: 2rem 0 2.25rem;
  padding: 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 191, 255, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(168, 74, 18, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
    rgba(0, 0, 0, 0.35);
}
.risk-infographic__header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.risk-infographic__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 0.35rem;
}
.risk-infographic__title {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
  color: var(--text);
}
.risk-infographic__lead {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-faint);
  max-width: 28rem;
  margin-inline: auto;
}
.risk-infographic__grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .risk-infographic__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.risk-card {
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.risk-card--warn {
  background: rgba(139, 61, 15, 0.22);
  border-color: rgba(196, 92, 26, 0.35);
}
.risk-card--calm {
  background: rgba(0, 40, 60, 0.35);
  border-color: rgba(0, 191, 255, 0.22);
}
.risk-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.risk-card__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1;
}
.risk-card--warn .risk-card__icon {
  background: rgba(196, 92, 26, 0.25);
  color: #ffb347;
}
.risk-card--calm .risk-card__icon {
  background: rgba(0, 191, 255, 0.15);
  color: var(--accent-cyan-bright);
}
.risk-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.risk-card__alias {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: var(--text-faint);
}
.risk-card__stats {
  margin: 0;
}
.risk-card__stat {
  margin-bottom: 0.65rem;
}
.risk-card__stat:last-child {
  margin-bottom: 0;
}
.risk-card__stat dt {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.2rem;
}
.risk-card__stat dd {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-body);
}
.risk-card__note {
  display: block;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.15rem;
}
.risk-card__meter {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.risk-meter {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.risk-meter__fill {
  display: block;
  height: 100%;
  width: var(--risk-pct, 50%);
  border-radius: inherit;
}
.risk-meter__fill--low {
  background: linear-gradient(90deg, rgba(196, 92, 26, 0.5), #c45c1a);
}
.risk-meter__fill--high {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan-bright));
}
.risk-card__meter-label {
  font-size: 0.72rem;
  color: var(--text-faint);
}
.risk-infographic__irony {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(0, 191, 255, 0.28);
  background: rgba(0, 191, 255, 0.06);
  text-align: center;
}
.risk-infographic__irony-label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}
.risk-infographic__irony-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-body);
}
.risk-infographic__irony-text strong {
  color: var(--accent-cyan-bright);
}
.risk-infographic__citations {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.risk-infographic__cite-label {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.risk-infographic__cite-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-faint);
}
.risk-infographic__cite-list a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.risk-infographic__cite-list a:hover {
  color: var(--accent-cyan-bright);
}

/* Stage 1 — dual credibility lanes */
.credibility-lanes {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 1rem;
}
@media (min-width: 900px) {
  .credibility-lanes {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.credibility-lane {
  padding: 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.credibility-lane--practitioner {
  border-color: rgba(255, 255, 255, 0.1);
}
.credibility-lane--primary {
  border-color: rgba(0, 191, 255, 0.28);
  box-shadow: 0 0 24px rgba(0, 191, 255, 0.06);
}
.credibility-lane__badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.credibility-lane__badge--verified {
  color: var(--accent-cyan-bright);
  background: rgba(0, 191, 255, 0.1);
  border-color: rgba(0, 191, 255, 0.35);
}
.credibility-lane__name {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}
.credibility-lane__bio {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-faint);
}
.credibility-lane__video {
  margin-bottom: 0.85rem;
}
.credibility-lane__quote {
  margin-bottom: 0;
}
.reiter-quote--verified {
  border-color: rgba(0, 191, 255, 0.35);
  background: rgba(0, 191, 255, 0.05);
}
.reiter-attribution-note {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-faint);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

/* Expert bio box — intro.html */
.expert-bio {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.32);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(0, 191, 255, 0.1) 0%, transparent 55%),
    rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 28px rgba(0, 191, 255, 0.08);
}
.expert-bio__header {
  margin-bottom: 0.75rem;
}
.expert-bio__badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  margin-bottom: 0.45rem;
  color: var(--accent-cyan-bright);
  background: rgba(0, 191, 255, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.35);
}
.expert-bio__name {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
}
.expert-bio__list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
}
.expert-bio__list li {
  margin-bottom: 0.4rem;
}
.expert-bio__list li::marker {
  color: var(--accent-cyan);
}
.reiter-video--featured {
  margin-bottom: 1.5rem;
}

/* hypothesis.html — The Sleeper Must Awaken */
.hypothesis-awaken {
  position: relative;
  margin: 0 0 0.5rem;
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(168, 74, 18, 0.38);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(196, 92, 26, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
    rgba(0, 0, 0, 0.48);
  box-shadow:
    0 0 40px rgba(139, 61, 15, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.hypothesis-awaken__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0, 191, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hypothesis-awaken__eyebrow {
  position: relative;
  margin: 0 0 0.65rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange-glow);
}
.hypothesis-awaken__title {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow:
    0 0 24px rgba(196, 92, 26, 0.35),
    0 0 48px rgba(0, 191, 255, 0.12);
}
.hypothesis-awaken__lead {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-body);
}
.hypothesis-awaken__lead strong {
  color: var(--accent-cyan-bright);
}
.hypothesis-awaken__body {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(184, 228, 248, 0.82);
}
.hypothesis-awaken__body em {
  color: var(--accent-cyan-bright);
  font-style: normal;
  font-weight: 600;
}
.hypothesis-awaken__dune {
  position: relative;
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent-orange-glow);
  border-radius: 0 0.75rem 0.75rem 0;
  background: rgba(139, 61, 15, 0.2);
}
.hypothesis-awaken__dune p {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: #ffd4a8;
}
.hypothesis-awaken__dune footer {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  font-style: normal;
}
.hypothesis-awaken__dune cite {
  font-style: italic;
}
.hypothesis-awaken__tryptamine {
  position: relative;
  margin: 1rem 0 1.15rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  background: rgba(0, 191, 255, 0.04);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-faint);
}
.hypothesis-awaken__tryptamine-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.4rem;
}
.hypothesis-awaken__link {
  position: relative;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan-bright);
  text-decoration: none;
}
.hypothesis-awaken__link:hover {
  text-shadow: var(--neon-cyan-shadow);
}

/* ─── Homepage artifact redesign (home.html only) ─── */
.home-artifact {
  --artifact-bg: #050505;
  --artifact-orange: #c2410c;
  --artifact-blue: #00d4ff;
  --artifact-orange-dim: rgba(194, 65, 12, 0.35);
  --artifact-blue-dim: rgba(0, 212, 255, 0.18);
  background-color: var(--artifact-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(194, 65, 12, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  color: #c8d4dc;
  overflow-x: hidden;
}
.home-artifact::before,
.home-artifact::after {
  display: none;
}
.artifact-scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.35) 2px,
    rgba(255, 255, 255, 0.35) 3px
  );
}

.artifact-serial {
  margin: 0;
  padding: 0.5rem 1rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(0, 212, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.6);
}
.artifact-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.artifact-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}
.artifact-header__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #e8eef2;
  min-width: 0;
}
.artifact-header__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.artifact-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--artifact-blue-dim);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  flex-shrink: 0;
}
.artifact-header__toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: var(--artifact-blue);
  border-radius: 1px;
}
.artifact-header__nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0;
  padding: 0.25rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.artifact-header__nav--open {
  display: flex;
}
.artifact-header__link {
  padding: 0.7rem 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.artifact-header__link:hover {
  color: var(--artifact-blue);
}
.artifact-header__nav .artifact-header__link:last-child {
  border-bottom: none;
}
@media (min-width: 720px) {
  .artifact-header__bar {
    flex-wrap: nowrap;
    padding: 0.85rem 1.5rem;
  }
  .artifact-header__toggle { display: none; }
  .artifact-header__nav {
    display: flex;
    width: auto;
    flex-direction: row;
    gap: 1.25rem;
    padding: 0;
    border-top: none;
  }
  .artifact-header__link {
    padding: 0;
    border-bottom: none;
  }
}

.artifact-hero {
  padding: 2rem 1rem 3rem;
  max-width: 72rem;
  margin: 0 auto;
}
.artifact-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .artifact-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.artifact-hero__serial {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--artifact-orange);
  margin: 0 0 0.75rem;
}
.artifact-hero__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #f4f6f8;
  text-shadow:
    0 0 40px rgba(194, 65, 12, 0.25),
    0 0 80px rgba(0, 212, 255, 0.08);
}
.artifact-hero__subtitle {
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.62);
}
.artifact-hero__product {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(200, 212, 220, 0.78);
  max-width: 34rem;
}
.artifact-risk {
  margin: 0 0 1.25rem;
  padding: 0.75rem 0.9rem;
  max-width: 34rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(248, 180, 160, 0.88);
  border-left: 2px solid rgba(194, 65, 12, 0.55);
  background: rgba(194, 65, 12, 0.08);
  border-radius: 0 0.4rem 0.4rem 0;
}
.artifact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  max-width: 22rem;
}
.artifact-stats--subtle {
  margin-top: 0.5rem;
  margin-bottom: 1.35rem;
  max-width: 20rem;
  opacity: 0.88;
}
.artifact-stat {
  padding: 0.85rem 0.75rem;
  border: 1px solid var(--artifact-blue-dim);
  border-radius: 0.65rem;
  background: rgba(0, 212, 255, 0.04);
}
.artifact-stats--subtle .artifact-stat {
  padding: 0.55rem 0.65rem;
  border-color: rgba(0, 212, 255, 0.12);
  background: rgba(0, 212, 255, 0.02);
}
.artifact-stat__num {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--artifact-blue);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.35);
}
.artifact-stats--subtle .artifact-stat__num {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(0, 212, 255, 0.65);
  text-shadow: none;
}
.artifact-stats--subtle .artifact-stat__label,
.artifact-stats--subtle .artifact-stat__org {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
}
.artifact-stat__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}
.artifact-stat__org {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
  font-style: italic;
}
.artifact-hero__tagline {
  margin: 0 0 1.35rem;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--artifact-orange);
  letter-spacing: 0.02em;
}
.artifact-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 20rem;
}
@media (min-width: 480px) {
  .artifact-hero__cta {
    flex-direction: row;
    max-width: none;
  }
}
.artifact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.artifact-btn--primary {
  background: var(--artifact-orange);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 24px rgba(194, 65, 12, 0.35);
}
.artifact-btn--primary:hover {
  box-shadow: 0 0 32px rgba(194, 65, 12, 0.5);
}
.artifact-btn--ghost {
  background: transparent;
  color: var(--artifact-blue);
  border-color: var(--artifact-blue-dim);
}
.artifact-btn--ghost:hover {
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
}
.artifact-hero__visual {
  margin: 0;
  text-align: center;
}
.artifact-hero__frame {
  position: relative;
  display: inline-block;
  padding: 0.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(194, 65, 12, 0.08) 0%, transparent 50%),
    rgba(0, 0, 0, 0.5);
  box-shadow:
    0 0 60px rgba(194, 65, 12, 0.15),
    0 0 40px rgba(0, 212, 255, 0.08);
}
.artifact-hero__img {
  display: block;
  width: 100%;
  max-width: min(420px, 88vw);
  height: auto;
  margin: 0 auto;
  border-radius: 0.35rem;
}
.artifact-hero__caption {
  margin-top: 0.65rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
}

.artifact-section {
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.artifact-section--evidence {
  background: rgba(0, 212, 255, 0.02);
}
.artifact-section--notify {
  padding-bottom: 3rem;
}
.artifact-section__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.artifact-section__head {
  margin-bottom: 1.5rem;
}
.artifact-plaque {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--artifact-orange);
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--artifact-orange-dim);
  border-radius: 0.25rem;
}
.artifact-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #f0f4f8;
}

.artifact-specimen {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 640px) {
  .artifact-specimen {
    grid-template-columns: minmax(0, 380px) 1fr;
    gap: 2rem;
  }
}
.artifact-specimen__visual {
  margin: 0;
}
.artifact-specimen__visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.artifact-specimen__specs {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.4);
}
.artifact-specimen__row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}
.artifact-specimen__row:last-child {
  border-bottom: none;
}
.artifact-specimen__row dt {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}
.artifact-specimen__row dd {
  margin: 0;
  color: rgba(232, 238, 242, 0.88);
}
.artifact-specimen__row--warn dd {
  color: #f87171;
  font-weight: 600;
}

.artifact-evidence__logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.artifact-evidence__logo {
  max-width: 220px;
  height: auto;
  opacity: 0.9;
}
.artifact-evidence__nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.artifact-evidence__card {
  padding: 1.15rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid var(--artifact-blue-dim);
  background: rgba(0, 0, 0, 0.45);
  text-align: center;
}
.artifact-evidence__org {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}
.artifact-evidence__value {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 212, 255, 0.7);
  text-shadow: none;
}
.artifact-evidence__desc {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}
.artifact-evidence__note {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}
.artifact-evidence__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.artifact-hypothesis {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(200, 212, 220, 0.82);
}
.artifact-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--artifact-blue);
  text-decoration: none;
}
.artifact-link:hover {
  text-decoration: underline;
}

.artifact-waitlist__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.65rem;
}
.artifact-waitlist__row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media (min-width: 520px) {
  .artifact-waitlist__row {
    flex-direction: row;
    align-items: stretch;
  }
  .artifact-waitlist__input {
    flex: 1;
  }
}
.artifact-waitlist__input {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #e8eef2;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  min-height: 44px;
}
.artifact-waitlist__input:focus {
  outline: none;
  border-color: var(--artifact-blue-dim);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.12);
}
.artifact-waitlist__msg {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  min-height: 1.25rem;
}
.artifact-fda {
  margin: 0 0 1.25rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.25);
}
.artifact-disclaimer {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}
.artifact-disclaimer--prominent {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 0.5rem;
  background: rgba(0, 212, 255, 0.05);
}
.artifact-disclaimer--prominent strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: #f0f4f8;
}
.artifact-disclaimer a {
  color: var(--artifact-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.artifact-disclaimer--prominent a {
  display: inline-block;
  margin-top: 0.15rem;
}
.artifact-disclaimer a:hover {
  color: #fff;
}

.artifact-footer {
  padding: 2rem 1rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.5);
}
.artifact-footer__brand {
  margin: 0.5rem 0 0.15rem;
  font-size: 0.95rem;
}
.artifact-footer__legal {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}
.artifact-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.artifact-footer__links a {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
}
.artifact-footer__links a:hover {
  color: var(--artifact-blue);
}

