:root {
  --ink: #07182f;
  --muted: #5d6b7d;
  --blue: #1768ff;
  --blue-deep: #073dbd;
  --cyan: #8ee9ff;
  --ice: #edf5ff;
  --paper: #f8fbff;
  --line: rgba(7, 24, 47, 0.13);
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 25px;
  transform: skew(-12deg);
}

.brand-mark i {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: currentColor;
}

.brand-mark i:nth-child(1) { height: 13px; }
.brand-mark i:nth-child(2) { height: 24px; }
.brand-mark i:nth-child(3) { height: 18px; }

nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

nav a {
  opacity: 0.74;
  transition: opacity 180ms ease;
}

nav a:hover { opacity: 1; }

.header-cta {
  justify-self: end;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 156px clamp(24px, 7vw, 110px) 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 60px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 24%, rgba(104, 216, 255, 0.5), transparent 24%),
    radial-gradient(circle at 60% 80%, rgba(25, 109, 255, 0.65), transparent 34%),
    linear-gradient(118deg, #041833 0%, #082c70 49%, #1668ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 70px;
  background: var(--paper);
  clip-path: polygon(0 78%, 100% 0, 100% 100%, 0 100%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit-one { width: 700px; height: 700px; right: -170px; top: 25px; }
.orbit-two { width: 980px; height: 980px; right: -300px; top: -110px; }

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #dff9ff;
  border: 1px solid rgba(183, 236, 255, 0.35);
  border-radius: 999px;
  background: rgba(4, 29, 72, 0.38);
  backdrop-filter: blur(10px);
}

.notice span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78e8ff;
  box-shadow: 0 0 12px #78e8ff;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.hero .eyebrow { color: #94eaff; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 28px;
  font-size: clamp(64px, 7.4vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 500;
}

h1 em {
  color: #a9edff;
  font-style: normal;
  font-weight: 800;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #063c87; background: var(--white); }
.button-ghost { border: 1px solid rgba(255, 255, 255, 0.38); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.09); }

.disclaimer-inline {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.core-shell {
  position: relative;
  width: min(38vw, 450px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 238, 255, 0.25), transparent 62%);
  filter: drop-shadow(0 30px 40px rgba(0, 13, 49, 0.32));
}

.core-ring {
  position: absolute;
  border-radius: 45% 55% 48% 52% / 52% 43% 57% 48%;
  border: 1px solid rgba(190, 243, 255, 0.52);
  animation: rotate 18s linear infinite;
}

.ring-a { inset: 8%; border-width: 2px; }
.ring-b { inset: 18%; animation-direction: reverse; animation-duration: 13s; }
.ring-c { inset: 27%; animation-duration: 9s; box-shadow: inset 0 0 35px rgba(91, 225, 255, 0.22); }

.core-label {
  width: 31%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: #062a69;
  background: linear-gradient(145deg, #fff, #99eaff);
  box-shadow: 0 0 70px rgba(124, 232, 255, 0.65);
}

.core-label strong { font-size: clamp(38px, 5vw, 68px); line-height: 0.8; letter-spacing: -0.08em; }
.core-label span { margin-top: 7px; font-size: 10px; font-weight: 800; letter-spacing: 0.25em; }

.node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5f7ff;
  box-shadow: 0 0 16px #91efff;
}

.node-a { top: 11%; right: 24%; }
.node-b { bottom: 17%; left: 14%; }
.node-c { right: 3%; bottom: 39%; }

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 230px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 27, 66, 0.45);
  backdrop-filter: blur(12px);
}

.visual-caption span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.visual-caption strong { font-size: 11px; }
.visual-caption i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #83f3c1; box-shadow: 0 0 10px #83f3c1; }

@keyframes rotate { to { transform: rotate(360deg); } }

.ticker {
  overflow: hidden;
  padding: 20px 0;
  color: #51708d;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker div {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span { font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.ticker b { color: var(--blue); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section {
  padding: 130px clamp(24px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .eyebrow { align-self: start; padding-top: 14px; }

.section-heading h2,
.founder-copy h2,
.statement h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.section-heading > p:last-child {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-wide { grid-row: span 2; min-height: 878px; background: #071b38; color: var(--white); }
.blue-card { color: var(--white); border-color: transparent; background: linear-gradient(145deg, #0751da, #1684ff); }
.card-index { position: absolute; top: 30px; right: 30px; font-size: 11px; opacity: .45; }
.card-kicker { margin-bottom: 13px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.feature-wide .card-kicker, .blue-card .card-kicker { color: #9deeff; }
.feature-card h3 { margin-bottom: 18px; font-size: clamp(32px, 3vw, 50px); line-height: 1.12; letter-spacing: -.05em; }
.feature-card > p:last-child,
.feature-card > div > p:last-child { max-width: 480px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.feature-wide > div > p:last-child, .blue-card > p:last-child { color: rgba(255,255,255,.65); }

.pulse-map {
  position: absolute;
  inset: 0 0 37% 0;
  opacity: .65;
  background-image: linear-gradient(rgba(139, 226, 255, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 226, 255, .09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.pulse-map::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 45%;
  height: 90px;
  border-top: 2px solid #72e4ff;
  transform: skewY(-7deg);
  filter: drop-shadow(0 0 8px #47d4ff);
}

.pulse-map span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #b5f5ff; box-shadow: 0 0 13px #5edfff; }
.pulse-map span:nth-child(1) { left: 15%; top: 39%; }
.pulse-map span:nth-child(2) { left: 33%; top: 30%; }
.pulse-map span:nth-child(3) { left: 52%; top: 47%; }
.pulse-map span:nth-child(4) { left: 69%; top: 26%; }
.pulse-map span:nth-child(5) { left: 84%; top: 41%; }

.icon-heart {
  position: absolute;
  top: 60px;
  left: 50%;
  color: #ff5e7f;
  font-size: 96px;
  text-shadow: 0 18px 50px rgba(255, 55, 106, .3);
  transform: translateX(-50%);
  animation: heartbeat 2.4s ease-in-out infinite;
}

@keyframes heartbeat { 0%, 100% { transform: translateX(-50%) scale(1); } 12% { transform: translateX(-50%) scale(1.09); } 24% { transform: translateX(-50%) scale(1); } }

.medical-cross { position: absolute; top: 54px; left: 50%; width: 120px; height: 120px; transform: translateX(-50%) rotate(8deg); opacity: .78; }
.medical-cross i { position: absolute; inset: 46px 0; border-radius: 5px; background: rgba(255,255,255,.86); }
.medical-cross i:last-child { transform: rotate(90deg); }

.founder-section {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) 1.1fr;
  min-height: 850px;
  color: var(--white);
  background: #06172e;
}

.founder-photo { position: relative; min-height: 760px; overflow: hidden; }
.founder-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2, 15, 34, .64), transparent 55%); }
.founder-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 48% 42%; filter: saturate(.88) contrast(1.04); }
.photo-tag { position: absolute; z-index: 1; bottom: 34px; left: 38px; padding: 10px 13px; font-size: 10px; font-weight: 800; letter-spacing: .17em; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(8px); }

.founder-copy {
  padding: 100px clamp(40px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-copy .eyebrow { color: #8deaff; }
.founder-copy h2 { margin-bottom: 52px; }
.founder-copy blockquote { margin: 0 0 40px; padding-left: 24px; color: #a9ecff; font-size: clamp(19px, 2vw, 28px); line-height: 1.6; font-weight: 600; border-left: 2px solid #52dfff; }
.founder-copy > p { max-width: 650px; margin-bottom: 20px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.9; }
.founder-facts { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 32px; }
.founder-facts span { padding: 12px 15px; color: rgba(255,255,255,.8); font-size: 12px; border: 1px solid rgba(255,255,255,.16); }
.founder-facts b { margin-right: 8px; color: #72e6ff; }

.benchmark-section { background: #edf5ff; }
.section-heading.centered { display: block; max-width: 760px; margin: 0 auto 70px; text-align: center; }
.section-heading.centered h2 { margin-bottom: 20px; }
.section-heading.centered > p:last-child { font-size: 12px; }
.benchmark-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric { padding: 28px; border-top: 3px solid var(--blue); background: var(--white); box-shadow: 0 16px 40px rgba(42, 83, 136, .07); }
.metric-name { display: block; margin-bottom: 54px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .09em; }
.metric strong { font-size: clamp(48px, 5vw, 74px); line-height: 1; letter-spacing: -.07em; }
.metric small { color: var(--blue); font-size: 24px; font-weight: 800; }
.metric-bar { height: 3px; margin: 26px 0 17px; background: #dce7f4; }
.metric-bar i { display: block; width: 0; height: 100%; background: var(--blue); transition: width 1.4s cubic-bezier(.22,.7,.2,1); }
.metric.visible .metric-bar i { width: var(--score); }
.metric p { margin: 0; color: var(--muted); font-size: 12px; }

.statement {
  position: relative;
  padding: 130px clamp(24px, 9vw, 150px);
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.statement::before { content: ""; position: absolute; width: 600px; height: 600px; right: -170px; top: -260px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.03), 0 0 0 160px rgba(255,255,255,.03); }
.statement-mark { width: min(22vw, 270px); aspect-ratio: 1; display: grid; place-items: center; color: var(--blue); font-size: clamp(70px, 9vw, 130px); font-weight: 900; letter-spacing: -.1em; border-radius: 50%; background: #b7efff; box-shadow: 0 30px 80px rgba(3, 34, 116, .32); }
.statement .eyebrow { color: #b6f0ff; }
.statement h2 { position: relative; margin-bottom: 30px; }
.statement p:last-child { position: relative; max-width: 750px; margin-bottom: 0; color: rgba(255,255,255,.7); line-height: 1.9; }

footer {
  min-height: 180px;
  padding: 45px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.55);
  background: #030d1c;
  font-size: 11px;
}

.footer-brand { color: var(--white); }
footer p { margin: 0; text-align: center; }
footer p:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-visual { min-height: 400px; }
  .core-shell { width: min(78vw, 430px); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-row: auto; min-height: 650px; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { min-height: 680px; }
  .benchmark-grid { grid-template-columns: 1fr 1fr; }
  .statement { grid-template-columns: 1fr; }
  .statement-mark { width: 180px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, footer p:last-child { justify-self: center; }
}

@media (max-width: 620px) {
  .site-header { height: 72px; }
  .header-cta { display: none; }
  .hero { min-height: 900px; padding-top: 116px; gap: 12px; }
  h1 { font-size: 59px; }
  .notice { margin-bottom: 30px; }
  .hero-lede { font-size: 15px; }
  .hero-visual { min-height: 350px; }
  .visual-caption { right: 0; bottom: 8px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .feature-card { min-height: 420px; padding: 26px; }
  .feature-wide { min-height: 600px; }
  .founder-photo { min-height: 560px; }
  .founder-copy { padding: 75px 25px; }
  .founder-copy h2 { margin-bottom: 40px; }
  .benchmark-grid { grid-template-columns: 1fr; }
  .metric-name { margin-bottom: 35px; }
  .statement { padding-top: 90px; padding-bottom: 90px; gap: 50px; }
  .statement-mark { width: 145px; }
  footer { padding-top: 55px; padding-bottom: 55px; }
}

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