/* ============================================================
   Revi — Design System
   Ebony Clay surface · Simple Pastel Green accent
   Geist primary typography
   ============================================================ */

:root {
  --orange: #DDFADC;
  --orange-deep: #BCBFCC;
  --orange-bright: #FFFFFF;
  --orange-soft: rgba(221, 250, 220, 0.14);
  --orange-soft-2: rgba(221, 250, 220, 0.22);
  --orange-glow: rgba(221, 250, 220, 0.34);
  --orange-glow-strong: rgba(221, 250, 220, 0.54);
  --black: #232D37;
  --black-warm: #1D2730;
  --black-warm-2: #293541;
  --black-elev-1: #27333E;
  --black-elev-2: #303D49;
  --black-elev-3: #384755;
  --graphite: #6E7180;
  --space: #9DA2B3;
  --steel: #BCBFCC;
  --smoke: #D3D6E0;
  --cloud: #EDEFF7;
  --border: rgba(221, 251, 228, 0.1);
  --border-strong: rgba(221, 251, 228, 0.22);
  --border-warm: rgba(221, 251, 228, 0.16);
  --text: #ffffff;
  --text-soft: #EDEFF7;
  --text-dim: #D3D6E0;
  --text-mute: #9DA2B3;
  --success: #56D364;
  --error: #F85149;

  --max-content: 1200px;
  --max-prose: 720px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --t-fast: 0.18s cubic-bezier(.2,.7,.4,1);
  --t-med: 0.32s cubic-bezier(.2,.7,.4,1);
  --t-slow: 0.6s cubic-bezier(.2,.7,.4,1);

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px rgba(0,0,0,0.45);
  --shadow-cta: 0 0 0 0 rgba(221,251,228,0), 0 8px 30px rgba(221,251,228,0.12);
  --shadow-cta-hover: 0 0 0 4px rgba(221,251,228,0.16), 0 12px 40px rgba(221,251,228,0.24);
}

/* ============================================================
   SCROLL PROGRESS BAR (top of every page)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  pointer-events: none;
  transition: transform 80ms linear;
  box-shadow: 0 0 12px var(--orange-glow);
}

/* ============================================================
   FLOATING BOOK LABS CTA (appears after scrolling past hero)
   ============================================================ */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.92);
  transition: opacity .35s ease, transform .35s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.floating-cta .btn {
  box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 0 0 var(--orange-glow);
  animation: floatPulse 3s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 0 0 var(--orange-glow); }
  50% { box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 0 12px rgba(221,251,228,0); }
}
@media (max-width: 720px) {
  /* Hide floating CTA on mobile — sticky bottom bar already handles it */
  .floating-cta { display: none; }
}

/* ============================================================
   LUCIDE ICONS — size + color helpers
   ============================================================ */
[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  vertical-align: middle;
}
.icon-lg [data-lucide], [data-lucide].icon-lg { width: 32px; height: 32px; }
.icon-xl [data-lucide], [data-lucide].icon-xl { width: 48px; height: 48px; }
.icon-sm [data-lucide], [data-lucide].icon-sm { width: 16px; height: 16px; }
.icon-orange [data-lucide], [data-lucide].icon-orange { stroke: var(--orange); }

/* ============================================================
   TRUST BADGE ROW
   ============================================================ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 32px 0;
}
@media (max-width: 720px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}
.trust-item {
  background: var(--black-elev-1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: background var(--t-fast);
}
.trust-item:hover { background: var(--black-elev-2); }
.trust-item [data-lucide] {
  width: 28px; height: 28px;
  stroke: var(--orange);
}
.trust-item-label {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.trust-item-sub {
  font-size: 11px;
  color: var(--text-dim);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 32px 0;
  background: var(--black-elev-1);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead {
  background: var(--black-elev-2);
}
.compare-table th {
  text-align: left;
  padding: 16px 20px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-strong);
}
.compare-table th:first-child { color: var(--text-dim); }
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
  background: var(--black);
}
.compare-table .check { color: var(--success); }
.compare-table .x { color: var(--error); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-size: 12px;
  color: var(--text-mute);
  font-family: "Geist", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--text-dim); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { color: var(--text-mute); opacity: 0.6; }
.breadcrumbs .current { color: var(--orange); }

/* ============================================================
   SECTION ICON (small icon in eyebrow rows)
   ============================================================ */
.eyebrow-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================
   STEP-BY-STEP TIMELINE (for "Your First Visit" page)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--border-warm) 100%);
}
.timeline-step {
  position: relative;
  padding-bottom: 32px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--black), 0 0 16px var(--orange-glow);
}
.timeline-step h3 {
  font-family: "Geist", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text);
}
.timeline-step .timeline-meta {
  font-size: 12px;
  color: var(--orange);
  font-family: "Geist", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-step p { color: var(--text-dim); font-size: 15px; margin-bottom: 8px; }

/* ============================================================
   STAT TILE (used for pricing transparency etc.)
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.stat-tile {
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.stat-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--orange);
}
.stat-tile .stat-value {
  font-family: "Geist", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stat-tile .stat-label {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.stat-tile .stat-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.testimonial-card {
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 80px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.25;
  font-family: Georgia, serif;
}
.testimonial-quote {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.testimonial-stars {
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 14px;
}
.testimonial-name { color: var(--text); font-weight: 600; }
.testimonial-context { color: var(--text-dim); font-size: 12px; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.pricing-card {
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.pricing-card.is-featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--black-elev-2) 0%, rgba(221,251,228,0.04) 100%);
  position: relative;
}
.pricing-card.is-featured::before {
  content: "Most Common";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
}
.pricing-card-title {
  font-family: "Geist", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text);
}
.pricing-card-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-card-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-card-features li:last-child { border-bottom: 0; }
.pricing-card-features [data-lucide] {
  flex-shrink: 0;
  width: 16px; height: 16px;
  stroke: var(--orange);
  margin-top: 2px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html, body { background: var(--black); color: var(--text); overflow-x: hidden; max-width: 100%; width: 100%; }
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  padding-top: 64px;
  overflow-x: hidden;
  position: relative;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--orange); text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast); }
a:hover { color: var(--orange-bright); }
ul, ol { list-style-position: inside; }

@media (max-width: 720px) {
  body {
    min-width: 0;
    touch-action: pan-y;
  }
  .site-header,
  .hero,
  .section,
  .cta-banner,
  .site-footer {
    max-width: 100vw;
    overflow-x: clip;
  }
  .container,
  .prose-content,
  .chapter-body,
  .difference-card,
  .timeline-step {
    min-width: 0;
  }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display {
  font-family: "Geist", system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-block;
}
h1, h2, h3, h4 { font-family: "Geist", sans-serif; letter-spacing: -0.03em; line-height: 1.05; color: var(--text); font-weight: 800; }
h1 { font-size: clamp(48px, 7vw, 84px); }
h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; color: var(--orange); }
.hero h2, .cta-banner h2 { color: var(--text); }
h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; line-height: 1.15; }
h4 { font-size: 18px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
p { color: var(--text-soft); font-size: 17px; margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }
.lede { font-size: 19px; color: var(--text); line-height: 1.55; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (min-width: 720px) { .container { padding: 0 32px; } }
.container.prose {
  max-width: var(--max-prose);
}
.section {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px) 0;
}
.section > .container {
  position: relative;
  z-index: 2;
}
.section:not(.section--surface)::before {
  content: "";
  position: absolute;
  inset: -35% -15%;
  background-image:
    repeating-linear-gradient(118deg, transparent 0 76px, rgba(221,250,220,0.025) 77px 78px),
    repeating-linear-gradient(28deg, transparent 0 118px, rgba(255,255,255,0.016) 119px 120px);
  pointer-events: none;
  animation: sectionMeshDrift 28s linear infinite;
}
.section--tight { padding: clamp(24px, 3.5vw, 48px) 0; }
.section--surface {
  background:
    linear-gradient(180deg, var(--black) 0%, var(--black-warm) 35%, var(--black-warm) 65%, var(--black) 100%);
  position: relative;
}
.section--surface::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 35%, var(--orange) 65%, transparent 100%);
  opacity: 0.5;
}
.section--surface::after {
  content: "";
  position: absolute;
  inset: -25% -10%;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(221,250,220,0.028) 89px 90px),
    repeating-linear-gradient(0deg, transparent 0 88px, rgba(221,250,220,0.02) 89px 90px);
  pointer-events: none;
  animation: surfaceGridDrift 34s linear infinite;
}
.section--surface .container { position: relative; z-index: 2; }
.section--bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Subtle orange decorative line — use between sections for rhythm */
.orange-rule {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 0 0 24px;
  border-radius: 2px;
}

/* ============================================================
   TOP NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(0,0,0,0.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 11px 28px;
  max-width: var(--max-content);
  margin: 0 auto;
  gap: 18px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  width: clamp(118px, 14vw, 172px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.28));
}
.nav-brand-mark {
  font-family: "Geist", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-brand-mark .a { color: var(--orange); }
.nav-brand img { height: 31px; width: auto; }
.brand-location {
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  display: block;
  padding: 8px 3px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-links > li > a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-links > li > a:hover::before { transform: scaleX(1); }
.nav-links a:hover { color: var(--text); background: var(--black-elev-2); }
.nav-links a.is-active { color: var(--orange); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--black-elev-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 280px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
}
.nav-dropdown-menu a:hover { background: var(--black-elev-3); color: var(--text); }
.nav-dropdown-menu .menu-eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
  padding: 8px 14px 4px;
  text-transform: uppercase;
}

.nav-cta {
  margin-left: 4px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* Mobile nav toggle (hidden by default; shown on mobile only) */
.nav-toggle { display: none !important; }
.nav-mobile-menu { display: none; }

@media (max-width: 920px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  body {
    padding-top: 56px;
  }
  .nav {
    min-height: 56px;
    padding: 10px 18px;
    gap: 14px;
  }
  .nav-brand {
    gap: 8px;
  }
  .nav-brand img {
    height: 28px;
  }
  .brand-location {
    font-size: 13px;
  }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    padding: 5px;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform var(--t-fast), opacity var(--t-fast);
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  body.nav-open .nav-mobile-menu {
    display: block;
  }
  .nav-mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
    background: var(--black);
    padding: 32px 32px 64px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-menu .menu-eyebrow {
    font-family: "Geist", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--orange);
    text-transform: uppercase;
    margin: 24px 0 8px;
  }
  .nav-mobile-menu .menu-eyebrow:first-child { margin-top: 0; }
  .nav-mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 17px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-menu a.cta-link {
    margin-top: 24px;
    background: var(--orange);
    color: var(--black);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: "Geist", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 16px;
    border-bottom: none;
  }
}

/* ============================================================
   BUTTONS / CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--orange-bright);
  color: var(--black);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-ghost {
  color: var(--orange);
  padding: 12px 0;
}
.btn-ghost:hover { color: var(--orange-bright); }
.btn-ghost::after { content: " \2192"; transition: transform var(--t-fast); display: inline-block; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.prose-content .inline-prose-actions {
  margin: 28px 0 36px;
}
.prose-content .inline-prose-actions .btn {
  text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 180px) 0 clamp(80px, 14vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-soft) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }

.hero--revi {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(52px, 7vw, 96px) 0;
  background:
    linear-gradient(120deg, rgba(7,16,22,0.98) 0%, rgba(7,16,22,0.92) 46%, rgba(11,28,32,0.86) 100%),
    url("revi-logo-source.jpg") center / cover no-repeat;
}
.hero--revi::before {
  inset: auto -20% -45% auto;
  width: min(760px, 72vw);
  height: min(760px, 72vw);
  background: radial-gradient(circle, rgba(221,251,228,0.18) 0%, transparent 66%);
  animation: reviPulse 9s ease-in-out infinite alternate;
}
.hero--revi::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(221,251,228,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,251,228,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 68% 48%, black 0%, transparent 58%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.hero--revi .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 6vw, 72px);
}
.hero--revi .hero-inner {
  width: min(860px, 100%);
}
.hero-logo-mark {
  width: clamp(112px, 13vw, 158px);
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.34));
}
.hero--revi h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.1vw, 82px);
}
.hero--revi .lede {
  max-width: 660px;
  color: rgba(255,255,255,0.86);
}
.hero-brand-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.hero--revi .hero-brand-stage {
  width: min(900px, 100%);
  min-height: 0;
  margin-inline: auto;
  padding: 8px 0 24px;
}

@media (min-width: 1024px) {
  .hero--revi {
    min-height: calc(100vh - 64px);
    padding: clamp(30px, 4vw, 58px) 0 clamp(34px, 4vw, 62px);
  }
  .hero--revi .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.76fr);
    gap: clamp(34px, 4.4vw, 64px);
    align-items: center;
  }
  .hero--revi .hero-inner {
    width: min(640px, 100%);
  }
  .hero--revi h1 {
    max-width: 620px;
    font-size: clamp(46px, 4.9vw, 68px);
  }
  .hero--revi .lede {
    max-width: 600px;
    font-size: 18px;
  }
  .hero--revi .hero-brand-stage {
    width: min(560px, 100%);
    min-height: 490px;
    padding: 10px 0 0;
    align-self: center;
  }
  .hero--revi .vial-photo-wrap {
    width: min(300px, 23vw);
  }
  .hero--revi .vial-explore-cue {
    top: -2px;
    width: min(360px, 100%);
    font-size: 11px;
  }
  .hero--revi .vial-offer {
    width: 148px;
    min-height: 40px;
    padding: 8px 11px 8px 10px;
    gap: 7px;
  }
  .hero--revi .vial-offer span {
    font-size: 11px;
    line-height: 1.12;
  }
  .hero--revi .vial-offer [data-lucide] {
    width: 14px;
    height: 14px;
  }
  .hero--revi .vial-offer--weight,
  .hero--revi .vial-offer--hormones,
  .hero--revi .vial-offer--sleep {
    right: calc(100% - 18px);
  }
  .hero--revi .vial-offer--energy,
  .hero--revi .vial-offer--peptides,
  .hero--revi .vial-offer--libido {
    left: calc(100% - 18px);
  }
  .hero--revi .vial-offer--weight,
  .hero--revi .vial-offer--energy { top: 22%; }
  .hero--revi .vial-offer--hormones,
  .hero--revi .vial-offer--peptides { top: 45%; }
  .hero--revi .vial-offer--sleep,
  .hero--revi .vial-offer--libido { top: 68%; }
  .hero--revi .vial-process-row {
    gap: 8px;
    margin-top: -8px;
  }
  .hero--revi .vial-process-row .hero-signal {
    min-height: 34px;
    padding: 8px 10px 8px 8px;
  }
  .hero--revi .vial-process-row .hero-signal span {
    font-size: 11px;
  }
}
.brand-orbit {
  position: relative;
  width: min(360px, 31vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(221,251,228,0.18) 0%, rgba(221,251,228,0.04) 42%, transparent 68%);
  transform-style: preserve-3d;
  animation: brandFloat 8s ease-in-out infinite;
}
.hero-brand-logo {
  width: 76%;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,0.55));
  z-index: 2;
}
.orbit-ring {
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(221,251,228,0.22);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}
.orbit-ring::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 10%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(221,251,228,0.64);
}
.orbit-ring--two {
  inset: 18%;
  transform: rotate(54deg);
  animation-duration: 24s;
  animation-direction: reverse;
}
.hero-signal {
  position: absolute;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-width: 0;
  min-height: 38px;
  padding: 9px 11px 9px 9px;
  border: 1px solid rgba(221,250,220,0.26);
  border-radius: 999px;
  background: rgba(7,16,22,0.76);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  animation: signalFloat 7s ease-in-out infinite;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med), color var(--t-med), box-shadow var(--t-med);
}
.hero-signal::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(221,250,220,0.08);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--t-med), transform var(--t-med);
}
.hero-signal:hover,
.hero-signal:focus-visible {
  border-color: rgba(221,250,220,0.58);
  background: rgba(14,45,50,0.9);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,0.36), 0 0 24px rgba(93,230,205,0.22);
}
.hero-signal:hover::after,
.hero-signal:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
.hero-signal [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--orange);
  stroke: var(--orange);
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}
.hero-signal span {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: "Geist", sans-serif;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.vial-process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}
.vial-process-row .hero-signal {
  position: relative;
  inset: auto;
  animation: none;
}
@keyframes brandFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-18px) rotateX(4deg) rotateY(-6deg); }
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
@keyframes signalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes reviPulse {
  to { transform: scale(1.08); opacity: 0.7; }
}
@media (max-width: 920px) {
  .hero--revi { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-brand-stage {
    min-height: 320px;
    order: initial;
  }
  .brand-orbit { width: min(340px, 84vw); }
  .hero-logo-mark { display: none; }
  .hero-signal {
    min-height: 34px;
    padding: 8px 10px 8px 8px;
  }
  .hero-signal span {
    font-size: 12px;
  }
  .hero--revi .hero-brand-stage {
    min-height: 0;
    padding-top: 0;
  }
}

/* Hero with sophisticated CSS-only gradient + glow treatment (no photos) */
.hero--photo {
  background:
    radial-gradient(ellipse 800px 600px at 90% 10%, rgba(221,251,228,0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--black) 70%, var(--black-warm) 100%);
  position: relative;
}
.hero--photo .hero-bg {
  position: absolute;
  inset: 0;
  background-image: none;
  background:
    radial-gradient(circle at 85% 25%, rgba(221,251,228,0.05) 0%, transparent 45%);
  opacity: 1;
  z-index: 0;
  animation: heroGlow 18s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.08) rotate(2deg); }
}
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, var(--black) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Hero with team photo on the right (text on left) — desktop editorial layout */
.hero--team-photo .hero-bg {
  position: absolute;
  inset: auto;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  width: 55%;
  height: 100%;
  background-size: cover !important;
  background-position: center 40% !important;
  background-repeat: no-repeat !important;
  filter: brightness(1.05) contrast(1.05) saturate(1);
  opacity: 1 !important;
  animation: none !important;
  z-index: 0;
}
.hero--team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--black) 0%,
      var(--black) 42%,
      rgba(0,0,0,0.3) 52%,
      transparent 70%
    );
  z-index: 1;
  pointer-events: none;
}
.hero--team-photo .hero-inner { max-width: 580px; }
.hero.hero--team-photo .meta-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 28px;
  margin: 28px 0 32px;
}
@media (max-width: 920px) {
  /* On mobile, drop the team-photo background and let the team grid below
     carry the visual. Prevents pills/buttons/hint overlapping faces. */
  .hero--team-photo .hero-bg { display: none; }
  .hero--team-photo::after { background: none; }
  .hero--team-photo { padding-bottom: clamp(48px, 12vw, 96px); }
  .hero--team-photo .hero-inner { max-width: 100%; }
  .hero.hero--team-photo .meta-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0 28px;
  }
  .hero.hero--team-photo .meta-line span {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    color: var(--text);
    letter-spacing: 0.1em;
    justify-content: center;
    white-space: nowrap;
  }
}
/* Decorative grid overlay removed — too subtle to justify horizontal-scroll risk */
.hero--photo .hero-inner,
.hero--photo .container { position: relative; z-index: 3; }
.hero h1 { margin-bottom: 24px; }
.hero .lede { max-width: 620px; margin-bottom: 36px; color: var(--text); }
.hero .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 32px;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Geist", sans-serif;
}
.hero-quiz-hint {
  margin: 18px 0 0;
  max-width: 460px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mute);
}
.hero-quiz-hint a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(221,251,228,0.4);
  transition: border-color var(--t-fast);
}
.hero-quiz-hint a:hover { border-bottom-color: var(--orange); }
.hero .meta-line span { display: flex; align-items: center; gap: 8px; }
.hero .meta-line [data-lucide] {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  stroke-width: 2.4;
  flex: 0 0 auto;
}
.hero .meta-line .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-condensed {
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 64px);
}
.hero-condensed h1 { font-size: clamp(40px, 6vw, 64px); }
.hero-icon-field,
.bio-icon-field {
  position: absolute;
  right: max(5vw, 34px);
  top: 50%;
  z-index: 2;
  width: min(310px, 28vw);
  height: 220px;
  transform: translateY(-42%);
  pointer-events: none;
}
.hero-icon-field::before,
.bio-icon-field::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(221,250,220,0.14);
  transform: rotate(-12deg);
  animation: iconFieldTurn 18s ease-in-out infinite alternate;
}
.hero-icon-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(221,250,220,0.34);
  border-radius: 7px;
  background: rgba(7,27,29,0.76);
  box-shadow: 0 14px 34px rgba(0,0,0,0.26);
  backdrop-filter: blur(8px);
  animation: iconNodeFloat 6.5s ease-in-out infinite;
}
.hero-icon-node [data-lucide] { width: 25px; height: 25px; stroke: var(--orange); }
.hero-icon-node--one { left: 4%; top: 16%; animation-delay: -1s; }
.hero-icon-node--two { right: 4%; top: 4%; animation-delay: -3.2s; }
.hero-icon-node--three { left: 45%; bottom: 3%; animation-delay: -5s; }
@keyframes iconFieldTurn {
  from { transform: rotate(-12deg) skewX(-2deg); }
  to { transform: rotate(8deg) skewX(2deg); }
}
@keyframes iconNodeFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}
.hero-condensed > .container { position: relative; z-index: 3; }
.hero-condensed > .container > h1,
.hero-condensed > .container > .lede { max-width: min(720px, 64vw); }
@media (max-width: 800px) {
  .hero-icon-field,
  .bio-icon-field { display: none; }
  .hero-icon-node { width: 44px; height: 44px; }
  .hero-icon-node [data-lucide] { width: 20px; height: 20px; }
  .hero-condensed > .container > h1,
  .hero-condensed > .container > .lede { max-width: 100%; }
}

/* ============================================================
   PROSE CONTENT
   ============================================================ */
.prose-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(24px, 3.2vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.prose-content h2:first-child { margin-top: 0; }
.chapter-nav {
  position: sticky;
  top: 64px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 18px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(7,16,22,0.94);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.chapter-nav::-webkit-scrollbar { display: none; }
.chapter-nav-label {
  flex: 0 0 auto;
  padding: 0 10px 0 2px;
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.chapter-nav a {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(221,250,220,0.16);
  border-radius: 5px;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.chapter-nav a:hover,
.chapter-nav a:focus-visible {
  color: var(--text);
  border-color: var(--orange);
  background: rgba(221,250,220,0.06);
}
.chapter-scroll-cue {
  position: sticky;
  right: 0;
  z-index: 2;
  flex: 0 0 38px;
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: 4px;
  border: 1px solid rgba(221,250,220,0.36);
  border-radius: 5px;
  background: var(--black-elev-2);
  color: var(--orange);
  box-shadow: -12px 0 18px rgba(7,16,22,0.96);
  cursor: pointer;
  animation: chapterCueNudge 1.8s ease-in-out infinite;
}
.chapter-scroll-cue[hidden] { display: none; }
.chapter-scroll-cue [data-lucide] { width: 18px; height: 18px; }
@keyframes chapterCueNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}
.content-chapter {
  scroll-margin-top: 142px;
  border-top: 1px solid rgba(221,250,220,0.14);
}
.content-chapter:last-child { border-bottom: 1px solid rgba(221,250,220,0.14); }
.content-chapter > h2 {
  margin: 0;
  font-size: inherit;
}
.chapter-toggle {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  color: var(--orange);
  font: inherit;
  font-family: "Geist", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}
.chapter-toggle [data-lucide] {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transition: transform var(--t-med);
}
.content-chapter:not(.is-collapsed) .chapter-toggle [data-lucide] { transform: rotate(180deg); }
.chapter-body {
  padding: 0 4px 26px;
  animation: chapterReveal 0.32s ease-out;
}
.chapter-body > hr:first-child,
.chapter-body > hr:last-child { display: none; }
@keyframes chapterReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.team-profile-page .chapter-nav {
  position: static;
  top: auto;
  margin: 30px 0 28px;
}
.team-profile-page .content-chapter {
  scroll-margin-top: 96px;
}
@media (max-width: 720px) {
  .chapter-nav {
    top: 56px;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    overscroll-behavior-inline: contain;
  }
  .team-profile-page .chapter-nav {
    margin-inline: 0;
    padding-inline: 0;
  }
  .chapter-nav-label { display: none; }
  .chapter-toggle { min-height: 64px; padding-block: 15px; }
}
.prose-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(18px, 2.2vw, 22px);
}
.prose-content p { margin-bottom: 14px; line-height: 1.55; }
.prose-content ul, .prose-content ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
  list-style: none;
}
/* Two-column list when there are 5+ items (visual compression) */
.prose-content ul, .prose-content ol {
  column-count: 1;
  column-gap: 32px;
}
@media (min-width: 720px) {
  .prose-content ul:has(li:nth-child(5)),
  .prose-content ol:has(li:nth-child(5)) {
    column-count: 2;
  }
}
.prose-content ul li, .prose-content ol li {
  position: relative;
  padding-left: 4px;
  margin-bottom: 6px;
  color: var(--text-soft);
  break-inside: avoid;
}
.prose-content ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 8px;
  height: 1.5px;
  background: var(--orange);
}
.prose-content ol { counter-reset: item; }
.prose-content ol li {
  counter-increment: item;
  padding-left: 8px;
}
.prose-content ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: -22px;
  font-family: "Geist", sans-serif;
  color: var(--orange);
  font-size: 18px;
}
.prose-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
}
.prose-content blockquote em { font-style: normal; color: var(--text-dim); font-size: 13px; display: block; margin-top: 6px; }
.prose-content hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0 30px;
}
.difference-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(221,250,220,0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(221,250,220,0.09), rgba(18,73,80,0.12) 42%, rgba(6,18,24,0.74)),
    var(--black-elev-1);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  color: inherit;
  text-decoration: none;
}
.difference-card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 18% 24%, rgba(221,250,220,0.18), transparent 28%),
    linear-gradient(115deg, transparent 0 44%, rgba(221,250,220,0.09) 45% 46%, transparent 47% 100%);
  opacity: 0.7;
  animation: surfaceGridDrift 16s linear infinite;
  pointer-events: none;
}
.difference-card > * { position: relative; z-index: 1; }
.difference-card--feature {
  border-color: rgba(221,250,220,0.36);
  background:
    linear-gradient(135deg, rgba(221,250,220,0.16), rgba(18,97,98,0.18) 48%, rgba(6,18,24,0.78)),
    var(--black-elev-2);
}
.difference-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(221,250,220,0.42);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(221,250,220,0.07);
  box-shadow: inset 0 0 24px rgba(221,250,220,0.08);
}
.difference-icon [data-lucide] {
  width: 25px;
  height: 25px;
}
.difference-label {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.difference-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.08;
}
.difference-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.48;
}
.page-quick-grid {
  margin-top: 22px;
}
@media (min-width: 920px) {
  .difference-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .difference-card {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 270px;
  }
}
@media (max-width: 560px) {
  .difference-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }
  .difference-icon {
    width: 44px;
    height: 44px;
  }
  .difference-icon [data-lucide] {
    width: 21px;
    height: 21px;
  }
  .difference-card p {
    font-size: 15px;
  }
}
.page-guide {
  position: relative;
  margin: 0 0 30px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(221,250,220,0.2);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 82% 14%, rgba(221,250,220,0.16), transparent 32%),
    linear-gradient(135deg, rgba(221,250,220,0.08), rgba(10,43,47,0.28) 48%, rgba(6,18,24,0.84));
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.page-guide::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    linear-gradient(116deg, transparent 0 45%, rgba(221,250,220,0.07) 46% 47%, transparent 48% 100%),
    radial-gradient(circle at 18% 76%, rgba(221,250,220,0.12), transparent 24%);
  animation: surfaceGridDrift 18s linear infinite;
  pointer-events: none;
}
.page-guide > * {
  position: relative;
  z-index: 1;
}
.page-guide-copy {
  max-width: 760px;
}
.page-guide h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1.02;
  text-transform: uppercase;
}
.page-guide-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
}
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 18px;
}
.guide-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(221,250,220,0.18);
  border-radius: var(--radius-md);
  background: rgba(4,18,24,0.58);
  color: var(--text-soft);
  text-decoration: none;
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.guide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(221,250,220,0.38);
  background: rgba(221,250,220,0.08);
}
.guide-card [data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}
.guide-card span {
  color: var(--text-mute);
  font-size: 13px;
  line-height: 1.35;
}
.guide-card strong {
  color: var(--text);
  font-family: "Geist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(221,250,220,0.16);
  border-radius: var(--radius-md);
  background: rgba(221,250,220,0.12);
}
.simple-steps div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  background: rgba(4,18,24,0.72);
  color: var(--text-soft);
  font-size: 14px;
}
.simple-steps span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-size: 16px;
}
.weight-loss-content .chapter-toggle {
  min-height: 62px;
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 27px);
}
.weight-loss-content .content-chapter:first-of-type .chapter-toggle {
  color: var(--orange);
}
@media (max-width: 720px) {
  .page-guide {
    margin-inline: -10px;
    padding: 22px 16px;
  }
  .guide-card-grid,
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .guide-card {
    min-height: 96px;
  }
  .weight-loss-content .chapter-toggle {
    min-height: 54px;
    padding-block: 12px;
    font-size: 22px;
    line-height: 1.05;
  }
  .weight-loss-content .chapter-toggle [data-lucide] {
    width: 18px;
    height: 18px;
  }
}

/* Strong intro paragraph */
.prose-content > p:first-of-type { font-size: 18px; color: var(--text); margin-bottom: 18px; }
.prose-content > div:first-child > p:first-of-type { font-size: 18px; color: var(--text); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* About-hero internal team grid spacing reset */
.about-hero .team-grid { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
.about-hero { padding-bottom: clamp(40px, 6vw, 64px); }

/* Mobile horizontal-scroll variant for card grids.
   Add .cards-grid--scroll-mobile to convert vertical stack into a
   swipe-friendly horizontal carousel below 720px. */
@media (max-width: 720px) {
  .cards-grid--scroll-mobile {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 16px;
    padding: 4px 16px 20px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .cards-grid--scroll-mobile::-webkit-scrollbar { display: none; }
  .cards-grid--scroll-mobile > .card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-width: 0;
  }
}
.card {
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
/* Top orange accent strip — appears on hover */
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
  z-index: 2;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  background: var(--black-elev-3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(221,251,228,0.15);
}
.card:hover::before { opacity: 1; }
.card:hover::after { transform: scaleX(1); }
.card:hover .card-icon { background: var(--orange); }
.card:hover .card-icon svg { stroke: var(--black); }
.card-icon { transition: background var(--t-med); }
.card-icon svg { transition: stroke var(--t-med); }
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.card-icon svg, .card-icon i, .card-icon [data-lucide] { width: 32px; height: 32px; stroke: var(--orange); fill: none; stroke-width: 2; }
.card h3 { color: var(--text); position: relative; z-index: 1; }
.card p { color: var(--text-dim); margin-bottom: 24px; position: relative; z-index: 1; flex-grow: 1; }
.card .btn-ghost { position: relative; z-index: 1; align-self: flex-start; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 56px;
  counter-increment: step;
}
.process-step::before {
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Geist", sans-serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--orange);
  opacity: 0.85;
  text-shadow: 0 0 24px var(--orange-glow);
}
.process-step h3 { font-size: 22px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.process-step p { font-size: 15px; color: var(--text-dim); }

/* ============================================================
   SYMPTOM GRID (homepage list)
   ============================================================ */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .symptom-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.symptom-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .symptom-link { padding: 22px 24px; font-size: 16px; }
}
.symptom-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orange-soft) 0%, transparent 30%);
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}
.symptom-link::after {
  content: "\2192";
  color: var(--orange);
  transition: transform var(--t-fast);
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.symptom-link span { position: relative; z-index: 1; }
.symptom-link:hover {
  border-color: var(--orange);
  border-left-color: var(--orange);
  border-left-width: 3px;
  background: var(--black-elev-3);
  color: var(--orange);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(221,251,228,0.2);
}
.symptom-link:hover::before { opacity: 1; }
.symptom-link:hover::after { transform: translateX(4px); }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 16px 20px;
  margin: 0 -16px;
  scrollbar-width: none;
}
.team-grid::-webkit-scrollbar { display: none; }
.team-grid > .team-card {
  flex: 0 0 70%;
  scroll-snap-align: start;
  min-width: 0;
  padding: 24px 18px;
}
.team-grid > .team-card .name { font-size: 18px; }
@media (min-width: 720px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .team-grid > .team-card { flex: 1 1 0; }
}
.team-card {
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at top, var(--orange-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}
.team-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(221,251,228,0.1);
}
.team-card:hover::before { opacity: 1; }
.team-card:hover .avatar {
  border-color: var(--orange);
  background: var(--black);
  transform: scale(1.05);
}
.team-card .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--black-elev-3);
  border: 2px solid var(--border-strong);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: 0.04em;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-initials {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(221,250,220,0.16), transparent 44%),
    linear-gradient(145deg, #10343d, #071b21);
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: inherit;
  letter-spacing: 0.08em;
  line-height: 1;
}
.team-initials::before,
.team-initials::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(221,250,220,0.13);
  border-radius: 50%;
  pointer-events: none;
}
.team-initials::before { width: 72%; height: 72%; }
.team-initials::after { width: 44%; height: 44%; }
.team-initials { text-shadow: 0 0 22px rgba(93,230,205,0.24); }
.team-card .name, .team-card .role { position: relative; z-index: 1; }
.team-card .name { font-family: "Geist", sans-serif; font-size: 22px; letter-spacing: 0.03em; margin-bottom: 4px; color: var(--text); }
.team-card .role { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* Team detail (bio page hero) */
.bio-header {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
}
.bio-icon-field { right: 0; top: 48%; width: 240px; height: 170px; opacity: 0.48; }
@media (max-width: 720px) {
  .bio-header { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .bio-icon-field { right: 8px; top: 35%; width: 130px; height: 140px; opacity: 0.24; }
}
.bio-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--black-elev-2);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  font-size: 64px;
  color: var(--orange);
  overflow: hidden;
  flex-shrink: 0;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio-header h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; line-height: 1.05; }
.bio-header .role { color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; font-size: 14px; font-family: "Geist", sans-serif; }

.bio-quickfacts {
  background: var(--black-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 32px 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 32px;
}
.bio-quickfacts dt { font-size: 11px; letter-spacing: 0.16em; color: var(--orange); font-family: "Geist", sans-serif; text-transform: uppercase; margin-bottom: 4px; }
.bio-quickfacts dd { font-size: 15px; color: var(--text); }

/* ============================================================
   CONTRIBUTOR BLOCK (footer of clinical pages)
   ============================================================ */
.contributors {
  background: var(--black-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
@media (max-width: 720px) {
  .contributors {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    gap: 12px;
    scrollbar-width: none;
  }
  .contributors::-webkit-scrollbar { display: none; }
  .contributors .contributor {
    flex: 0 0 78%;
    scroll-snap-align: start;
    background: var(--black-elev-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    align-items: center;
  }
}
.contributor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contributor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black-elev-3);
  border: 1.5px solid var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  font-size: 22px;
  color: var(--orange);
  overflow: hidden;
}
.contributor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contributor-meta {
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Geist", sans-serif;
  margin-bottom: 4px;
}
.contributor-name { color: var(--text); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.contributor-bio { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-bottom: 4px; }
.contributor a { font-size: 13px; }

/* ============================================================
   QUOTE / FEATURED VOICE BLOCK
   ============================================================ */
.feature-quote {
  background: var(--black-elev-1);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 32px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 720px) {
  .feature-quote { grid-template-columns: 1fr; padding: 28px; }
}
.feature-quote-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--black-elev-3);
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  font-size: 28px;
  color: var(--orange);
}
.feature-quote-text { font-size: 19px; line-height: 1.5; color: var(--text); margin-bottom: 16px; font-style: italic; }
.feature-quote-attr strong { color: var(--text); display: block; font-style: normal; }
.feature-quote-attr em { color: var(--text-dim); font-style: normal; font-size: 14px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  margin: 32px 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--orange); }
.faq-question::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -4px;
  transition: transform var(--t-fast);
}
.faq-item.is-open .faq-question::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med), padding var(--t-med);
  color: var(--text-dim);
  padding: 0 32px 0 0;
}
.faq-item.is-open .faq-answer { max-height: 600px; padding-bottom: 24px; }

/* ============================================================
   PHOTO PLACEHOLDER (for hero photos before real images go in)
   ============================================================ */
.photo-placeholder {
  background: var(--black-elev-1);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 64px 32px;
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
  margin: 24px 0;
  position: relative;
}
.photo-placeholder::before {
  content: "PHOTO";
  display: block;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 8px;
}

/* Horizontal team strip — swipeable on mobile, clean row on desktop */
.team-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 16px 24px;
  margin: 24px -16px 32px;
  scrollbar-width: none;
}
.team-strip::-webkit-scrollbar { display: none; }
.team-strip-card {
  flex: 0 0 60%;
  scroll-snap-align: start;
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-fast), transform var(--t-fast);
  display: block;
}
.team-strip-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.team-strip-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--black-elev-3);
  margin-bottom: 12px;
}
.team-strip-photo .team-initials { font-size: 34px; }
.team-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-strip-name {
  font-family: "Geist", sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 2px;
}
.team-strip-role {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 720px) {
  .team-strip-card { flex: 0 0 200px; }
}
@media (min-width: 1024px) {
  .team-strip {
    overflow: visible;
    padding: 8px 0 24px;
    margin: 24px 0 32px;
  }
  .team-strip-card { flex: 1 1 0; }
}

.inline-photo {
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-elev-1);
  border: 1px solid var(--border);
}
.inline-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.inline-photo > .team-initials {
  min-height: clamp(240px, 38vw, 420px);
  font-size: clamp(64px, 11vw, 128px);
}
.inline-photo figcaption {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  background: var(--black-elev-2);
  border-top: 1px solid var(--border);
}

.photo-hero {
  background: linear-gradient(135deg, var(--black-elev-2) 0%, var(--black-elev-1) 100%);
  border-radius: var(--radius-lg);
  height: clamp(280px, 40vw, 500px);
  margin: 32px 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-hero::before {
  content: "PHOTO PLACEHOLDER";
  font-family: "Geist", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}
.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--orange-soft) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   QUIZ
   ============================================================ */
.quiz-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}
.quiz-progress-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: background var(--t-med);
}
.quiz-progress-step.is-active { background: var(--orange); }
.quiz-progress-step.is-done { background: var(--orange); opacity: 0.5; }

.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: fadeUp 0.4s ease-out; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quiz-step h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  line-height: 1.1;
}
.quiz-step .quiz-helper {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 32px;
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.quiz-options.is-grid-2 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.quiz-options.is-chips { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--black-elev-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  font-size: 16px;
  color: var(--text);
  text-align: left;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--border-strong);
  background: var(--black-elev-3);
}
.quiz-option.is-selected {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.06);
}
.quiz-option-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.quiz-option.is-selected .quiz-option-check {
  border-color: var(--orange);
  background: var(--orange);
}
.quiz-option.is-selected .quiz-option-check::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg) translate(1px, -1px);
}
.quiz-option--radio .quiz-option-check { border-radius: 50%; }
.quiz-option--radio.is-selected .quiz-option-check {
  background: var(--orange);
  border-color: var(--orange);
}
.quiz-option--radio.is-selected .quiz-option-check::after {
  content: "";
  width: 0; height: 0;
  border: 0;
  background: var(--black);
  width: 8px; height: 8px;
  border-radius: 50%;
  transform: none;
}
.quiz-option-content {
  flex: 1;
}
.quiz-option-label {
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}
.quiz-option-sub {
  font-size: 13px;
  color: var(--text-dim);
}

/* Quiz form fields */
.quiz-field { margin-bottom: 20px; }
.quiz-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: "Geist", sans-serif;
  margin-bottom: 8px;
}
.quiz-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--black-elev-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  transition: border-color var(--t-fast);
}
.quiz-field input:focus {
  outline: none;
  border-color: var(--orange);
}
.quiz-field input.is-error { border-color: var(--error); }
.quiz-field-error {
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.quiz-field-error.is-shown { display: block; }
.quiz-consent {
  font-size: 13px;
  color: var(--text-dim);
  margin: 16px 0 24px;
  line-height: 1.6;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.quiz-actions .btn { min-width: 140px; }
.quiz-back {
  background: transparent;
  color: var(--text-dim);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--t-fast);
}
.quiz-back:hover { color: var(--text); }
.quiz-back:disabled { opacity: 0; pointer-events: none; }

/* Results screen */
.quiz-result {
  text-align: left;
}
.quiz-result-eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quiz-result h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}
.quiz-result-lede {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.55;
}
.quiz-result-card {
  background: var(--black-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
}
.quiz-result-card-eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quiz-result-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text);
}
.quiz-result-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 16px;
}

/* In-body photo with caption (replaces "[Photo callout: ...]" markdown placeholders) */
.body-photo {
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-elev-1);
  border: 1px solid var(--border);
}
.body-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.92) contrast(1.02) saturate(0.95);
}
.body-photo figcaption {
  padding: 14px 20px;
  font-size: 12px;
  color: var(--text-mute);
  background: var(--black-elev-1);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ============================================================
   DISCLAIMER / NOTICE BOX
   ============================================================ */
.notice {
  background: var(--black-elev-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}
.notice strong { color: var(--text); }

/* ============================================================
   RELATED PAGES (footer of every clinical page)
   ============================================================ */
.related {
  margin: 32px 0 16px;
}
.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}
.related-list a {
  display: block;
  padding: 16px 20px;
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: 15px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.related-list a:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   BIG CTA BANNER (above footer on most pages)
   ============================================================ */
.cta-banner {
  text-align: center;
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--black-elev-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -60% -15%;
  background-image:
    repeating-linear-gradient(112deg, transparent 0 96px, rgba(221,250,220,0.045) 97px 98px),
    repeating-linear-gradient(22deg, transparent 0 154px, rgba(255,255,255,0.022) 155px 156px);
  pointer-events: none;
  animation: ctaMeshDrift 24s linear infinite;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--text-dim); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { justify-content: center; }

@keyframes sectionMeshDrift {
  from { transform: translate3d(-2%, -2%, 0); }
  to { transform: translate3d(8%, 6%, 0); }
}
@keyframes surfaceGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(90px, 90px, 0); }
}
@keyframes ctaMeshDrift {
  from { transform: translate3d(-3%, 0, 0); }
  to { transform: translate3d(7%, 4%, 0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black-elev-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-simple {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 40px;
  align-items: start;
}
@media (max-width: 720px) {
  .footer-simple { grid-template-columns: 1fr; gap: 32px; }
}
.footer-visit h5 {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-visit p { color: var(--text-soft); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-visit a { color: var(--text-soft); }
.footer-visit a:hover { color: var(--orange); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { color: var(--text); font-family: "Geist", sans-serif; font-size: 24px; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-brand .a { color: var(--orange); }
.footer-tagline { color: var(--text-dim); font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-col h5 { font-family: "Geist", sans-serif; font-size: 13px; letter-spacing: 0.16em; color: var(--orange); text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-soft); font-size: 14px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--text-mute);
}
.footer-bottom a { color: var(--text-dim); font-size: 12px; }
.footer-bottom a:hover { color: var(--orange); }
.footer-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 11px;
  line-height: 1.6;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--black-elev-2);
  border-top: 1px solid var(--border-strong);
  padding: 12px 16px;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex;
    width: 100%;
    max-width: 100vw;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    overflow: hidden;
  }
  body { padding-bottom: 80px; }
}
.mobile-cta-bar .btn { flex: 1; padding: 12px 16px; font-size: 14px; }

/* ============================================================
   SCROLL REVEAL (subtle fade-up as elements enter view)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   REVI REBRAND FINAL LAYER
   ============================================================ */
.site-header {
  background: rgba(7,16,22,0.72);
}
.site-header.scrolled {
  background: rgba(7,16,22,0.94);
}
.footer-logo {
  width: 156px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.28));
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0;
}
.footer-brand .brand-location {
  font-size: 18px;
}
@media (max-width: 480px) {
  .nav-brand {
    gap: 8px;
  }
  .nav-brand img {
    height: 28px;
  }
  .brand-location {
    font-size: 14px;
  }
}
.hero.hero--revi {
  background: var(--black-warm);
}
.hero.hero--revi::before,
.hero.hero--revi::after {
  background: none;
}
.hero.hero--revi .hero-bg {
  inset: 0;
  width: auto;
  height: auto;
  background: var(--black-elev-2);
  clip-path: polygon(56% 0, 100% 0, 100% 100%, 36% 100%);
  opacity: 0.38;
  filter: none;
  animation: heroPanelDrift 15s ease-in-out infinite alternate;
}
.hero-condensed:not(.hero--photo)::after {
  content: "";
  position: absolute;
  inset: -30% -12%;
  background-image:
    repeating-linear-gradient(116deg, transparent 0 92px, rgba(221,250,220,0.035) 93px 94px),
    repeating-linear-gradient(26deg, transparent 0 148px, rgba(255,255,255,0.018) 149px 150px);
  pointer-events: none;
  animation: condensedHeroDrift 26s linear infinite;
}
.hero-condensed:not(.hero--photo) > .container {
  position: relative;
  z-index: 2;
}
@keyframes heroPanelDrift {
  from { transform: translate3d(-1.5%, 0, 0) scale(1); }
  to { transform: translate3d(1.5%, 0.8%, 0) scale(1.025); }
}
@keyframes condensedHeroDrift {
  from { transform: translate3d(-2%, -2%, 0); }
  to { transform: translate3d(7%, 5%, 0); }
}
.hero.hero--revi .hero-inner {
  max-width: none;
}
.hero.hero--revi h1 {
  margin-bottom: 18px;
}
.hero.hero--revi .lede {
  margin-bottom: 24px;
}
.hero.hero--revi .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 18px 0 26px;
}
.hero.hero--revi .meta-line span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.74);
  white-space: nowrap;
  letter-spacing: 0.11em;
}
.hero-vial-stage {
  min-height: 540px;
}
.vial-explore-cue {
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(390px, 90%);
  transform: translateX(-50%);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.vial-explore-cue [data-lucide] {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: var(--orange);
  animation: cuePulse 2.4s ease-in-out infinite;
}
.vial-explore-cue span {
  min-width: 0;
  text-wrap: balance;
}
.vial-photo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(420px, 48vw);
  aspect-ratio: 2 / 3;
  animation: none;
  isolation: isolate;
}
.vial-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 3% -22% -2%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(221,250,220,0.24), transparent 34%),
    radial-gradient(circle at 50% 64%, rgba(72,199,180,0.18), transparent 62%);
  filter: blur(28px);
  z-index: -2;
  animation: vialAura 5s ease-in-out infinite alternate;
}
.vial-photo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: 58%;
  height: 8%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.18) 42%, transparent 72%);
  filter: blur(10px);
  z-index: -1;
  animation: shadowPulse 7s ease-in-out infinite;
}
.hero-vial-photo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 28px 55px rgba(0,0,0,0.36))
    drop-shadow(0 0 36px rgba(221,250,220,0.14));
}
.vial-field,
.vial-orbit-ring {
  position: absolute;
  pointer-events: none;
}
.vial-field {
  border: 1px solid rgba(221,250,220,0.13);
  border-radius: 999px;
  box-shadow: inset 0 0 28px rgba(221,250,220,0.06), 0 0 26px rgba(72,199,180,0.08);
  z-index: 0;
}
.vial-field--one {
  width: 86%;
  aspect-ratio: 1;
  animation: fieldDrift 14s linear infinite;
}
.vial-field--two {
  width: 64%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: fieldDriftReverse 18s linear infinite;
}
.vial-orbit-ring {
  width: 82%;
  height: 31%;
  left: 9%;
  top: 36%;
  border: 1px solid rgba(221,250,220,0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
  z-index: 1;
  animation: orbitSweep 9s ease-in-out infinite;
}
.vial-orbit-ring--two {
  width: 68%;
  height: 25%;
  left: 16%;
  top: 43%;
  opacity: 0.62;
  transform: rotate(21deg);
  animation-duration: 11s;
  animation-delay: -4s;
}
.vial-offer {
  position: absolute;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 178px;
  min-height: 48px;
  padding: 9px 13px 9px 11px;
  border: 1px solid rgba(221,250,220,0.26);
  border-radius: 999px;
  background: rgba(7,16,22,0.76);
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  animation: offerFloat 7s ease-in-out infinite;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med), color var(--t-med), box-shadow var(--t-med);
}
.vial-offer [data-lucide] {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  flex: 0 0 auto;
}
.vial-offer span {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
}
.vial-offer::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(221,250,220,0.08);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--t-med), transform var(--t-med);
}
.vial-offer:hover,
.vial-offer:focus-visible {
  border-color: rgba(221,250,220,0.58);
  background: rgba(14,45,50,0.9);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,0.36), 0 0 24px rgba(93,230,205,0.22);
}
.vial-offer:hover::after,
.vial-offer:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
.vial-offer--weight { right: calc(100% + 22px); top: 25%; animation-delay: -1s; }
.vial-offer--hormones { right: calc(100% + 34px); top: 46%; animation-delay: -3.2s; }
.vial-offer--sleep { right: calc(100% + 18px); top: 67%; animation-delay: -5.4s; }
.vial-offer--energy { left: calc(100% + 22px); top: 25%; animation-delay: -2.1s; }
.vial-offer--peptides { left: calc(100% + 34px); top: 46%; animation-delay: -4.3s; }
.vial-offer--libido { left: calc(100% + 18px); top: 67%; animation-delay: -6.2s; }
@keyframes cuePulse {
  0%, 100% { transform: translateY(0); opacity: 0.72; }
  50% { transform: translateY(3px); opacity: 1; }
}
.vial-liquid-motion {
  position: absolute;
  left: 29.5%;
  right: 29.5%;
  top: 33.2%;
  height: 50.1%;
  overflow: hidden;
  border-radius: 18px 18px 34px 34px / 24px 24px 24px 24px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(221,250,220,0.1) 24%, rgba(72,199,180,0.28) 58%, rgba(36,151,142,0.2) 100%),
    linear-gradient(120deg, transparent 0%, rgba(72,199,180,0.36) 38%, rgba(236,255,251,0.22) 62%, transparent 100%);
  background-size: 100% 100%, 220% 220%;
  box-shadow:
    inset 0 -24px 30px rgba(2,24,28,0.12),
    0 0 16px rgba(221,250,220,0.08);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform-origin: center top;
  animation: liquidColorFlow 5.8s ease-in-out infinite, liquidPulse 4.8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 24%, #000 44%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 24%, #000 44%, #000 100%);
}
.vial-liquid-motion::before {
  content: none;
}
.vial-liquid-motion::after {
  content: "";
  position: absolute;
  inset: 20% -34% 0;
  background:
    repeating-linear-gradient(104deg,
      transparent 0 22px,
      rgba(236,255,251,0.17) 25px 33px,
      transparent 37px 66px);
  filter: blur(3px);
  opacity: 0.68;
  animation: liquidStream 4.2s linear infinite;
  z-index: 2;
}
.vial-liquid-current {
  position: absolute;
  left: -30%;
  width: 160%;
  height: 44%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(236,255,251,0.32) 0%, rgba(221,250,220,0.2) 36%, transparent 72%);
  filter: blur(8px);
  mix-blend-mode: screen;
  z-index: 1;
  animation: liquidCurrent 4.8s ease-in-out infinite;
}
.vial-liquid-current--one {
  top: 18%;
}
.vial-liquid-current--two {
  top: 52%;
  opacity: 0.78;
  animation-duration: 5.6s;
  animation-direction: reverse;
}
.vial-liquid-ribbon {
  position: absolute;
  top: 12%;
  bottom: -18%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent 0%, rgba(236,255,251,0.2) 28%, rgba(72,199,180,0.24) 58%, transparent 100%);
  filter: blur(8px);
  mix-blend-mode: screen;
  opacity: 0.68;
  z-index: 3;
  animation: liquidRibbon 5s ease-in-out infinite;
}
.vial-liquid-ribbon--one {
  left: 9%;
}
.vial-liquid-ribbon--two {
  right: 2%;
  opacity: 0.52;
  animation-delay: -2.5s;
  animation-direction: reverse;
}
.vial-liquid-wave {
  position: absolute;
  left: -58%;
  top: -14px;
  width: 216%;
  height: 54px;
  border-radius: 43%;
  background: rgba(255,255,255,0.28);
  filter: blur(1px);
  animation: liquidWave 4.6s linear infinite;
  z-index: 4;
}
.vial-liquid-wave--back {
  top: -3px;
  opacity: 0.6;
  animation-duration: 6.8s;
  animation-direction: reverse;
}
.vial-liquid-bubble {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(240,255,252,0.68);
  box-shadow: 0 0 12px rgba(221,250,220,0.36);
  animation: vialBubbleRise 5.6s ease-in infinite;
  z-index: 6;
}
.vial-liquid-bubble--one { left: 27%; bottom: 10%; animation-delay: -1.1s; }
.vial-liquid-bubble--two { left: 55%; bottom: 0; width: 5px; height: 5px; animation-delay: -3s; }
.vial-liquid-bubble--three { left: 72%; bottom: 18%; width: 8px; height: 8px; animation-delay: -4.6s; }
.vial-liquid-bubble--four { left: 42%; bottom: 6%; width: 4px; height: 4px; animation-delay: -2.2s; animation-duration: 4.8s; }
.vial-logo-etch {
  position: absolute;
  left: 50%;
  top: 51.5%;
  width: 34%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  padding: 3.4% 4.2%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(4,18,22,0.08), rgba(255,255,255,0.06), rgba(4,18,22,0.1));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -10px 18px rgba(2,14,18,0.08);
  mix-blend-mode: multiply;
  opacity: 0.78;
  z-index: 5;
}
.vial-logo-etch img {
  width: 100%;
  display: block;
  filter: grayscale(1) brightness(0.74) contrast(1.15) opacity(0.86);
}
.vial-liquid-glint {
  position: absolute;
  left: 30%;
  top: 34%;
  width: 42%;
  height: 48%;
  border-radius: 50%;
  background: linear-gradient(105deg, transparent 0 36%, rgba(236,255,251,0.18) 46%, transparent 58% 100%);
  filter: blur(9px);
  mix-blend-mode: screen;
  opacity: 0.44;
  transform: rotate(-9deg);
  animation: vialGlint 4.8s ease-in-out infinite;
  pointer-events: none;
}
.vial-scene {
  position: relative;
  width: min(318px, 27vw);
  height: 520px;
  transform-style: preserve-3d;
  animation: vialFloat 7s ease-in-out infinite;
}
.vial-scene::before {
  content: "";
  position: absolute;
  inset: 70px -82px 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(211,234,240,0.22) 0%, rgba(93,230,205,0.12) 34%, transparent 70%);
  filter: blur(22px);
  z-index: -2;
  animation: vialAura 5s ease-in-out infinite alternate;
}
.vial-cap {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 238px;
  height: 70px;
  transform: translateX(-50%);
  border: 1px solid rgba(218,231,236,0.46);
  border-radius: 50% / 18%;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255,255,255,0.7) 0%, rgba(210,224,230,0.42) 46%, transparent 68%),
    linear-gradient(90deg, rgba(129,150,159,0.82), rgba(235,244,247,0.94) 24%, rgba(143,160,168,0.9) 54%, rgba(214,226,232,0.78) 100%);
  box-shadow:
    inset 0 10px 16px rgba(255,255,255,0.42),
    inset 0 -12px 18px rgba(48,65,72,0.36),
    0 16px 34px rgba(0,0,0,0.34);
  z-index: 5;
}
.vial-cap::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 5px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(244,250,252,0.62), rgba(106,126,135,0.08));
  border-top: 1px solid rgba(255,255,255,0.42);
}
.vial-cap::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: -12px;
  height: 30px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(90deg, rgba(93,112,121,0.82), rgba(245,252,255,0.9) 28%, rgba(116,134,142,0.86) 62%, rgba(214,226,232,0.72));
  border: 1px solid rgba(218,231,236,0.32);
  box-shadow: inset 0 8px 10px rgba(255,255,255,0.28), inset 0 -8px 10px rgba(0,0,0,0.22);
}
.vial-neck {
  position: absolute;
  top: 104px;
  left: 50%;
  width: 154px;
  height: 64px;
  transform: translateX(-50%);
  border: 2px solid rgba(217,239,245,0.42);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.05) 35%, rgba(255,255,255,0.18)),
    rgba(215,240,246,0.08);
  box-shadow: inset 16px 0 18px rgba(255,255,255,0.12), inset -14px 0 20px rgba(4,20,24,0.12);
  z-index: 2;
}
.vial-body {
  position: absolute;
  top: 146px;
  left: 50%;
  width: 252px;
  height: 338px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 2px solid rgba(219,241,247,0.52);
  border-radius: 48px 48px 30px 30px / 64px 64px 28px 28px;
  background:
    radial-gradient(ellipse at 50% 98%, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.08) 18%, transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.08) 16%, rgba(255,255,255,0.025) 44%, rgba(255,255,255,0.18) 72%, rgba(255,255,255,0.42)),
    rgba(216,239,245,0.06);
  box-shadow:
    inset 0 0 30px rgba(229,255,246,0.18),
    inset 14px 0 22px rgba(255,255,255,0.2),
    inset -14px 0 22px rgba(5,19,25,0.24),
    0 34px 80px rgba(0,0,0,0.38),
    0 0 110px rgba(196,236,245,0.16);
  z-index: 1;
}
.vial-body::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 36px;
  bottom: 22px;
  border-radius: 28px 28px 22px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.18);
  z-index: 3;
  pointer-events: none;
}
.vial-body::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  height: 42px;
  border: 2px solid rgba(238,250,253,0.42);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244,252,255,0.22), transparent 65%);
  z-index: 4;
  pointer-events: none;
}
.vial-glass-shine {
  position: absolute;
  top: 42px;
  left: 34px;
  width: 28px;
  height: 224px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.18) 42%, transparent);
  opacity: 0.52;
  z-index: 6;
}
.vial-liquid {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 52%;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, rgba(236,250,252,0.5) 0%, rgba(187,221,227,0.42) 48%, rgba(147,182,190,0.46) 100%);
  box-shadow: inset 0 18px 38px rgba(255,255,255,0.22), inset 0 -20px 36px rgba(24,54,62,0.16);
  animation: liquidTilt 6.2s ease-in-out infinite;
  transform-origin: center bottom;
  z-index: 1;
}
.vial-liquid::before {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  top: -18px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255,255,255,0.62) 0%, rgba(224,241,245,0.48) 46%, rgba(70,100,110,0.2) 68%, transparent 72%);
  border: 1px solid rgba(87,117,128,0.36);
  box-shadow: 0 6px 18px rgba(255,255,255,0.16);
  animation: meniscusMove 6.2s ease-in-out infinite;
  z-index: 4;
}
.vial-wave {
  position: absolute;
  top: -24px;
  left: -55%;
  width: 210%;
  height: 70px;
  border-radius: 43%;
  background: rgba(255,255,255,0.18);
  animation: waveDrift 7s linear infinite;
}
.vial-wave--back {
  top: -22px;
  opacity: 0.36;
  animation-duration: 8s;
  animation-direction: reverse;
}
.vial-bubble {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(244,252,255,0.55);
  box-shadow: 0 0 18px rgba(229,247,252,0.3);
  animation: bubbleRise 6.4s ease-in infinite;
}
.vial-bubble--one { left: 34%; bottom: 18%; animation-delay: -1s; }
.vial-bubble--two { left: 58%; bottom: 8%; width: 7px; height: 7px; animation-delay: -3.4s; }
.vial-bubble--three { left: 72%; bottom: 26%; width: 12px; height: 12px; animation-delay: -4.8s; }
.vial-etched-logo {
  position: absolute;
  left: 50%;
  top: 82px;
  transform: translateX(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 148px;
  height: 56px;
  border-radius: 999px;
  opacity: 0.34;
  mix-blend-mode: screen;
}
.vial-etched-logo img {
  width: 128px;
  filter: grayscale(1) brightness(2.4) opacity(0.62);
}
.vial-shadow {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 250px;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.48) 0%, transparent 68%);
  filter: blur(3px);
  z-index: -1;
  animation: shadowPulse 7s ease-in-out infinite;
}
@keyframes vialFloat {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-18px) rotate(-1.5deg); }
}
@keyframes vialAura {
  to { opacity: 0.72; transform: scale(1.08); }
}
@keyframes liquidTilt {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  33% { transform: rotate(-1.2deg) translateY(2px); }
  66% { transform: rotate(1.1deg) translateY(-1px); }
}
@keyframes meniscusMove {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(8px) rotate(-1deg); }
}
@keyframes waveDrift {
  to { transform: translateX(24%); }
}
@keyframes bubbleRise {
  0% { transform: translateY(48px) scale(0.7); opacity: 0; }
  20% { opacity: 0.75; }
  85% { opacity: 0.55; }
  100% { transform: translateY(-210px) scale(1.15); opacity: 0; }
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.75; }
  50% { transform: translateX(-50%) scale(0.86); opacity: 0.48; }
}
@keyframes vialGlint {
  0%, 100% { transform: translateX(-8px) rotate(-9deg); opacity: 0.32; }
  50% { transform: translateX(14px) rotate(-5deg); opacity: 0.62; }
}
@keyframes fieldDrift {
  to { transform: rotate(360deg); }
}
@keyframes fieldDriftReverse {
  to { transform: rotate(-322deg); }
}
@keyframes orbitSweep {
  0%, 100% { transform: rotate(-18deg) translateY(0) scale(1); opacity: 0.44; }
  50% { transform: rotate(-9deg) translateY(-8px) scale(1.05); opacity: 0.84; }
}
@keyframes offerFloat {
  0%, 100% { transform: translate3d(0,0,0); opacity: 0.88; }
  50% { transform: translate3d(0,-5px,0); opacity: 1; }
}
@keyframes liquidSway {
  0%, 100% { transform: rotate(0deg) translateY(0) scaleX(1); }
  28% { transform: rotate(-2.4deg) translateY(3px) scaleX(1.03); }
  62% { transform: rotate(2deg) translateY(-2px) scaleX(0.98); }
}
@keyframes meniscusSway {
  0%, 100% { transform: translateX(-4px) rotate(1deg) scaleX(1); }
  50% { transform: translateX(12px) rotate(-2deg) scaleX(1.06); }
}
@keyframes liquidWave {
  to { transform: translateX(31%); }
}
@keyframes vialBubbleRise {
  0% { transform: translateY(42px) scale(0.68); opacity: 0; }
  18% { opacity: 0.72; }
  84% { opacity: 0.52; }
  100% { transform: translateY(-135px) scale(1.1); opacity: 0; }
}
@keyframes liquidColorFlow {
  0%, 100% { background-position: 50% 0%, 0% 50%; }
  50% { background-position: 50% 0%, 100% 50%; }
}
@keyframes liquidPulse {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.3) brightness(1.12); }
}
@keyframes liquidStream {
  to { transform: translateX(30%); }
}
@keyframes liquidCurrent {
  0%, 100% { transform: translateX(-12%) rotate(-5deg) scaleX(1); opacity: 0.58; }
  50% { transform: translateX(16%) rotate(6deg) scaleX(1.18); opacity: 0.96; }
}
@keyframes liquidRibbon {
  0%, 100% { transform: translate3d(-8px, 18px, 0) rotate(5deg) scaleY(0.92); opacity: 0.36; }
  45% { transform: translate3d(12px, -18px, 0) rotate(-6deg) scaleY(1.12); opacity: 0.84; }
  72% { transform: translate3d(-4px, 4px, 0) rotate(2deg) scaleY(1); opacity: 0.62; }
}
@media (max-width: 920px) {
  .hero-vial-stage {
    min-height: 410px;
  }
  .vial-photo-wrap {
    width: min(315px, 72vw);
  }
  .vial-logo-etch {
    width: 35%;
    top: 51.8%;
  }
  .vial-orbit-ring {
    width: 90%;
    left: 5%;
  }
  .vial-offer {
    width: 140px;
    min-height: 34px;
    padding: 8px 10px 8px 8px;
  }
  .vial-offer span {
    font-size: 11px;
  }
  .vial-offer--weight { left: auto; right: calc(100% - 110px); top: 24%; }
  .vial-offer--hormones { left: auto; right: calc(100% - 110px); top: 46%; }
  .vial-offer--sleep { left: auto; right: calc(100% - 110px); top: 68%; bottom: auto; }
  .vial-offer--energy { right: auto; left: calc(100% - 110px); top: 24%; }
  .vial-offer--peptides { right: auto; left: calc(100% - 110px); top: 46%; }
  .vial-offer--libido { right: auto; left: calc(100% - 110px); top: 68%; bottom: auto; }
  .vial-liquid-motion {
    left: 29%;
    right: 29%;
    top: 33.8%;
  }
  .vial-scene {
    width: min(250px, 70vw);
    height: 410px;
  }
  .vial-cap { top: 20px; width: 196px; height: 58px; }
  .vial-neck { top: 84px; width: 126px; height: 54px; }
  .vial-body {
    top: 120px;
    width: 210px;
    height: 270px;
  }
  .vial-etched-logo {
    top: 68px;
    width: 126px;
  }
  .vial-etched-logo img { width: 108px; }
  .vial-process-row .hero-signal {
    inset: auto;
  }
}

@media (max-width: 600px) {
  .hero.hero--revi {
    padding-top: 44px;
    padding-bottom: 56px;
  }
  .hero.hero--revi .hero-bg {
    clip-path: polygon(0 58%, 100% 46%, 100% 100%, 0 100%);
    opacity: 0.46;
  }
  .hero.hero--revi .hero-grid {
    gap: 34px;
  }
  .hero-vial-stage {
    min-height: 0;
    padding-top: 24px;
  }
  .vial-explore-cue {
    top: 0;
    width: min(360px, calc(100% - 24px));
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .vial-explore-cue span {
    max-width: 300px;
  }
  .vial-photo-wrap {
    width: min(210px, 52vw);
    margin: 14px auto 24px;
  }
  .vial-offer {
    width: min(132px, calc(50vw - 16px));
    min-height: 44px;
    animation: offerFloat 7s ease-in-out infinite;
  }
  .vial-offer--weight,
  .vial-offer--hormones,
  .vial-offer--sleep {
    left: auto;
    right: calc(100% - 34px);
  }
  .vial-offer--energy,
  .vial-offer--peptides,
  .vial-offer--libido {
    right: auto;
    left: calc(100% - 34px);
  }
  .vial-offer--weight,
  .vial-offer--energy { top: 21%; }
  .vial-offer--hormones,
  .vial-offer--peptides { top: 47%; }
  .vial-offer--sleep,
  .vial-offer--libido { top: 73%; }
  .vial-process-row {
    margin-top: 0;
  }
  .home-quiz-section,
  #services,
  .section.section--surface {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 360px) {
  .vial-photo-wrap {
    width: 165px;
  }
  .vial-offer {
    width: 110px;
    padding-inline: 9px;
  }
  .vial-offer span {
    font-size: 10px;
  }
  .vial-offer--weight,
  .vial-offer--hormones,
  .vial-offer--sleep {
    right: calc(100% - 36px);
  }
  .vial-offer--energy,
  .vial-offer--peptides,
  .vial-offer--libido {
    left: calc(100% - 36px);
  }
}
.avatar-placeholder,
.team-strip-photo--placeholder,
.physician-placeholder {
  background:
    radial-gradient(circle at 50% 0%, rgba(221,251,228,0.24) 0%, transparent 64%),
    var(--black-elev-3);
  color: var(--orange);
  border-color: rgba(221,251,228,0.42);
}
.team-card--placeholder .avatar {
  box-shadow: inset 0 0 0 1px rgba(221,251,228,0.18), 0 0 36px rgba(221,251,228,0.08);
}
.physician-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px solid rgba(221,251,228,0.18);
  border-radius: var(--radius-md);
  font-family: "Geist", sans-serif;
  font-size: 64px;
  letter-spacing: 0.04em;
}
.inline-photo--placeholder img {
  display: none;
}
.home-quiz-section {
  background:
    linear-gradient(180deg, var(--black) 0%, var(--black-warm) 100%);
  border-top: 1px solid rgba(221,251,228,0.08);
  border-bottom: 1px solid rgba(221,251,228,0.08);
}
.home-quiz-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.home-quiz-copy {
  position: sticky;
  top: 112px;
}
.home-quiz-copy h2 {
  max-width: 560px;
}
.home-quiz-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 460px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(221,251,228,0.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}
.home-quiz-note [data-lucide] {
  flex: 0 0 auto;
  stroke: var(--orange);
}
.home-quiz-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221,251,228,0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(221,251,228,0.13) 0%, transparent 42%),
    rgba(10,20,26,0.92);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
  padding: clamp(22px, 3vw, 34px);
}
.home-quiz-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(221,251,228,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,251,228,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(140deg, transparent 0%, black 45%, transparent 100%);
  pointer-events: none;
}
.home-quiz-card > * {
  position: relative;
}
.home-quiz-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.home-quiz-progress span {
  padding: 9px 10px;
  border: 1px solid rgba(221,251,228,0.12);
  border-radius: 999px;
  color: var(--text-mute);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}
.home-quiz-progress span.is-active {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}
.home-quiz-panel {
  display: none;
}
.home-quiz-panel.is-active {
  display: block;
  animation: fadeUp 0.34s ease-out;
}
.home-quiz-kicker {
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home-quiz-panel h3 {
  font-size: clamp(26px, 3.2vw, 36px);
}
.home-quiz-chips,
.home-quiz-goals {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.home-quiz-chips {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-quiz-goals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-quiz-chips button,
.home-quiz-goals button {
  min-height: 56px;
  border: 1px solid rgba(221,251,228,0.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  padding: 13px 14px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.home-quiz-goals button {
  font-weight: 600;
  line-height: 1.25;
}
.home-quiz-chips button:hover,
.home-quiz-goals button:hover {
  border-color: rgba(221,251,228,0.34);
  transform: translateY(-2px);
}
.home-quiz-chips button.is-selected,
.home-quiz-goals button.is-selected {
  background: rgba(221,251,228,0.14);
  border-color: var(--orange);
  color: var(--text);
}
.home-quiz-chips [data-lucide] {
  stroke: var(--orange);
  flex: 0 0 auto;
}
.home-quiz-next {
  margin-top: 4px;
}
.home-quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(221,251,228,0.12);
}
.home-quiz-result {
  margin-bottom: 24px;
}
.home-quiz-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.home-quiz-form-grid label:last-child {
  grid-column: 1 / -1;
}
.home-quiz-form-grid span {
  display: block;
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.home-quiz-form-grid input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(221,251,228,0.16);
  border-radius: var(--radius-sm);
  background: rgba(7,16,22,0.74);
  color: var(--text);
  font: inherit;
}
.home-quiz-form-grid input:focus {
  outline: 0;
  border-color: var(--orange);
}
.home-quiz-sent {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(221,251,228,0.26);
  border-radius: var(--radius-md);
  background: rgba(221,251,228,0.08);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}
.home-quiz-sent.is-visible {
  display: block;
  animation: fadeUp 0.34s ease-out;
}
.home-quiz-sent strong {
  display: block;
  margin-bottom: 4px;
}
.home-quiz-sent .btn-row {
  margin-top: 16px;
}
@media (max-width: 920px) {
  .home-quiz-grid {
    grid-template-columns: 1fr;
  }
  .home-quiz-copy {
    position: static;
  }
}
@media (max-width: 560px) {
  .home-quiz-chips,
  .home-quiz-goals,
  .home-quiz-form-grid {
    grid-template-columns: 1fr;
  }
}
.magnetic-hover {
  will-change: transform;
}
@media (hover: hover) {
  .card,
  .team-card,
  .symptom-link,
  .pricing-card,
  .testimonial-card {
    transform-style: preserve-3d;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-dim { color: var(--text-dim); }
.text-mute { color: var(--text-mute); }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border); margin: 64px 0; }
.eyebrow-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--orange); font-family: "Geist", sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow-divider::before { content: ""; width: 32px; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.eyebrow-divider::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-warm) 0%, transparent 100%); }

details { margin: 24px 0; }
details summary {
  cursor: pointer;
  color: var(--text-mute);
  font-size: 12px;
  font-family: "Geist", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
}
details pre {
  background: var(--black-elev-2);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 12px;
  color: var(--text-dim);
  max-height: 320px;
}

code {
  background: var(--black-elev-2);
  color: var(--orange);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
