:root {
  --bg: #050816;
  --bg-2: #071224;
  --panel: rgba(12, 18, 34, 0.78);
  --panel-strong: rgba(14, 22, 41, 0.94);
  --line: rgba(136, 217, 255, 0.18);
  --line-strong: rgba(72, 210, 255, 0.45);
  --text: #f3f7ff;
  --muted: #b9c5d8;
  --soft: #8fa2bd;
  --cyan: #4fd8ff;
  --cyan-2: #18a6ff;
  --blue: #2477ff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
  --radius: 24px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(34, 160, 255, 0.16), transparent 28%),
    radial-gradient(circle at 83% 20%, rgba(79, 216, 255, 0.12), transparent 25%),
    linear-gradient(135deg, #040711 0%, #071224 48%, #02050d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 255, 255, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px);
  background-size: 270px 270px, 360px 360px, 420px 420px;
  opacity: 0.65;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(100% - 42px, var(--max));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(79, 216, 255, 0.9);
  z-index: 2000;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 7, 17, 0.84);
  border-bottom: 1px solid rgba(114, 210, 255, 0.13);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#navbar.nav-scrolled {
  background: rgba(4, 7, 17, 0.96);
  border-color: rgba(114, 210, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 216, 255, 0.26);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 216, 255, 0.10), rgba(36, 119, 255, 0.08));
  box-shadow: inset 0 0 22px rgba(79, 216, 255, 0.08), 0 0 28px rgba(79, 216, 255, 0.08);
  overflow: hidden;
}

.logo-mark img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(79, 216, 255, 0.45));
}

.logo-text span,
.section-title span {
  color: var(--cyan);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

nav a:hover,
nav a.active {
  color: #ffffff;
  background: rgba(79, 216, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(79, 216, 255, 0.16);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(79, 216, 255, 0.20);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

section {
  position: relative;
  padding: 106px 0;
  isolation: isolate;
  overflow: hidden;
}

.section-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 216, 255, 0.044) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 216, 255, 0.044) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.30;
  pointer-events: none;
  z-index: -3;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 92px 0 112px;
}

.hero::before,
.overview-section::before,
.grant-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.99) 0%, rgba(5, 8, 22, 0.95) 40%, rgba(5, 8, 22, 0.40) 67%, rgba(5, 8, 22, 0.22) 83%, rgba(5, 8, 22, 0.58) 100%),
    radial-gradient(circle at 79% 50%, rgba(79, 216, 255, 0.20), transparent 36%);
}

.right-void-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.text-stack {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 790px;
}

.right-void-stage {
  position: relative;
  min-height: 600px;
  z-index: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.right-void-stage::before {
  content: "";
  position: absolute;
  inset: 7% 4%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 216, 255, 0.13), transparent 55%),
    radial-gradient(circle at 52% 68%, rgba(36, 119, 255, 0.12), transparent 42%);
  filter: blur(0.2px);
  z-index: -1;
}

.void-image {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.home-hero-image {
  width: min(48vw, 675px);
  max-height: 86%;
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 46px rgba(79, 216, 255, 0.26));
}

.tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(79, 216, 255, 0.24);
  border-radius: 999px;
  color: #c9f4ff;
  background: rgba(79, 216, 255, 0.08);
  box-shadow: 0 0 32px rgba(79, 216, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 24px 0 24px;
  max-width: 790px;
  color: #f7fbff;
  font-size: clamp(3.15rem, 6.75vw, 6.25rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.58);
  font-kerning: normal;
  text-rendering: geometricPrecision;
  overflow: visible;
}

.hero h1 span {
  display: block;
  line-height: 1.06;
  overflow: visible;
}

.hero p,
.section-subtitle,
.card p,
.mission-item p,
.pipeline-step p,
.grant-copy p,
.contact-box p,
.footer-content {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: 1.07rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #00131d;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 18px 46px rgba(24, 166, 255, 0.30);
}

.btn-secondary {
  color: #e9f8ff;
  border: 1px solid rgba(79, 216, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #d7e9f7;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 700;
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(79, 216, 255, 0.20);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.ring-one {
  width: 620px;
  height: 620px;
  right: 7%;
  top: 13%;
  transform: rotate(-22deg) scaleX(1.5);
  opacity: 0.55;
}

.ring-two {
  width: 370px;
  height: 370px;
  left: -120px;
  bottom: -90px;
  opacity: 0.45;
}

.section-title {
  margin: 0 0 20px;
  color: #f7fbff;
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-subtitle {
  max-width: 860px;
  margin: 0 0 52px;
  font-size: 1.05rem;
}

.compact-subtitle {
  margin-bottom: 30px;
}

.mission-section {
  padding-bottom: 82px;
}

.mission-list,
.grid {
  display: grid;
  gap: 24px;
}

.mission-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.mission-item,
.card,
.pipeline-step,
.contact-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 25, 43, 0.80), rgba(9, 15, 30, 0.72)),
    radial-gradient(circle at 0% 0%, rgba(79, 216, 255, 0.11), transparent 35%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.mission-item,
.card,
.pipeline-step {
  padding: 27px;
  min-height: 230px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.mission-item:hover,
.card:hover,
.pipeline-step:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 216, 255, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22), 0 0 26px rgba(79, 216, 255, 0.06);
}

.mission-item h3,
.card h3,
.pipeline-step h3,
.grant-copy h3 {
  margin: 0 0 14px;
  color: #62ddff;
  letter-spacing: -0.02em;
}

.mission-item p,
.card p,
.pipeline-step p {
  margin: 0;
}

.overview-section {
  padding-top: 54px;
  padding-bottom: 112px;
}

.overview-section::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.99) 0%, rgba(5, 8, 22, 0.94) 46%, rgba(5, 8, 22, 0.34) 70%, rgba(5, 8, 22, 0.22) 84%, rgba(5, 8, 22, 0.62) 100%),
    radial-gradient(circle at 77% 48%, rgba(79, 216, 255, 0.17), transparent 34%);
}

.overview-layout {
  grid-template-columns: minmax(0, 0.70fr) minmax(470px, 0.78fr);
}

.overview-content {
  max-width: 660px;
}

.scenario-visual-zone {
  min-height: 560px;
}

.medical-scenario-image {
  width: min(57vw, 860px);
  max-height: 540px;
  filter: drop-shadow(0 42px 96px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 38px rgba(79, 216, 255, 0.18));
}

.pipeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pipeline-step {
  min-height: auto;
  padding: 22px;
}

.case-label {
  display: inline-flex;
  margin-bottom: 15px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.use-case-card {
  min-height: 250px;
}

.use-cases-section {
  padding-bottom: 92px;
}

.use-cases-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.use-cases-grid .use-case-card {
  position: relative;
  z-index: 3;
}

.mission-use-visual-slot {
  position: relative;
  grid-column: 2 / 4;
  min-height: 382px;
  margin-top: -8px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.mission-use-visual-slot::before {
  content: "";
  position: absolute;
  inset: 10% 4% 0% 3%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 55% 54%, rgba(79, 216, 255, 0.13), transparent 58%),
    radial-gradient(circle at 42% 72%, rgba(36, 119, 255, 0.12), transparent 48%);
  filter: blur(0.2px);
  z-index: -1;
}

.mission-use-image {
  position: absolute;
  right: clamp(-22px, -1.4vw, 0px);
  bottom: -24px;
  width: min(58vw, 840px);
  max-width: 112%;
  max-height: 430px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 42px 92px rgba(0, 0, 0, 0.76))
    drop-shadow(0 0 42px rgba(79, 216, 255, 0.20));
}

.research-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.research-cloud span {
  padding: 13px 16px;
  border: 1px solid rgba(79, 216, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(79, 216, 255, 0.07);
  font-weight: 750;
}

.grant-section {
  padding-bottom: 92px;
}

.grant-section::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98) 0%, rgba(5, 8, 22, 0.92) 50%, rgba(5, 8, 22, 0.30) 75%, rgba(5, 8, 22, 0.60) 100%),
    radial-gradient(circle at 76% 76%, rgba(79, 216, 255, 0.12), transparent 30%);
}

.grant-trust-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 42px;
  margin-top: 58px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(79, 216, 255, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(79, 216, 255, 0.10), rgba(36, 119, 255, 0.045) 42%, rgba(5, 8, 22, 0.74)),
    rgba(6, 13, 26, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 34px 100px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  isolation: isolate;
}

.grant-trust-panel::before {
  content: "";
  position: absolute;
  inset: -42% -18% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 216, 255, 0.18), transparent 62%);
  z-index: -2;
}

.grant-trust-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -28% -18%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 119, 255, 0.13), transparent 65%);
  z-index: -2;
}

.grant-trust-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.grant-trust-copy h3 {
  margin: 18px 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 4.55rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.grant-trust-copy > p {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.trust-proof-item {
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(79, 216, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 25, 43, 0.72), rgba(7, 13, 27, 0.68)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}


.trust-proof-item h4 {
  margin: 0 0 10px;
  color: #eaf9ff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.trust-proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.grant-brand-card {
  position: relative;
  z-index: 1;
  min-height: 450px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(79, 216, 255, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(79, 216, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(12, 18, 34, 0.55), rgba(5, 8, 22, 0.32));
  overflow: hidden;
}

.brand-orbit {
  position: absolute;
  width: min(90%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 216, 255, 0.20);
  border-radius: 50%;
  transform: rotate(-22deg) scaleX(1.18);
  box-shadow:
    0 0 62px rgba(79, 216, 255, 0.12),
    inset 0 0 46px rgba(79, 216, 255, 0.05);
  pointer-events: none;
}

.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(79, 216, 255, 0.12);
  border-radius: 50%;
}

.grant-logo-image {
  position: relative;
  z-index: 2;
  width: min(34vw, 350px);
  max-height: 350px;
  object-fit: contain;
  filter:
    drop-shadow(0 36px 90px rgba(0, 0, 0, 0.70))
    drop-shadow(0 0 34px rgba(79, 216, 255, 0.24));
}

.brand-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 360px;
  text-align: center;
}

.brand-card-copy strong {
  color: #ffffff;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-card-copy span {
  color: #c4d3e6;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-box {
  padding: 46px;
  text-align: center;
  border-color: rgba(79, 216, 255, 0.25);
}

.contact-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.email-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #00131d;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(24, 166, 255, 0.22);
}

footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(2, 4, 11, 0.62);
}

.footer-content {
  display: grid;
  gap: 12px;
  text-align: center;
  font-size: 0.92rem;
}

.footer-brand {
  color: #ffffff;
  font-weight: 900;
}

.reveal-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  nav {
    gap: 2px;
  }

  nav a {
    padding: 9px 8px;
    font-size: 0.84rem;
  }

  .right-void-layout,
  .overview-layout {
    grid-template-columns: 1fr;
  }

  .grant-trust-panel {
    grid-template-columns: 1fr;
  }

  .right-void-stage {
    min-height: 500px;
  }

  .home-hero-image {
    width: min(82vw, 680px);
  }

  .medical-scenario-image {
    width: min(92vw, 820px);
  }

  .grant-logo-image {
    width: min(58vw, 340px);
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .grant-brand-card {
    min-height: 390px;
  }

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

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

  .mission-use-visual-slot {
    grid-column: 1 / -1;
    min-height: 430px;
    margin-top: 0;
  }

  .mission-use-image {
    right: 50%;
    bottom: -20px;
    width: min(92vw, 860px);
    transform: translateX(50%);
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: absolute;
    left: 21px;
    right: 21px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(79, 216, 255, 0.20);
    border-radius: 20px;
    background: rgba(5, 8, 22, 0.97);
    box-shadow: var(--shadow);
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    padding: 13px 14px;
  }

  section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 82px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero h1 span {
    line-height: 1.08;
  }

  .hero::before,
  .overview-section::before,
  .grant-section::before {
    background:
      linear-gradient(90deg, rgba(5, 8, 22, 0.99) 0%, rgba(5, 8, 22, 0.90) 68%, rgba(5, 8, 22, 0.55) 100%),
      radial-gradient(circle at 82% 42%, rgba(79, 216, 255, 0.16), transparent 34%);
  }

  .right-void-layout,
  .overview-layout {
    gap: 12px;
  }

  .grant-trust-panel {
    gap: 26px;
  }

  .right-void-stage {
    min-height: 390px;
  }

  .home-hero-image {
    width: min(98vw, 620px);
    opacity: 0.88;
  }

  .medical-scenario-image {
    width: min(118vw, 760px);
    opacity: 0.88;
  }

  .grant-logo-image {
    width: min(74vw, 292px);
    opacity: 0.95;
  }

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

  .mission-list,
  .grid {
    grid-template-columns: 1fr;
  }

  .mission-use-visual-slot {
    grid-column: 1;
    min-height: 360px;
  }

  .mission-use-image {
    width: min(118vw, 760px);
    opacity: 0.92;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-mark img {
    width: 36px;
    height: 36px;
  }


  .hero h1 {
    font-size: clamp(2.42rem, 12.8vw, 4.15rem);
    line-height: 1.10;
    letter-spacing: -0.025em;
  }

  .hero h1 span {
    line-height: 1.10;
  }

  .hero-buttons,
  .trust-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .mission-item,
  .card,
  .pipeline-step,
  .contact-box {
    padding: 23px;
  }

  .right-void-stage {
    min-height: 300px;
  }

  .home-hero-image {
    width: 560px;
  }

  .medical-scenario-image {
    width: 680px;
  }

  .mission-use-visual-slot {
    min-height: 292px;
  }

  .mission-use-image {
    width: 620px;
    max-height: 320px;
  }
}

.pdf-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(79, 216, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(79, 216, 255, 0.08), rgba(36, 119, 255, 0.045)),
    rgba(5, 8, 22, 0.50);
  text-align: left;
}

.pdf-download-copy h3 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pdf-download-copy p {
  margin: 0 0 18px;
}

.qr-download-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(79, 216, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 20px 46px rgba(0, 0, 0, 0.20);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.qr-download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 216, 255, 0.45);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28), 0 0 28px rgba(79, 216, 255, 0.10);
}

.qr-download-card img {
  width: 148px;
  height: 148px;
  border-radius: 16px;
  background: #ffffff;
}

.qr-download-card span {
  color: #dff8ff;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

@media (max-width: 860px) {
  .pdf-download-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pdf-download-copy {
    display: grid;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .qr-download-card {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Device-consistent responsive layout pass
   --------------------------------------------------------------------------
   Goal: keep the same visual hierarchy across desktop, iPad, and iPhone.
   These rules intentionally override the earlier breakpoint jumps that stacked
   right-side visuals, oversized images, and changed card grids too aggressively.
*/
:root {
  --device-layout-gap: clamp(18px, 4vw, 54px);
  --device-stage-min: clamp(260px, 42vw, 600px);
  --device-hero-image-width: clamp(240px, 42vw, 675px);
  --device-scenario-image-width: clamp(260px, 52vw, 860px);
  --device-mission-image-width: clamp(320px, 58vw, 840px);
}

.right-void-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(clamp(300px, 36vw, 520px), 0.72fr);
  gap: var(--device-layout-gap);
}

.overview-layout {
  grid-template-columns: minmax(0, 0.70fr) minmax(clamp(330px, 42vw, 610px), 0.78fr);
}

.right-void-stage {
  min-height: var(--device-stage-min);
}

.home-hero-image {
  width: var(--device-hero-image-width);
  max-height: 88%;
  opacity: 1;
}

.medical-scenario-image {
  width: var(--device-scenario-image-width);
  max-height: clamp(360px, 50vw, 540px);
  opacity: 1;
}

.mission-use-image {
  width: var(--device-mission-image-width);
  max-height: clamp(320px, 40vw, 430px);
  opacity: 1;
}

@media (max-width: 1120px) {
  .right-void-layout,
  .overview-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(clamp(260px, 38vw, 440px), 0.72fr);
    gap: clamp(18px, 3.4vw, 38px);
  }

  .grant-trust-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  }

  .right-void-stage {
    min-height: clamp(360px, 42vw, 500px);
  }

  .home-hero-image {
    width: clamp(280px, 40vw, 540px);
  }

  .medical-scenario-image {
    width: clamp(340px, 52vw, 700px);
  }

  .grant-logo-image {
    width: clamp(230px, 32vw, 320px);
  }

  .mission-list,
  .grid,
  .use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-use-visual-slot {
    grid-column: 1 / -1;
    min-height: clamp(330px, 42vw, 430px);
    margin-top: 0;
  }

  .mission-use-image {
    right: 50%;
    bottom: -20px;
    width: clamp(430px, 76vw, 820px);
    transform: translateX(50%);
  }
}

@media (max-width: 860px) {
  section {
    padding: 72px 0;
  }

  .hero {
    min-height: calc(100vh - 74px);
    padding: 62px 0 76px;
  }

  .right-void-layout,
  .overview-layout {
    grid-template-columns: minmax(0, 1fr) minmax(clamp(150px, 37vw, 320px), 0.58fr);
    gap: clamp(12px, 3vw, 22px);
    align-items: center;
  }

  .hero-content,
  .overview-content {
    max-width: none;
  }

  .tag,
  .eyebrow {
    padding: 6px 10px;
    font-size: 0.66rem;
    letter-spacing: 0.075em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero h1 span {
    line-height: 1.08;
  }

  .hero p {
    max-width: none;
    font-size: clamp(0.82rem, 2.4vw, 0.98rem);
    line-height: 1.55;
  }

  .hero-buttons,
  .trust-strip {
    flex-direction: row;
    align-items: center;
  }

  .btn {
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .trust-strip span {
    font-size: 0.72rem;
  }

  .right-void-stage {
    min-height: clamp(260px, 50vw, 360px);
  }

  .right-void-stage::before {
    inset: 8% 0;
    border-radius: 32px;
  }

  .home-hero-image {
    width: clamp(160px, 42vw, 310px);
    opacity: 0.95;
  }

  .medical-scenario-image {
    width: clamp(210px, 50vw, 420px);
    max-height: 340px;
    opacity: 0.95;
  }

  .grant-trust-panel {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.5fr);
    gap: 18px;
  }

  .grant-logo-image {
    width: clamp(130px, 34vw, 240px);
  }

  .trust-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-list,
  .grid,
  .use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .mission-item,
  .card,
  .pipeline-step,
  .contact-box {
    min-height: 160px;
    padding: 18px;
  }

  .mission-item h3,
  .card h3,
  .pipeline-step h3,
  .trust-proof-item h4 {
    font-size: clamp(0.94rem, 2.8vw, 1.08rem);
  }

  .mission-item p,
  .card p,
  .pipeline-step p,
  .trust-proof-item p {
    font-size: clamp(0.78rem, 2.2vw, 0.91rem);
    line-height: 1.48;
  }

  .mission-use-visual-slot {
    grid-column: 1 / -1;
    min-height: clamp(260px, 55vw, 360px);
  }

  .mission-use-image {
    right: 50%;
    width: clamp(350px, 88vw, 680px);
    max-height: 360px;
    transform: translateX(50%);
    opacity: 0.95;
  }

  .pdf-download-panel {
    grid-template-columns: minmax(0, 1fr) 148px;
    justify-items: stretch;
    text-align: left;
  }

  .qr-download-card img {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-container {
    min-height: 64px;
  }

  .logo-text {
    font-size: 0.82rem;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 50px 0 64px;
  }

  .right-void-layout,
  .overview-layout {
    grid-template-columns: minmax(0, 1fr) minmax(125px, 0.48fr);
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(1.68rem, 8.5vw, 2.42rem);
    line-height: 1.09;
    letter-spacing: -0.015em;
  }

  .hero h1 span {
    line-height: 1.09;
  }

  .hero p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero-buttons,
  .trust-strip {
    gap: 8px;
  }

  .btn {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.76rem;
  }

  .trust-strip span {
    padding: 6px 8px;
    font-size: 0.64rem;
  }

  .right-void-stage {
    min-height: clamp(220px, 58vw, 300px);
  }

  .home-hero-image {
    width: clamp(130px, 42vw, 210px);
  }

  .medical-scenario-image {
    width: clamp(170px, 50vw, 320px);
  }

  .mission-list,
  .grid,
  .use-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mission-item,
  .card,
  .pipeline-step {
    min-height: 142px;
    padding: 15px;
  }

  .mission-use-visual-slot {
    min-height: clamp(230px, 60vw, 292px);
  }

  .mission-use-image {
    width: clamp(300px, 92vw, 520px);
    max-height: 300px;
  }

  .trust-proof-grid,
  .grant-trust-panel,
  .pdf-download-panel {
    grid-template-columns: 1fr;
  }

  .pdf-download-panel,
  .pdf-download-copy {
    justify-items: center;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Hero visual scale correction
   --------------------------------------------------------------------------
   Keeps the intro composition consistent while preventing the astronaut hero
   image from shrinking too far on computer/iPad-width viewports. These rules
   intentionally sit last so they override the earlier responsive clamps.
*/
.hero-layout.right-void-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(clamp(430px, 39vw, 680px), 0.82fr);
  gap: clamp(34px, 4vw, 62px);
}

.hero-visual-zone {
  min-height: clamp(570px, 50vw, 735px);
}

.home-hero-image {
  width: clamp(545px, 43vw, 775px);
  max-height: 96%;
  opacity: 1;
  transform: translate(-48%, -50%);
}

@media (min-width: 861px) and (max-width: 1120px) {
  .hero-layout.right-void-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(clamp(360px, 43vw, 520px), 0.72fr);
    gap: clamp(18px, 2.8vw, 34px);
  }

  .hero h1 {
    font-size: clamp(3rem, 6.35vw, 5.15rem);
    line-height: 1.075;
    letter-spacing: -0.032em;
  }

  .hero h1 span {
    line-height: 1.075;
  }

  .hero-visual-zone {
    min-height: clamp(485px, 55vw, 625px);
  }

  .home-hero-image {
    width: clamp(430px, 55vw, 640px);
    max-height: 98%;
    opacity: 1;
    transform: translate(-42%, -50%);
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .hero-layout.right-void-layout {
    grid-template-columns: minmax(0, 0.68fr) minmax(clamp(250px, 36vw, 360px), 0.55fr);
    gap: clamp(12px, 2.5vw, 22px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 7.8vw, 3.45rem);
    line-height: 1.085;
    letter-spacing: -0.025em;
  }

  .hero h1 span {
    line-height: 1.085;
  }

  .hero-visual-zone {
    min-height: clamp(360px, 52vw, 470px);
  }

  .home-hero-image {
    width: clamp(340px, 54vw, 485px);
    max-height: 98%;
    opacity: 1;
    transform: translate(-40%, -50%);
  }
}

@media (max-width: 640px) {
  .hero-layout.right-void-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual-zone {
    min-height: clamp(340px, 82vw, 460px);
    order: 2;
  }

  .home-hero-image {
    width: clamp(320px, 92vw, 520px);
    max-height: 100%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}



/* --------------------------------------------------------------------------
   Hero headline + background visual rebalance
   --------------------------------------------------------------------------
   Fixes the intro composition by using fewer, intentional headline lines and
   positioning the astronaut as a large background visual behind the copy layer.
   The image can overlap the headline area, but it stays behind the text so the
   words remain readable and the visual does not shrink into a small right card.
*/
.hero {
  min-height: calc(100vh - 74px);
  padding: clamp(76px, 7vw, 112px) 0 clamp(84px, 8vw, 124px);
  overflow: hidden;
}

.hero-layout.right-void-layout {
  position: relative;
  display: block;
  min-height: clamp(675px, 76vh, 875px);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: min(68vw, 920px);
  padding-top: clamp(4px, 1.2vw, 22px);
}

.hero h1,
.hero h1.hero-headline {
  max-width: min(66vw, 960px);
  margin: clamp(20px, 2vw, 28px) 0 clamp(18px, 2vw, 28px);
  font-size: clamp(4.15rem, 6.45vw, 7rem);
  line-height: 1.025;
  letter-spacing: -0.04em;
  font-weight: 850;
  text-wrap: balance;
  overflow: visible;
}

.hero h1 span,
.hero h1.hero-headline span {
  display: block;
  line-height: 1.025;
  overflow: visible;
}

.hero p {
  max-width: min(58vw, 780px);
}

.hero-visual-zone {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right: clamp(-190px, -7vw, -52px);
  top: 50%;
  width: clamp(690px, 62vw, 1040px);
  height: clamp(560px, 64vw, 875px);
  min-height: 0;
  transform: translateY(-46%);
  display: block;
  overflow: visible;
}

.hero-visual-zone::before {
  inset: 4% 0 6% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 50%, rgba(79, 216, 255, 0.18), transparent 58%),
    radial-gradient(circle at 58% 66%, rgba(36, 119, 255, 0.14), transparent 48%);
}

.home-hero-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(680px, 58vw, 980px);
  max-height: none;
  opacity: 0.98;
  transform: translate(-42%, -48%);
  filter:
    drop-shadow(0 46px 98px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 58px rgba(79, 216, 255, 0.28));
}

@media (min-width: 1181px) and (max-width: 1450px) {
  .hero-layout.right-void-layout {
    min-height: clamp(650px, 78vh, 820px);
  }

  .hero h1,
  .hero h1.hero-headline {
    max-width: 62vw;
    font-size: clamp(3.85rem, 6.1vw, 6.1rem);
  }

  .hero-content {
    max-width: 64vw;
  }

  .hero-visual-zone {
    right: clamp(-210px, -10vw, -88px);
    width: clamp(650px, 63vw, 920px);
  }

  .home-hero-image {
    width: clamp(640px, 60vw, 900px);
    transform: translate(-40%, -47%);
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero-layout.right-void-layout {
    min-height: clamp(625px, 78vh, 780px);
  }

  .hero-content {
    max-width: 70vw;
  }

  .hero h1,
  .hero h1.hero-headline {
    max-width: 68vw;
    font-size: clamp(3.45rem, 6.7vw, 5.45rem);
    line-height: 1.035;
    letter-spacing: -0.035em;
  }

  .hero h1 span,
  .hero h1.hero-headline span {
    line-height: 1.035;
  }

  .hero p {
    max-width: 62vw;
  }

  .hero-visual-zone {
    right: clamp(-230px, -17vw, -116px);
    top: 52%;
    width: clamp(590px, 68vw, 840px);
    height: clamp(500px, 68vw, 740px);
  }

  .home-hero-image {
    width: clamp(590px, 68vw, 820px);
    transform: translate(-38%, -48%);
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .hero-layout.right-void-layout {
    display: block;
    min-height: clamp(620px, 86vh, 760px);
  }

  .hero-content {
    max-width: 82vw;
  }

  .hero h1,
  .hero h1.hero-headline {
    max-width: 76vw;
    font-size: clamp(3.05rem, 8.1vw, 4.7rem);
    line-height: 1.045;
    letter-spacing: -0.03em;
  }

  .hero h1 span,
  .hero h1.hero-headline span {
    line-height: 1.045;
  }

  .hero p {
    max-width: 72vw;
  }

  .hero-visual-zone {
    right: clamp(-250px, -25vw, -125px);
    top: 53%;
    width: clamp(560px, 84vw, 760px);
    height: clamp(480px, 84vw, 690px);
    opacity: 0.92;
  }

  .home-hero-image {
    width: clamp(540px, 82vw, 735px);
    transform: translate(-38%, -48%);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 52px 0 72px;
  }

  .hero-layout.right-void-layout {
    display: block;
    min-height: clamp(640px, 104vh, 820px);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1,
  .hero h1.hero-headline {
    max-width: 96vw;
    font-size: clamp(2.75rem, 12.2vw, 4.35rem);
    line-height: 1.055;
    letter-spacing: -0.025em;
  }

  .hero h1 span,
  .hero h1.hero-headline span {
    line-height: 1.055;
  }

  .hero p {
    max-width: 92vw;
  }

  .hero-visual-zone {
    right: clamp(-245px, -42vw, -142px);
    top: 58%;
    width: clamp(520px, 132vw, 760px);
    height: clamp(460px, 118vw, 720px);
    opacity: 0.62;
  }

  .hero-visual-zone::before {
    opacity: 0.9;
  }

  .home-hero-image {
    width: clamp(500px, 124vw, 735px);
    transform: translate(-40%, -48%);
    filter:
      drop-shadow(0 36px 82px rgba(0, 0, 0, 0.78))
      drop-shadow(0 0 48px rgba(79, 216, 255, 0.24));
  }
}

/* --------------------------------------------------------------------------
   Technology ecosystem banner — true wide banner
   --------------------------------------------------------------------------
   The banner is intentionally outside the six-card grid in index.html. This
   keeps it from becoming a seventh grid card and lets it read as a full-width
   technology ecosystem visual under the Technology cards.
*/
.technology-banner-panel {
  position: relative;
  display: block;
  width: 100%;
  margin: clamp(34px, 5vw, 58px) auto 0;
  height: clamp(270px, 26vw, 390px);
  border: 1px solid rgba(79, 216, 255, 0.34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 216, 255, 0.13), transparent 60%),
    linear-gradient(180deg, rgba(17, 25, 43, 0.56), rgba(5, 8, 22, 0.36));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 34px 100px rgba(0, 0, 0, 0.34),
    0 0 48px rgba(79, 216, 255, 0.11);
  overflow: hidden;
  isolation: isolate;
}

.technology-banner-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.26), transparent 20%, transparent 80%, rgba(5, 8, 22, 0.30)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%, rgba(5, 8, 22, 0.12)),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(5, 8, 22, 0.18) 100%);
  pointer-events: none;
  z-index: 2;
}

.technology-banner-panel::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(79, 216, 255, 0.17);
  border-radius: 25px;
  pointer-events: none;
  z-index: 3;
}

.technology-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.005);
  filter:
    saturate(1.14)
    contrast(1.08)
    brightness(1.04)
    drop-shadow(0 0 36px rgba(79, 216, 255, 0.20));
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1120px) {
  .technology-banner-panel {
    height: clamp(238px, 31vw, 340px);
    border-radius: 30px;
  }
}

@media (max-width: 860px) {
  .technology-banner-panel {
    margin-top: 28px;
    height: clamp(210px, 42vw, 310px);
    border-radius: 26px;
  }

  .technology-banner-panel::after {
    inset: 9px;
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .technology-banner-panel {
    margin-top: 22px;
    height: clamp(182px, 55vw, 260px);
    border-radius: 22px;
  }

  .technology-banner-panel::after {
    inset: 7px;
    border-radius: 17px;
  }

  .technology-banner-image {
    object-position: center center;
  }
}

/* --------------------------------------------------------------------------
   Research visual banner
   -------------------------------------------------------------------------- */
.research-section {
  padding-bottom: 78px;
}

.research-visual-panel {
  position: relative;
  margin-top: 42px;
  width: 100%;
  height: clamp(280px, 36vw, 430px);
  border: 1px solid rgba(79, 216, 255, 0.32);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 216, 255, 0.14), transparent 56%),
    linear-gradient(135deg, rgba(6, 13, 26, 0.92), rgba(3, 7, 16, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 32px 94px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(79, 216, 255, 0.08);
  isolation: isolate;
}

.research-visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.28), transparent 22%, transparent 78%, rgba(5, 8, 22, 0.28)),
    linear-gradient(180deg, rgba(5, 8, 22, 0.24), transparent 28%, transparent 72%, rgba(5, 8, 22, 0.30));
  z-index: 2;
}

.research-visual-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(79, 216, 255, 0.16);
  border-radius: 26px;
  pointer-events: none;
  z-index: 3;
}

.research-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter:
    saturate(1.05)
    contrast(1.04)
    drop-shadow(0 0 34px rgba(79, 216, 255, 0.10));
}

@media (max-width: 860px) {
  .research-visual-panel {
    margin-top: 30px;
    height: clamp(220px, 46vw, 330px);
    border-radius: 26px;
  }

  .research-visual-panel::after {
    inset: 8px;
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .research-visual-panel {
    margin-top: 24px;
    height: clamp(190px, 58vw, 280px);
    border-radius: 22px;
  }

  .research-visual-panel::after {
    inset: 7px;
    border-radius: 16px;
  }
}



/* --------------------------------------------------------------------------
   Clickable cards + detail pages
   -------------------------------------------------------------------------- */
.detail-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card.detail-link,
.mission-item.detail-link,
.pipeline-step.detail-link,
.trust-proof-item.detail-link {
  display: block;
  isolation: isolate;
}

.card.detail-link::after,
.mission-item.detail-link::after,
.pipeline-step.detail-link::after,
.trust-proof-item.detail-link::after {
  content: "View details →";
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.card.detail-link:hover::after,
.mission-item.detail-link:hover::after,
.pipeline-step.detail-link:hover::after,
.trust-proof-item.detail-link:hover::after,
.card.detail-link:focus-visible::after,
.mission-item.detail-link:focus-visible::after,
.pipeline-step.detail-link:focus-visible::after,
.trust-proof-item.detail-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.detail-link:focus-visible,
.hero-headline-link:focus-visible,
.footer-detail-link:focus-visible {
  outline: 2px solid rgba(79, 216, 255, 0.82);
  outline-offset: 6px;
  border-radius: 16px;
}

.hero-headline-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.hero-headline-link .hero-headline {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.hero-headline-link:hover .hero-headline {
  color: #ffffff;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.58), 0 0 24px rgba(79, 216, 255, 0.22);
}

.hero-detail-cue {
  display: inline-flex;
  margin-top: -8px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.trust-strip a,
.trust-chip {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #d7e9f7;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.trust-strip a:hover,
.trust-chip:hover,
.research-cloud a:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 216, 255, 0.45);
  background: rgba(79, 216, 255, 0.11);
  color: #ffffff;
}

.research-cloud a {
  padding: 13px 16px;
  border: 1px solid rgba(79, 216, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(79, 216, 255, 0.07);
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-detail-link {
  color: var(--cyan);
  font-weight: 800;
}

.detail-body {
  background:
    radial-gradient(circle at 14% 12%, rgba(34, 160, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(79, 216, 255, 0.10), transparent 26%),
    linear-gradient(135deg, #040711 0%, #071224 48%, #02050d 100%);
}

.detail-main {
  min-height: calc(100vh - 74px);
}

.detail-hero {
  padding: 84px 0 56px;
  overflow: hidden;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.detail-kicker,
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(79, 216, 255, 0.24);
  border-radius: 999px;
  color: #c9f4ff;
  background: rgba(79, 216, 255, 0.08);
  box-shadow: 0 0 32px rgba(79, 216, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb {
  margin-bottom: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.breadcrumb:hover {
  color: #ffffff;
  border-color: rgba(79, 216, 255, 0.42);
}

.detail-title {
  margin: 22px 0 22px;
  color: #f7fbff;
  font-size: clamp(2.6rem, 6vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.058em;
  text-wrap: balance;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.52);
}

.detail-summary {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.78;
}

.detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-pill-row span,
.detail-pill-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(79, 216, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(79, 216, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.detail-pill-row a:hover,
.detail-pill-row a:focus-visible {
  border-color: rgba(79, 216, 255, 0.72);
  background: rgba(79, 216, 255, 0.16);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(79, 216, 255, 0.16);
  outline: none;
}

.detail-visual-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(79, 216, 255, 0.25);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(79, 216, 255, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(17, 25, 43, 0.64), rgba(5, 8, 22, 0.48));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.detail-visual-card::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(79, 216, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg) scaleX(1.18);
  box-shadow: inset 0 0 55px rgba(79, 216, 255, 0.05), 0 0 48px rgba(79, 216, 255, 0.12);
}

.detail-visual-card img {
  position: relative;
  z-index: 2;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 24px rgba(79, 216, 255, 0.18));
}

.detail-visual-card img[src$="Research.png"],
.detail-visual-card img[src$="technology%20banner.png"],
.detail-visual-card img[src$="technology%20banner.png"] {
  width: 100%;
  max-height: 330px;
  border-radius: 24px;
  object-fit: cover;
}

.detail-content-section {
  padding: 42px 0 96px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.detail-info-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 25, 43, 0.80), rgba(9, 15, 30, 0.72)),
    radial-gradient(circle at 0% 0%, rgba(79, 216, 255, 0.11), transparent 35%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.detail-info-card h2 {
  margin: 0 0 18px;
  color: #62ddff;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.detail-info-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.72;
}

.detail-info-card li + li {
  margin-top: 10px;
}

.detail-note {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(79, 216, 255, 0.20);
  border-radius: 24px;
  background: rgba(79, 216, 255, 0.055);
  color: var(--muted);
  line-height: 1.72;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.detail-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.detail-directory-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(14, 22, 41, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.detail-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 216, 255, 0.36);
  background: rgba(18, 30, 55, 0.82);
}

.detail-directory-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.detail-directory-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.detail-directory-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .detail-hero-grid,
  .detail-content-grid,
  .detail-directory-grid {
    grid-template-columns: 1fr;
  }

  .detail-visual-card {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .detail-hero {
    padding: 58px 0 36px;
  }

  .detail-title {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .detail-info-card {
    min-height: auto;
    padding: 22px;
  }
}


/* --------------------------------------------------------------------------
   Social media link panel
   -------------------------------------------------------------------------- */
.social-links-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 720px);
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid rgba(79, 216, 255, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 216, 255, 0.13), transparent 54%),
    linear-gradient(135deg, rgba(79, 216, 255, 0.08), rgba(36, 119, 255, 0.045)),
    rgba(5, 8, 22, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 24px 62px rgba(0, 0, 0, 0.22);
}

.social-panel-label {
  color: #dff8ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(79, 216, 255, 0.26);
  border-radius: 999px;
  color: #eaf9ff;
  background:
    linear-gradient(180deg, rgba(17, 25, 43, 0.82), rgba(7, 13, 27, 0.72)),
    rgba(255, 255, 255, 0.04);
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 216, 255, 0.55);
  background:
    linear-gradient(135deg, rgba(79, 216, 255, 0.16), rgba(36, 119, 255, 0.10)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(79, 216, 255, 0.12);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  filter: drop-shadow(0 0 10px rgba(79, 216, 255, 0.28));
}

.social-link-icononly {
  justify-content: center;
  min-width: 48px;
  padding: 0 14px;
  gap: 0;
}


.social-link-x {
  color: #f3f7ff;
}

.social-link-linkedin {
  color: #72d9ff;
}

.social-link-instagram {
  color: #f3f7ff;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 2px 0 4px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(79, 216, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(79, 216, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 216, 255, 0.46);
  background: rgba(79, 216, 255, 0.11);
}

@media (max-width: 560px) {
  .social-links-panel {
    padding: 18px;
  }

  .social-links {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .social-link-icononly {
    width: auto;
    justify-self: center;
    min-width: 52px;
  }
}
