
:root {
  --medical: #0F172A;
  --medical-soft: #1E293B;
  --accent: #10B981;
  --accent-strong: #059669;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --cloud: #F8FAFC;
  --white: #ffffff;
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(148, 163, 184, 0.34);
  --muted: #475569;
  --subtle: #64748B;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 28px 90px rgba(15, 23, 42, 0.10);
  --shadow-dark: 0 32px 100px rgba(2, 6, 23, 0.42);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


.bg-cloud { background: var(--cloud); }
.text-medical { color: var(--medical); }
.font-sans { font-family: "Inter", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--medical);
  font-family: "Inter", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.14), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

::selection {
  background: rgba(16, 185, 129, 0.18);
  color: var(--medical);
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at top center, black, transparent 82%);
  opacity: 0.55;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(34rem, 55vw);
  height: 34rem;
  z-index: -1;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 62%);
  filter: blur(12px);
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 999;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--medical);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  padding-top: 1.25rem;
}

.nav-shell {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem 0.95rem 1rem;
  border-radius: 999px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav-shell.is-scrolled {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  border-color: rgba(148, 163, 184, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.78));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.brand-name,
.footer-brand-name {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--medical);
}

.brand-tag,
.footer-brand-tag {
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--subtle);
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 35% 30%, rgba(16, 185, 129, 0.9), rgba(16, 185, 129, 0.15) 28%, rgba(15, 23, 42, 0.05) 34%),
    linear-gradient(160deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 30px rgba(15, 23, 42, 0.15);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, 0.24);
}

.brand-mark::before {
  width: 1.6rem;
  height: 1.6rem;
}

.brand-mark::after {
  width: 0.88rem;
  height: 0.88rem;
  border-color: rgba(16, 185, 129, 0.72);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.48);
}

.brand-mark-core {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.brand-mark-footer {
  width: 3.2rem;
  height: 3.2rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.desktop-nav a {
  position: relative;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.65), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--medical);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(16, 185, 129, 1), rgba(15, 118, 110, 1));
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 48px rgba(5, 150, 105, 0.28);
}

.button-secondary {
  color: var(--medical);
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.button-compact {
  min-height: 2.85rem;
  padding: 0.78rem 1.15rem;
  font-size: 0.92rem;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.icon-arrow {
  width: 1rem;
  height: 1rem;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: var(--medical);
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.menu-toggle span {
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease, top 0.22s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0.95rem;
}

.menu-toggle span:nth-child(2) {
  top: 1.38rem;
}

.menu-toggle span:nth-child(3) {
  top: 1.81rem;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 1.38rem;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 1.38rem;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0 1rem;
  border-radius: 1.35rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease, padding 0.3s ease;
}

.mobile-menu a {
  padding: 0.8rem 0.3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  color: var(--muted);
  font-weight: 600;
}

.mobile-menu a:last-child {
  border-bottom: 0;
  margin-top: 0.2rem;
}

.mobile-menu.is-open {
  padding: 0.8rem 1rem 1rem;
  max-height: 28rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero {
  padding: 3.75rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--medical);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.eyebrow-icon,
.mini-pill-icon,
.trust-icon,
.panel-icon,
.feature-icon,
.step-icon,
.benefit-icon,
.stack-icon,
.cta-check-icon,
.voice-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eyebrow-icon {
  color: var(--accent-strong);
}

.hero-title {
  margin: 1.45rem 0 0;
  font-size: clamp(2.8rem, 5.6vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-copy-text {
  margin: 1.65rem 0 0;
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-copy-subtext {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--subtle);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-actions-left {
  justify-content: flex-start;
}

.hero-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.mini-pill {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
}

.mini-pill-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 0.95rem;
  color: var(--accent-strong);
  background: rgba(16, 185, 129, 0.1);
}

.mini-pill strong,
.trust-item strong,
.feature-item strong,
.benefit-card h3,
.stack-card h3,
.cta-check-item strong,
.workflow-step h3,
.panel-title,
.surface-title {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mini-pill span:not(.mini-pill-icon) {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--subtle);
  margin-top: 0.25rem;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual-wrap::before,
.hero-visual-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.hero-visual-wrap::before {
  width: 10rem;
  height: 10rem;
  right: -2rem;
  top: -1rem;
  background: rgba(16, 185, 129, 0.18);
}

.hero-visual-wrap::after {
  width: 12rem;
  height: 12rem;
  left: -3rem;
  bottom: -2rem;
  background: rgba(56, 189, 248, 0.08);
}

.hero-visual {
  position: relative;
  padding: 1.6rem;
  border-radius: calc(var(--radius-xl) + 0.4rem);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(56, 189, 248, 0.10), transparent 22%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 120%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-visual-top,
.visual-shell,
.validation-note {
  position: relative;
  z-index: 1;
}

.hero-visual-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.visual-kicker,
.validation-note-kicker,
.panel-label,
.surface-status,
.section-label,
.tag,
.metric-labels,
.step-number {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.visual-kicker {
  margin: 0;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.52);
}

.visual-title {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ccfbf1;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.82);
}

.visual-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1rem;
  margin-top: 1.35rem;
}

.scan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.scan-card {
  position: relative;
  min-height: 12rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 48% 44%, rgba(148, 163, 184, 0.46), rgba(71, 85, 105, 0.16) 18%, rgba(15, 23, 42, 0.92) 58%, rgba(2, 6, 23, 1) 100%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scan-card::before,
.scan-card::after {
  content: "";
  position: absolute;
}

.scan-card::before {
  inset: 18% 22%;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.55);
  box-shadow:
    0 0 0 12px rgba(16, 185, 129, 0.05),
    0 0 28px rgba(16, 185, 129, 0.16);
}

.scan-card::after {
  inset: 0;
  background:
    radial-gradient(circle at 56% 46%, rgba(16, 185, 129, 0.92), rgba(16, 185, 129, 0.18) 11%, transparent 13%),
    radial-gradient(circle at 62% 55%, rgba(16, 185, 129, 0.75), rgba(16, 185, 129, 0.12) 8%, transparent 10%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
  opacity: 0.9;
}

.scan-card.alt::before {
  inset: 20% 20%;
  border-color: rgba(94, 234, 212, 0.6);
}

.scan-card.alt::after {
  background:
    radial-gradient(circle at 49% 46%, rgba(94, 234, 212, 0.9), rgba(16, 185, 129, 0.18) 11%, transparent 13%),
    radial-gradient(circle at 60% 54%, rgba(94, 234, 212, 0.7), rgba(16, 185, 129, 0.1) 8%, transparent 10%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
}

.scan-card.wide {
  grid-column: 1 / -1;
  min-height: 10.4rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(148, 163, 184, 0.46), rgba(71, 85, 105, 0.16) 22%, rgba(15, 23, 42, 0.94) 62%, rgba(2, 6, 23, 1) 100%);
}

.scan-card.wide::before {
  inset: 18% 16%;
  border-radius: 999px;
  border-color: rgba(16, 185, 129, 0.38);
}

.scan-card.wide::after {
  background:
    radial-gradient(circle at 38% 45%, rgba(16, 185, 129, 0.84), rgba(16, 185, 129, 0.16) 9%, transparent 11%),
    radial-gradient(circle at 56% 48%, rgba(94, 234, 212, 0.88), rgba(94, 234, 212, 0.14) 9%, transparent 11%),
    radial-gradient(circle at 72% 52%, rgba(16, 185, 129, 0.82), rgba(16, 185, 129, 0.14) 8%, transparent 10%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
}

.scan-label,
.scan-badge,
.lesion-tag {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.scan-label {
  top: 0.85rem;
  left: 0.85rem;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lesion-tag {
  right: 0.85rem;
  bottom: 0.85rem;
  color: rgba(209, 250, 229, 1);
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.scan-badge {
  left: 0.85rem;
  bottom: 0.85rem;
  color: #ccfbf1;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.visual-side {
  display: grid;
  gap: 0.85rem;
}

.surface-card {
  padding: 1rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.surface-head {
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: flex-start;
}

.surface-title {
  margin: 0;
  color: #fff;
}

.surface-copy {
  margin: 0.35rem 0 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.surface-status {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #ccfbf1;
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.18);
  white-space: nowrap;
}

.metric-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.metric-row {
  display: grid;
  gap: 0.35rem;
}

.metric-labels {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.metric-track {
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.metric-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.88), rgba(94, 234, 212, 0.82));
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.34);
}

.metric-fill-a {
  width: 84%;
}

.metric-fill-b {
  width: 92%;
}

.metric-fill-c {
  width: 68%;
}

.surface-inline {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.surface-icon {
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  border-radius: 0.95rem;
  background: rgba(16, 185, 129, 0.12);
  color: #a7f3d0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.validation-note {
  position: absolute;
  left: -0.7rem;
  bottom: 1.1rem;
  width: max-content;
  max-width: 15rem;
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.validation-note-kicker {
  margin: 0;
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.64rem;
  font-weight: 700;
}

.validation-note-copy {
  margin: 0.35rem 0 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.15rem;
  border-radius: 2rem;
}

.trust-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.84);
}

.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border-radius: 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-strong);
}

.trust-item strong {
  margin: 0.1rem 0 0.3rem;
}

.trust-item span:not(.trust-icon) {
  display: block;
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section {
  padding: 6.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
}

.section-tight {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.section-header {
  max-width: 52rem;
  margin-bottom: 2.6rem;
}

.section-header-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.section-label-dark {
  color: #a7f3d0;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-wrap: balance;
}

.section-title-dark {
  color: #fff;
}

.section-copy {
  margin: 1rem 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
  text-wrap: pretty;
}

.section-copy-compact {
  max-width: 28rem;
  justify-self: end;
}

.section-copy-dark {
  color: rgba(226, 232, 240, 0.76);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.panel-contrast {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-dark);
}

.panel-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.panel-icon {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 1.1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-strong);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.panel-icon-contrast {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.18);
}

.panel-label {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.panel-label-contrast {
  color: #a7f3d0;
}

.panel-title {
  margin: 0.4rem 0 0;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.panel-title-contrast {
  color: #fff;
}

.feature-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.6rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.feature-item:first-child {
  border-top: 0;
  padding-top: 0.3rem;
}

.feature-icon {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  border-radius: 0.95rem;
  background: rgba(15, 23, 42, 0.05);
  color: var(--medical);
}

.feature-icon-contrast {
  background: rgba(255, 255, 255, 0.08);
  color: #a7f3d0;
}

.feature-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-item-contrast {
  border-color: rgba(148, 163, 184, 0.16);
}

.feature-item-contrast p {
  color: rgba(226, 232, 240, 0.74);
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-track::before {
  content: "";
  position: absolute;
  left: 7.5%;
  right: 7.5%;
  top: 3.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.25), rgba(15, 23, 42, 0.1));
  z-index: 0;
}

.workflow-step {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border-radius: 1.7rem;
}

.step-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--medical);
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(16, 185, 129, 0.08);
  color: var(--accent-strong);
}

.workflow-step h3 {
  margin: 1rem 0 0;
  font-size: 1.28rem;
}

.workflow-step p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.voice-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.2rem;
  padding: 1.2rem 1.35rem;
  border-radius: 1.4rem;
}

.voice-note-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-strong);
}

.voice-note strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.voice-note p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 1.6rem;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: var(--accent-strong);
  background: rgba(16, 185, 129, 0.1);
}

.benefit-card h3 {
  margin: 1rem 0 0;
  font-size: 1.16rem;
}

.benefit-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.stack-wrap {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(56, 189, 248, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow-dark);
}

.stack-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, transparent 120%);
  opacity: 0.45;
  pointer-events: none;
}

.stack-intro,
.stack-grid {
  position: relative;
  z-index: 1;
}

.stack-intro {
  max-width: 44rem;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stack-card {
  padding: 1.4rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stack-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
}

.stack-card h3 {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.18rem;
}

.stack-card p {
  margin: 0.55rem 0 0;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cta-copy .section-title {
  max-width: 34rem;
}

.cta-checklist {
  display: grid;
  gap: 0.85rem;
  align-self: center;
}

.cta-check-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.cta-check-icon {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  border-radius: 0.95rem;
  color: var(--accent-strong);
  background: rgba(16, 185, 129, 0.1);
}

.cta-check-item p {
  margin: 0.32rem 0 0;
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  padding: 2rem 0 3.2rem;
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.legal-copy {
  margin: 0;
  color: var(--subtle);
  font-size: 0.84rem;
  line-height: 1.78;
  white-space: pre-line;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.28);
  outline-offset: 3px;
}

@media (max-width: 1160px) {
  .hero-grid,
  .section-header-split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.6rem;
  }

  .section-copy-compact {
    justify-self: start;
    max-width: 40rem;
  }

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

  .workflow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-track::before {
    display: none;
  }

  .validation-note {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 1rem;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-pill-grid,
  .trust-strip,
  .problem-grid,
  .benefit-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-top,
  .visual-shell {
    grid-template-columns: 1fr;
  }

  .visual-shell {
    display: grid;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .site-header {
    padding-top: 0.75rem;
  }

  .nav-shell {
    padding: 0.78rem 0.85rem;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tag {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-copy-text,
  .section-copy {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    padding: 1.15rem;
  }

  .hero-visual-top {
    flex-direction: column;
  }

  .visual-title {
    font-size: 1.35rem;
  }

  .visual-shell {
    gap: 0.8rem;
  }

  .scan-grid {
    gap: 0.7rem;
  }

  .scan-card {
    min-height: 9.8rem;
  }

  .scan-card.wide {
    min-height: 8.6rem;
  }

  .surface-card,
  .panel,
  .stack-wrap,
  .cta-panel {
    padding: 1.2rem;
  }

  .section {
    padding: 4.6rem 0;
  }

  .section-tight {
    padding-top: 2rem;
    padding-bottom: 4.5rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.06;
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    gap: 1.2rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .legal-copy {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

@media (max-width: 520px) {
  .hero-copy-subtext {
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.3;
    padding: 0.65rem 0.85rem;
  }

  .mini-pill,
  .trust-item,
  .cta-check-item,
  .voice-note {
    padding: 0.95rem;
  }

  .status-pill {
    width: 100%;
    justify-content: center;
  }

  .surface-head {
    flex-direction: column;
  }

  .stack-wrap {
    border-radius: 1.9rem;
  }
}

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

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

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