:root {
  --bg: #EEF1F0;
  --surface: #FFFFFF;
  --surface-alt: #F4F6F5;
  --border: rgba(15,40,40,0.10);
  --border-strong: rgba(15,40,40,0.18);
  --text: #0B1F22;
  --text-muted: #5A6F72;
  --text-faint: #9AA8AB;
  --accent: #0E5E66;
  --accent-dark: #083B41;
  --accent-soft: #D2E5E6;
  --accent-fg: #ffffff;
  --amber: #D88A2C;
  --amber-soft: #F8E7C9;
  --danger: #B5392B;
  --success: #2C7A55;
  --font: "IBM Plex Sans", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1200px;
}
@media (prefers-color-scheme: dark) {
  :root[data-theme="auto"] {
    --bg: #0A1416;
    --surface: #11211F;
    --surface-alt: #15282B;
    --border: rgba(180,220,220,0.10);
    --border-strong: rgba(180,220,220,0.20);
    --text: #E7F1F0;
    --text-muted: #8FA3A6;
    --text-faint: #5A6F72;
    --accent: #5BB3B3;
    --accent-dark: #0E5E66;
    --accent-soft: #1A3438;
    --accent-fg: #ffffff;
    --amber: #E8B062;
    --amber-soft: #3A2A18;
    --danger: #E07566;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text); font-family: var(--font);
  font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 767px) { body { font-size: 16px; } }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* Reusable */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.label { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-muted); }
.eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font); letter-spacing: -0.5px; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.05; }
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; }
p { margin: 0; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 12px; font-weight: 700; font-size: 15px; border: none; transition: transform .15s ease, background .15s ease; letter-spacing: -0.1px; }
.btn-primary { background: var(--accent-dark); color: #fff !important; }
.btn-primary:hover, .btn-primary:visited, .btn-primary:active { background: var(--accent); color: #fff !important; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { background: var(--surface); text-decoration: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.5px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: transparent;
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav .btn { padding: 10px 16px; font-size: 13px; }

/* Mobile hamburger — injected by lang-switcher.js, hidden on desktop */
.nav-hamburger { display: none; }
@media (max-width: 768px) {
  /* Convert the nav-links row into a drop-down drawer below the header */
  .nav-links { display: none !important; }
  .site-header.menu-open .nav-links {
    display: flex !important;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.10);
  }
  .site-header.menu-open .nav-links a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex; align-items: center;
  }
  .site-header.menu-open .nav-links a:last-child { border-bottom: none; }
  .nav-hamburger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: transparent; color: var(--text-muted);
    border: 1px solid var(--border); border-radius: 999px;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease;
  }
  .nav-hamburger:hover { color: var(--text); border-color: var(--border-strong); }
  .site-header.menu-open .nav-hamburger { color: var(--text); border-color: var(--text); }
  .site-header.menu-open .nav-hamburger .hb-top { transform: translateY(5px) rotate(45deg); transform-origin: center; }
  .site-header.menu-open .nav-hamburger .hb-mid { opacity: 0; }
  .site-header.menu-open .nav-hamburger .hb-bot { transform: translateY(-5px) rotate(-45deg); transform-origin: center; }
  .nav-hamburger svg path { transition: transform .15s ease, opacity .15s ease; }
  /* Position header for absolute children */
  .site-header { position: sticky; }
  .site-header .wrap { position: relative; }
  /* Slightly tighter spacing in the right cluster */
  .nav { gap: 10px; }
  .nav .btn { padding: 9px 14px; font-size: 13px; }
}
@media (max-width: 380px) {
  .nav .btn { padding: 9px 12px; font-size: 12px; }
}

/* Header language menu */
.lang-menu { position: relative; display: inline-flex; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 10px 0 10px;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.6px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.lang-btn:hover, .lang-menu.is-open .lang-btn {
  color: var(--text); border-color: var(--border-strong); background: var(--surface);
}
.lang-globe { opacity: 0.85; }
.lang-code { line-height: 1; }
.lang-chev { opacity: 0.6; transition: transform .15s ease; }
.lang-menu.is-open .lang-chev { transform: rotate(180deg); }
.lang-pop {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 200px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 32px -8px rgba(15,40,40,0.18), 0 2px 6px rgba(15,40,40,0.06);
  padding: 6px; z-index: 200;
}
.lang-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: 9px;
  color: var(--text); font-size: 14px; font-weight: 500;
  outline: none;
}
.lang-item:hover, .lang-item:focus-visible {
  background: var(--surface-alt); text-decoration: none; color: var(--text);
}
.lang-item-code {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.6px;
  color: var(--text-muted); min-width: 22px;
}
.lang-item-name { flex: 1; }
.lang-item-check { color: var(--accent); font-weight: 700; }
.lang-item.is-active { color: var(--accent); }
.lang-item.is-active .lang-item-code { color: var(--accent); }

/* Soft auto-detect suggestion banner */
.lang-suggest {
  position: sticky; top: 64px; z-index: 90;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--border);
  transform: translateY(-6px); opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.lang-suggest.is-in { transform: translateY(0); opacity: 1; }
.lang-suggest-inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 12px;
  color: var(--accent-dark);
}
.lang-suggest .lang-globe { color: var(--accent-dark); }
.lang-suggest-cta {
  color: var(--accent-dark); font-weight: 600; font-size: 14px;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.lang-suggest-cta:hover { color: var(--accent); text-decoration: underline; }
.lang-suggest-x {
  margin-left: auto;
  background: transparent; border: none; color: var(--accent-dark);
  font-size: 22px; line-height: 1; padding: 4px 8px; border-radius: 6px;
  opacity: 0.7;
}
.lang-suggest-x:hover { opacity: 1; background: rgba(15,40,40,0.06); }
@media (max-width: 480px) {
  .lang-suggest-inner { padding: 9px 16px; font-size: 13px; }
  .lang-suggest-cta { font-size: 13px; }
  .lang-btn { padding: 0 8px; }
  .lang-btn .lang-chev { display: none; }
}

/* Hero */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
@media (max-width: 768px) { .hero { padding: 56px 0 40px; } }
.hero .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1024px) { .hero .grid { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 { margin-top: 16px; }
.hero .sub { margin-top: 22px; font-size: 19px; color: var(--text-muted); max-width: 540px; line-height: 1.55; }
@media (max-width: 768px) { .hero .sub { font-size: 17px; } }
.hero-ctas { margin-top: 32px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas > a, .hero-ctas > .btn { width: 100%; justify-content: center; }
  .appstore-badge, .store-badge { justify-content: center; }
}
.hero-trust { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--text-faint); letter-spacing: 0.4px; display: flex; align-items: center; gap: 8px; }
.hero-trust::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success, #2C7A55); }

.store-badge, .appstore-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff; padding: 10px 18px;
  border-radius: 12px; text-decoration: none;
  border: 1.5px solid #000;
}
.store-badge:hover, .appstore-badge:hover { background: #1a1a1a; text-decoration: none; }
.store-badge .glyph, .appstore-badge .apple { width: 28px; height: 28px; flex-shrink: 0; }
.store-badge .stack, .appstore-badge .stack { display: flex; flex-direction: column; line-height: 1; gap: 3px; text-align: left; }
.store-badge .small, .appstore-badge .small { font-size: 10px; opacity: 0.85; letter-spacing: 0.5px; }
.store-badge .big, .appstore-badge .big { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; font-family: -apple-system, "SF Pro Display", system-ui, sans-serif; }

/* Phone visual */
.phone-stack { position: relative; display: flex; justify-content: center; align-items: center; min-height: 700px; }
@media (max-width: 1024px) { .phone-stack { min-height: 620px; } }
.phone-img {
  width: min(320px, 78vw); aspect-ratio: 1290/2796;
  border-radius: 44px;
  background: #000;
  border: 10px solid #1a1a1a;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.30), 0 8px 24px -4px rgba(0,0,0,0.10);
  position: relative; overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.phone-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-bg {
  position: absolute; right: -50px; top: 30px; transform: rotate(7deg) scale(0.92);
  z-index: -1; opacity: 0.92;
  width: 290px;
}
@media (max-width: 1024px) { .phone-bg { display: none; } }

/* Phone screen — mini Confident Care dashboard */
.scr { padding: 56px 14px 14px; height: 100%; overflow: hidden; }
.scr-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 4px 6px 14px; }
.scr-date { font-family: var(--mono); font-size: 9px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.scr-title { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-top: 3px; color: var(--text); }
.scr-avatar { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--text); }

.dose-card { background: var(--accent); color: #fff; border-radius: 14px; padding: 16px; }
.dose-card .top { display: flex; justify-content: space-between; }
.dose-card .lbl { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 1.4px; opacity: 0.75; text-transform: uppercase; }
.dose-card .streak-num { font-size: 14px; font-weight: 700; line-height: 1; }
.dose-card .num { font-size: 64px; font-weight: 700; letter-spacing: -3px; line-height: 0.9; text-align: center; margin: 12px 0 4px; font-variant-numeric: tabular-nums; }
.dose-card .num span { font-size: 22px; font-weight: 500; opacity: 0.7; letter-spacing: 0; }
.dose-card .stepperRow { display: flex; align-items: center; gap: 8px; }
.dose-card .step { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.15); color: #fff; border: none; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.dose-card .num-wrap { flex: 1; text-align: center; }
.dose-card .chips { display: flex; gap: 4px; margin-top: 10px; overflow: hidden; }
.dose-card .chip { flex: 0 0 28px; padding: 6px 0; border-radius: 7px; background: rgba(255,255,255,0.1); color: #fff; font-family: var(--mono); font-size: 10px; font-weight: 700; text-align: center; }
.dose-card .chip.active { background: #fff; color: var(--accent); }
.dose-card .cta { margin-top: 12px; padding: 11px; border-radius: 10px; background: #fff; color: var(--accent); border: none; font-weight: 700; font-size: 12px; width: 100%; letter-spacing: -0.1px; }

.mini-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; margin-top: 10px; }
.inr-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.inr-num { font-size: 38px; font-weight: 700; letter-spacing: -1.5px; font-variant-numeric: tabular-nums; color: var(--text); line-height: 1; }
.inr-pill { padding: 3px 8px; border-radius: 5px; background: var(--amber-soft); color: var(--amber); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.5px; }
.gauge { margin-top: 10px; position: relative; height: 10px; border-radius: 5px; background: rgba(15,40,40,0.08); overflow: hidden; }
.gauge .band { position: absolute; top: 0; bottom: 0; left: 30%; width: 35%; background: var(--accent); border-radius: 5px; }
.gauge .marker { position: absolute; top: -2px; bottom: -2px; left: calc(38% - 2px); width: 4px; background: var(--amber); border-radius: 1px; box-shadow: 0 0 0 2px var(--surface); }

.chart-card { padding: 12px; }
.chart { height: 80px; display: flex; align-items: flex-end; gap: 3px; padding-top: 8px; position: relative; }
.chart .bar { flex: 1; background: var(--accent); opacity: 0.7; border-radius: 2px 2px 0 0; }
.chart .bar.today { background: var(--amber); opacity: 1; }
.chart .bar.miss { background: transparent; border-left: 1.5px dashed var(--danger); margin-left: 50%; height: 100% !important; flex: 0 0 0; position: relative; padding-left: 1.5px; }
.chart-x { display: flex; gap: 3px; margin-top: 6px; font-family: var(--mono); font-size: 8px; color: var(--text-faint); }
.chart-x span { flex: 1; text-align: center; }

/* ─── Sections ─── */
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { letter-spacing: -1px; }
.section-head .lede { margin-top: 18px; font-size: 18px; color: var(--text-muted); }

/* Features 3-up */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; gap: 16px; } }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 32px;
}
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature .icon svg { width: 22px; height: 22px; stroke-width: 2; }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

/* Screenshot strip */
.shots-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.shots {
  display: flex; gap: 24px; overflow-x: auto; padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
.shot {
  flex: 0 0 270px; scroll-snap-align: center;
  display: flex; flex-direction: column; gap: 14px;
}
.shot .frame {
  width: 270px; aspect-ratio: 1290/2796;
  border-radius: 38px;
  background: #000; border: 8px solid #1a1a1a; overflow: hidden; position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.20);
}
.shot .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot-cap { font-family: var(--mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; padding: 0 8px; line-height: 1.5; }
.shot-cap strong { color: var(--text); font-weight: 700; }

/* Founder block */
.founder { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; max-width: 980px; margin: 0 auto; }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 32px; } }
.founder-photo {
  aspect-ratio: 1; border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-alt));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.founder-photo .silhouette {
  width: 60%; opacity: 0.4; color: var(--accent);
}
.founder blockquote {
  margin: 0; font-size: 22px; line-height: 1.5; letter-spacing: -0.3px;
  color: var(--text); position: relative; padding-left: 4px;
}
.founder blockquote::before {
  content: '"'; position: absolute; left: -28px; top: -16px;
  font-size: 80px; color: var(--accent); opacity: 0.3; font-family: Georgia, serif;
  line-height: 1;
}
.founder .who { margin-top: 22px; font-family: var(--mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.founder .who strong { color: var(--text); font-weight: 700; display: block; font-size: 14px; letter-spacing: 0; text-transform: none; }
.founder .more { margin-top: 18px; }

/* Meds list */
.meds { background: var(--surface-alt); border-radius: 18px; padding: 40px; max-width: 920px; margin: 0 auto; border: 1px solid var(--border); }
.meds-head { text-align: center; margin-bottom: 28px; }
.meds-head h3 { font-size: 26px; letter-spacing: -0.7px; }
.meds-head p { color: var(--text-muted); margin-top: 8px; font-size: 16px; }
.meds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .meds-grid { grid-template-columns: repeat(2, 1fr); } }
.med {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; text-align: center;
}
.med .name { font-weight: 700; font-size: 15px; letter-spacing: -0.2px; }
.med .gen { display: block; font-family: var(--mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 4px; text-transform: uppercase; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 10px; padding: 18px 22px;
  transition: border-color .15s;
}
details[open] { border-color: var(--accent); }
details summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px; letter-spacing: -0.1px; color: var(--text);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; font-size: 22px; color: var(--text-muted); font-weight: 400;
  transition: transform .2s;
}
details[open] summary::after { content: '−'; color: var(--accent); }
details .ans {
  margin-top: 14px; color: var(--text-muted); font-size: 16px; line-height: 1.6;
  padding-bottom: 4px;
}

/* CTA */
.cta-section { background: var(--accent); color: #fff; border-radius: 24px; max-width: var(--max); margin: 0 auto; padding: 64px 32px; text-align: center; }
.cta-section h2 { color: #fff; }
.cta-section .sub { color: rgba(255,255,255,0.85); margin-top: 16px; font-size: 18px; }
.cta-section .ctas { margin-top: 32px; display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.cta-section .meta { margin-top: 22px; font-family: var(--mono); font-size: 11px; opacity: 0.8; letter-spacing: 1.5px; text-transform: uppercase; }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand p { margin-top: 16px; font-size: 14px; color: var(--text-muted); max-width: 320px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 768px) {
  .footer-col ul { gap: 14px; }
  .footer-col a { font-size: 15px; padding: 4px 0; display: inline-block; }
}
.footer-col a { color: var(--text); font-size: 14px; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.lang-switcher { display: flex; gap: 6px; flex-wrap: wrap; }
.lang-switcher span { font-family: var(--mono); font-size: 11px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.lang-switcher span.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.disclaimer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-faint); line-height: 1.6; max-width: 700px; }
.copyright { margin-top: 16px; font-family: var(--mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.5px; }

/* Patient/caregiver landing teaser cards */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
@media (max-width: 768px) { .audience { grid-template-columns: 1fr; } }
.audience-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 32px; transition: border-color .15s, transform .15s;
}
.audience-card:hover { border-color: var(--accent); }
.audience-card .eyebrow { color: var(--amber); font-size: 10px; }
.audience-card h3 { margin-top: 14px; font-size: 22px; letter-spacing: -0.5px; }
.audience-card p { margin-top: 12px; color: var(--text-muted); font-size: 15px; }
.audience-card .arrow { margin-top: 20px; color: var(--accent); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

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