/* WeCura — matched to reference design */

:root {
  /* Brand — matches WeCura mobile app */
  --brand: #427196;
  --brand-deep: #2F5470;
  --brand-light: #6B93B5;
  --brand-soft: #E8EEF4;
  --brand-soft-2: #D7E2EB;

  --ink: #182B38;
  --paper: #F7F9FA;
  --white: #FFFFFF;
  --teal: var(--brand);
  --teal-deep: var(--brand-deep);
  --teal-light: var(--brand-light);
  --teal-soft: var(--brand-soft);
  --teal-soft-2: var(--brand-soft-2);
  --coral: #FF6B4A;
  --coral-deep: #E5502F;
  --muted: #6B7C88;
  --line: rgba(24, 43, 56, 0.1);
  --surface: #EEF2F5;
  --green: #2A9D7A;
  --violet: #7B6CA8;
  --blue-soft: #E4EDF4;
  --coral-soft: #FFE8E2;
  --green-soft: #E5F5EF;
  --violet-soft: #EEEAF6;
  --gold: #E8B84A;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.9, 0.28, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(24, 43, 56, 0.04),
    0 12px 32px -16px rgba(24, 43, 56, 0.18),
    0 28px 64px -28px rgba(66, 113, 150, 0.18);
  --shadow-float:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 24px -12px rgba(24, 43, 56, 0.16),
    0 20px 48px -24px rgba(66, 113, 150, 0.2);
  --shadow-phone:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 48px -20px rgba(12, 30, 40, 0.35),
    0 48px 96px -32px rgba(66, 113, 150, 0.35);
  --shadow-glow: 0 0 60px -10px rgba(66, 113, 150, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; }
::selection { background: var(--brand); color: #fff; }
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.wrap {
  width: min(100% - 64px, var(--wrap));
  margin-inline: auto;
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 40px, var(--wrap)); }
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 85% 5%, rgba(255, 107, 74, 0.1), transparent 55%),
    radial-gradient(800px 480px at 10% 20%, rgba(66, 113, 150, 0.14), transparent 50%),
    radial-gradient(600px 400px at 70% 80%, rgba(66, 113, 150, 0.08), transparent 50%),
    var(--paper);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 249, 250, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 249, 250, 0.88);
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  width: min(100% - 64px, var(--wrap));
  margin-inline: auto;
}
@media (max-width: 680px) {
  .site-nav { width: min(100% - 40px, var(--wrap)); }
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
}
.logo-img--on-light { display: block; }
.logo-img--on-dark { display: none; }
/* Dark UI surfaces (or OS dark preference when landing inherits dark class). */
.dark .logo-img--on-light,
html.dark .logo-img--on-light {
  display: none;
}
.dark .logo-img--on-dark,
html.dark .logo-img--on-dark {
  display: block;
}
@media (max-width: 680px) {
  .logo-img {
    height: 30px;
    max-width: 140px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  min-width: 0;
}
.nav-links > a:not(.nav-cta) {
  white-space: nowrap;
  line-height: 1.2;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 10px 24px -10px rgba(255, 107, 74, 0.55);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.nav-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
}
@media (max-width: 920px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 32px 28px;
    background: rgba(247, 249, 250, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.is-open { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(255, 107, 74, 0.55);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(255, 107, 74, 0.6);
}
.btn-ghost {
  background: var(--white);
  border-color: rgba(66, 113, 150, 0.28);
  color: var(--teal-deep);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.btn-ghost:hover {
  background: var(--brand-soft);
  border-color: var(--teal);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -12px rgba(66, 113, 150, 0.35);
}
.btn-secondary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(66, 113, 150, 0.55);
}
.btn-secondary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(66, 113, 150, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--coral);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease);
}
.text-link:hover { gap: 10px; }

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.label--coral { color: var(--coral); }
.label--teal { color: var(--teal); }
.label--light { color: var(--teal); }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.18);
}
.hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 9.5ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  font-size: 0.92em;
}
.hero .lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.metric {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.metric-icon--coral { background: var(--coral-soft); color: var(--coral); }
.metric-icon--blue { background: var(--blue-soft); color: var(--teal); }
.metric-icon--green { background: var(--green-soft); color: var(--green); }
.metric-icon--violet { background: var(--violet-soft); color: var(--violet); }
.metric strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.metric span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-lines {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(66, 113, 150, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-lines::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 107, 74, 0.12);
  border-radius: 50%;
}

.map-card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88)),
    var(--white);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border: 1px solid rgba(66, 113, 150, 0.1);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), transparent 40%);
  pointer-events: none;
}
.map-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.doctor-chip {
  display: flex;
  gap: 12px;
  align-items: center;
}
.doctor-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B93B5, #427196);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.doctor-photo.sm { width: 34px; height: 34px; font-size: 0.7rem; }
.doctor-photo.warm { background: linear-gradient(135deg, #FF8A6E, #FFB39F); color: #fff; }
.confirmed {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2px;
}
.doctor-chip strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}
.doctor-chip span {
  font-size: 0.75rem;
  color: var(--muted);
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.map-canvas {
  position: relative;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
}
.map-canvas svg { width: 100%; height: 100%; display: block; }
.eta-bubble {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  box-shadow: var(--shadow-float);
}

.map-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 4px;
}
.map-card-meta small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 3px;
}
.map-card-meta strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  animation: floatSoft 6s ease-in-out infinite;
}
.float-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
}
.float-card span {
  font-size: 0.7rem;
  color: var(--muted);
}
.float-card .stars {
  color: var(--gold);
  letter-spacing: 1px;
}
.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon--coral { background: var(--coral-soft); color: var(--coral); }
.float-icon--blue { background: var(--blue-soft); color: var(--teal); }
.float-icon--green { background: var(--green-soft); color: var(--green); }
.float-icon--gold { background: #FFF4D9; color: var(--gold); }
.float-card--tl { top: 6%; left: 0; animation-delay: 0s; }
.float-card--bl { bottom: 14%; left: -2%; animation-delay: -1.5s; }
.float-card--tr { top: 10%; right: 0; animation-delay: -0.8s; }
.float-card--br { bottom: 10%; right: -2%; animation-delay: -2.2s; }
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .float-card { display: none; }
  .orbit-lines { display: none; }
  .hero-visual { min-height: 0; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { max-width: none; }
  .metrics { grid-template-columns: 1fr 1fr; }
}

/* ---------- Split how + patients ---------- */
.section { padding: 72px 0; }
.section-split { padding-top: 20px; }

.surface { background: var(--brand-soft); }
.split-band {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 24px;
  background: var(--brand-soft);
  border-radius: 32px;
  padding: 28px;
}
.how-panel,
.patients-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 30px -20px rgba(24, 43, 56, 0.2);
}
.how-panel h2,
.patients-panel h2,
.experience-copy h2,
.section-head h2,
.platform h2,
.download h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 12px;
}
.how-panel h2 { margin-bottom: 28px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(24, 43, 56, 0.12);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -12px rgba(24, 43, 56, 0.25);
}
.step-icon--coral { color: var(--coral); background: var(--coral-soft); border-color: transparent; }
.step-icon--blue { color: var(--teal); background: var(--blue-soft); border-color: transparent; }
.step-icon--green { color: var(--green); background: var(--green-soft); border-color: transparent; }
.step-icon--violet { color: var(--violet); background: var(--violet-soft); border-color: transparent; }
.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.patients-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.patients-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 34ch;
}

.phone {
  width: 248px;
  aspect-ratio: 9 / 19.2;
  background: linear-gradient(160deg, #1a2330, #0d1218);
  border-radius: 38px;
  padding: 11px;
  box-shadow: var(--shadow-phone);
  animation: phoneFloat 6s ease-in-out infinite;
  position: relative;
}
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  pointer-events: none;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.phone-frame {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFB, #EEF2F5);
  position: relative;
}
.phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #111827;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  padding: 36px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.68rem;
  color: var(--ink);
}
.app-greet span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
}
.app-greet strong {
  display: block;
  font-size: 0.88rem;
  margin-top: 2px;
}
.app-next {
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid var(--line);
}
.app-next small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.app-next-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.app-next-row strong { display: block; font-size: 0.72rem; }
.app-next-row span { color: var(--muted); font-size: 0.6rem; }
.app-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.app-actions span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.62rem;
}
.app-nearby {
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  margin-top: auto;
}
.app-nearby small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.app-pro {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.app-pro:last-child { margin-bottom: 0; }
.app-pro strong { display: block; font-size: 0.7rem; }
.app-pro span { color: var(--muted); font-size: 0.58rem; }

@media (max-width: 1100px) {
  .split-band { grid-template-columns: 1fr; }
  .patients-panel { grid-template-columns: 1fr; }
  .phone { margin-inline: auto; }
}
@media (max-width: 800px) {
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
}
@media (max-width: 520px) {
  .steps-row { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
}

/* ---------- Professionals ---------- */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.experience-copy p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 20px;
}
.checks { display: flex; flex-direction: column; gap: 12px; }
.checks li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.3 2.3 4.7-4.8' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.dash {
  background: linear-gradient(160deg, var(--teal-soft) 0%, var(--white) 55%, var(--teal-soft-2) 100%);
  color: var(--ink);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(66, 113, 150, 0.12);
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.avail i {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  position: relative;
  display: inline-block;
}
.avail i::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-tile {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(66, 113, 150, 0.12);
  border-radius: 14px;
  padding: 14px;
}
.dash-tile.wide { grid-column: 1 / -1; }
.dash-tile small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.dash-tile b { font-size: 1.15rem; color: var(--ink); }
.radius-viz {
  height: 70px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 80%, rgba(255,107,74,0.28), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(66,113,150,0.2), transparent 68%),
    var(--teal-soft);
  position: relative;
}
.radius-viz::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255,107,74,0.25);
}
.req {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(66, 113, 150, 0.1);
  font-size: 0.8rem;
  color: var(--ink);
}
.req:first-of-type { border-top: 0; padding-top: 0; }

@media (max-width: 900px) {
  .experience { grid-template-columns: 1fr; }
}

/* ---------- Features ---------- */
.section-head { max-width: 560px; margin-bottom: 40px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon--coral { background: var(--coral-soft); color: var(--coral); }
.feature-icon--blue { background: var(--blue-soft); color: var(--teal); }
.feature-icon--green { background: var(--green-soft); color: var(--green); }
.feature-icon--violet { background: var(--violet-soft); color: var(--violet); }
.feature h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Section rhythm ---------- */
.section { padding: 72px 0; }
.section--soft {
  background: linear-gradient(180deg, transparent, rgba(66, 113, 150, 0.05), transparent);
}
.section--brand {
  background:
    radial-gradient(700px 320px at 80% 20%, rgba(255, 107, 74, 0.08), transparent 55%),
    radial-gradient(600px 280px at 10% 80%, rgba(66, 113, 150, 0.1), transparent 50%);
}
.section--stats {
  padding: 56px 0;
  background: var(--brand-soft);
}
.section--journey {
  padding: 80px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(66, 113, 150, 0.12), transparent 60%),
    linear-gradient(180deg, #F3F6F9, var(--paper));
}
.surface-elevated {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(66, 113, 150, 0.1);
  box-shadow: var(--shadow-card);
}
.surface-elevated::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.feature,
.trust-card,
.voice,
.journey-stage,
.download,
.dash,
.footer-cta,
.map-card,
.float-card {
  isolation: isolate;
}
.feature > *,
.trust-card > *,
.voice > *,
.journey-rail,
.journey-map,
.download > *,
.dash > *,
.footer-cta > *,
.map-card > * {
  position: relative;
  z-index: 1;
}

.feature {
  background: var(--white);
  border: 1px solid rgba(66, 113, 150, 0.1);
  border-radius: 22px;
  padding: 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  box-shadow: var(--shadow-float);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* Journey wow */
.journey-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.journey-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.journey-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 46ch;
}
.journey-stage {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 20px;
  border-radius: 32px;
  padding: 20px;
  overflow: hidden;
}
.journey-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: var(--brand-soft);
}
.journey-map svg {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}
.journey-toast {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-float);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
}
.journey-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.j-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid transparent;
  opacity: 0.55;
  transition: opacity 0.4s ease, background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease);
}
.j-step.is-active {
  opacity: 1;
  background: var(--white);
  border-color: rgba(66, 113, 150, 0.14);
  transform: translateX(4px);
  box-shadow: var(--shadow-float);
}
.j-step span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  min-width: 22px;
}
.j-step strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.j-step p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .journey-stage { grid-template-columns: 1fr; }
}

/* Stats */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big b {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  display: block;
  color: var(--ink);
  line-height: 1;
}
.stat-big span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 800px) {
  .stats-band { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.trust-card {
  border-radius: 22px;
  padding: 24px;
}
.trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.trust-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.trust-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.voice {
  margin: 0;
  border-radius: 22px;
  padding: 24px;
}
.voice .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.voice blockquote {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.voice figcaption strong {
  display: block;
  font-size: 0.88rem;
}
.voice figcaption span {
  font-size: 0.78rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .trust-grid, .voices { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-grid, .voices { grid-template-columns: 1fr; }
}

/* Platform tighten */
.platform {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  border-radius: 28px;
  padding: 40px;
}
.platform p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 18px;
}
.platform-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.platform-tiles div {
  background: var(--brand-soft);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(66, 113, 150, 0.1);
}
.platform-tiles span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.platform-tiles strong { font-size: 0.95rem; }
@media (max-width: 900px) {
  .platform { grid-template-columns: 1fr; }
}
.platform .checks,
.platform .text-link,
.platform h2,
.platform .label,
.platform p {
  position: relative;
  z-index: 1;
}
.platform .btn {
  margin-top: 22px;
}

/* ---------- Section shared override ---------- */
.section-split { padding-top: 20px; }

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(66,113,150,0.08), transparent 55%),
    linear-gradient(180deg, transparent, rgba(232, 238, 244, 0.6));
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: 24px;
  margin-bottom: 36px;
}
.footer-cta h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 6px;
}
.footer-cta p { color: var(--muted); }
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.footer-trust span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 56px;
  margin-bottom: 40px;
}
.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 30ch;
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-news {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  max-width: 360px;
}
.footer-news input {
  flex: 1 1 170px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 14px;
  color: var(--ink);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-links h5 {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--coral);
  transform: translateX(2px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-row a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid rgba(66, 113, 150, 0.18);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  transition: border-color 0.2s ease, transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.social-row a svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.social-row a:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 8px 18px -12px rgba(255, 107, 74, 0.45);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .phone, .float-card { animation: none !important; }
  .site-header.is-hidden { transform: none; }
}
.download {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background:
    radial-gradient(500px 240px at 100% 0%, rgba(255, 107, 74, 0.1), transparent 55%),
    linear-gradient(155deg, var(--teal-soft) 0%, var(--white) 48%, var(--teal-soft-2) 100%);
  color: var(--ink);
  border-radius: 32px;
  padding: 48px;
  border: 1px solid rgba(66, 113, 150, 0.14);
  box-shadow: var(--shadow-card);
}
.download h2 { color: var(--ink); }
.download > div > p {
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.65;
  margin-bottom: 28px;
}
.stores { display: grid; gap: 22px; }
.stores h4 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}
.store-row { display: flex; flex-wrap: wrap; gap: 10px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  background: #042C53;
  border: 1.5px solid #042C53;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.25s ease, transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.store-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}
.store-btn img[src*="apple-app-store"] {
  filter: brightness(0) invert(1);
}
.store-btn:hover {
  background: #031f3c;
  border-color: #031f3c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(4, 44, 83, 0.55);
}
.newsletter {
  background: var(--white);
  border: 1px solid rgba(66, 113, 150, 0.12);
  border-radius: 20px;
  padding: 24px;
  align-self: center;
  box-shadow: var(--shadow-float);
}
.newsletter h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 6px;
}
.newsletter p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.newsletter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-row input {
  flex: 1 1 160px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(66, 113, 150, 0.18);
  background: var(--teal-soft);
  color: var(--ink);
  padding: 0 16px;
}
.newsletter-row input::placeholder { color: var(--muted); }
.form-status {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--teal);
  min-height: 1.2em;
}
@media (max-width: 900px) {
  .download { grid-template-columns: 1fr; padding: 32px; }
}

/* ========== Premium redesign (v2) ========== */

.nav-signin {
  color: var(--ink) !important;
  font-weight: 500;
  opacity: 0.78;
}
.nav-signin:hover { opacity: 1; }
.nav-signin.is-account {
  opacity: 1;
  font-weight: 600;
}

/* Language switcher — matches app chrome (globe + label) */
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lang-switch__btn:hover {
  background: rgba(66, 113, 150, 0.08);
}
.lang-switch__globe {
  font-size: 1rem;
  line-height: 1;
}
.lang-switch__label {
  display: none;
}
@media (min-width: 640px) {
  .lang-switch__label { display: inline; }
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 80;
  min-width: 148px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(66, 113, 150, 0.16);
  background: #fff;
  box-shadow: 0 12px 28px -16px rgba(26, 43, 72, 0.35);
}
.lang-switch__menu li {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.lang-switch__menu li:hover,
.lang-switch__menu li[aria-selected="true"] {
  background: rgba(66, 113, 150, 0.1);
}
@media (max-width: 900px) {
  .lang-switch {
    width: 100%;
  }
  .lang-switch__btn {
    width: 100%;
    justify-content: flex-start;
    height: 44px;
  }
  .lang-switch__label { display: inline; }
  .lang-switch__menu {
    left: 0;
    right: 0;
  }
}

.metrics--tight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.map-card--hero {
  width: min(100%, 460px);
  padding: 20px;
}
.map-card--hero .map-canvas { height: 230px; }

.section-head--center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 48px;
}
.section-head--center p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* How-it-works journey line */
.section--how { padding-top: 24px; padding-bottom: 64px; }
.journey-line {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin: 0;
  padding: 0;
}
.journey-line::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  opacity: 0.35;
  z-index: 0;
}
.journey-node {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-float);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.journey-node.is-active {
  border-color: rgba(255, 107, 74, 0.35);
  box-shadow: var(--shadow-card), 0 0 0 4px rgba(255, 107, 74, 0.08);
  transform: translateY(-4px);
}
.journey-node__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.journey-node strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.journey-node p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .journey-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .journey-line::before {
    top: 0;
    bottom: 0;
    left: 17px;
    right: auto;
    width: 3px;
    height: auto;
  }
}

/* Patient experience */
.experience--patient {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
}
.experience--patient .experience-copy .btn { margin-top: 28px; }
.experience-copy .checks + .btn,
.experience-copy .checks + .text-link {
  margin-top: 28px;
}
.experience--pro .experience-copy .btn {
  margin-top: 32px;
}

.patient-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 24px 8px;
}

.patient-float {
  position: absolute;
  z-index: 3;
  width: min(220px, 42%);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(66, 113, 150, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
}
.patient-float small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.patient-float strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.patient-float span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}
.patient-float--next {
  top: 12%;
  left: 0;
}
.patient-float--report {
  bottom: 14%;
  right: 0;
}

.phone--rich {
  width: min(100%, 292px);
  aspect-ratio: 9 / 19.2;
  animation: none;
}
.phone--rich .phone-frame {
  width: 100%;
  margin-inline: auto;
}
.phone-screen--light {
  background: linear-gradient(180deg, #FBFCFD, #F1F5F8);
  color: var(--ink);
  gap: 12px;
  padding: 38px 14px 16px;
  font-size: 0.72rem;
}
.app-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  margin-bottom: 2px;
}
.app-status-bar--light {
  color: var(--muted);
}
.phone-screen--light .app-greet span {
  color: var(--muted);
  font-size: 0.7rem;
}
.phone-screen--light .app-greet strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.app-live-card {
  border-radius: 18px;
  padding: 14px;
  margin: 4px 0;
}
.app-live-card--light {
  background: var(--white);
  border: 1px solid rgba(24, 43, 56, 0.1);
  box-shadow: 0 8px 24px -16px rgba(24, 43, 56, 0.28);
}
.app-live-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.app-live-card--light .app-live-head strong {
  color: var(--teal-deep);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.app-live-card--light .app-next-row strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}
.app-live-card--light .app-next-row span {
  color: var(--muted);
  font-size: 0.7rem;
}
.app-mini-map {
  height: 78px;
  border-radius: 12px;
  margin: 12px 0;
  position: relative;
  overflow: hidden;
}
.app-mini-map--light {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 107, 74, 0.22), transparent 28%),
    radial-gradient(circle at 24% 68%, rgba(66, 113, 150, 0.2), transparent 32%),
    linear-gradient(135deg, #E8EEF4, #F4F7FA);
  border: 1px solid rgba(66, 113, 150, 0.12);
}
.app-mini-map--light::after {
  content: "";
  position: absolute;
  inset: 42% 16% auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6B93B5, #FF6B4A);
}
.app-live-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
}
.app-notify {
  border-radius: 14px;
  padding: 12px 14px;
}
.app-notify--light {
  background: #EAF7F2;
  border: 1px solid rgba(42, 157, 122, 0.22);
}
.app-notify--light strong {
  display: block;
  color: #1F7A5C;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.app-notify--light span {
  font-size: 0.72rem;
  color: #4A6B5C;
}

@media (max-width: 1100px) {
  .patient-float { display: none; }
  .patient-visual { min-height: 0; padding: 0; }
}
@media (max-width: 980px) {
  .experience--patient {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .phone--rich {
    width: min(100%, 280px);
    margin-inline: auto;
  }
}

/* Cinematic journey */
.journey-stage--cinematic {
  grid-template-columns: 1.45fr 0.9fr;
  min-height: 460px;
}
.journey-stage--cinematic .journey-map {
  min-height: 420px;
}
.journey-eta {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  box-shadow: var(--shadow-float);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.journey-rail .j-step[data-j="4"] span {
  background: var(--green-soft);
  color: var(--green);
}

/* Pro XL dashboard */
.experience--pro {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.dash--xl {
  padding: 32px;
  min-height: 460px;
}
.dash-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.dash-grid--xl {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.dash-grid--xl .dash-tile.wide { grid-column: 1 / -1; }
.radius-label {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}
.dash--xl .req {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.dash--xl .req:last-child { border-bottom: 0; padding-bottom: 0; }
.dash--xl .req strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}
.dash--xl .req span {
  font-size: 0.75rem;
  color: var(--muted);
}
.dash--xl .req em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
}
.req-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-deep) !important;
  font-weight: 700;
  font-size: 0.72rem !important;
}
.req-action--join {
  background: var(--blue-soft);
  color: var(--teal-deep) !important;
}
@media (max-width: 980px) {
  .experience--pro {
    grid-template-columns: 1fr;
  }
  .dash--xl { order: 2; }
}

/* Human care */
.section--human { padding: 40px 0 88px; }
.human-band {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.human-photo {
  margin: 0;
  min-height: 420px;
  background: var(--surface);
}
.human-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.human-copy {
  padding: 40px 40px 40px 8px;
}
.human-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  max-width: 12ch;
  margin-bottom: 16px;
}
.human-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38ch;
}
@media (max-width: 900px) {
  .human-band { grid-template-columns: 1fr; }
  .human-copy { padding: 28px; }
  .human-photo img, .human-photo { min-height: 280px; }
}

/* Trust list (no fake badges) */
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-list article {
  padding-top: 8px;
  border-top: 2px solid rgba(66, 113, 150, 0.18);
}
.trust-list h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 16px 0 10px;
}
.trust-list p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .trust-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-list { grid-template-columns: 1fr; }
}

/* Download clean */
.download--clean {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.download-aside {
  background: var(--white);
  border: 1px solid rgba(66, 113, 150, 0.12);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}
.download-aside__lead {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.download-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.download-path {
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.download-path small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.download-path h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.download-path > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.download-path .store-row { margin-bottom: 8px; }
.download-path .text-link { margin-top: 10px; }
.download-path .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px) {
  .download--clean { grid-template-columns: 1fr; }
  .download-paths { grid-template-columns: 1fr; }
}

/* Production spacing polish */
.hero { padding-bottom: 48px; }
.section { padding: 56px 0; }
.section--soft { padding: 56px 0; }
.section--journey { padding: 48px 0 64px; }
.section--human { padding: 40px 0 64px; }
.section--brand { padding: 48px 0; }
.section-head--center { margin-bottom: 36px; }
.journey-head { margin-bottom: 28px; }

/* Slim footer */
.site-footer--slim {
  padding-top: 48px;
  padding-bottom: 32px;
}
.footer-slim-top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.footer-links--slim {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.site-footer--slim .social-row a {
  color: var(--teal-deep);
}
.site-footer--slim .social-row a:hover {
  color: var(--coral);
}
@media (max-width: 900px) {
  .footer-slim-top { grid-template-columns: 1fr; }
  .footer-links--slim { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .float-card--bl,
  .float-card--br { display: none; }
}

/* Product screenshots */
.phone--shot {
  overflow: hidden;
}
.phone--shot .phone-frame {
  padding: 0;
  background: #0f172a;
  aspect-ratio: 9 / 19.5;
  min-height: 520px;
}
.phone-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.product-shot {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}
.product-shot--pro img {
  min-height: 0;
  max-height: none;
  object-fit: contain;
  background: #f4f7fa;
}
.product-shot--telehealth img {
  min-height: 0;
  max-height: none;
  object-fit: contain;
  background: #0b1220;
}

.experience--telehealth {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 980px) {
  .experience--telehealth {
    grid-template-columns: 1fr;
  }
  .phone--shot .phone-frame {
    min-height: 420px;
  }
}
