/** Shopify CDN: Minification failed

Line 240:0 Unexpected "}"

**/
/* ═══════════════════════════════════════════════════════════════════════
   FLORE CLINICAL — Futurism Overlay
   Ports the portal's Glass Eleganza v6.0.0 design tokens onto the Shopify
   theme. Layers on top of theme.css — doesn't replace it.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Extended portal tokens (keep existing theme vars working) */
  --teal-glow: #3ECDC4;
  --coral-soft: #E8A87C;
  --coral-bright: #E07A5F;
  --sand: #F5F0EB;
  --sand-dark: #EDE6DB;
  --cream-soft: #FFF8E7;
  --charcoal: #1A2B32;

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-strong: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.5);
  --backdrop-blur: blur(20px);
  --backdrop-blur-strong: blur(40px);

  --shadow-card: 0 8px 40px rgba(13,79,92,0.08), 0 2px 8px rgba(13,79,92,0.04);
  --shadow-card-hover: 0 20px 60px rgba(13,79,92,0.15), 0 8px 16px rgba(13,79,92,0.08);
  --shadow-glow: 0 0 30px rgba(43,184,176,0.4), 0 0 60px rgba(43,184,176,0.2);
  --shadow-glow-sm: 0 0 15px rgba(43,184,176,0.3);
  --shadow-glow-coral: 0 0 20px rgba(232,168,124,0.35);
  --shadow-button: 0 8px 30px rgba(13,79,92,0.35);

  --bg-futurism: linear-gradient(135deg, var(--cream) 0%, var(--sand) 50%, var(--cream) 100%);
  --bg-pattern: radial-gradient(ellipse 80% 60% at 15% 30%, rgba(43,184,176,0.09) 0%, transparent 50%),
                radial-gradient(ellipse 60% 50% at 85% 75%, rgba(232,168,124,0.07) 0%, transparent 45%);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── Animated background on body ─────────────────────────────────────── */
body {
  background: var(--bg-futurism);
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--bg-pattern);
  pointer-events: none;
  z-index: 0;
  animation: flore-bg-pulse 14s ease-in-out infinite alternate;
}
main, section, header, footer { position: relative; z-index: 1; }

@keyframes flore-bg-pulse {
  0%   { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1;    transform: scale(1.04); }
}

/* ── Custom scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(241,245,249,0.8); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(43,184,176,0.5), rgba(43,184,176,0.75)); border-radius: 10px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, rgba(43,184,176,0.75), rgba(43,184,176,0.95)); background-clip: content-box; }

::selection { background: rgba(43,184,176,0.25); color: var(--teal-deep); }

/* ── Hero upgrade ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 45%, var(--cream) 100%) !important;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(43,184,176,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232,168,124,0.10) 0%, transparent 50%);
  pointer-events: none;
  animation: flore-bg-pulse 14s ease-in-out infinite alternate;
}
.hero-content { position: relative; z-index: 2; animation: flore-fade-up 0.9s var(--ease-out-expo) both; }
.hero-content img { animation: flore-float 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(13,79,92,0.18)); }
.hero-content h1 { letter-spacing: -0.02em; }

@keyframes flore-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes flore-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Section background pattern override ─────────────────────────────── */
.section { position: relative; }
.section[style*="cream-dark"] {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-dark) 100%) !important;
}

/* ── Glass feature cards ─────────────────────────────────────────────── */
.feature-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(43,184,176,0.3);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

/* On teal backgrounds inside feature-cards keep text readable */
.feature-card[style*="teal-deep"] {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #08363F 100%) !important;
  border-color: rgba(255,255,255,0.1);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.1);
}
.feature-card[style*="teal-deep"]::before { background: linear-gradient(90deg, transparent, rgba(62,205,196,0.4), transparent); }

/* ── Button upgrades ─────────────────────────────────────────────────── */
.btn {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-medium, #1A6B7A) 100%) !important;
  box-shadow: var(--shadow-button);
  border: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13,79,92,0.4), var(--shadow-glow-sm);
}
.btn-primary:hover::before { left: 100%; }
.btn-secondary {
  background: var(--glass-bg-strong) !important;
  backdrop-filter: var(--backdrop-blur);
  border: 2px solid var(--teal-deep) !important;
  box-shadow: var(--shadow-card);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.btn-coral {
  background: linear-gradient(135deg, var(--coral-bright) 0%, var(--coral-soft) 100%) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-glow-coral);
  border: none;
}

/* ── Coral accent with subtle glow ───────────────────────────────────── */
.coral-accent {
  color: var(--coral-accent) !important;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(232,168,124,0.25);
}

/* ── Section headers: animate in on scroll (reveal on load for now) ── */
.section-header { animation: flore-fade-up 0.8s var(--ease-out-expo) both; }
.section .feature-grid > * { animation: flore-fade-up 0.8s var(--ease-out-expo) both; }
.section .feature-grid > *:nth-child(2) { animation-delay: 0.1s; }
.section .feature-grid > *:nth-child(3) { animation-delay: 0.2s; }
.section .feature-grid > *:nth-child(4) { animation-delay: 0.3s; }
.section .feature-grid > *:nth-child(5) { animation-delay: 0.4s; }
.section .feature-grid > *:nth-child(6) { animation-delay: 0.5s; }

/* ── Teal-bg section upgrade ─────────────────────────────────────────── */
.teal-bg, .section-teal {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #1A6B7A 50%, #082F38 100%) !important;
  position: relative;
  overflow: hidden;
}
.teal-bg::before, .section-teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(62,205,196,0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(232,168,124,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.teal-bg .section-inner, .section-teal .section-inner { position: relative; z-index: 1; }
.teal-bg a { color: var(--coral-soft) !important; }

/* ── Motion-reduction respect ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body::before, .hero::before { animation: none; }
  .hero-content img { animation: none; }
}


  .hero-content h1 { font-size: 2.25rem !important; }
  .hero-content img { width: 240px !important; }
}

/* ── Header/footer logo (site-wide) ─────────────────────────────────── */
.site-header .logo img, header .logo img { height: 112px !important; width: auto !important; }
.site-footer .logo img, footer .logo img { height: 136px !important; width: auto !important; filter: brightness(0) invert(1) brightness(1.1); }
.logo { display: inline-block; line-height: 0; }

/* ═══ Flore research-recruitment banner (static) ═══ */
.flore-research-banner {
  background: linear-gradient(135deg, #0D4F5C 0%, #1A6B7A 50%, #082F38 100%);
  color: #FFF8E7;
  overflow: hidden;
  position: relative;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(43,184,176,0.4);
  box-shadow: 0 2px 10px rgba(13,79,92,0.2);
  z-index: 1001;
}
.flore-research-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(43,184,176,0.18), transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(232,168,124,0.12), transparent 55%);
  pointer-events: none;
}
.flore-research-banner__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11px 1rem;
  position: relative; z-index: 2;
}
.flore-research-banner__msg { padding: 0 1.5rem; }
.flore-research-banner__msg strong {
  color: #E8A87C;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.flore-research-banner a {
  color: #3ECDC4;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.flore-research-banner a:hover { color: #FFF8E7; }
.flore-research-banner__sep {
  color: rgba(255,248,231,0.4);
  font-size: 1.2rem;
  padding: 0 0.5rem;
}
@media (max-width: 640px) {
  .flore-research-banner { font-size: 0.85rem; }
  .flore-research-banner__msg { padding: 0 0.75rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   GLASS ELEGANZA — SITE-WIDE PERSISTENCE
   Every surface that isn't a full-bleed section bg gets the glass treatment.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Header: frosted glass nav ───────────────────────────────────────── */
.site-header, header.site-header {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 4px 30px rgba(13, 79, 92, 0.06);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,184,176,0.3), transparent);
}

/* ── All sections: subtle glass lift ─────────────────────────────────── */
.section-inner {
  position: relative;
  z-index: 1;
}

/* ── Section headers: glass pill treatment ───────────────────────────── */
.section-header h2 {
  display: inline-block;
  position: relative;
}

/* ── Feature cards: already glassed — enhance shine ──────────────────── */
.feature-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow: 
    0 8px 40px rgba(13,79,92,0.07),
    0 2px 8px rgba(13,79,92,0.03),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.95) 70%, transparent 95%);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(43, 184, 176, 0.35);
  box-shadow: 
    0 20px 60px rgba(13,79,92,0.12),
    0 8px 16px rgba(13,79,92,0.06),
    0 0 20px rgba(43,184,176,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-6px);
}

/* ── Hero screenshot frame: glass border + glow ──────────────────────── */
.hero-visual img {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 
    0 25px 60px -12px rgba(13,79,92,0.2),
    0 12px 24px -8px rgba(13,79,92,0.1),
    0 0 0 1px rgba(255,255,255,0.3),
    0 0 40px rgba(43,184,176,0.08) !important;
  transition: var(--transition-smooth);
}
.hero-visual img:hover {
  box-shadow: 
    0 30px 70px -12px rgba(13,79,92,0.25),
    0 15px 30px -8px rgba(13,79,92,0.12),
    0 0 0 1px rgba(43,184,176,0.3),
    0 0 50px rgba(43,184,176,0.15) !important;
  transform: scale(1.02);
}

/* ── Buttons: glass surface on all variants ──────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-primary {
  background: linear-gradient(135deg, rgba(13,79,92,0.95) 0%, rgba(26,107,122,0.95) 100%) !important;
  box-shadow: 
    0 8px 30px rgba(13,79,92,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.btn-primary:hover {
  box-shadow: 
    0 12px 40px rgba(13,79,92,0.45),
    0 0 20px rgba(43,184,176,0.25),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(13,79,92,0.25) !important;
  box-shadow: 
    0 4px 15px rgba(13,79,92,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(43,184,176,0.5) !important;
  box-shadow: 
    0 8px 25px rgba(13,79,92,0.1),
    0 0 15px rgba(43,184,176,0.1),
    inset 0 1px 0 rgba(255,255,255,0.95);
}
.btn-coral {
  background: linear-gradient(135deg, rgba(224,122,95,0.9) 0%, rgba(232,168,124,0.9) 100%) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2) !important;
  box-shadow: 
    0 8px 25px rgba(224,122,95,0.3),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ── Teal sections: glass-on-dark ────────────────────────────────────── */
.teal-bg, .section-teal {
  position: relative;
}
.teal-bg .section-inner, .section-teal .section-inner {
  position: relative;
  z-index: 1;
}
.teal-bg p, .section-teal p {
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ── Cream-dark sections: glass overlay ──────────────────────────────── */
.section[style*="cream-dark"]::before,
.section[style*="cream-dark"]::after {
  content: none;
}

/* ── FAQ items: glass accordion ──────────────────────────────────────── */
.faq-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,79,92,0.04);
  transition: var(--transition-smooth);
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(13,79,92,0.08);
  border-color: rgba(43,184,176,0.25);
}
.faq-question {
  background: transparent !important;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
}
.faq-answer {
  background: rgba(250,248,245,0.5);
  border-top: 1px solid rgba(255,255,255,0.5);
}

/* ── Footer: frosted glass on teal ───────────────────────────────────── */
.site-footer, footer {
  position: relative;
}
.site-footer::before, footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,79,92,0.85);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  z-index: 0;
}
.site-footer > *, footer > * {
  position: relative;
  z-index: 1;
}
.footer-inner {
  position: relative;
  z-index: 1;
}

/* ── Research banner: glass strip ────────────────────────────────────── */
.flore-research-banner {
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  background: linear-gradient(135deg, rgba(13,79,92,0.88) 0%, rgba(26,107,122,0.88) 50%, rgba(8,47,56,0.92) 100%) !important;
  border-bottom: 1px solid rgba(43,184,176,0.3) !important;
}

/* ── Stat cards in hero: glass ───────────────────────────────────────── */
.stat-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 30px rgba(13,79,92,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ── Nav links: glass hover state ────────────────────────────────────── */
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin: 0 -0.75rem;
}

/* ── Page content wrapper: glass bg for default page template ────────── */
.page-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(13,79,92,0.05);
}

/* ── Calculator section (providers page): glass ──────────────────────── */
.calculator-section {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px !important;
  box-shadow: 0 8px 40px rgba(13,79,92,0.06);
}

/* ── Universal glass utility class ───────────────────────────────────── */
.glass {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 40px rgba(13,79,92,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  border-radius: 20px;
}

/* ── Ensure backdrop-filter works with stacking contexts ─────────────── */
.hero, .section, header, footer, .flore-research-banner {
  isolation: isolate;
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST OVERRIDES
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Tablet (< 1024px) ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }
  .hero-content {
    text-align: center !important;
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-visual img {
    max-width: 520px !important;
    margin: 0 auto;
  }
  .hero-content h1 {
    font-size: 2.75rem !important;
  }
  .feature-grid[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Mobile (< 768px) ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    min-height: 60vh !important;
    padding: 2rem 0 !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1.25rem !important;
  }
  .hero-content {
    text-align: center !important;
  }
  .hero-content h1 {
    font-size: 2.25rem !important;
    line-height: 1.12 !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin: 1rem 0 1.5rem !important;
  }
  .hero-visual img {
    max-width: 100% !important;
    border-radius: 14px !important;
  }
  .hero-content img[alt="Flore Clinical"] {
    width: 160px !important;
    margin-bottom: 1rem !important;
  }

  /* Sections */
  .section {
    padding: 2.5rem 0 !important;
  }
  .section-inner {
    padding: 0 1.25rem !important;
  }
  .section-header h2 {
    font-size: 2rem !important;
  }
  .section-header p {
    font-size: 1.05rem !important;
  }

  /* Feature grid: always single column on mobile */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .feature-card {
    padding: 1.5rem !important;
    border-radius: 16px !important;
  }
  .feature-card h3 {
    font-size: 1.3rem !important;
  }

  /* Stat cards row → 2x2 grid */
  .feature-grid[style*="1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Chart container */
  .feature-card canvas {
    height: 240px !important;
  }

  /* Buttons: stack vertically, full width */
  .hero-content .btn {
    display: block !important;
    width: 100% !important;
    margin: 0.5rem 0 !important;
    text-align: center;
  }
  .hero-content .btn + .btn,
  .hero-content .btn-secondary {
    margin-left: 0 !important;
  }

  /* Teal bg section */
  .teal-bg .section-inner,
  .section-teal .section-inner {
    padding: 0 1.25rem !important;
  }
  .teal-bg h2,
  .section-teal h2 {
    font-size: 1.75rem !important;
  }

  /* Feature cards with grid layout (numbered pipeline steps) */
  .feature-card[style*="grid-template-columns: 60px"] {
    grid-template-columns: 40px 1fr !important;
    gap: 1rem !important;
    padding: 1.25rem !important;
  }
  .feature-card[style*="grid-template-columns: 60px"] > div:first-child {
    font-size: 2rem !important;
  }

  /* Nav: horizontal scroll with no wrap */
  .main-nav {
    gap: 1rem !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a {
    font-size: 0.9rem !important;
    white-space: nowrap;
  }

  /* Header logo */
  .site-header .logo img,
  header .logo img {
    height: 72px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .site-footer .logo img,
  footer .logo img {
    height: 80px !important;
  }

  /* Research banner */
  .flore-research-banner {
    font-size: 0.82rem !important;
  }

  /* Typography general */
  h1 { font-size: 2.25rem !important; }
  h2 { font-size: 1.85rem !important; }
  h3 { font-size: 1.35rem !important; }
  body { font-size: 16px !important; }
}

/* ── Small mobile (< 480px) ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.85rem !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
  }
  .section-header h2 {
    font-size: 1.65rem !important;
  }
  .feature-grid[style*="1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .feature-card {
    padding: 1.25rem !important;
  }
  .hero {
    min-height: auto !important;
    padding: 1.5rem 0 !important;
  }
  .site-header .logo img,
  header .logo img {
    height: 56px !important;
  }
  .btn {
    font-size: 0.95rem !important;
    padding: 0.85rem 1.5rem !important;
  }
}

/* ── Google Translate widget styling ─────────────────────────────────── */
#google_translate_element {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
}
.goog-te-gadget {
  font-family: var(--font-body) !important;
  font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  color: var(--teal-deep, #0D4F5C) !important;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13,79,92,0.06);
  transition: all 0.2s;
  appearance: auto;
  -webkit-appearance: auto;
}
.goog-te-gadget .goog-te-combo:hover {
  border-color: rgba(43,184,176,0.4);
  box-shadow: 0 4px 12px rgba(13,79,92,0.1);
}
.goog-te-gadget > span {
  display: none !important;
}
/* Hide the Google top-bar that shifts the page */
.goog-te-banner-frame, .skiptranslate iframe {
  display: none !important;
}
body { top: 0 !important; }
/* Hide "Powered by Google" text */
.goog-logo-link, .goog-te-gadget > div:first-child {
  display: none !important;
}
@media (max-width: 768px) {
  #google_translate_element {
    margin-left: 0.5rem;
  }
  .goog-te-gadget .goog-te-combo {
    font-size: 0.8rem !important;
    padding: 4px 8px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   NAV DROPDOWNS — Glass Eleganza
   ═══════════════════════════════════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(-135deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(13,79,92,0.12),
    0 8px 24px rgba(13,79,92,0.06),
    0 0 0 1px rgba(255,255,255,0.3);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,184,176,0.4), transparent);
  border-radius: 16px 16px 0 0;
}
/* Invisible bridge between trigger and dropdown — prevents gap-hover-close */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-dark, #334155);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(43, 184, 176, 0.08);
  color: var(--teal-deep, #0D4F5C);
  padding-left: 1.75rem;
}
.nav-dropdown-menu a::after {
  display: none !important;
}

/* Override old nav hover styles for dropdown triggers */
.main-nav .nav-dropdown > a::after {
  display: none !important;
}
.main-nav .nav-dropdown > a:hover {
  background: none !important;
  padding: 0.5rem 0 !important;
  margin: 0 !important;
}

/* ── Mobile: dropdowns become expandable sections ────────────────────── */
@media (max-width: 768px) {
  .main-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem !important;
  }
  .nav-dropdown-menu {
    position: fixed;
    top: auto;
    left: 1rem;
    right: 1rem;
    transform: none;
    width: auto;
    min-width: auto;
    border-radius: 14px;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-trigger::after {
    width: 5px; height: 5px;
  }
  .nav-dropdown-menu a {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   CONTRAST / LEGIBILITY PASS — WCAG AA (2026-06-02)
   Loaded last so these win the cascade. Keeps the deep-teal / cream / coral
   design language; only fixes text that failed AA contrast.
   ═══════════════════════════════════════════════════════════════════════ */

/* Coral text accents on LIGHT surfaces: --coral-accent is now the AA-safe
   terracotta (#B8472A). Re-assert it here (overrides the earlier glow rule
   that re-declared the color) and soften the halo so it stays crisp. */
.coral-accent,
.accent-text,
.result-value.highlight {
  color: var(--coral-accent) !important;
  text-shadow: none;
}

/* Coral text accents on DEEP-TEAL surfaces need to go LIGHT, not dark.
   The dark terracotta would vanish on teal (~1.2:1); light coral clears AA. */
.teal-bg .coral-accent,
.section-teal .coral-accent,
.teal-bg .accent-text,
.section-teal .accent-text,
.teal-bg [style*="--coral-accent"],
.section-teal [style*="--coral-accent"] {
  color: var(--coral-on-dark) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* Hero/section eyebrow labels are coded inline as
   color: var(--coral-accent) with small uppercase type — small text needs
   4.5:1. The darkened --coral-accent satisfies this on cream automatically;
   no extra rule needed, but bump weight a touch for crispness. */
.hero-content [style*="text-transform: uppercase"][style*="--coral-accent"],
.section-inner [style*="text-transform: uppercase"][style*="--coral-accent"] {
  font-weight: 700;
}

/* Deep-teal feature cards (e.g. peer-review "Trials underway" RCT cards):
   the global glass rule forces a near-white card bg, which made the cream
   card text white-on-white (~1.2:1, invisible). Restore a dark translucent
   card on teal sections so the cream heading/body text reads. */
.teal-bg .feature-card,
.section-teal .feature-card {
  background: rgba(8, 38, 44, 0.55) !important;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
.teal-bg .feature-card:hover,
.section-teal .feature-card:hover {
  background: rgba(8, 38, 44, 0.62) !important;
  border-color: rgba(43,184,176,0.45) !important;
}
.teal-bg .feature-card h3,
.section-teal .feature-card h3 {
  color: var(--cream) !important;
}
.teal-bg .feature-card p,
.section-teal .feature-card p {
  color: rgba(250, 248, 245, 0.95) !important;
}

/* Muted body / caption text now uses the darkened --slate (#52606E) via the
   variable. A few components hard-coded the old #64748B — normalize the worst
   offenders that sit on light surfaces so they clear AA. */
.feature-card p,
.section-header p,
.timeline-cap,
.result-label,
.pricing-period,
.stat-label,
.faq-answer-inner {
  color: var(--slate) !important;
}

/* Research banner separator was too faint (rgba .4); bump for legibility. */
.flore-research-banner__sep {
  color: rgba(255,248,231,0.65) !important;
}

/* Deep-teal HERO variant (e.g. /pages/what-weve-learned). The global .hero
   rule forces a cream gradient with !important, which left this hero's cream
   headline + near-white subtitle invisible on cream. Restore the dark teal
   bg and make sure all hero text (incl. inline coral eyebrow + coral spans)
   reads light on dark. */
.hero.hero-teal {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #1A6B7A 55%, #082F38 100%) !important;
}
.hero.hero-teal::before {
  background:
    radial-gradient(circle at 22% 28%, rgba(62,205,196,0.16) 0%, transparent 50%),
    radial-gradient(circle at 80% 72%, rgba(232,168,124,0.12) 0%, transparent 50%);
}
.hero.hero-teal h1,
.hero.hero-teal .hero-subtitle { color: var(--cream) !important; }
.hero.hero-teal .coral-accent,
.hero.hero-teal [style*="--coral-accent"] {
  color: var(--coral-on-dark) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* Intelligence page "Why it's defensible" cards (Deterministic / Auditable /
   Not a black box). Craig wants DARKER font here. The global .teal-bg
   .feature-card rule above forces a dark translucent card + light text; for
   these three cards we instead want a LIGHT card with DARK, high-contrast text
   (deep-teal headings ~9:1, near-black body ~13:1 on cream — WCAG AAA).
   Scoped to .defensible-card so the peer-review "Trials underway" cards keep
   their light-on-dark treatment. */
.teal-bg .feature-card.defensible-card,
.section-teal .feature-card.defensible-card {
  background: var(--cream) !important;
  border: 1px solid rgba(13,79,92,0.18) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}
.teal-bg .feature-card.defensible-card:hover,
.section-teal .feature-card.defensible-card:hover {
  background: #FFFFFF !important;
  border-color: rgba(43,184,176,0.45) !important;
}
.teal-bg .feature-card.defensible-card h3,
.section-teal .feature-card.defensible-card h3 {
  color: var(--teal-deep) !important;   /* #0D4F5C deep teal headings */
  text-shadow: none !important;
}
.teal-bg .feature-card.defensible-card p,
.section-teal .feature-card.defensible-card p {
  color: #1F2D33 !important;            /* near-black body, full opacity */
  text-shadow: none !important;
}

/* Peer-review CTA buttons ("Become a peer reviewer / partner" — the mailto
   primary, plus its white-paper secondary sibling). Craig flagged the CTA
   label color blending into its background. Re-assert high-contrast labels so
   they never inherit a teal-on-teal (or white-on-light) value:
   - filled primary (deep-teal gradient fill): CREAM/white label (~9:1, AA+)
   - glass secondary (light fill): DEEP-TEAL label (~9:1, AA+)
   Class hook .peer-cta added on the template's CTA anchors. */
a.btn.peer-cta.btn-primary,
a.btn.peer-cta.btn-primary:visited {
  color: var(--cream) !important;   /* #FAF8F5 cream on deep-teal fill */
}
a.btn.peer-cta.btn-secondary,
a.btn.peer-cta.btn-secondary:visited {
  color: var(--teal-deep) !important;   /* #0D4F5C on light glass fill */
}
a.btn.peer-cta.btn-secondary:hover {
  color: var(--white) !important;   /* secondary fills teal on hover -> white label */
}

