/* ==========================================================================
   MediMind — medimindtech.com
   Design system. Palette matches the investor deck (deck-generator.js) so the
   site and the deck read as one set of materials.
   ========================================================================== */

:root {
  /* brand */
  --navy:        #0F2A3F;
  --navy-deep:   #0A1E2E;
  --navy-soft:   #17405C;
  --teal:        #0D7B8A;
  --teal-mid:    #3BA8B5;
  --teal-pale:   #E9F5F7;
  --teal-xlt:    #F4FBFC;
  --ice:         #CFE7EC;
  --green:       #1F8A66;
  --green-pale:  #E6F4EE;
  --amber:       #C56A06;
  --amber-pale:  #FBF2E1;
  --violet:      #7C5CD6;

  /* neutrals */
  --ink:         #0F2A3F;
  --slate:       #334155;
  --gray:        #5B6B7C;
  --gray-light:  #8A9AAA;
  --line:        #E3E9EE;
  --line-soft:   #EEF3F6;
  --bg:          #FFFFFF;
  --bg-alt:      #F7FAFB;

  /* type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* geometry */
  --container: 1180px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 42, 63, .06), 0 2px 8px rgba(15, 42, 63, .04);
  --shadow-md: 0 4px 14px rgba(15, 42, 63, .07), 0 12px 34px rgba(15, 42, 63, .07);
  --shadow-lg: 0 18px 50px rgba(15, 42, 63, .16), 0 4px 12px rgba(15, 42, 63, .08);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "cv05" 1;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; line-height: 1.14; font-weight: 700; letter-spacing: -.021em; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .5em; }
strong { color: var(--ink); font-weight: 650; }
/* strong defaults to near-black ink; anywhere the surface is dark it must not
   inherit that or the emphasised words vanish into the background */
.hero strong, .cta strong, .site-footer strong, .conf-bar strong { color: #fff; }
.footer__notice strong { color: #F5D6A3; }
sup { font-size: .62em; font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--teal-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.section { padding: clamp(64px, 8.5vw, 116px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.section--navy { background: var(--navy); color: var(--ice); position: relative; overflow: hidden; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy strong { color: #fff; }

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.split--text-right { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.section--navy .eyebrow { color: var(--teal-mid); }

.h-display {
  font-size: clamp(2.2rem, 4.3vw, 3.4rem);
  line-height: 1.07; letter-spacing: -.032em; font-weight: 700;
}
.h-section {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.13; letter-spacing: -.027em; margin-bottom: .55em;
}
.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.62; color: var(--gray); max-width: 62ch;
}
.section--navy .lede { color: var(--ice); }
.section-head { max-width: 74ch; margin-bottom: clamp(34px, 4.5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.text-num { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-size: 15.5px; font-weight: 600; letter-spacing: -.005em;
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn svg { flex: none; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 2px 10px rgba(13,123,138,.28); }
.btn--primary:hover { background: #0A6673; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(13,123,138,.32); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--teal-mid); color: var(--teal); background: var(--teal-xlt); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--ice); color: var(--navy); transform: translateY(-1px); }
.btn--outline-light { border-color: rgba(207,231,236,.42); color: #fff; }
.btn--outline-light:hover { border-color: var(--teal-mid); background: rgba(59,168,181,.14); color: #fff; }
.btn--sm { padding: 10px 20px; font-size: 14.5px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 14px rgba(15,42,63,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-size: 19px; font-weight: 700; letter-spacing: .085em; line-height: 1; }
.brand__sub {
  display: block; font-size: 9.5px; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--teal); margin-top: 4px;
}

.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links li { margin: 0; }
.nav__links a {
  font-size: 15px; font-weight: 550; color: var(--slate); position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
/* the in-list CTA is the mobile-drawer copy; on desktop .nav__cta carries it */
.nav__links .btn { display: none; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px;
  background: #fff; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 17px; height: 1.8px; background: var(--navy);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .18s;
}
.nav__toggle span::before { transform: translateY(-5.5px); }
.nav__toggle span::after  { transform: translateY(3.7px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(0); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #10314A 0%, var(--navy) 46%, #0B2032 100%);
  color: var(--ice);
  padding: clamp(58px, 7vw, 96px) 0 clamp(66px, 8vw, 104px);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.hero__glow {
  position: absolute; width: 780px; height: 780px; right: -180px; top: -320px;
  background: radial-gradient(circle, rgba(59,168,181,.30) 0%, rgba(59,168,181,0) 66%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 62px); align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px; border-radius: 999px;
  background: rgba(59,168,181,.14); border: 1px solid rgba(59,168,181,.32);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--teal-mid);
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-mid);
  box-shadow: 0 0 0 4px rgba(59,168,181,.18);
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--teal-mid); }
.hero__lede { font-size: clamp(1.06rem, 1.55vw, 1.2rem); color: var(--ice); max-width: 54ch; margin-bottom: 30px; }
.hero__actions { margin-bottom: 30px; }
.hero__note {
  font-size: 13px; color: #94B6C4; display: flex; align-items: flex-start; gap: 9px;
  max-width: 48ch; line-height: 1.5;
}
.hero__note svg { flex: none; margin-top: 2px; }

/* device frame — mimics the 7" touch panel the app runs on */
.device {
  position: relative;
  border-radius: 20px;
  padding: 13px;
  background: linear-gradient(150deg, #2C4358 0%, #16293B 55%, #101F2E 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.10);
}
.device::after {
  content: ""; position: absolute; inset: 13px; border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  pointer-events: none;
}
.device img { border-radius: 9px; display: block; width: 100%; }
.device__label {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -13px;
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(13,123,138,.4);
}

/* ---------- proof strip ---------- */
.proof { background: var(--navy-deep); border-top: 1px solid rgba(207,231,236,.10); }
.proof__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: rgba(207,231,236,.11);
}
.proof__item { background: var(--navy-deep); padding: 26px 22px; }
.proof__val {
  font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; margin-bottom: 3px; line-height: 1.2;
}
.proof__val span { color: var(--teal-mid); }
.proof__label { font-size: 13px; color: #93B2BF; line-height: 1.45; }

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D6E1E8; }
.card h3 { font-size: 18.5px; margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card--dark {
  background: var(--navy-soft); border-color: rgba(207,231,236,.16); color: var(--ice);
}
.card--dark h3 { color: #fff; }

.icon-badge {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-pale); color: var(--teal); margin-bottom: 18px;
}
.icon-badge--green { background: var(--green-pale); color: var(--green); }
.icon-badge--amber { background: var(--amber-pale); color: var(--amber); }
.icon-badge--dark  { background: rgba(59,168,181,.16); color: var(--teal-mid); }

/* stat cards */
.stat { border-left: 3px solid var(--teal); padding: 4px 0 4px 20px; }
.stat__val {
  font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 700; color: var(--navy);
  letter-spacing: -.035em; line-height: 1.02; font-variant-numeric: tabular-nums;
  margin-bottom: 7px;
}
.stat__label { font-size: 14.5px; color: var(--gray); line-height: 1.48; }
.section--navy .stat { border-left-color: var(--teal-mid); }
.section--navy .stat__val { color: #fff; }
.section--navy .stat__label { color: #A9C6D1; }

/* ---------- problem callout ---------- */
.callout {
  border-radius: var(--radius-lg); padding: clamp(28px, 3.6vw, 44px);
  background: linear-gradient(135deg, var(--amber-pale) 0%, #FDF8EF 100%);
  border: 1px solid #F0DFC2;
}
.callout__quote {
  font-size: clamp(1.15rem, 2vw, 1.42rem); line-height: 1.46; color: var(--navy);
  font-weight: 600; letter-spacing: -.018em; margin-bottom: 16px;
}
.callout__src { font-size: 13.5px; color: var(--amber); font-weight: 600; margin: 0; }

/* ---------- device showcase (tabs) ---------- */
.shots__tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(207,231,236,.16); padding-bottom: 16px;
}
.shots__tab {
  border: 1px solid rgba(207,231,236,.22); background: transparent; color: #A9C6D1;
  padding: 9px 17px; border-radius: 999px; font-family: var(--font);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s var(--ease);
}
.shots__tab:hover { border-color: var(--teal-mid); color: #fff; }
.shots__tab[aria-selected="true"] { background: var(--teal); border-color: var(--teal); color: #fff; }
.shots__panel { display: none; }
.shots__panel.is-active { display: block; animation: fade .38s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.shots__layout {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px); align-items: center;
}
.shots__caption h3 { font-size: 21px; color: #fff; }
.shots__caption p { color: var(--ice); margin-bottom: 0; }
.shots__meta {
  list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px;
}
.shots__meta li {
  display: flex; gap: 11px; align-items: flex-start; margin: 0;
  font-size: 14.5px; color: #A9C6D1; line-height: 1.5;
}
.shots__meta svg { flex: none; margin-top: 4px; color: var(--teal-mid); }

/* ---------- VEI figure ---------- */
.vei-figure {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
}
.vei-figure figcaption {
  font-size: 13.5px; color: var(--gray); margin-top: 16px; padding-top: 15px;
  border-top: 1px solid var(--line-soft); line-height: 1.55;
}
.vei-formula {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--navy); color: #fff; border-radius: 11px; padding: 13px 20px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em; margin-bottom: 22px;
}
.vei-formula .op { color: var(--teal-mid); }

/* ---------- list with checks ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; margin: 0; line-height: 1.55; }
.check-list svg { flex: none; margin-top: 4px; color: var(--green); }
.section--navy .check-list svg { color: var(--teal-mid); }

/* ---------- evidence ---------- */
.evidence { display: grid; gap: 22px; }
.evidence__item {
  display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 26px;
  padding: 26px 0; border-top: 1px solid var(--line); align-items: start;
}
.evidence__item:last-child { border-bottom: 1px solid var(--line); }
.evidence__src { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.evidence__src span { display: block; font-weight: 500; color: var(--gray-light); font-size: 12.5px; margin-top: 4px; }
.evidence__body p:last-child { margin-bottom: 0; }
.evidence__body .pull {
  font-size: 19px; font-weight: 650; color: var(--navy); letter-spacing: -.018em;
  line-height: 1.4; margin-bottom: 8px;
}

/* ---------- timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, rgba(59,168,181,.22) 100%);
}
.timeline li { position: relative; padding: 0 0 26px 34px; margin: 0; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; border: 3px solid var(--teal);
}
.timeline li.is-next::before { border-color: var(--gray-light); background: #fff; }
.timeline__date {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 3px;
}
.timeline li.is-next .timeline__date { color: var(--gray-light); }
.timeline__what { font-size: 15.5px; color: var(--slate); }
.section--navy .timeline li::before { background: var(--navy); }
.section--navy .timeline__what { color: var(--ice); }
.section--navy .timeline__date { color: var(--teal-mid); }

/* ---------- team ---------- */
.founder { text-align: center; }
.founder__avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal) 0%, var(--navy-soft) 100%);
  color: #fff; font-size: 25px; font-weight: 700; letter-spacing: .02em;
}
.founder h3 { font-size: 18px; margin-bottom: 3px; }
.founder__role { font-size: 14px; color: var(--teal); font-weight: 600; margin: 0; }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
thead th {
  text-align: left; padding: 15px 20px; background: var(--bg-alt);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal);
  font-weight: 700; border-bottom: 1px solid var(--line); white-space: nowrap;
}
tbody td { padding: 15px 20px; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: var(--slate); }
tbody tr:last-child td { border-bottom: 0; }
tbody th {
  padding: 15px 20px; border-bottom: 1px solid var(--line-soft);
  text-align: left; font-weight: 650; color: var(--navy); white-space: nowrap;
}
tbody tr:last-child th { border-bottom: 0; }
.table-mm { background: var(--teal-xlt); }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(150deg, var(--teal) 0%, #0B6472 55%, var(--navy) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 62px);
  text-align: center; box-shadow: var(--shadow-md);
}
.cta h2 { color: #fff; }
.cta p { color: #D6EDF1; max-width: 58ch; margin-inline: auto; }
.cta .btn-row { justify-content: center; margin-top: 28px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: #93B2BF; padding: 60px 0 34px; font-size: 14.5px; }
.site-footer a { color: var(--ice); }
.site-footer a:hover { color: var(--teal-mid); }
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(207,231,236,.14);
}
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand .brand:hover { color: #fff; }
.footer__brand .brand__sub { color: var(--teal-mid); }
.footer__brand p { max-width: 40ch; margin-bottom: 0; }
.footer__col h4 {
  font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--teal-mid);
  margin-bottom: 15px; font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__legal { padding-top: 26px; font-size: 12.8px; line-height: 1.65; color: #7C9AA8; }
.footer__legal p { margin-bottom: .8em; }
.footer__legal p:last-child { margin-bottom: 0; }
.footer__notice {
  border: 1px solid rgba(197,106,6,.5); background: rgba(197,106,6,.12);
  color: #F0C88A; border-radius: 10px; padding: 13px 18px; margin-bottom: 20px;
  font-size: 13px; font-weight: 550; letter-spacing: .005em;
}

/* ---------- reveal animation ----------
   Content is visible by default. Only once site.js has confirmed it can drive
   the animation does it add .js-reveal to <html> and take the content away —
   so a blocked script, a stalled observer or a bfcache restore can never leave
   the page blank. */
.js-reveal .reveal { opacity: 0; transform: translateY(18px); }
.js-reveal .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

/* ==========================================================================
   Investors page (unlisted)
   ========================================================================== */
.conf-bar {
  background: var(--navy-deep); color: var(--ice); font-size: 13px;
  padding: 11px 0; border-bottom: 1px solid rgba(207,231,236,.16);
}
.conf-bar__inner { display: flex; align-items: center; gap: 11px; justify-content: center; text-align: center; }
.conf-bar svg { flex: none; color: var(--teal-mid); }

.dl-card {
  display: flex; gap: 20px; align-items: center; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: all .25s var(--ease);
}
.dl-card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dl-card__icon {
  width: 52px; height: 52px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--teal-pale); color: var(--teal);
}
.dl-card__icon--alt { background: var(--amber-pale); color: var(--amber); }
.dl-card__body { flex: 1; min-width: 0; }
.dl-card__title { font-size: 16.5px; font-weight: 650; color: var(--navy); margin-bottom: 3px; }
.dl-card__meta { font-size: 13.5px; color: var(--gray-light); margin: 0; }
.dl-card__cta { color: var(--teal); font-weight: 600; font-size: 14.5px; white-space: nowrap; display: flex; align-items: center; gap: 7px; }

.use-of-funds { display: grid; gap: 2px; border-radius: var(--radius); overflow: hidden; }
.uof-row {
  display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 20px;
  background: var(--bg-alt); padding: 20px 24px; align-items: center;
}
.uof-row__amt { font-size: 20px; font-weight: 700; color: var(--teal); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.uof-row__what { font-size: 15px; color: var(--slate); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__actions { margin-bottom: 24px; }
  .split, .split--text-right, .shots__layout { grid-template-columns: 1fr; }
  .split .device, .shots__layout .device { order: -1; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 74px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 8px 26px 20px;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s var(--ease), visibility .3s;
  }
  .nav__links.is-open { max-height: 460px; visibility: visible; }
  .nav__links a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .nav__links a::after { display: none; }
  .nav__cta .btn { display: none; }
  .nav__links .btn { display: inline-flex; margin-top: 14px; width: 100%; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .evidence__item { grid-template-columns: 1fr; gap: 10px; }
  .uof-row { grid-template-columns: 1fr; gap: 6px; }
  .dl-card { flex-wrap: wrap; }
  .card { padding: 24px; }
  .hero__note { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav__toggle, .cta, .hero__actions { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .section--navy, .hero { background: #fff !important; color: #000 !important; }
  .section--navy h2, .section--navy h3, .hero h1 { color: #000 !important; }
}
