
/* ── HERO ── */
.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--gap);
    min-height: calc(100vh - 144px);
	position: relative;
	z-index: 3;
}

.hero-header-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero h1 {
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	line-height: 1.18;
	font-weight: 700;
}
.hero h1 span {
	font-style: italic;
}

.hero h1 .gold {
	color: var(--amber-lt);
	font-style: normal;
}

.hero h1 em { 
    color: #6dcfe0; 
    font-style: normal; 
}

.hero-lead {
	font-size: clamp(0.875rem, calc(0.803rem + 0.36vw), 1.125rem);
    color: rgba(190,215,230,.9); 
    line-height: 1.75;
    max-width: 845px;
}

.hero-stats {
    display: flex; 
    gap: 2.5rem; 
    flex-wrap: wrap;
    padding-bottom: 2.5rem; 
    border-bottom: 1px solid rgba(255,255,255,.1);
    max-width: 830px;
}

.hero-stat .num {
    font-size: clamp(1.5rem, calc(1.392rem + 0.541vw), 1.875rem);; 
    font-weight: 700; 
    color: #6dcfe0;
    display: block; 
    line-height: 1;
}
.hero-stat .lbl {
    font-size: .72rem; 
    color: rgba(160,195,215,.75);
    text-transform: uppercase; 
    letter-spacing: .1em; 
    margin-top: .3rem;
}

.hero-doors {
    display: flex; 
    flex-wrap: wrap;
    gap: 1rem; 
}

.door {
    display: flex; 
    align-items: center; 
    flex: 1; 
    gap: .9rem;
    min-width: 220px; 
    max-width: 320px;
    padding: clamp(0.938rem, calc(0.883rem + 0.27vw), 1.125rem) clamp(0.938rem, calc(0.757rem + 0.901vw), 1.563rem); 
    border-radius: 8px; 
    cursor: pointer;
    transition: transform .22s, 
    box-shadow .22s;
    text-decoration: none !important;
}
.door:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 28px rgba(0,0,0,.3); 
}
.door-p {
    background: #fff; 
    color: var(--navy) !important;
    border: 1px solid rgba(255,255,255,.3);
}
.door-c {
    background: rgba(255,255,255,.1); 
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}
.door-icon { 
    font-size: 1.6rem; 
    flex-shrink: 0; 
}
.door-body .door-who {
    font-size: .68rem; 
    margin-bottom: .1rem;
    letter-spacing: .1em; 
    text-transform: uppercase;
    opacity: .6; 
}
.door-p .door-who { 
    color: var(--teal); 
}
.door-c .door-who { 
    color: rgba(150,210,225,.9); 
}
.door-body .door-label {
    font-size: clamp(0.875rem, calc(0.839rem + 0.18vw), 1rem);; 
    font-weight: 700; 
    line-height: 1.3;
}
.door-p .door-label { 
    color: var(--navy); 
}
.door-c .door-label { 
    color: #fff; 
}
.door-arrow { 
    font-size: 1.1rem; 
    margin-left: auto; 
    opacity: .45; 
}

/* Animated grid background */

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(14, 143, 160, 0.15);
	border: 1px solid rgba(14, 143, 160, 0.35);
	border-radius: 50px;
	padding: 0.4rem 1.2rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal-lt);
	margin-bottom: 1.6rem;
}
.eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--teal-lt);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.hero-proof {
	display: flex;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.proof-num {
	font-family: 'Lora', serif;
	font-size: clamp(1.563rem, calc(1.472rem + 0.45vw), 1.875rem);
	font-weight: 700;
	color: var(--teal-lt);
	line-height: 1;
}
.proof-label {
	font-size: 0.88rem;
	opacity: 0.65;
	margin-top: 0.2rem;
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.btn-primary {
	background: var(--teal);
	color: #fff;
	padding: clamp(0.625rem, calc(0.535rem + 0.45vw), 0.938rem) clamp(1.5rem, calc(1.302rem + 0.991vw), 2.188rem);
	border-radius: 7px;
	text-decoration: none;
	font-weight: 800;
	font-size: clamp(0.875rem, calc(0.839rem + 0.18vw), 1rem);
	letter-spacing: 0.02em;
	box-shadow: 0 4px 14px rgba(11,122,138,.3);
	transition: .2s ease;
}
.btn-primary:hover {
	background: var(--amber-lt);
	transform: translateY(-2px);
}
.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: clamp(0.625rem, calc(0.535rem + 0.45vw), 0.938rem) clamp(1.5rem, calc(1.302rem + 0.991vw), 2.188rem);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: clamp(0.875rem, calc(0.839rem + 0.18vw), 1rem);
  display: flex;
  align-items: center;
	transition: var(--trans);
}
.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
}

/* ─── THE EXPERIENCE ─────────────────────────────────── */
.the-experience { 
    padding: var(--vertical-padding) 0;
    background: var(--cream);
}
  .exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  @media (max-width: 760px) { .exp-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

  .exp-glasses {
    background: linear-gradient(145deg, var(--navy) 0%, #1e4d7b 100%);
    border-radius: 18px; 
    padding: clamp(1.25rem, calc(0.746rem + 2.523vw), 3rem) clamp(1.25rem, calc(0.89rem + 1.802vw), 2.5rem);
    box-shadow: 0 20px 60px rgba(24,56,94,.3);
    position: relative; overflow: hidden;
  }
  .exp-glasses::before {
    content: '';
    position: absolute; 
    top: -25%; 
    left: 50%;
    transform: translateX(-50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(109,207,224,.12) 0%, transparent 60%);
    border-radius: 50%;
  }
  .glasses-icon { font-size: 3.5rem; margin-bottom: 1.2rem; display: block; text-align: center; }
  .live-data { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(147px, 1fr));
      gap: .7rem; 
      margin-bottom: 1rem; 
      
  }
  .data-chip {
    background: rgba(109,207,224,.1); 
    border: 1px solid rgba(109,207,224,.2);
    border-radius: 8px; 
    padding: .6rem .7rem; 
    text-align: center;
  }
  .data-chip .val { display: block; font-size: 1.05rem; font-weight: 700; color: #6dcfe0; }
  .data-chip .lbl {
    font-size: .9rem; 
    color: rgba(160,200,220,.7);
  }
  .scan-bar {
    height: 3px; background: rgba(109,207,224,.15); border-radius: 2px; margin-top: 1rem;
    position: relative; overflow: hidden;
  }
  .scan-bar::after {
    content: '';
    position: absolute; left: -100%; top: 0; height: 100%; width: 60%;
    background: linear-gradient(90deg, transparent, #6dcfe0, transparent);
    animation: scan 2.2s ease-in-out infinite;
  }
  @keyframes scan { to { left: 140%; } }
  .glasses-caption {
    font-size: .78rem; color: rgba(160,200,220,.6);
    text-align: center; margin-top: .9rem; letter-spacing: .05em;
  }

  .exp-steps { 
      list-style: none; 
      counter-reset: steps; 
      margin-top: 2.5rem;
  }
  .exp-steps li {
    counter-increment: steps;
    display: flex; gap: 1.2rem; margin-bottom: 1.8rem; align-items: flex-start;
  }
  .step-num {
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-shrink: 0;
    width: 32px; 
    height: 32px; 
    font-size: .8rem; 
    font-weight: 700; 
    color: #fff; 
    margin-top: .15rem;
    background: var(--teal); 
    border-radius: 50%;
  }
  .exp-steps li strong {
    display: block; 
    font-size: 1rem; 
    color: var(--navy); 
    margin-bottom: .25rem;
  }
  .exp-steps li span {
    font-size: .9rem; 
    color: var(--muted); 
    line-height: 1.65;
  }

/* ── FADE IN ── */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: none;
}

  /* ─── TYPOGRAPHY ─────────────────────────────────────── */
  .sans { font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif; }

  
  @media (max-width: 780px) { .nav-links { display: none; } }

  /* ─── SECTIONS ───────────────────────────────────────── */
  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--navy); line-height: 1.3; margin-bottom: .8rem;
  }
  .section-lead {
    font-size: clamp(0.875rem, calc(0.839rem + 0.18vw), 1rem); 
    color: var(--muted); 
    max-width: 620px;
    line-height: 1.75;
  }

  /* ─── PATIENT PATHS ──────────────────────────────────── */
.patient-paths { 
  padding: var(--vertical-padding) 0;
  background: var(--cream);
}
  .paths-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.3rem;
    margin-top: 2.5rem;
  }
.path-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1.5px solid var(--border); 
    border-radius: 12px;
    padding: clamp(0.938rem, calc(0.721rem + 1.081vw), 1.688rem) clamp(0.938rem, calc(0.775rem + 0.811vw), 1.5rem); 
    transition: .25s ease;
    text-decoration: none; 
    position: relative;
  }
  .path-card:hover { border-color: transparent; box-shadow: 0 6px 28px rgba(24,56,94,.13); transform: translateY(-3px); text-decoration: none; }
  .path-icon { font-size: 1.9rem; margin-bottom: .8rem; display: block; }
  .path-who {
    font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--teal); margin-bottom: .3rem;
  }
  .path-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; line-height: 1.35; }
  .path-card p {
    font-size: .86rem; color: var(--muted); line-height: 1.6;
  }
  .path-link { margin-top: 1rem; font-size: .82rem; color: var(--teal); font-weight: 600; }

  /* ─── BIOMARKERS ─────────────────────────────────────── */
.biomarkers { 
  background: var(--lblue); 
  padding: var(--vertical-padding) 0;
}
.bm-intro { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 3rem; 
  margin-bottom: 5rem; 
}
.biomarkers-description {
    font-size: .92rem; 
    color: var(--muted); 
    line-height: 1.75; 
    background: #fff; 
    padding: clamp(0.938rem, calc(0.811rem + 0.631vw), 1.375rem) clamp(0.938rem, calc(0.757rem + 0.901vw), 1.563rem); 
    border-radius: 10px; 
    border-left: 3px solid var(--teal);
}
  @media (max-width: 700px) { .bm-intro { grid-template-columns: 1fr; } }
  .bm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(269px, 1fr)); gap: .9rem; }
  .bm-chip {
    background: white; border: 1px solid rgba(33,98,168,.12);
    border-radius: 9px; 
    padding: clamp(0.688rem, calc(0.633rem + 0.27vw), 0.875rem) clamp(0.688rem, calc(0.597rem + 0.45vw), 1rem);
    box-shadow: 0 1px 4px rgba(24,56,94,.06);
  }
  .bm-name { font-size: .9rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: .22rem; }
  .bm-desc {
    font-size: .8rem; 
    color: var(--soft);
  }

  /* ─── FOR CLINICIANS ─────────────────────────────────── */
.clinicians-section {
    background: linear-gradient(160deg, var(--navy) 0%, #1d4a73 100%);
    padding: var(--vertical-padding) 0;
}
  .clinicians-section .eyebrow { color: #6dcfe0; }
  .clinicians-section .section-title { color: white; }
  .clinicians-section .section-lead { color: rgba(190,215,235,.85); }
  .clin-grid { 
      display: grid; 
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
      gap: 1.2rem; 
      margin-top: 2.5rem;
  }
  .clin-card {
    background: rgba(255,255,255,.07); 
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 11px; 
    padding: clamp(0.938rem, calc(0.775rem + 0.811vw), 1.5rem);
    transition: background .22s, border-color .22s;
  }
  .clin-card:hover { background: rgba(255,255,255,.12); border-color: rgba(109,207,224,.3); }
  .clin-icon { font-size: 1.5rem; margin-bottom: .8rem; }
  .clin-card h3 { font-size: 1rem; color: white; margin-bottom: .45rem; }
  .clin-card p {
    font-size: .9rem; 
    color: rgba(170,205,225,.85); 
    line-height: 1.6;
  }
  .clin-card a {
    display: inline-block; 
    margin-top: .8rem;
    font-size: .8rem; 
    color: #6dcfe0; 
    font-weight: 600;
  }

  /* ─── THE SCIENCE ────────────────────────────────────── */
.science { 
  background: var(--cream); 
  padding: var(--vertical-padding) 0;
}
.science-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.science-header-left {
    width: 100%;
}
  .science-quote {
    font-size: clamp(1rem, calc(0.946rem + 0.27vw), 1.188rem); 
    font-style: italic; 
    color: var(--navy);
    line-height: 1.7; 
    padding: clamp(0.938rem, calc(0.775rem + 0.811vw), 1.5rem) clamp(0.938rem, calc(0.631rem + 1.532vw), 2rem);
    border-left: 4px solid var(--teal);
    background: #fff; 
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(24,56,94,.07);
  }
  .science-quote cite {
    display: block;
    margin-top: .7rem;
    font-size: .8rem; 
    font-style: normal;
    color: var(--soft);
  }
  .pillars { 
      display: grid; 
      grid-template-columns: repeat(3, 1fr); 
      gap: 1.3rem; 
      margin-top: 2.5rem;
  }
  @media (max-width: 700px) { .pillars { grid-template-columns: 1fr; } }
  .pillar {
    background: #fff; 
    border-radius: 10px; 
    padding: clamp(15px, calc(12.405px + 0.811vw), 24px);
    border-top: 3px solid var(--teal);
    box-shadow: 0 2px 10px rgba(24,56,94,.06);
  }
  .pillar h4 { font-size: .98rem; color: var(--navy); margin-bottom: .5rem; }
  .pillar p {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: .86rem; color: var(--muted); line-height: 1.65;
  }

  /* ─── HUMAN STORIES ──────────────────────────────────── */
.stories { 
    background: #fff; 
    padding: var(--vertical-padding) 0;
}
  .stories-grid { 
      display: grid; 
      grid-template-columns: repeat(3, 1fr); gap: 1.5rem; 
      margin-top: 2.5rem;
  }
  @media (max-width: 760px) { .stories-grid { grid-template-columns: 1fr; } }
  .story-card {
    background: var(--warm); 
    border-radius: 12px; 
    padding: clamp(0.938rem, calc(0.685rem + 1.261vw), 1.813rem) clamp(0.938rem, calc(0.757rem + 0.901vw), 1.563rem);
    border: 1px solid var(--border); 
    position: relative;
  }
  .story-card::before {
    content: '\201C'; font-size: 4rem; color: var(--teal); opacity: .25;
    position: absolute; top: .5rem; left: 1.2rem; line-height: 1;
    font-family: Georgia, serif;
  }
  .story-text {
    font-size: .95rem; color: var(--text); line-height: 1.75;
    margin-bottom: 1.2rem; padding-top: 1rem;
  }
  .story-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
  .story-role { font-size: .8rem; color: var(--soft); }

  /* ─── FIND A PROVIDER ────────────────────────────────── */
.find-provider {
    background: linear-gradient(135deg, var(--lteal) 0%, var(--lblue) 100%);
    padding: var(--vertical-padding) 0;
    text-align: center;
}
  .find-provider h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--navy); margin-bottom: .8rem; }
  .find-provider p {
    font-size: 1rem; 
    color: var(--muted);
    max-width: 500px; 
    margin: 0 auto 2.2rem; 
    line-height: 1.7;
  }
  .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
 
  .btn-primary:hover { background: #0a6878; text-decoration: none; color: white; transform: translateY(-1px); }
  .btn-outline {
    display: inline-block; 
    background: transparent; 
    color: var(--navy);
    padding: clamp(0.625rem, calc(0.535rem + 0.45vw), 0.938rem) clamp(1.5rem, calc(1.302rem + 0.991vw), 2.188rem); 
    border-radius: 7px;
    font-weight: 800; 
    font-size: clamp(0.875rem, calc(0.839rem + 0.18vw), 1rem); 
    border: 2px solid var(--navy);
    transition: all .2s;
  }
  .btn-outline:hover { background: var(--navy); color: white; text-decoration: none; }

  /* ─── SIBLING SITES ──────────────────────────────────── */
  .sibling-bar {
    background: #fff;
    padding: var(--vertical-padding) 0;
  }
  .sibling-inner {
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem;
  }
  .sibling-label {
    font-size: .9rem; 
    letter-spacing: .12em; 
    text-transform: uppercase;
    color: var(--soft); 
    white-space: nowrap;
  }
  .sibling-chips { 
      display: flex; 
      flex-wrap: wrap; 
      gap: 1rem; 
  }
  .chip {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: 20px; padding: .33rem .9rem;
    font-size: .82rem; color: var(--navy); transition: all .2s;
  }
  .chip:hover { background: var(--lteal); border-color: var(--teal); color: var(--teal); text-decoration: none; }