/*
Theme Name: KaiAvora Health
Theme URI: https://kaiavora.com
Author: KaiAvora Health
Author URI: https://kaiavora.com
Description: KaiAvora Health WordPress theme - Connecting oral health to total wellness.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaiavora-health
Tags: health, medical, one-column, custom-menu, custom-logo, featured-images, theme-options
*/

/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2F7A6A;
  --primary-foreground: #F4F1EB;
  --primary-border: rgba(47, 122, 106, 0.4);
  --bg-dark: #0B1412;
  --bg-surface: #0B1412;
  --text-muted: #9CB0AA;
  --text-body: #C8D4D0;
  --border-color: rgba(31, 84, 72, 0.3);
  --purple: #8E7BA8;
  --font-serif: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: #E8EFEC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
hr { border: none; border-top: 1px solid rgba(31, 84, 72, 0.4); margin: 4rem 0; }
h1, h2, h3, h4 { line-height: 1.1; }
.font-serif { font-family: var(--font-serif); }
.font-light { font-weight: 300; }

/* ===== Container (matches original site breakpoints) ===== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 40rem) {
  .container { max-width: 40rem; }
}
@media (min-width: 48rem) {
  .container { max-width: 48rem; }
  .container { padding: 0 2rem; }
}
@media (min-width: 64rem) {
  .container { max-width: 64rem; }
  .container { padding: 0 3rem; }
}
@media (min-width: 80rem) {
  .container { max-width: 80rem; }
}
@media (min-width: 96rem) {
  .container {
    max-width: 96rem;
  }
}
/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent;
  padding: 1rem 0;
}
.site-header.scrolled {
  background: rgba(11, 20, 18, 0.95);
  border-bottom-color: var(--border-color);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.site-logo { display: flex; align-items: center; z-index: 50; }
.site-logo svg { height: 3rem; width: auto; transition: transform 0.3s; }
@media (min-width: 48rem) { .site-logo svg { height: 3.5rem; } }
.site-logo:hover svg { transform: scale(1.05); }

/* Desktop Nav */
.main-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 48rem) { .main-nav { display: flex; } }
.main-nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.main-nav a {
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.3s; position: relative; padding: 0.5rem 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 9999px;
}
.current-menu-item{color: var(--primary);   border-bottom: 2px solid var(--primary);}
/* Request Access Button */
.main-nav a.btn-request {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; white-space: nowrap; font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--primary-border); padding: 0.5rem 1.5rem;
  background: var(--primary); color: var(--primary-foreground);
  border-radius: 9999px; transition: all 0.3s; cursor: pointer;
}
.btn-request:hover { background: rgba(47, 122, 106, 0.9); transform: scale(1.05); }
.mobile-menu a.btn-request-full {
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; border: 1px solid var(--primary-border);
  height: 3.5rem; padding: 0 2rem; margin-top: 2rem; font-size: 1rem;
  border-radius: 9999px; background: var(--primary); color: var(--primary-foreground);
  width: 100%; transition: all 0.3s; cursor: pointer;
	text-align
}


/* Mobile Menu Toggle */
.menu-toggle {
  display: block; z-index: 50; position: relative; padding: 0.5rem;
  color: #E8EFEC; background: none; border: none; cursor: pointer;
}
@media (min-width: 48rem) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg-dark); z-index: 40;
  display: flex; flex-direction: column; padding: 6rem 1.5rem 2.5rem;
  overflow-y: auto; transition: all 0.3s ease-out;
  opacity: 0; transform: translateY(-1rem); pointer-events: none;
}
.mobile-menu.active { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; list-style: none; }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.5rem; font-family: var(--font-serif);
  border-bottom: 1px solid rgba(31, 84, 72, 0.3); padding: 1.25rem 0;
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }
.mobile-menu a svg { width: 20px; height: 20px; color: var(--text-muted); }

/* ===== Sections & Layout ===== */
.section-dark { background: var(--bg-surface); }
.section-darker { background: var(--bg-dark); }
.main-content { flex: 1; display: flex; flex-direction: column; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; white-space: nowrap; font-weight: 500;
  border: 1px solid var(--primary-border); min-height: 3.5rem;
  padding: 0 2rem; font-size: 1rem; border-radius: 9999px;
  background: var(--primary); color: var(--primary-foreground);
  transition: all 0.3s; cursor: pointer;
}
.btn-primary:hover { background: rgba(47, 122, 106, 0.9); transform: scale(1.05); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; white-space: nowrap; font-weight: 500;
  border: 1px solid rgba(31, 84, 72, 0.5); min-height: 3.5rem;
  padding: 0 2rem; font-size: 1rem; border-radius: 9999px;
  background: transparent; color: #fff; transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { background: rgba(31, 84, 72, 0.2); }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; border: 1px solid var(--primary-border);
  min-height: 3.5rem; padding: 0 2rem; font-size: 1rem;
  border-radius: 9999px; background: var(--bg-dark); color: #fff;
  transition: all 0.3s; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.btn-dark:hover { transform: scale(1.05); }

/* ===== Badge ===== */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid rgba(47, 122, 106, 0.3);
  background: rgba(47, 122, 106, 0.1);
  color: var(--primary-foreground); font-size: 0.875rem; font-weight: 500;
  margin-bottom: 2rem; backdrop-filter: blur(12px);
}
.badge .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 9999px;
  background: var(--primary); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 5rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.4; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-surface) 0%, rgba(11, 20, 18, 0.8) 50%, transparent 100%),
              linear-gradient(to right, var(--bg-surface) 0%, rgba(11, 20, 18, 0.5) 50%, transparent 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 56rem; }
.hero-title {
  font-size: clamp(3rem, 9vw, 6rem); font-family: var(--font-serif);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 2rem;
}
.hero-title .gradient-text {
  color: transparent;
  background: linear-gradient(to right, var(--primary), var(--purple));
  -webkit-background-clip: text; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem); color: var(--text-muted); max-width: 42rem;
  font-weight: 300; line-height: 1.625; margin-bottom: 3rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* ===== Grid ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 48rem) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Section Titles ===== */
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem); font-family: var(--font-serif);
  margin-bottom: 2rem; color: #fff;
}
.section-subtitle, .section-subtitle p {
  font-size: 1.25rem; color: var(--text-muted); font-weight: 300; line-height: 1.625;
}
.section-subtitle-lg, .section-subtitle-lg p {
  font-size: clamp(1.125rem, 2vw, 1.5rem); color: var(--text-muted); font-weight: 300; line-height: 1.625;
}
.section-subtitle-muted, .section-subtitle-muted p {
  font-size: 1.125rem; color: var(--text-muted); max-width: 42rem; margin-left: auto; margin-right: auto;
}
.section-lead, .section-lead p {
  font-family: var(--font-serif); font-weight: 400; color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem); line-height: 1.3;
}
/* Multi-paragraph WYSIWYG text blocks: space out paragraphs consistently. */
.section-subtitle p, .section-subtitle-lg p, .section-subtitle-muted p, .section-lead p, .eco-item-desc p {
  margin: 0;
}
.section-subtitle p + p, .section-subtitle-lg p + p, .section-subtitle-muted p + p, .eco-item-desc p + p {
  margin-top: 1.5rem;
}
/* Lead blocks: first paragraph is a large serif lead line, remaining paragraphs are muted body text. */
.section-lead-block p:first-child {
  font-family: var(--font-serif); font-weight: 400; color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem); line-height: 1.3; margin: 0 0 1.5rem;
}
.section-lead-block p:not(:first-child) {
  font-size: 1.125rem; color: var(--text-muted); line-height: 1.625; margin: 0;
}
.section-lead-block p:not(:first-child) + p {
  margin-top: 1rem;
}

/* ===== Cards ===== */
.card {
  background: var(--bg-dark); padding: 2rem; border-radius: 1.5rem;
  border: 1px solid rgba(31, 84, 72, 0.4); transition: all 0.3s; text-align: left;
}
.card:hover { border-color: rgba(47, 122, 106, 0.4); transform: translateY(-4px); }
.card svg { width: 2rem; height: 2rem; color: var(--primary); margin-bottom: 1.5rem; }
.card h3 { font-size: 1.25rem; font-weight: 500; color: #fff; margin-bottom: 0.75rem; }
.card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.625; }
.card-title-lg { font-size: 1.875rem; font-family: var(--font-serif); margin-bottom: 1.5rem; color: #fff; }

/* ===== Stat Cards ===== */
.stat-card {
  background: var(--bg-dark); padding: 2rem; border-radius: 1.5rem;
  border: 1px solid rgba(31, 84, 72, 0.4); transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(47, 122, 106, 0.4); transform: translateY(-4px); }
.stat-number {
  font-size: 2.5rem; font-weight: 300; color: var(--primary);
  margin-bottom: 1rem; letter-spacing: -0.05em;
}
@media (min-width: 48rem) { .stat-number { font-size: 3rem; } }
.stat-title { font-weight: 500; color: #fff; margin-bottom: 0.5rem; }
.stat-sub { font-size: 0.875rem; color: var(--text-muted); }

/* ===== Platform Cards ===== */
.platform-card {
  background: var(--bg-dark); border: 1px solid rgba(31, 84, 72, 0.3);
  padding: 2.5rem; border-radius: 1.5rem; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.platform-card:hover { border-color: rgba(47, 122, 106, 0.5); }
.platform-card-purple { border-color: rgba(142, 123, 168, 0.3); }
.platform-card-inner { position: relative; z-index: 10; }
.platform-card .bg-icon {
  position: absolute; top: 0; right: 0; padding: 2rem; opacity: 0.05;
}
.platform-card .bg-icon svg { width: 12rem; height: 12rem; }
.platform-card p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.625; }
.platform-card ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.platform-card li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.9); }
.platform-card li svg { width: 1.25rem; height: 1.25rem; margin-top: 0.125rem; flex-shrink: 0; }

/* ===== Platform Grid ===== */
.platform-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 80rem; margin: 0 auto;
}
@media (min-width: 48rem) { .platform-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Journey Section (Platform: Your Personalized Health Journey) ===== */
.journey-section {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom right, #123B33, #1F5448, #123B33);
  border-top: 1px solid rgba(31, 84, 72, 1); border-bottom: 1px solid rgba(31, 84, 72, 1);
}
.journey-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; }
@media (min-width: 48rem) { .journey-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .journey-grid { grid-template-columns: repeat(4, 1fr); } }
.journey-line {
  display: none; position: absolute; top: 3.5rem; left: 12%; right: 12%;
  height: 1px; background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 64rem) { .journey-line { display: block; } }
.journey-card {
  position: relative; background: rgba(11, 20, 18, 0.7); backdrop-filter: blur(6px);
  border-radius: 1.5rem; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.journey-card:hover { border-color: rgba(255, 255, 255, 0.25); transform: translateY(-4px); }
.journey-icon-circle {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.journey-icon-circle svg { width: 1.5rem; height: 1.5rem; color: #A8E0D2; margin-bottom: 0; }
.journey-number {
  font-size: 0.75rem; letter-spacing: 0.25em; color: #A8E0D2; margin-bottom: 0.5rem;
}
.journey-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: #fff; margin-bottom: 1rem; }
.journey-text, .journey-text p { color: #C8D4D0; font-size: 0.875rem; line-height: 1.625; margin: 0 0 0.75rem; }
.journey-text:last-child, .journey-text p:last-child { margin-bottom: 0; }
.journey-pills {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: 3.5rem; text-align: center;
}
.journey-pill {
  display: inline-flex; padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9); font-size: 0.875rem; font-weight: 500;
}
.journey-pills svg { width: 1rem; height: 1rem; color: #A8E0D2; }

/* ===== Topic Cards (Platform: Built Around Women's Real Health Experiences) ===== */
.topic-card {
  padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(31, 84, 72, 0.4);
  background: var(--bg-dark); text-align: center; transition: background 0.3s, border-color 0.3s;
}
.topic-card:hover { background: rgba(31, 84, 72, 0.1); border-color: rgba(47, 122, 106, 0.4); }
.topic-card span { color: #E8EFEC; }

/* ===== Future Card (Platform: The Future of Connected Care) ===== */
.future-card {
  max-width: 48rem; margin: 0 auto; background: var(--bg-dark);
  border-radius: 1rem; border: 1px solid rgba(31, 84, 72, 0.4); padding: 2.5rem;
}
.future-card h2 { font-size: 1.875rem; margin-bottom: 1.25rem; }
.future-card p { color: var(--text-muted); line-height: 1.625; margin-bottom: 1.5rem; }
.future-list {
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.5rem 2rem;
}
@media (min-width: 40rem) { .future-list { grid-template-columns: 1fr 1fr; } }
.future-list li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text-body); font-size: 0.875rem; line-height: 1.625; }
.future-list .dot { margin-top: 0.5rem; width: 0.25rem; height: 0.25rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }

/* ===== Roadmap (Platform: Our Roadmap) ===== */
.roadmap-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 48rem) { .roadmap-grid { grid-template-columns: repeat(3, 1fr); } }
.roadmap-card {
  padding: 2rem; border-radius: 1.5rem; background: var(--bg-dark);
  border: 1px solid rgba(31, 84, 72, 0.4);
}
.roadmap-card-primary { background: rgba(47, 122, 106, 0.1); border-color: rgba(47, 122, 106, 0.4); }
.roadmap-label {
  color: var(--primary); font-weight: 500; font-size: 0.875rem;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.roadmap-title { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; line-height: 1.3; }
.roadmap-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.roadmap-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-body); font-size: 0.875rem; line-height: 1.625; }
.roadmap-list .dot { margin-top: 0.5rem; width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }

.section-body, .section-body p {
  font-size: 1.125rem; color: var(--text-muted); line-height: 1.625; margin: 0 0 1rem;
}
.section-body:last-child, .section-body p:last-child { margin-bottom: 0; }
.section-title-sm { font-family: var(--font-serif); font-size: 1.875rem; color: #fff; margin-bottom: 1.25rem; }

/* ===== Ecosystem Features ===== */
.eco-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 64rem) { .eco-grid { grid-template-columns: 1fr 1fr; } }
.eco-feature { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.eco-item { display: flex; gap: 1.5rem; }
.eco-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.eco-icon-purple {
  background: rgba(142, 123, 168, 0.1); border: 1px solid rgba(142, 123, 168, 0.2);
  color: var(--purple);
}
.eco-icon-primary {
  background: rgba(47, 122, 106, 0.1); border: 1px solid rgba(47, 122, 106, 0.2);
  color: var(--primary);
}
.eco-item-title { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.eco-item-desc { color: var(--text-muted); line-height: 1.625; }
.eco-link {
  color: var(--primary); font-size: 1.125rem; display: inline-flex;
  align-items: center; gap: 0.5rem; transition: color 0.3s;
}
.eco-image-wrapper { position: relative; }
.eco-image {
  aspect-ratio: 4/3; border-radius: 1.5rem; overflow: hidden;
  border: 1px solid rgba(31, 84, 72, 0.3); position: relative; z-index: 10;
}
.eco-image img { width: 100%; height: 100%; object-fit: cover; }
.eco-image-glow {
  position: absolute; inset: -1rem;
  background: linear-gradient(to top right, rgba(47, 122, 106, 0.2), transparent);
  filter: blur(40px); z-index: -1; border-radius: 3rem;
}
.eco-gradient-bg {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(47, 122, 106, 0.05), transparent);
  pointer-events: none;
}

/* ===== Founder Cards ===== */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 48rem) { .founder-grid { grid-template-columns: 1fr 2fr; } }
.founder-image {
  aspect-ratio: 3/4; border-radius: 1rem; overflow: hidden;
  border: 1px solid rgba(31, 84, 72, 0.4); position: relative;
  background: linear-gradient(to bottom right, rgba(31, 90, 79, 0.5), rgba(47, 122, 106, 0.3), var(--bg-dark));
}
.founder-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 18, 0.6), transparent);
}
.founder-badge {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 0.25rem;
  border: 1px solid rgba(47, 122, 106, 0.4); background: rgba(47, 122, 106, 0.1);
  color: var(--primary); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.founder-name {
  font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-serif);
  color: #fff; margin-bottom: 0.75rem;
}
.founder-role { color: var(--primary); font-weight: 500; margin-bottom: 2rem; font-size: 1rem; }
.founder-bio { display: flex; flex-direction: column; gap: 1.25rem; color: var(--text-body); line-height: 1.625; font-size: 1rem; }
.founder-separator:not(:last-child) { padding-bottom: 6rem; border-bottom: 1px solid rgba(31, 84, 72, 0.3); }

/* ===== Advisor Cards ===== */
.advisor-card {
  background: var(--bg-dark); border-radius: 1rem; padding: 2rem;
  border: 1px solid rgba(31, 84, 72, 0.4); transition: all 0.3s;
}
.advisor-card:hover { border-color: rgba(47, 122, 106, 0.4); }
.advisor-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; }
.advisor-avatar {
  width: 4rem; height: 4rem; flex-shrink: 0; border-radius: 9999px;
  background: linear-gradient(to bottom right, #1F5A4F, #2F7A6A, #0B1412);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31, 84, 72, 0.6);
}
.advisor-avatar span {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: #F4F1EB; letter-spacing: 0.05em;
}
.advisor-info { min-width: 0; }
.advisor-role {
  font-size: 0.625rem; font-weight: 600; color: #8E7BA8;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.375rem;
}
.advisor-name {
  font-size: 1.125rem; font-family: var(--font-serif); color: #fff; line-height: 1.25;
}
.advisor-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; padding-left: 0.25rem; }
.advisor-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text-body); line-height: 1.625;
}
.advisor-list .dot {
  margin-top: 0.5rem; width: 0.25rem; height: 0.25rem;
  border-radius: 9999px; background: var(--primary); flex-shrink: 0;
}
.advisor-bio { font-size: 0.875rem; color: var(--text-muted); font-style: italic; line-height: 1.625; }

/* ===== Contact Cards ===== */
.contact-card {
  display: block; padding: 2rem; border-radius: 1rem;
  border: 1px solid rgba(31, 84, 72, 0.4); background: var(--bg-dark);
  transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(47, 122, 106, 0.5); transform: translateY(-4px); }
.contact-card svg { width: 2rem; height: 2rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-card h3 { font-size: 1.25rem; font-weight: 500; color: #fff; margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.5rem; min-height: 2.5rem; }
.contact-card .email svg{
  width: 1rem; height: 1rem; color: var(--primary); margin-bottom: 0;
}
.contact-card .email {
  color: var(--primary); font-weight: 500; font-size: 0.875rem;
  display: flex; align-items: center; gap: 0.5rem; transition: transform 0.3s;
}
.contact-card:hover .email { transform: translateX(0.5rem); }

/* ===== Science Page ===== */
.science-label {
  color: var(--primary); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; font-size: 0.75rem; margin-bottom: 1.5rem;
}
.science-title {
  font-size: clamp(3rem, 6vw, 4.5rem); font-family: var(--font-serif);
  font-weight: 400; line-height: 1.1; color: #fff;
}
.section-title-md { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 400; color: #fff; margin-bottom: 1.5rem; }
.science-banner {
  aspect-ratio: 21/9; width: 100%; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(31, 84, 72, 0.4);
}
.science-banner img { width: 100%; height: 100%; object-fit: cover; }

.science-body, .science-body p {
  font-size: 1.125rem; color: var(--text-body); line-height: 1.75; margin: 0 0 1.5rem;
}
.science-body:last-child, .science-body p:last-child { margin-bottom: 0; }
.science-body-lg, .science-body-lg p {
  font-size: 1.125rem; color: #D7E4E0; line-height: 1.75; margin: 0 0 1rem;
}
.science-body-lg:last-child, .science-body-lg p:last-child { margin-bottom: 0; }

/* Numbers grid */
.number-card {
  padding: 2rem; border-radius: 1rem; border: 1px solid rgba(31, 84, 72, 0.4);
  background: var(--bg-dark); transition: background-color 0.3s;
}
.number-card:hover { background: rgba(31, 84, 72, 0.1); }
.number-card-highlight { background: rgba(47, 122, 106, 0.1); border-color: rgba(47, 122, 106, 0.3); display: flex; flex-direction: column; justify-content: center; }
.number-headline { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 1.875rem); color: var(--primary); margin-bottom: 1rem; }
.number-headline sup { font-size: 1rem; color: var(--text-muted); }
.number-card p { color: var(--text-muted); line-height: 1.625; }

.sources-block { margin-top: 2.5rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
.sources-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: #56685F; margin-bottom: 0.75rem; }
.sources-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.sources-block li { font-size: 0.75rem; color: #56685F; line-height: 1.625; }
.sources-block a { color: inherit; text-decoration: underline; }
.sources-block a:hover { color: var(--text-muted); }

/* Why the Mouth Matters */
.mouth-matters-section {
  background: linear-gradient(to bottom right, #123B33, #1F5448, #123B33);
  border-top: 1px solid #1F5448; border-bottom: 1px solid #1F5448;
}
.mouth-card {
  background: rgba(11, 20, 18, 0.7); border-radius: 1.5rem; padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1); transition: border-color 0.3s;
}
.mouth-card:hover { border-color: rgba(255, 255, 255, 0.25); }
.mouth-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-bottom: 1.25rem; }

/* Hormones symptom grid */
.symptom-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: 0.75rem; border: 1px solid rgba(31, 84, 72, 0.4); background: var(--bg-dark);
}
.symptom-card svg { color: var(--primary); flex-shrink: 0; width: 1.25rem; height: 1.25rem; }
.symptom-card span { color: var(--text-body); }

.closing-card {
  background: var(--bg-dark); padding: 2.5rem; border-radius: 1.5rem;
  border: 1px solid rgba(31, 84, 72, 0.4);
}

/* ===== Commitment Card ===== */
.commitment-card {
  background: var(--bg-dark); padding: 2rem; border-radius: 1rem;
  border: 1px solid rgba(31, 84, 72, 0.4);
}
.commitment-card h3 {
  font-size: 1.25rem; font-family: var(--font-serif); color: #fff; margin-bottom: 1rem;
}
.commitment-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.625; }

/* ===== Section Spacing ===== */
.py-16 { padding: 4rem 0; }
.py-24 { padding: 6rem 0; }
.py-32 { padding: 8rem 0; }
.pt-32 { padding-top: 8rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-0 { padding-bottom: 0; }
.pb-16 { padding-bottom: 4rem; }
.py-8 { padding: 2rem 0; }
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }

/* ===== CTA Section ===== */
.cta-section { position: relative; overflow: hidden; background: var(--primary); }
.cta-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.1;
  background-image: url('images/cubes.png'); background-size: 100px;
  mix-blend-mode: overlay;
}
.cta-inner { position: relative; z-index: 10; text-align: center; }
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem); font-family: var(--font-serif);
  color: #fff; margin-bottom: 2rem; max-width: 48rem;
  margin-left: auto; margin-right: auto; line-height: 1.25;
}
.cta-subtitle, .cta-subtitle p {
  color: rgba(244, 241, 235, 0.8); font-size: 1.25rem;
  margin: 0 0 3rem; max-width: 42rem;
  margin-left: auto; margin-right: auto; font-weight: 300;
}
.cta-subtitle:last-child, .cta-subtitle p:last-child { margin-bottom: 0; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.footnote-strip { background: var(--bg-dark); padding: 2rem 0; }
.footnote-strip p { text-align: center; font-size: 0.75rem; color: #56685F; padding: 0 1.5rem; }

/* ===== Conditions Section ===== */
.conditions-intro { max-width: 48rem; margin-bottom: 4rem; }
.conditions-title {
  font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}
.conditions-desc { font-size: 1.125rem; color: var(--text-muted); }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark); color: #E8EFEC;
  padding-top: 6rem; padding-bottom: 3rem;
  border-top: 1px solid rgba(31, 84, 72, 0.3);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem;
}
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 5fr 7fr; gap: 2rem; } }
@media (min-width: 64rem) { .footer-grid { grid-template-columns: 4fr 8fr; } }
.footer-brand-logo { margin-bottom: 1.5rem; }
.footer-brand p {
  color: var(--text-muted); font-size: 1.125rem; font-family: var(--font-serif);
  font-style: italic; margin-bottom: 2rem; max-width: 24rem;
}
.footer-status { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.footer-status .label { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.footer-status .value { font-size: 0.875rem; color: var(--text-muted); }
.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; flex-shrink: 0;
  border: 1px solid rgba(31, 84, 72, 0.6); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.footer-social-icon svg { width: 1rem; height: 1rem; }
.footer-social-icon:hover { color: #fff; border-color: rgba(47, 122, 106, 0.6); background: rgba(31, 84, 72, 0.2); }
.footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
@media (min-width: 40rem) { .footer-links { grid-template-columns: repeat(3, 1fr); } }
.footer-links > div { min-width: 0; }
.footer-links h4 {
  font-weight: 600; color: #fff; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(31, 84, 72, 0.3); padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 48rem) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copyright { font-size: 0.75rem; color: #56685F; }
.footer-legal { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: #56685F; }
.footer-legal span { cursor: pointer; transition: color 0.3s; }
.footer-legal span:hover { color: var(--text-muted); }

/* ===== Page Header ===== */
.page-header { max-width: 48rem; }
.page-label {
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.875rem; margin-bottom: 1rem;
}
.page-title {
  font-size: clamp(3rem, 7vw, 4.5rem); font-family: var(--font-serif);
  font-weight: 400; margin-bottom: 1.5rem; line-height: 1.25; color: #fff;
}
.page-subtitle, .page-subtitle p {
  font-size: 1.25rem; color: var(--text-muted); max-width: 42rem; line-height: 1.625; margin: 0 0 1rem;
}
.page-subtitle:last-child, .page-subtitle p:last-child { margin-bottom: 0; }

/* ===== Team Section ===== */
.team-section { border-top: 1px solid rgba(31, 84, 72, 0.3); padding-top: 5rem; }
.team-intro { max-width: 48rem; margin-bottom: 3rem; }
.team-title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem); font-family: var(--font-serif);
  color: #fff; margin-bottom: 1rem;
}
.team-desc { color: var(--text-muted); line-height: 1.625; }
.team-role {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #8E7BA8; margin-bottom: 0.75rem;
}
.team-name {
  font-size: 1.25rem; font-family: var(--font-serif); color: #fff; margin-bottom: 0.5rem;
}
.team-bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.625; }

/* ===== Advisors Page ===== */
.advisors-header { max-width: 48rem; margin-bottom: 5rem; text-align: center; margin-left: auto; margin-right: auto; }
.advisors-title {
  font-size: clamp(3rem, 5vw, 4rem); font-family: var(--font-serif);
  margin-bottom: 1.5rem; color: #fff;
}
.advisors-subtitle { font-size: 1.25rem; color: var(--text-muted); line-height: 1.625; }
.board-badge {
  display: inline-block; margin-top: 1.5rem; padding: 0.25rem 0.75rem;
  border-radius: 0.25rem; border: 1px solid rgba(31, 84, 72, 1);
  background: rgba(31, 84, 72, 0.2); color: var(--primary);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.advisors-grid { max-width: 56rem; margin: 0 auto; }

/* ===== Contact Page ===== */
.contact-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-family: var(--font-serif);
  color: #fff; margin-bottom: 1.5rem;
}
.contact-desc { font-size: 1.125rem; color: var(--text-muted); line-height: 1.625; }
.contact-grid {
  max-width: 56rem; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 40rem) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Misc ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-body { color: var(--text-body); }
.text-white { color: #fff; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.min-h-screen { min-height: 100vh; }
.container-relative { position: relative; }
.eco-relative { position: relative; overflow: hidden; }
.eco-desc { margin-bottom: 3rem; max-width: 32rem; }
.founders-list { display: flex; flex-direction: column; gap: 6rem; margin-bottom: 8rem; }
.science-page { min-height: 100vh; padding-top: 8rem; padding-bottom: 6rem; color: #fff; }
.founders-title { font-size: clamp(3rem, 5vw, 4rem); }
.figure-mb { margin-bottom: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-32 { margin-bottom: 8rem; }
