/* ═══════════════════════════════════════════════════════════
   VITALGEN LABS — Unified Brand System
   Palette: IDENTICAL to Eviwell — ivory · blush rose · champagne gold
   Fonts: Cormorant Garamond (display) · Switzer (body)
   Vitalgenlabs differentiator: sage green accent replaces blush
   as the secondary action color — both brands share the same
   typographic and spatial system.
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS — Shared with Eviwell ── */
:root {
  /* Core palette — exact Eviwell tokens */
  --ivory:         #faf7f2;
  --ivory-2:       #f3ede4;
  --blush:         #b87a8a;
  --blush-light:   #e8d0d7;
  --blush-pale:    #f5eaed;
  --gold:          #a08755;
  --gold-light:    #d4b483;
  --warm-text:     #2a1f1a;
  --muted-text:    #6b5047;
  --softer-text:   #9a7d72;
  --border:        rgba(168, 120, 100, 0.18);
  --border-strong: rgba(168, 120, 100, 0.32);

  /* VGL differentiator — sage (used for CTA & science accents) */
  --sage:          #3d6b5c;
  --sage-light:    #edf2ef;
  --sage-hover:    #2e5447;
  --sage-pale:     #e8efec;
  --border-sage:   rgba(61, 107, 92, 0.22);

  /* Semantic — matches Eviwell exactly */
  --bg:            var(--ivory);
  --bg-2:          var(--ivory-2);
  --bg-blush:      var(--blush-pale);
  --bg-sage:       var(--sage-pale);
  --text-primary:  var(--warm-text);
  --text-muted:    var(--muted-text);
  --text-softer:   var(--softer-text);
  --accent:        var(--blush);
  --accent-action: var(--sage);
  --accent-gold:   var(--gold);
  --nav-bg:        rgba(250, 247, 242, 0.92);
  --card-bg:       #ffffff;
  --shadow-sm:     0 2px 12px rgba(42, 31, 26, 0.07);
  --shadow-md:     0 6px 28px rgba(42, 31, 26, 0.11);
  --shadow-lg:     0 16px 56px rgba(42, 31, 26, 0.14);

  /* Typography — identical to Eviwell */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', 'Inter', system-ui, sans-serif;

  /* Type scale — identical to Eviwell */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-hero: 4.5rem;

  /* Spacing — identical to Eviwell */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout — identical to Eviwell */
  --container-max: 1180px;
  --nav-height:    68px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-full:   999px;

  /* Transitions — identical to Eviwell */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-base: 260ms;
  --dur-slow: 420ms;
}

/* ── DARK MODE — mirrors Eviwell dark tokens ── */
[data-theme="dark"] {
  --bg:            #1a1210;
  --bg-2:          #221815;
  --bg-blush:      #2a1d1f;
  --bg-sage:       #1c201b;
  --text-primary:  #f0e8e0;
  --text-muted:    #c4a898;
  --text-softer:   #8a6e64;
  --border:        rgba(200, 150, 130, 0.14);
  --border-strong: rgba(200, 150, 130, 0.26);
  --border-sage:   rgba(107, 168, 152, 0.2);
  --nav-bg:        rgba(26, 18, 16, 0.94);
  --card-bg:       #231917;
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md:     0 6px 28px rgba(0, 0, 0, 0.4);
  --shadow-lg:     0 16px 56px rgba(0, 0, 0, 0.5);
  --blush:         #c48a99;
  --gold:          #c4a86a;
  --gold-light:    #e8cc96;
  --sage:          #6ba898;
  --sage-light:    rgba(107, 168, 152, 0.14);
  --sage-pale:     rgba(107, 168, 152, 0.09);
  --sage-hover:    #82baac;
  --accent:        var(--blush);
  --accent-action: var(--sage);
  --accent-gold:   var(--gold);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-height) + 36px);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg);
  transition: background-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 600; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-8);
}
.container-narrow {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.section { padding-block: var(--space-24); }
.section--sage { background-color: var(--bg-sage); }
.section--ivory2 { background-color: var(--bg-2); }

/* ── TYPOGRAPHY — identical to Eviwell ── */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

/* VGL uses sage for science/action eyebrows */
.section-eyebrow--sage { color: var(--accent-action); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--accent-action); }

.section-header {
  max-width: 640px;
  margin-bottom: var(--space-16);
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-top: var(--space-4);
  line-height: 1.7;
}

.body-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── BUTTONS — Eviwell pattern with sage primary ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--sage); color: #fff;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--sage);
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn-primary:hover {
  background: var(--sage-hover); border-color: var(--sage-hover); color: #fff;
  box-shadow: 0 4px 18px rgba(61,107,92,0.28);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: transparent; color: var(--text-primary);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-strong);
  transition: border-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }

.btn-gold {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--gold); color: #fff;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold);
  transition: all var(--dur-base) var(--ease);
}
.btn-gold:hover { background: #8a7245; border-color: #8a7245; color: #fff; }

.btn-sm { padding: 0.45rem 1.1rem; font-size: var(--text-xs); }
.btn-full { width: 100%; justify-content: center; }

/* ── RUO COMPLIANCE BANNER ── */
.ruo-banner {
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  padding: var(--space-2) var(--space-8);
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ── NAV — Eviwell structure, exact match ── */
.nav-wrap {
  position: sticky;
  top: 32px;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-base) var(--ease);
}
.nav-wrap.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: var(--space-6);
}

/* Nav logo — matches Eviwell SVG logo approach */
.nav-logo {
  display: flex; align-items: center; gap: var(--space-3);
  text-decoration: none; color: var(--text-primary); flex-shrink: 0;
  transition: color var(--dur-base) var(--ease);
}
.nav-logo:hover { color: var(--sage); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-sub {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--text-softer); margin-top: 2px;
}

.nav-links {
  display: flex; list-style: none; gap: var(--space-5); margin-inline: auto;
}
.nav-links a {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-partner { color: var(--blush) !important; }
.nav-partner:hover { color: var(--accent) !important; }

.nav-actions {
  display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0;
}

/* Theme toggle — identical to Eviwell */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.theme-toggle:hover { border-color: var(--sage); color: var(--sage); }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="dark"]  .icon-moon { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  border: 1.5px solid var(--border-strong); border-radius: 50%;
  background: var(--card-bg);
  align-items: center; justify-content: center;
  transition: border-color var(--dur-fast) var(--ease);
}
.nav-hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--text-primary);
  transition: all var(--dur-base) var(--ease);
}
.nav-hamburger:hover { border-color: var(--sage); }

/* Mobile nav — Eviwell pattern */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: calc(var(--nav-height) + 32px);
  background: var(--bg);
  padding: var(--space-8);
  flex-direction: column; gap: var(--space-6);
  z-index: 90;
  opacity: 0; transform: translateY(-10px);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.mobile-nav.open {
  display: flex; opacity: 1; transform: translateY(0);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-nav a {
  font-family: var(--font-display); font-size: var(--text-3xl);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-4); display: block;
}
.mobile-nav a:hover { color: var(--sage); }

/* ── HERO — matches Eviwell hero-inner grid layout ── */
.hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); border: 1.5px solid var(--border-sage);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, var(--text-hero));
  font-weight: 400; line-height: 1.08; letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}
.hero-heading em { font-style: italic; color: var(--sage); display: block; }

.hero-subtext {
  font-size: var(--text-lg); color: var(--text-muted);
  line-height: 1.75; max-width: 50ch; margin-bottom: var(--space-8);
}

.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Stat bar — Eviwell intro-strip pattern */
.stat-bar {
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.stat-bar .container {
  display: flex; align-items: center; justify-content: center;
  padding-block: var(--space-5);
  flex-wrap: wrap; gap: var(--space-4);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-1); padding: 0 var(--space-10);
}
.stat-value {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 500; color: #fff; line-height: 1;
}
.stat-label {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.25);
}

/* ── STANDARDS — Eviwell card pattern ── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.standard-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-fast) var(--ease);
}
.standard-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.standard-icon { color: var(--sage); margin-bottom: var(--space-4); }
.standard-card h3 {
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  color: var(--text-primary); margin-bottom: var(--space-3);
}
.standard-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }

/* ── COMPOUNDS — Eviwell compound-edu-list pattern ── */
.compound-list { display: flex; flex-direction: column; gap: 0; }
.compound-item {
  display: grid; grid-template-columns: 260px 1fr;
  gap: var(--space-10);
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.compound-item:last-child { border-bottom: none; }
.compound-left { position: sticky; top: calc(var(--nav-height) + 48px); }
.compound-pill {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(160,135,85,0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}
.compound-left h3 {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: 400; color: var(--text-primary); margin-bottom: var(--space-2);
}
.compound-aka { font-size: var(--text-xs); color: var(--text-softer); font-style: italic; }
.compound-specs {
  display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4);
}
.compound-specs span {
  font-size: var(--text-xs); font-weight: 500;
  color: var(--sage); background: var(--sage-light);
  padding: var(--space-1) var(--space-2); border-radius: var(--radius-sm);
}
.compound-right p {
  font-size: var(--text-base); color: var(--text-muted);
  line-height: 1.8; margin-bottom: var(--space-4);
}
.compound-right p:last-of-type { margin-bottom: var(--space-5); }
.compound-status {
  font-size: var(--text-xs); color: var(--text-softer);
  font-style: italic;
  border-left: 2px solid var(--border-sage);
  padding-left: var(--space-3);
  margin-top: var(--space-3);
}
.compounds-disclaimer {
  margin-top: var(--space-10);
  font-size: var(--text-xs); color: var(--text-softer);
  border-left: 3px solid var(--border);
  padding-left: var(--space-4);
  font-style: italic; max-width: 72ch;
}

/* ── COMPLIANCE — clean block pattern ── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
.compliance-block {
  padding-left: var(--space-6);
  border-left: 3px solid var(--border-sage);
}
.compliance-block h3 {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  color: var(--sage); letter-spacing: 0.04em; margin-bottom: var(--space-3);
}
.compliance-block p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.8; }
.compliance-docs { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ── PARTNER BAND — Eviwell blush-pale pattern ── */
.partner-band {
  background: var(--bg-blush);
  border-top: 1px solid var(--blush-light);
  border-bottom: 1px solid var(--blush-light);
}
.partner-inner { max-width: 600px; }
.partner-eyebrow {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blush); margin-bottom: var(--space-3);
}
.partner-inner h2 {
  font-family: var(--font-display); font-size: var(--text-4xl);
  font-weight: 400; color: var(--text-primary); margin-bottom: var(--space-4);
}
.partner-inner p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.75; margin-bottom: var(--space-6); }

/* ── APPLICATION / FORM — Eviwell form aesthetic ── */
.gate-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-bottom: var(--space-10);
  box-shadow: var(--shadow-sm);
}
.gate-box h3 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 400; color: var(--text-primary); margin-bottom: var(--space-2);
}
.gate-box > p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-6); }

.checkbox-group { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.check-label {
  display: flex; align-items: flex-start; gap: var(--space-3);
  cursor: pointer; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6;
}
.check-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box {
  flex-shrink: 0; width: 18px; height: 18px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--card-bg); transition: all var(--dur-fast) var(--ease);
  margin-top: 2px; position: relative;
}
.check-label input:checked + .check-box { background: var(--sage); border-color: var(--sage); }
.check-label input:checked + .check-box::after {
  content: ''; position: absolute;
  left: 4px; top: 1px; width: 6px; height: 10px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.check-label strong { color: var(--text-primary); }

/* Form layout — Eviwell pattern */
.apply-form {
  display: flex; flex-direction: column; gap: var(--space-5);
  transition: opacity var(--dur-base) var(--ease);
}
.apply-form[data-locked="true"] {
  opacity: 0.35; pointer-events: none; user-select: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--text-primary);
}
.req { color: var(--blush); margin-left: 2px; }

.form-group input,
.form-group textarea {
  background: var(--card-bg);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--text-primary);
  font-family: var(--font-body); font-size: var(--text-sm);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-softer); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(61, 107, 92, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: var(--text-xs); color: var(--text-softer); font-style: italic; margin-top: var(--space-1); }

.final-ack {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-5);
}
.final-ack .check-label { font-size: var(--text-sm); }
.final-ack a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }

.form-legal {
  font-size: var(--text-xs); color: var(--text-softer);
  line-height: 1.6; font-style: italic;
  border-top: 1px solid var(--border); padding-top: var(--space-5);
}

/* Success state */
.form-success {
  text-align: center; padding: var(--space-16) var(--space-8);
  background: var(--bg-sage); border: 1px solid var(--border-sage);
  border-radius: var(--radius-lg);
}
.form-success svg { color: var(--sage); margin: 0 auto var(--space-5); }
.form-success h3 {
  font-family: var(--font-display); font-size: var(--text-4xl);
  font-weight: 400; color: var(--text-primary); margin-bottom: var(--space-4);
}
.form-success p { color: var(--text-muted); margin-bottom: var(--space-3); }
.form-success a { color: var(--sage); text-decoration: underline; }

/* Disclaimer note — Eviwell pattern */
.disclaimer-note {
  display: flex; align-items: flex-start; gap: var(--space-3);
  background: var(--bg-2); border-left: 3px solid var(--border-strong);
  padding: var(--space-4) var(--space-5); border-radius: var(--radius-sm);
  margin-top: var(--space-8);
}
.disclaimer-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.disclaimer-note p { font-size: var(--text-xs); color: var(--text-softer); line-height: 1.65; }

/* ── FOOTER — exact Eviwell footer structure ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-strong);
  padding-top: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand-wrap {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand-name {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 500; color: var(--text-primary);
}
.footer-brand-sub {
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--text-softer);
}
.footer-brand-col > p {
  font-size: var(--text-sm); color: var(--text-muted); line-height: 1.75; margin-bottom: var(--space-3);
}
.footer-ruo {
  font-size: var(--text-xs) !important; font-weight: 700 !important;
  letter-spacing: 0.06em; color: var(--sage) !important;
}

.footer-col h4 {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-softer); margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  font-size: var(--text-sm); color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-col > p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-2); }
.footer-col a.footer-email { color: var(--sage); }
.footer-col a.footer-email:hover { color: var(--sage-hover); }
.footer-jem { font-size: var(--text-xs) !important; color: var(--text-softer) !important; margin-top: var(--space-4); }

.footer-eviwell-link {
  color: var(--blush) !important;
}
.footer-eviwell-link:hover { color: var(--accent) !important; }

/* Footer bottom — identical to Eviwell */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.footer-bottom p { font-size: var(--text-xs); color: var(--text-softer); line-height: 1.6; }
.footer-disclaimer { font-style: italic; max-width: 80ch; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-image { max-height: 380px; aspect-ratio: auto; order: -1; }
  .hero-heading { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .compliance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .compound-item { grid-template-columns: 1fr; gap: var(--space-4); }
  .compound-left { position: static; }
}

@media (max-width: 600px) {
  .stat-bar .container { flex-direction: column; gap: var(--space-3); padding-block: var(--space-6); }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .compliance-docs { flex-direction: column; }
  .hero-inner { padding-block: var(--space-10); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
