:root {
  --bg: #071111;
  --bg-soft: #0c1919;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --panel-dark: rgba(8, 18, 18, 0.72);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(129, 255, 234, 0.22);
  --text: #effaf8;
  --muted: #a1c8c4;
  --teal: #1bc2b5;
  --teal-soft: #7ef4e5;
  --mint: #dffef8;
  --gold: #ecc26d;
  --gold-soft: rgba(236, 194, 109, 0.18);
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 189, 176, 0.2), transparent 30%),
    radial-gradient(circle at right 14%, rgba(236, 194, 109, 0.14), transparent 22%),
    linear-gradient(180deg, #081212 0%, #060d0d 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: 0;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.32;
}

.glow-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 120px;
  background: rgba(21, 200, 183, 0.22);
}

.glow-two {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 240px;
  background: rgba(236, 194, 109, 0.14);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 16px auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(10, 22, 22, 0.86), rgba(7, 16, 16, 0.96)),
    rgba(5, 12, 12, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(7, 16, 16, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #032624;
  background: linear-gradient(135deg, #dffff8 0%, #57e6d4 58%, #0f8a84 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 30px rgba(33, 194, 173, 0.24);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #042624;
  background: linear-gradient(135deg, #dffff7 0%, #59ead8 54%, #31baa9 100%);
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(61, 213, 190, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line);
}

.button-ghost:hover,
.button-secondary:hover {
  box-shadow: var(--shadow-soft);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 48px;
  padding: 92px 28px 74px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #92e2db;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.footer h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  max-width: 11ch;
}

.accent-text {
  display: block;
  color: #d8fff8;
}

.hero-text,
.section-heading p,
.footer p,
.page-intro,
.section-note {
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.hero-inline-stats,
.page-micro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inline-stat,
.micro-stat {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.inline-stat span,
.micro-stat span,
.mini-label,
.mini-title,
.metric-panel span,
.roadmap-card span,
.status-pill,
.spotlight-card span,
.page-link-tag,
.stack-label,
.page-pill,
.list-tag,
.table-card thead,
.metric-kicker {
  color: var(--muted);
  font-size: 0.82rem;
}

.inline-stat strong,
.micro-stat strong,
.spotlight-card strong,
.page-link-card strong,
.page-callout strong,
.featured-quote strong,
.signal-card strong,
.metric-hero-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
}

.hero-preview {
  position: relative;
  min-height: 720px;
}

.premium-stage {
  perspective: 1200px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.58;
}

.orb-one {
  width: 240px;
  height: 240px;
  right: 16%;
  top: 4%;
  background: rgba(42, 214, 199, 0.32);
}

.orb-two {
  width: 220px;
  height: 220px;
  right: -4%;
  bottom: 10%;
  background: rgba(233, 188, 99, 0.24);
}

.orb-three {
  width: 180px;
  height: 180px;
  left: 16%;
  bottom: 14%;
  background: rgba(122, 255, 225, 0.14);
}

.glass-card,
.screen-card,
.floating-note,
.value-card,
.metric-panel,
.roadmap-card,
.showcase-list,
.showcase-detail,
.timeline-band,
.page-link-card,
.spotlight-card,
.feature-card,
.stack-card,
.table-card,
.hero-panel,
.page-callout,
.featured-quote,
.signal-card,
.metric-hero-card,
.hero-signal-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.platform-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 298px;
  padding: 18px;
  border-radius: 24px;
}

.floating-card {
  animation: drift 8s ease-in-out infinite;
}

.platform-card__header,
.price-row,
.detail-meta,
.detail-actions,
.list-card .topline,
.stack-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.chip-live {
  background: rgba(31, 225, 197, 0.16);
  color: #b9fff5;
}

.chip-soft {
  background: rgba(255, 255, 255, 0.08);
  color: #d9f0ed;
}

.platform-grid,
.feature-grid,
.stack-grid,
.page-link-grid,
.spotlight-grid,
.metric-hero-grid {
  display: grid;
  gap: 18px;
}

.platform-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-panel,
.feature-card,
.table-row {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-panel strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.45rem;
  font-family: "Outfit", sans-serif;
}

.mini-panel small,
.floating-note p,
.feature-card p,
.table-row p,
.stack-card p,
.page-callout p,
.featured-quote p,
.signal-card p,
.hero-signal-card p {
  color: var(--muted);
}

.screen-card-main {
  position: absolute;
  left: 0;
  top: 124px;
  width: min(100%, 760px);
  border-radius: 34px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-12deg) rotateX(7deg);
  animation: cardTilt 10s ease-in-out infinite;
}

.cinematic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.08) 45%, transparent 65%);
  transform: translateX(-120%);
  animation: shimmer 7s ease-in-out infinite;
  pointer-events: none;
}

.screen-topline {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
}

.screen-topline span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.screen-content {
  position: relative;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(25, 183, 173, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(9, 36, 36, 0.96), rgba(8, 20, 20, 0.96));
}

.screen-nav,
.screen-module-row,
.screen-doctor-row,
.metric-stack,
.table-row {
  display: grid;
  gap: 16px;
}

.screen-nav {
  grid-template-columns: 1.1fr repeat(3, auto);
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.screen-nav strong,
.list-card strong,
.detail-card h3,
.page-link-card strong,
.hero-panel h3,
.metric-hero-card h3,
.table-row strong {
  font-family: "Outfit", sans-serif;
}

.screen-hero {
  margin: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.screen-kicker {
  margin: 0 0 10px;
  color: #8fded8;
  font-size: 0.82rem;
}

.screen-hero h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  max-width: 11ch;
}

.screen-badge,
.detail-badge,
.page-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #042d2b;
  background: linear-gradient(135deg, #cffff5, #72e6d7);
  font-size: 0.8rem;
  font-weight: 700;
}

.screen-module-row,
.page-link-grid,
.spotlight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.module-box,
.doctor-spotlight,
.metric-stack > div,
.timeline-step,
.hero-panel,
.feature-card,
.stack-card,
.metric-hero-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.module-box,
.metric-hero-card,
.stack-card {
  padding: 16px;
}

.module-box span,
.doctor-spotlight p,
.metric-stack span,
.list-card p,
.list-card small,
.detail-card p,
.detail-meta span,
.bullet-list,
.page-section p,
.table-card p,
.table-card td {
  color: var(--muted);
}

.module-box strong,
.metric-stack strong {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.module-box.active {
  background: linear-gradient(135deg, rgba(31, 225, 197, 0.18), rgba(255, 255, 255, 0.05));
  border-color: rgba(88, 255, 227, 0.26);
}

.screen-doctor-row,
.metric-hero-grid {
  margin-top: 18px;
  grid-template-columns: 1.1fr 0.9fr;
}

.doctor-spotlight {
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1dd7c7, #0d6666);
  font-weight: 800;
  color: white;
}

.doctor-spotlight strong {
  display: block;
  margin-bottom: 4px;
}

.doctor-spotlight button {
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  background: #d4fff8;
  color: #093332;
  font-weight: 700;
}

.metric-stack {
  grid-template-rows: 1fr 1fr;
}

.metric-stack > div {
  padding: 16px;
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 260px;
  padding: 18px;
  border-radius: 24px;
}

.hero-signal-card {
  position: absolute;
  left: 32px;
  bottom: 36px;
  max-width: 250px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(236, 194, 109, 0.14), rgba(255, 255, 255, 0.04));
}

.hero-signal-card span {
  color: #f3d89d;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.section {
  padding: 28px;
}

.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 8px 0;
  color: rgba(223, 254, 248, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  animation: marquee 24s linear infinite;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.footer h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 12ch;
}

.section-heading.inline,
.footer,
.page-section .section-heading.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.value-grid,
.metric-panels,
.roadmap-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card,
.metric-panel,
.roadmap-card,
.page-link-card,
.spotlight-card,
.table-card,
.page-callout,
.featured-quote {
  padding: 22px;
  border-radius: 26px;
}

.value-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #affff8;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.value-card h3,
.roadmap-card h3,
.feature-card h3,
.hero-panel h3,
.page-callout h3,
.featured-quote h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.value-card p,
.metric-panel p,
.roadmap-card p,
.page-link-card p,
.spotlight-card p,
.section-note {
  margin: 0;
}

.page-link-grid {
  margin-top: 18px;
}

.page-link-card,
.spotlight-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.page-link-card:hover,
.spotlight-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(13, 95, 92, 0.22);
}

.tab-switcher {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
}

.tab.active {
  background: linear-gradient(135deg, #d7fff9, #6ae5d6);
  color: #072d2b;
  font-weight: 700;
}

.showcase-layout,
.page-story-layout,
.page-content-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
}

.showcase-list,
.showcase-detail,
.hero-panel,
.table-card {
  border-radius: 30px;
  padding: 18px;
}

.showcase-list {
  display: grid;
  gap: 12px;
}

.list-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.list-card:hover,
.list-card.active {
  transform: translateY(-1px);
  border-color: rgba(94, 255, 231, 0.28);
  background: rgba(16, 125, 120, 0.18);
}

.list-tag {
  display: inline-flex;
  margin-bottom: 10px;
}

.detail-card {
  min-height: 100%;
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(25, 183, 173, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-card h3 {
  margin: 14px 0 10px;
  font-size: 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.stat-tile {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-tile strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  color: var(--text);
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.spotlight-grid,
.metric-panels,
.roadmap-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric-panel strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 1.6rem;
  line-height: 1.15;
  font-family: "Outfit", sans-serif;
}

.timeline-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
}

.timeline-step {
  padding: 20px;
}

.timeline-step strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  font-family: "Outfit", sans-serif;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.page-hero {
  align-items: center;
  min-height: auto;
}

.hero-panel {
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(27, 194, 181, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.hero-panel h3,
.metric-hero-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.hero-panel p,
.metric-hero-card p {
  margin: 0;
  line-height: 1.7;
}

.stack-grid {
  grid-template-columns: repeat(2, 1fr);
}

.stack-card {
  padding: 18px;
}

.stack-list,
.quote-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-content-grid {
  align-items: start;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card th,
.table-card td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.table-card th {
  color: #dbfffa;
  font-weight: 600;
}

.table-card tr:last-child td {
  border-bottom: 0;
}

.page-callout,
.featured-quote {
  background:
    radial-gradient(circle at top right, rgba(236, 194, 109, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.04);
}

.footer {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal="fade-left"] {
  transform: translateX(36px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardTilt {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-12deg) rotateX(7deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(-8px);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero,
  .page-hero,
  .showcase-layout,
  .page-story-layout,
  .page-content-grid,
  .value-grid,
  .metric-panels,
  .roadmap-grid,
  .feature-grid,
  .page-link-grid,
  .spotlight-grid,
  .screen-doctor-row,
  .metric-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-inline-stats,
  .page-micro-stats,
  .stack-grid,
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-preview {
    min-height: auto;
  }

  .platform-card,
  .screen-card-main,
  .floating-note,
  .hero-signal-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 18px;
  }

  .screen-card-main {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: calc(100% - 16px);
    margin: 8px auto;
    border-radius: 24px;
  }

  .topbar,
  .section,
  .footer,
  .hero,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
  }

  .section-heading.inline,
  .footer,
  .price-row,
  .detail-actions,
  .screen-hero,
  .screen-module-row,
  .screen-nav,
  .platform-card__header,
  .stack-topline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-grid,
  .timeline-band,
  .hero-inline-stats,
  .page-micro-stats,
  .stack-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .doctor-spotlight {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }
}
