/* ============================================================
   Prio Health AI — company site
   Design tokens sampled 1:1 from brand mockup
   ============================================================ */
:root {
  /* brand */
  --blue: #0E5CFF;            /* primary action */
  --blue-hover: #2D74FF;
  --logo-blue: #0879F0;       /* HEALTH AI wordmark */
  --grad-a: #0156F9;          /* mark gradient */
  --grad-b: #03C0FD;
  --sky: #2E9FDB;             /* eyebrow cyan-blue */
  --h1-accent: #3D8BE4;       /* "matter most." */

  /* dark surfaces */
  --navy-page: #010C1E;
  --navy-nav: #000B1C;
  --navy-card: #0A1727;
  --navy-panel: #0C1930;
  --navy-frame: #050F1F;
  --line-dark: rgba(148, 178, 226, 0.10);
  --line-dark-strong: rgba(148, 178, 226, 0.16);

  /* dark text */
  --text-hi: #F4F7FC;
  --text-mid: #A9B7CC;
  --text-low: #7C8CA6;

  /* light surfaces */
  --paper: #F7F8FC;
  --card-light: #FBFCFE;
  --chip: #F3F7FF;
  --chip-line: #E2EAF8;
  --tile-icon-bg: #EAF1FC;

  /* light text */
  --ink: #0A1C33;
  --ink-mid: #55657D;
  --ink-logo-gray: #3E4C63;

  /* clinical signal colors (ESI) */
  --esi1: #E23A2E;
  --esi2: #EA6A1F;
  --esi3: #F5A623;
  --esi4: #7CB342;
  --esi5: #2F6BE5;
  --crit: #E8493D;
  --warn: #F5A623;
  --lime: #A8C24C;
  --green: #37C978;

  --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-wordmark: 'Jost', 'Century Gothic', sans-serif;

  --radius: 12px;
  --container: 1264px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.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;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy-page);
  color: var(--text-hi);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 15px/1 var(--font);
  border-radius: 10px;
  padding: 12px 20px;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-lg { padding: 13px 17px; font-size: 15px; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(14, 92, 255, 0.55);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(14, 92, 255, 0.65);
}
.btn-primary .icon-arrow { transition: transform .18s ease; }
.btn-primary:hover .icon-arrow { transform: translateX(3px); }
.btn-ghost {
  border: 1px solid rgba(190, 208, 238, 0.28);
  color: var(--text-hi);
  padding: 11px 22px;
}
.btn-ghost:hover { border-color: rgba(190, 208, 238, 0.55); background: rgba(148, 178, 226, 0.06); }
.btn-outline {
  border: 1px solid rgba(190, 208, 238, 0.26);
  color: var(--text-hi);
}
.btn-outline:hover { border-color: rgba(190, 208, 238, 0.5); background: rgba(148, 178, 226, 0.06); }
.icon-arrow { width: 15px; height: 15px; }
.icon-play { width: 21px; height: 21px; }
.caret { width: 9px; height: 6px; opacity: .75; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font: 600 15px/1 var(--font);
  transition: gap .18s ease;
}
.link-arrow:hover { gap: 12px; }

/* ============================== NAV ============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-nav);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled {
  background: rgba(0, 11, 28, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(148, 178, 226, 0.09), 0 12px 32px -18px rgba(0, 0, 0, 0.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand-mark { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-prio {
  font: 500 21px/1 var(--font-wordmark);
  letter-spacing: .34em;
  color: #FCFCFD;
}
.brand-sub {
  font: 600 9px/1 var(--font-wordmark);
  letter-spacing: .43em;
  color: var(--logo-blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 500 15px/1 var(--font);
  color: var(--text-hi);
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #4D8EF7; }
.nav-links a:not(.active):hover { color: #C7D6EE; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  padding: 32px 0 20px;
  overflow: visible;
}
.hero-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(52% 46% at 78% 68%, rgba(8, 62, 140, 0.42) 0%, rgba(8, 62, 140, 0) 100%),
    radial-gradient(40% 34% at 12% 96%, rgba(4, 92, 190, 0.30) 0%, rgba(4, 92, 190, 0) 100%),
    radial-gradient(38% 30% at 50% 0%, rgba(2, 32, 74, 0.55) 0%, rgba(2, 32, 74, 0) 100%);
}
.hero-glow::after {
  /* faint sweeping arc, echoing the mockup's wave */
  content: "";
  position: absolute;
  left: -12%;
  bottom: -58%;
  width: 124%;
  height: 90%;
  border-radius: 50%;
  border-top: 1px solid rgba(64, 140, 240, 0.16);
  box-shadow: 0 -40px 120px -30px rgba(20, 92, 210, 0.28);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 385px 218px 1fr;
  gap: 14px;
  align-items: start;
}

.hero-copy { padding-top: 14px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 13px/1 var(--font);
  letter-spacing: .1em;
  color: var(--sky);
  margin-bottom: 22px;
}
.eyebrow-bar {
  width: 3px;
  height: 15px;
  border-radius: 2px;
  background: var(--sky);
  flex: none;
}
h1 {
  font: 600 clamp(38px, 4.1vw, 52px)/1.13 var(--font);
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
h1 .accent { color: var(--h1-accent); }
.hero-sub {
  font: 400 17px/1.62 var(--font);
  color: var(--text-mid);
  max-width: 44ch;
  margin-bottom: 34px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }

/* feature column */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 22px;
}
.feature { display: flex; gap: 15px; align-items: flex-start; }
.feature-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #4D9EF8;
  background: linear-gradient(160deg, rgba(24, 84, 190, 0.22), rgba(10, 36, 82, 0.30));
  border: 1px solid rgba(77, 158, 248, 0.22);
  box-shadow: inset 0 1px 0 rgba(148, 198, 255, 0.10);
  transition: transform .2s ease, border-color .2s ease;
}
.feature:hover .feature-icon { transform: translateY(-2px); border-color: rgba(77, 158, 248, 0.45); }
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font: 600 15px/1.3 var(--font); color: var(--text-hi); margin-bottom: 7px; white-space: nowrap; }
.feature p { font: 400 12.5px/1.55 var(--font); color: var(--text-mid); max-width: 26ch; }

/* ---------- hero visual ---------- */
.hero-visual { position: relative; min-height: 480px; min-width: 0; }
.dash-wrap {
  position: relative;
  perspective: 2200px;
  z-index: 1;
}
.dash {
  width: 460px;
  margin-left: -14px;
  background: linear-gradient(180deg, #0B1526 0%, var(--navy-frame) 100%);
  border: 1px solid var(--line-dark-strong);
  border-radius: 16px;
  padding: 12px 10px 14px;
  transform: rotateY(-5deg) rotateX(3deg) rotateZ(-0.4deg);
  transform-origin: 82% 40%;
  box-shadow:
    0 60px 90px -40px rgba(0, 0, 0, 0.75),
    0 24px 48px -24px rgba(1, 20, 52, 0.8),
    inset 0 1px 0 rgba(180, 205, 240, 0.07);
  font-size: 11px;
}
.dash-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 6px 10px;
}
.dash-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 600 15px/1 var(--font);
  color: #fff;
  width: 108px;
  flex: none;
}
.acuity-mark { width: 17px; height: 17px; }
.dash-title { font: 600 13.5px/1 var(--font); color: var(--text-hi); margin-right: auto; }
.dash-user {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-mid);
  font: 500 10px/1 var(--font);
  white-space: nowrap;
}
.dash-user .caret { width: 7px; }
.dash-user-role { color: var(--text-low); }
.dash-user-name { color: var(--text-hi); font-weight: 600; }
.dash-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 8.5px/1 var(--font);
  color: #fff;
  background: linear-gradient(140deg, #E08D4F, #B45A6E);
}
.dash-body { display: flex; gap: 8px; }

/* sidebar */
.dash-side {
  flex: none;
  width: 108px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.side-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font: 500 10px/1 var(--font);
  white-space: nowrap;
  color: var(--text-low);
  cursor: default;
}
.side-item svg { width: 13px; height: 13px; flex: none; }
.side-item.active {
  background: rgba(23, 84, 220, 0.20);
  color: #4D8EF7;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(64, 128, 240, 0.22);
}

/* main area */
.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 8px 7px 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.stat-label { font: 500 8.6px/1.2 var(--font); color: var(--text-mid); white-space: nowrap; }
.stat-label.crit { color: var(--crit); }
.stat-num { font: 700 20px/1 var(--font); color: #fff; letter-spacing: -0.01em; white-space: nowrap; }
.stat-num small { font-size: 10px; font-weight: 600; color: var(--text-hi); }
.stat-num.crit { color: var(--crit); }
.stat-delta { font: 500 7px/1.2 var(--font); color: var(--green); white-space: nowrap; }
.stat-delta.muted { color: var(--text-low); }

/* panels */
.panel-row { display: grid; grid-template-columns: 52% 1fr; gap: 8px; }
.panel-row.row-2 { grid-template-columns: 41% 1fr; }
.panel {
  background: var(--navy-card);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 10px 11px 11px;
  min-width: 0;
  overflow: hidden;
}
.panel .panel-h { font: 600 10.5px/1 var(--font); color: var(--text-hi); margin-bottom: 9px; white-space: nowrap; }

.triage-flex { display: flex; align-items: center; gap: 9px; }
.donut-wrap { position: relative; width: 76px; height: 76px; flex: none; }
.donut { width: 100%; height: 100%; }
.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1px;
}
.donut-center strong { font: 700 17px/1 var(--font); color: #fff; }
.donut-center span { font: 500 7.5px/1 var(--font); color: var(--text-mid); }

.esi-legend { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.esi-legend li { display: flex; align-items: center; gap: 5px; font: 500 8.6px/1 var(--font); white-space: nowrap; }
.esi-legend i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.esi-legend span { color: var(--text-hi); }
.esi-legend em { font-style: normal; color: var(--text-mid); margin-left: auto; font-size: 8.2px; }

.activity-list { display: flex; flex-direction: column; padding-right: 6px; }
.activity-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6.5px 0;
  border-bottom: 1px solid rgba(148, 178, 226, 0.07);
  font: 500 8.8px/1 var(--font);
  white-space: nowrap;
}
.activity-list li:last-child { border-bottom: 0; }
.act-time { color: var(--text-low); flex: none; width: 34px; font-size: 8.2px; }
.act-name { color: var(--text-hi); }
.act-esi { margin-left: auto; font-weight: 700; }
.view-all {
  display: block;
  cursor: default;
  text-align: right;
  font: 600 9.5px/1 var(--font);
  color: #4D8EF7;
  margin-top: 6px;
  margin-right: 6px;
}

.alert-list { display: flex; flex-direction: column; gap: 9px; }
.alert-list li { display: flex; align-items: center; gap: 4px; font: 500 7.8px/1 var(--font); letter-spacing: -0.01em; white-space: nowrap; }
.alert-list .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex: none;
  box-sizing: border-box;
}
.alert-list span { color: var(--text-hi); }
.alert-list em { font-style: normal; color: var(--text-low); margin-left: auto; padding-left: 3px; font-size: 7.2px; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 73, 61, 0.35); }
  50% { box-shadow: 0 0 0 3.5px rgba(232, 73, 61, 0.0); }
}
.dot.pulse { animation: pulse-dot 2.2s ease-out infinite; }

.action-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.action-tile {
  border: 1px solid rgba(148, 178, 226, 0.13);
  background: rgba(10, 23, 39, 0.5);
  border-radius: 9px;
  padding: 10px 3px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.action-tile strong { font: 700 18px/1 var(--font); }
.action-tile span { font: 600 7px/1.2 var(--font); letter-spacing: -0.01em; white-space: nowrap; }

/* ---------- phone ---------- */
.phone-wrap {
  position: absolute;
  right: -48px;
  top: 92px;
  z-index: 2;
}
.phone {
  width: 168px;
  background: #05080F;
  border-radius: 28px;
  padding: 7px;
  transform: rotate(1.6deg);
  box-shadow:
    0 50px 80px -30px rgba(0, 0, 0, 0.85),
    0 18px 40px -18px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1.5px rgba(150, 175, 210, 0.16);
}
.phone-screen {
  background: linear-gradient(180deg, #0A1B31 0%, #081727 100%);
  border-radius: 22px;
  padding: 8px 10px 11px;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 600 8.5px/1 var(--font);
  color: var(--text-hi);
  padding: 2px 2px 7px;
}
.status-icons { display: inline-flex; gap: 3.5px; align-items: center; }
.status-icons svg { height: 8px; width: auto; color: var(--text-hi); }
.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.phone-head .dash-brand { width: auto; font-size: 12.5px; }
.phone-head .acuity-mark { width: 14px; height: 14px; }
.phone-menu { width: 13px; color: #4D8EF7; }
.phone-title { font: 700 14.5px/1.22 var(--font); color: #fff; margin-bottom: 6px; }
.phone-sub { font: 400 8.6px/1.45 var(--font); color: var(--text-mid); margin-bottom: 8px; }
.phone-progress { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.progress-track { flex: 1; display: flex; align-items: center; gap: 2px; }
.p-seg { height: 2.5px; flex: 1; background: rgba(148, 178, 226, 0.18); border-radius: 2px; }
.p-seg.fill { background: var(--blue); }
.p-node { width: 5px; height: 5px; border-radius: 50%; background: rgba(148, 178, 226, 0.18); flex: none; }
.p-node.fill { background: var(--blue); }
.progress-label { font: 500 7.8px/1 var(--font); color: var(--text-mid); }
.phone-q { font: 600 10.5px/1.3 var(--font); color: #fff; margin-bottom: 7px; }
.phone-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(9, 20, 36, 0.9);
  border: 1px solid rgba(148, 178, 226, 0.14);
  border-radius: 8px;
  padding: 6px 8px;
  font: 400 8.8px/1 var(--font);
  color: var(--text-low);
  margin-bottom: 9px;
}
.phone-search svg { width: 10px; height: 10px; flex: none; }
.phone-label { font: 600 8.8px/1 var(--font); color: #4D8EF7; margin-bottom: 6px; }
.complaint-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.complaint-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 27, 46, 0.85);
  border: 1px solid rgba(148, 178, 226, 0.10);
  border-radius: 8px;
  padding: 5.5px 8px;
  font: 500 8.6px/1 var(--font);
  color: var(--text-hi);
  white-space: nowrap;
  transition: border-color .15s ease, background .15s ease;
}
.complaint-list li:hover { border-color: rgba(77, 158, 248, 0.4); background: rgba(16, 33, 56, 0.9); }
.c-icon { display: grid; place-items: center; flex: none; }
.c-icon svg { width: 12px; height: 12px; }
.complaint-list .chev { width: 5px; margin-left: auto; color: var(--text-low); flex: none; }
.phone-next {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 9px;
  padding: 7.5px 0;
  font: 600 10px/1 var(--font);
  cursor: default;
  box-sizing: border-box;
  margin-bottom: 8px;
  transition: background .15s ease;
}
.phone-next:hover { background: var(--blue-hover); }
.phone-next .icon-arrow { width: 11px; height: 11px; }
.phone-badges {
  display: flex;
  justify-content: center;
  gap: 11px;
  font: 600 7.4px/1 var(--font);
  color: #4D8EF7;
}
.phone-badges span { display: inline-flex; align-items: center; gap: 3.5px; }
.phone-badges svg { height: 8.5px; width: auto; }

/* ============================== TRUSTED ============================== */
.trusted {
  background: var(--paper);
  padding: 44px 0 40px;
  position: relative;
  z-index: 0;
}
.trusted-title {
  text-align: center;
  font: 600 16px/1.4 var(--font);
  color: var(--ink);
  margin-bottom: 30px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px 58px;
  flex-wrap: wrap;
}
.hlogo {
  color: #37455F;
  transition: color .2s ease;
  display: block;
}
.hlogo:hover { color: #24334D; }
.hlogo-svg { height: 34px; width: auto; display: block; }

/* ============================== FLAGSHIP ============================== */
.flagship { background: var(--paper); padding: 14px 0 30px; }
.flagship-card {
  background: var(--card-light);
  border: 1px solid #EBEFF6;
  border-radius: 20px;
  box-shadow: 0 24px 60px -36px rgba(23, 46, 92, 0.16);
  padding: 30px 22px 30px 30px;
  display: grid;
  grid-template-columns: minmax(250px, 286px) 1fr minmax(240px, 300px);
  gap: 22px;
  align-items: center;
}
.eyebrow-light {
  font: 700 12.5px/1 var(--font);
  letter-spacing: .09em;
  color: var(--blue);
  margin-bottom: 14px;
}
.flagship-copy h2 {
  font: 700 38px/1.1 var(--font);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.accent-strong { color: #126DFB; }
.flagship-tag {
  font: 600 16.5px/1.35 var(--font);
  color: var(--ink);
  margin-bottom: 14px;
}
.flagship-body {
  font: 400 14.5px/1.65 var(--font);
  color: var(--ink-mid);
  margin-bottom: 22px;
}
.flagship-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-left: 1px solid #E8EDF5;
  padding-left: 18px;
  min-width: 0;
}
.ftile { text-align: center; min-width: 0; }
.ftile-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--tile-icon-bg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ftile:hover .ftile-icon {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(14, 92, 255, 0.35);
}
.ftile-icon svg { width: 26px; height: 26px; }
.ftile h3 { font: 700 13px/1.3 var(--font); letter-spacing: -0.015em; color: var(--ink); margin-bottom: 7px; white-space: nowrap; }
.ftile p { font: 400 12.5px/1.5 var(--font); color: var(--ink-mid); }
.flagship-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px -24px rgba(23, 46, 92, 0.35);
  aspect-ratio: 2 / 1;
  align-self: center;
}
.flagship-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================== BANNER ============================== */
.banner { background: var(--paper); padding: 12px 0 72px; }
.banner-chip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--chip);
  border: 1px solid var(--chip-line);
  border-radius: 16px;
  padding: 20px 28px;
}
.banner-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, #2D74FF, var(--blue));
  box-shadow: 0 10px 22px -10px rgba(14, 92, 255, 0.55);
}
.banner-icon svg { width: 24px; height: 24px; }
.banner-copy { display: flex; flex-direction: column; gap: 4px; margin-right: auto; }
.banner-copy strong { font: 700 16px/1.35 var(--font); color: var(--ink); }
.banner-copy span { font: 400 14.5px/1.5 var(--font); color: var(--ink-mid); }
.banner .link-arrow { flex: none; }

/* ============================== FOOTER ============================== */
.footer {
  background: var(--navy-nav);
  border-top: 1px solid rgba(148, 178, 226, 0.08);
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}
.footer-logo { width: 250px; height: auto; }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-cols h4 {
  font: 700 12px/1 var(--font);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 16px;
}
.footer-cols div { display: flex; flex-direction: column; }
.footer-cols a {
  font: 500 14px/1 var(--font);
  color: var(--text-mid);
  padding: 7px 0;
  transition: color .15s ease;
}
.footer-cols a:hover { color: var(--text-hi); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(148, 178, 226, 0.08);
  padding-top: 22px;
  padding-bottom: 26px;
  font: 400 13px/1 var(--font);
  color: var(--text-low);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-low); transition: color .15s ease; }
.footer-links a:hover { color: var(--text-mid); }

/* ============================== MOTION ============================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal-visual {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .9s cubic-bezier(.2, .6, .2, 1), transform .9s cubic-bezier(.2, .6, .2, 1);
  transition-delay: .2s;
}
.reveal-visual.dv { transition-delay: .42s; }
.reveal-visual.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-visual { opacity: 1; transform: none; transition: none; }
  .dot.pulse { animation: none; }
  .donut .seg { transition: none; }
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1290px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 17px; }
}
@media (max-width: 1220px) {
  .hero-grid { grid-template-columns: minmax(380px, 1fr) minmax(200px, 230px); }
  .hero-visual {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .dash { margin-left: 0; }
  .phone-wrap {
    position: relative;
    right: auto;
    top: auto;
    margin: 64px 0 0 -70px;
  }
}
@media (max-width: 1160px) {
  .flagship-card { grid-template-columns: 1fr; gap: 30px; }
  .flagship-tiles { border-left: 0; padding-left: 0; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .flagship-photo { max-width: 480px; }
}
@media (max-width: 1140px) {
  .nav-links { display: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-wrap: wrap; }
  .hero-features { flex-direction: row; gap: 24px; padding-top: 4px; }
  .feature { flex-direction: column; }
  .feature h3 { white-space: normal; }
  .flagship-tiles { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ftile h3 { white-space: normal; }
}
@media (max-width: 760px) {
  .hero { padding-top: 28px; }
  .hero-features { flex-direction: column; }
  .feature { flex-direction: row; }
  .banner-chip { flex-direction: column; align-items: flex-start; }
  .banner-copy { margin-right: 0; }
  .dash { transform: none; }
  .hero-visual { display: block; }
  .dash-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .phone-wrap { position: static; margin: 28px auto 0; display: flex; justify-content: center; }
  .phone { transform: none; }
  .nav-actions .btn-ghost { display: none; }
  .footer-cols { gap: 40px; }
}
