@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #030813;
  --bg-2: #071122;
  --bg-3: #0b1830;
  --panel: rgba(10, 18, 34, 0.82);
  --panel-strong: rgba(8, 15, 28, 0.94);
  --panel-soft: rgba(12, 22, 40, 0.68);
  --line: rgba(111, 231, 255, 0.18);
  --line-strong: rgba(111, 231, 255, 0.38);
  --text: #f5fbff;
  --muted: #9bb5c8;
  --muted-2: #86a2b8;
  --accent: #66efff;
  --accent-2: #5d83ff;
  --accent-3: #84ffca;
  --accent-warm: #ffbc5e;
  --danger: #ff6f87;
  --success: #5ef0a7;
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1240px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(102, 239, 255, 0.14), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(93, 131, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(132, 255, 202, 0.08), transparent 26%),
    linear-gradient(180deg, #020713 0%, #06111f 44%, #030812 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body.is-site-loading {
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 26%, transparent 88%);
  opacity: 0.34;
}
canvas, img, svg { display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 14%, rgba(102, 239, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(93, 131, 255, 0.24), transparent 24%),
    radial-gradient(circle at 50% 84%, rgba(132, 255, 202, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.98), rgba(3, 11, 22, 0.99));
  opacity: 1;
  visibility: visible;
  transition: opacity 720ms ease, visibility 720ms ease;
}
.site-loader.is-exiting {
  opacity: 0;
  visibility: hidden;
}
.site-loader__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
}
.site-loader__shell {
  position: relative;
  width: min(100%, 1060px);
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}
.site-loader__copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  display: grid;
  gap: 10px;
}
.site-loader__kicker {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(102, 239, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #d7f8ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(102, 239, 255, 0.12);
}
.site-loader__title,
.site-loader__subtitle,
.site-loader__copy p {
  margin: 0;
}
.site-loader__title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}
.site-loader__subtitle {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  color: #ecfbff;
  letter-spacing: -0.02em;
}
.site-loader__copy p {
  max-width: 58ch;
  justify-self: center;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(0.94rem, 1.6vw, 1.06rem);
}
.site-loader__visual {
  position: relative;
  width: min(100%, 780px);
  height: 420px;
  display: grid;
  place-items: center;
}
.site-loader__visual-glow {
  position: absolute;
  inset: auto;
  width: 500px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 239, 255, 0.2), rgba(93, 131, 255, 0.1), transparent 72%);
  filter: blur(18px);
  bottom: 52px;
  animation: loaderGlowPulse 4.6s ease-in-out infinite;
}
.site-loader__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(102, 239, 255, 0.18);
  box-shadow: inset 0 0 28px rgba(102, 239, 255, 0.05);
}
.site-loader__ring--outer {
  width: 430px;
  height: 430px;
  border-color: rgba(102, 239, 255, 0.22);
}
.site-loader__ring--mid {
  width: 312px;
  height: 312px;
  border-color: rgba(93, 131, 255, 0.22);
}
.site-loader__ring--inner {
  width: 214px;
  height: 214px;
  border-color: rgba(132, 255, 202, 0.18);
}
.site-loader__orbit {
  position: absolute;
  inset: 0;
  animation: loaderOrbitSpin 16s linear infinite;
}
.site-loader__orbit--outer { animation-duration: 24s; }
.site-loader__orbit--mid { animation-duration: 17s; animation-direction: reverse; }
.site-loader__orbit--inner { animation-duration: 12s; }
.site-loader__node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  margin-top: -34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #effcff;
  background: linear-gradient(180deg, rgba(15, 27, 46, 0.98), rgba(6, 13, 25, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  animation: loaderNodePulse 4.2s ease-in-out infinite;
}
.site-loader__node svg {
  width: 28px;
  height: 28px;
}
.site-loader__orbit--outer .site-loader__node { animation-duration: 4.4s; }
.site-loader__orbit--mid .site-loader__node { animation-duration: 4s; }
.site-loader__orbit--inner .site-loader__node { animation-duration: 3.6s; }
.site-loader__node--heart {
  transform: translateY(-215px);
  color: #76f3ff;
  box-shadow: 0 0 32px rgba(118, 243, 255, 0.22), 0 14px 34px rgba(0, 0, 0, 0.34);
}
.site-loader__node--booking {
  transform: rotate(180deg) translateY(-215px) rotate(-180deg);
  color: #8ef6c2;
  box-shadow: 0 0 32px rgba(142, 246, 194, 0.18), 0 14px 34px rgba(0, 0, 0, 0.34);
}
.site-loader__node--activity {
  transform: rotate(35deg) translateY(-156px) rotate(-35deg);
  color: #7fa7ff;
  box-shadow: 0 0 28px rgba(127, 167, 255, 0.18), 0 14px 34px rgba(0, 0, 0, 0.34);
}
.site-loader__node--report {
  transform: rotate(220deg) translateY(-156px) rotate(-220deg);
  color: #f7b2e8;
  box-shadow: 0 0 28px rgba(247, 178, 232, 0.16), 0 14px 34px rgba(0, 0, 0, 0.34);
}
.site-loader__node--ai {
  transform: rotate(25deg) translateY(-107px) rotate(-25deg);
  color: #7cf7ff;
}
.site-loader__node--gym {
  transform: rotate(205deg) translateY(-107px) rotate(-205deg);
  color: #ffcc75;
}
.site-loader__core {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, rgba(102, 239, 255, 0.98), rgba(93, 131, 255, 0.92), rgba(132, 255, 202, 0.74));
  box-shadow: 0 0 46px rgba(102, 239, 255, 0.34), 0 0 110px rgba(93, 131, 255, 0.22);
  animation: loaderCoreBreath 4.4s ease-in-out infinite;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.experience-menu {
  display: grid;
  gap: 12px;
}

.experience-trigger,
.lane-tab,
.lane-feature-chip,
.experience-feature-card,
.lane-mini-card {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.experience-trigger {
  position: relative;
  padding: 16px 18px;
  border-radius: 22px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(16, 29, 50, 0.92), rgba(7, 14, 27, 0.95));
  border: 1px solid rgba(111, 231, 255, 0.14);
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.experience-trigger strong,
.experience-trigger span {
  display: block;
}

.experience-trigger strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.experience-trigger span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.experience-trigger:hover,
.experience-trigger:focus-visible,
.experience-trigger.is-active {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.34);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), 0 0 24px rgba(102, 239, 255, 0.12);
}

.experience-trigger.is-active::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(102, 239, 255, 0.3);
}

.experience-stage,
.lane-stage {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.experience-stage::before,
.lane-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(102, 239, 255, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(93, 131, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.experience-head,
.lane-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.experience-head h3,
.lane-head h3 {
  margin: 8px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.experience-head p,
.lane-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.experience-signal,
.lane-kpi {
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(111, 231, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.experience-signal {
  color: #d8fbff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.experience-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 22px;
  margin-top: 24px;
}

.experience-flow {
  display: grid;
  gap: 14px;
}

.experience-step {
  position: relative;
  padding: 16px 18px 16px 62px;
  border-radius: 20px;
  background: rgba(7, 14, 27, 0.7);
  border: 1px solid rgba(111, 231, 255, 0.1);
}

.experience-step::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: -14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(102, 239, 255, 0.35), transparent);
}

.experience-step:last-child::after {
  display: none;
}

.experience-step-index {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02101c;
  font-weight: 800;
  font-size: 0.86rem;
}

.experience-step p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.experience-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.experience-feature-card {
  padding: 16px;
  border-radius: 20px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(18, 33, 56, 0.94), rgba(8, 14, 27, 0.96));
  border: 1px solid rgba(111, 231, 255, 0.14);
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.experience-feature-card:hover,
.experience-feature-card:focus-visible,
.lane-feature-chip:hover,
.lane-feature-chip:focus-visible,
.lane-mini-card:hover,
.lane-mini-card:focus-visible,
.lane-tab:hover,
.lane-tab:focus-visible,
.lane-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 22px rgba(102, 239, 255, 0.12);
}

.experience-feature-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.experience-feature-arrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.experience-feature-card strong,
.lane-feature-chip strong,
.lane-mini-card strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.experience-feature-card p,
.lane-mini-card span,
.lane-feature-chip span {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.lane-layout {
  display: grid;
  gap: 20px;
}

.lane-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lane-tab {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 231, 255, 0.14);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lane-tab.is-active {
  background: linear-gradient(180deg, rgba(19, 35, 59, 0.96), rgba(8, 16, 29, 0.98));
}

.lane-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
}

.lane-kpi strong,
.lane-kpi span {
  display: block;
}

.lane-kpi strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.lane-kpi span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.lane-bullets {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.lane-bullet {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.lane-bullet span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 18px rgba(102, 239, 255, 0.28);
}

.lane-bullet p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.lane-feature-strip {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lane-feature-chip,
.lane-mini-card {
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
  background: rgba(9, 16, 30, 0.78);
  border: 1px solid rgba(111, 231, 255, 0.14);
  color: var(--text);
}

.lane-feature-chip span {
  display: block;
  margin-top: 6px;
}

.lane-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: start;
}

.lane-visual .feature-surface--detail {
  min-height: 340px;
}

.lane-visual-footer {
  display: grid;
  gap: 12px;
}

.lane-mini-card span {
  display: block;
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .experience-layout,
  .lane-stage,
  .experience-body {
    grid-template-columns: 1fr;
  }

  .experience-signal,
  .lane-kpi {
    min-width: 0;
  }
}

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

  .experience-stage,
  .lane-stage {
    padding: 22px;
  }

  .experience-head,
  .lane-head {
    flex-direction: column;
  }

  .lane-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .lane-tabs::-webkit-scrollbar {
    display: none;
  }
}
.site-loader__core::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(17, 27, 44, 0.88), rgba(4, 10, 22, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.site-loader__core-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(102, 239, 255, 0.22);
  box-shadow: 0 0 40px rgba(102, 239, 255, 0.14);
  animation: loaderHaloSpin 16s linear infinite;
}
.site-loader__logo,
.site-loader__core-copy {
  position: relative;
  z-index: 1;
}
.site-loader__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(102, 239, 255, 0.22);
}
.site-loader__core-copy {
  margin-top: 10px;
  display: grid;
  gap: 2px;
  text-align: center;
}
.site-loader__core-copy strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}
.site-loader__core-copy span {
  color: rgba(220, 241, 255, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-loader__signal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.site-loader__signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(228, 247, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  animation: loaderSignalWave 3.6s ease-in-out infinite;
}
.site-loader__signal:nth-child(2) { animation-delay: 0.3s; }
.site-loader__signal:nth-child(3) { animation-delay: 0.6s; }
.site-loader__signal:nth-child(4) { animation-delay: 0.9s; }
.site-loader__signal.is-active {
  color: #ffffff;
  border-color: rgba(102, 239, 255, 0.28);
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.16), rgba(93, 131, 255, 0.16));
  box-shadow: 0 0 18px rgba(102, 239, 255, 0.14);
}
.site-loader__progress {
  width: min(100%, 520px);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.36);
}
.site-loader__progress-line {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(102, 239, 255, 0.18), rgba(102, 239, 255, 0.95), rgba(93, 131, 255, 0.88), rgba(132, 255, 202, 0.84));
  box-shadow: 0 0 18px rgba(102, 239, 255, 0.24);
  animation: loaderProgress 2.8s ease-in-out infinite;
}
.site-shell {
  position: relative;
  z-index: 2;
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}
body.is-site-loading .site-shell {
  opacity: 0.02;
  transform: translateY(16px);
  filter: blur(10px);
}
.site-loader.is-exiting + .site-shell,
body:not(.is-site-loading) .site-shell {
  opacity: 1;
  transform: none;
  filter: none;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.site-canvas, .site-aurora, .site-grid-overlay, .site-pointer-light {
  position: fixed; inset: 0; pointer-events: none;
}
.site-canvas { z-index: 0; }
.site-aurora { z-index: 0; overflow: hidden; }
.site-aurora span {
  position: absolute; width: 40vw; height: 40vw; border-radius: 50%;
  filter: blur(54px); opacity: 0.18; animation: aurora-drift 18s ease-in-out infinite;
}
.site-aurora span:nth-child(1) { left: -10%; top: -8%; background: rgba(102, 239, 255, 0.46); }
.site-aurora span:nth-child(2) { right: -12%; top: 12%; background: rgba(93, 131, 255, 0.46); animation-delay: 3.2s; }
.site-aurora span:nth-child(3) { left: 24%; bottom: -12%; background: rgba(132, 255, 202, 0.34); animation-delay: 6.2s; }
.site-grid-overlay {
  z-index: 0; opacity: 0.06;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(900px) rotateX(76deg) translateY(18%);
  transform-origin: center top;
}
.site-pointer-light {
  z-index: 1;
  background: radial-gradient(420px circle at var(--pointer-x, 50%) var(--pointer-y, 16%), rgba(102, 239, 255, 0.18), transparent 62%);
}
.section-shell, .hero-shell, .footer-shell, .topbar-shell, .legal-shell {
  width: min(calc(100% - 32px), var(--max)); margin: 0 auto;
}
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(2, 8, 19, 0.92), rgba(4, 11, 22, 0.74) 60%, rgba(4, 11, 22, 0));
  backdrop-filter: blur(22px) saturate(140%);
}
.site-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(102, 239, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 0%, rgba(93, 131, 255, 0.14), transparent 26%);
  opacity: 0.92;
}
.topbar-shell {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 28px;
  border: 1px solid rgba(111, 231, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.82), rgba(8, 18, 34, 0.92) 58%, rgba(6, 14, 27, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(93, 131, 255, 0.06),
    0 20px 54px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(93, 131, 255, 0.08);
  overflow: hidden;
}
.topbar-shell::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 48%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
  opacity: 0.72;
  pointer-events: none;
}
.topbar-shell::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(102, 239, 255, 0), rgba(102, 239, 255, 0.62), rgba(93, 131, 255, 0.28), rgba(93, 131, 255, 0));
  opacity: 0.48;
  pointer-events: none;
}
.brand-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.brand-orb {
  position: relative; width: 54px; height: 54px; padding: 4px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.95), rgba(93, 131, 255, 0.95));
  box-shadow: 0 0 34px rgba(102, 239, 255, 0.26), 0 0 58px rgba(93, 131, 255, 0.2), 0 12px 30px rgba(0, 0, 0, 0.24);
}
.brand-orb::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22); opacity: 0.4;
}
.brand-logo {
  position: relative; z-index: 1; width: 100%; height: 100%; display: block;
  border-radius: 50%; object-fit: cover; background: #020915;
}
.brand-copy { min-width: 0; }
.brand-copy strong {
  display: block; font-family: "Sora", "Segoe UI", sans-serif; font-size: 1rem; letter-spacing: 0.12em;
  text-shadow: 0 0 18px rgba(102, 239, 255, 0.12);
}
.brand-copy span {
  display: block;
  margin-top: 2px;
  color: #bed8e9;
  font-size: 0.8rem;
}
.topbar-nav {
  position: relative;
  z-index: 1;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.topbar-nav a {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px;
  padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(111, 231, 255, 0.12);
  background: linear-gradient(180deg, rgba(20, 38, 62, 0.96), rgba(8, 18, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 24px rgba(0, 0, 0, 0.24), 0 0 22px rgba(93, 131, 255, 0.08);
  color: #e4f7ff; text-decoration: none; cursor: pointer; backdrop-filter: blur(14px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.topbar-nav a::before {
  content: ""; position: absolute; left: 10px; right: 10px; top: 6px; height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  opacity: 0.7; pointer-events: none;
}
.topbar-nav a::after {
  content: ""; position: absolute; inset: auto 12px 6px 12px; height: 2px;
  border-radius: 999px; pointer-events: none;
  background: linear-gradient(90deg, rgba(102, 239, 255, 0), rgba(102, 239, 255, 0.72), rgba(93, 131, 255, 0));
  opacity: 0.42;
}
.nav-button {
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px;
  padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(111, 231, 255, 0.12); background: linear-gradient(180deg, rgba(16, 32, 53, 0.9), rgba(8, 18, 33, 0.96));
  color: var(--muted); text-decoration: none; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.topbar-nav a:hover, .topbar-nav a:focus-visible {
  color: #ffffff; border-color: rgba(102, 239, 255, 0.28);
  background: linear-gradient(180deg, rgba(22, 42, 68, 0.96), rgba(10, 22, 39, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(102, 239, 255, 0.16);
  transform: translateY(-2px); outline: none;
}
.nav-button:hover, .nav-button:focus-visible {
  color: var(--text); border-color: rgba(102, 239, 255, 0.24); background: linear-gradient(180deg, rgba(22, 42, 68, 0.94), rgba(10, 22, 39, 0.98)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 28px rgba(0, 0, 0, 0.22); outline: none;
}
.topbar-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px;
  padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(102, 239, 255, 0.18);
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.26), rgba(93, 131, 255, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 30px rgba(22, 105, 210, 0.22); color: var(--text); text-decoration: none; font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.topbar-cta::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 6px;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}
.topbar-cta:hover, .topbar-cta:focus-visible {
  transform: translateY(-2px); box-shadow: 0 18px 34px rgba(22, 105, 210, 0.28);
  border-color: rgba(102, 239, 255, 0.34); outline: none;
}
.nav-toggle { display: none; }
.hero { position: relative; padding: 42px 0 18px; }
.hero-shell {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: 24px; align-items: stretch;
}
.glass-panel, .content-card, .journey-card, .legal-card, .contact-card, .command-card, .detail-card {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 22, 40, 0.92), rgba(6, 13, 25, 0.96)); box-shadow: var(--shadow-lg);
}
.glass-panel::before, .content-card::before, .journey-card::before, .legal-card::before, .contact-card::before, .command-card::before, .detail-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 10%), rgba(102, 239, 255, 0.12), transparent 40%);
  pointer-events: none;
}
.hero-copy { padding: 34px; min-height: 640px; }
.hero-kickers { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.chip, .eyebrow, .filter-chip, .inline-chip, .stat-chip, .route-chip, .trust-chip {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); color: var(--text);
  font-size: 0.82rem; font-weight: 700;
}
.eyebrow { color: #dff9ff; background: rgba(255, 255, 255, 0.05); }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(102, 239, 255, 0.14); background: rgba(255, 255, 255, 0.04); color: #d8f8ff;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero h1, .section-head h2, .section-head h3, .journey-title, .detail-title, .legal-title {
  margin: 0; font-family: "Sora", "Segoe UI", sans-serif; letter-spacing: -0.03em;
}
.hero h1 { max-width: 10ch; font-size: clamp(3rem, 6vw, 5.6rem); line-height: 0.94; }
.hero-lead {
  margin: 18px 0 0; max-width: 56ch; color: var(--muted); line-height: 1.74; font-size: 1.05rem;
}
.hero-value-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 22px;
}
.hero-value {
  padding: 18px 16px; border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(12px);
}
.hero-value strong {
  display: block; font-family: "Sora", "Segoe UI", sans-serif; font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.hero-value span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.93rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.button, .button-secondary, .button-tertiary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 20px;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.08); text-decoration: none; cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button {
  background: linear-gradient(135deg, var(--accent), #b4ffe6); color: #02111b; font-weight: 900;
  box-shadow: 0 18px 40px rgba(102, 239, 255, 0.22);
}
.button-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text); font-weight: 800; }
.button-tertiary { background: transparent; color: var(--muted); font-weight: 800; }
.button:hover, .button-secondary:hover, .button-tertiary:hover, .button:focus-visible, .button-secondary:focus-visible, .button-tertiary:focus-visible {
  transform: translateY(-2px); border-color: rgba(102, 239, 255, 0.22); outline: none;
}
.hero-note { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; color: var(--muted-2); font-size: 0.9rem; }
.hero-dashboard {
  padding: 24px; min-height: 640px; display: grid; gap: 16px; grid-template-rows: auto auto 1fr;
}
.dashboard-head {
  display: flex; align-items: start; justify-content: space-between; gap: 16px;
}
.dashboard-head h2 { margin: 0; font-family: "Sora", "Segoe UI", sans-serif; font-size: 1.35rem; }
.dashboard-head p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(102, 239, 255, 0.2); background: linear-gradient(135deg, rgba(102, 239, 255, 0.18), rgba(93, 131, 255, 0.16));
  font-weight: 800; font-size: 0.86rem; white-space: nowrap;
}
.hero-scene {
  position: relative; min-height: 290px; border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(102, 239, 255, 0.16);
  background:
    radial-gradient(circle at 22% 20%, rgba(102, 239, 255, 0.2), transparent 26%),
    radial-gradient(circle at 72% 34%, rgba(93, 131, 255, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(6, 17, 30, 0.92), rgba(3, 11, 22, 0.98));
}
.hero-scene::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(2, 10, 18, 0.84));
  background-size: 100% 22px, 22px 100%, auto;
}
.hero-scene::after {
  content: ""; position: absolute; left: -10%; right: -10%; top: 54%; height: 24%;
  background: linear-gradient(90deg, transparent, rgba(102, 239, 255, 0.18), transparent);
  filter: blur(8px); animation: scanY 6s ease-in-out infinite;
}
.hero-scene .scene-ring {
  position: absolute; inset: auto; border-radius: 50%; border: 1px solid rgba(111, 231, 255, 0.22); animation: rotate360 18s linear infinite;
}
.hero-scene .scene-ring.ring-1 { width: 220px; height: 220px; right: 30px; top: 26px; }
.hero-scene .scene-ring.ring-2 {
  width: 290px; height: 290px; right: -10px; top: -8px; border-color: rgba(93, 131, 255, 0.18);
  animation-direction: reverse; animation-duration: 24s;
}
.hero-core {
  position: absolute; right: 82px; top: 78px; width: 142px; height: 142px; display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9), transparent 34%), linear-gradient(145deg, rgba(102, 239, 255, 0.98), rgba(93, 131, 255, 0.9));
  box-shadow: 0 0 46px rgba(102, 239, 255, 0.34), 0 0 90px rgba(93, 131, 255, 0.24);
}
.hero-core::after {
  content: ""; width: 112px; height: 112px; border-radius: 50%; background: rgba(3, 10, 20, 0.86); border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-floater {
  position: absolute; min-width: 170px; max-width: 200px; padding: 14px 16px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 12, 24, 0.74); backdrop-filter: blur(16px); box-shadow: var(--shadow-md);
}
.hero-floater strong { display: block; font-size: 0.96rem; }
.hero-floater span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.hero-floater.floater-ai { left: 22px; top: 24px; animation: floatY 7s ease-in-out infinite; }
.hero-floater.floater-health { left: 32px; bottom: 24px; animation: floatY 8.5s ease-in-out infinite; animation-delay: 1.2s; }
.hero-floater.floater-report { right: 30px; bottom: 34px; animation: floatY 9s ease-in-out infinite; animation-delay: 2.2s; }
.hero-lattice {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px;
}
.hero-lattice-card {
  min-width: 88px; padding: 10px 12px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 12, 24, 0.68); backdrop-filter: blur(12px); box-shadow: var(--shadow-md);
}
.hero-lattice-card strong { display: block; font-family: "Sora", "Segoe UI", sans-serif; font-size: 1.18rem; }
.hero-lattice-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.meta-card { padding: 18px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); }
.meta-card h3 { margin: 0 0 8px; font-size: 0.95rem; }
.meta-card p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.site-section { padding: 26px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px;
}
.section-head > div {
  position: relative;
  padding-bottom: 12px;
}
.section-head > div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(140px, 40%);
  height: 1px;
  background: linear-gradient(90deg, rgba(102, 239, 255, 0.52), rgba(93, 131, 255, 0.18), transparent);
}
.section-head p { margin: 10px 0 0; max-width: 62ch; color: var(--muted); line-height: 1.72; }
.command-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 18px; }
.command-card { padding: 24px; }
.command-card h3 { margin: 0 0 8px; font-family: "Sora", "Segoe UI", sans-serif; }
.command-card p { margin: 0; color: var(--muted); line-height: 1.66; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.stat-card { padding: 18px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); }
.stat-card strong { display: block; font-family: "Sora", "Segoe UI", sans-serif; font-size: 1.9rem; }
.stat-card span { display: block; margin-top: 6px; color: var(--muted); line-height: 1.5; }
.category-chart { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 20px; align-items: center; margin-top: 22px; }
.radial-chart { position: relative; width: 220px; height: 220px; margin: 0 auto; }
.radial-chart svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.radial-center {
  position: absolute; inset: 44px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(4, 10, 20, 0.86);
  box-shadow: inset 0 0 24px rgba(102, 239, 255, 0.12); text-align: center;
}
.radial-center strong { display: block; font-family: "Sora", "Segoe UI", sans-serif; font-size: 2.15rem; }
.radial-center span { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.category-list { display: grid; gap: 12px; }
.category-row { display: grid; grid-template-columns: 140px minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.category-label { font-weight: 700; color: #e1faff; }
.category-track { position: relative; height: 12px; border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.06); }
.category-track span {
  position: absolute; inset: 0 auto 0 0; width: var(--bar-width, 50%); border-radius: inherit;
  background: linear-gradient(90deg, var(--bar-start, var(--accent)), var(--bar-end, var(--accent-2)));
  box-shadow: 0 0 20px rgba(102, 239, 255, 0.28);
}
.category-row strong { font-family: "Sora", "Segoe UI", sans-serif; }
.signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.signal-card {
  padding: 18px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}
.signal-card h4 { margin: 0 0 8px; font-size: 0.94rem; }
.signal-card p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.spotlight-layout { display: grid; grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr); gap: 18px; }
.spotlight-list { display: grid; gap: 12px; }
.spotlight-trigger {
  width: 100%; text-align: left; padding: 18px; border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03); cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.spotlight-trigger strong { display: block; font-size: 1rem; }
.spotlight-trigger span { display: block; margin-top: 7px; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.spotlight-trigger.is-active, .spotlight-trigger:hover, .spotlight-trigger:focus-visible {
  transform: translateY(-2px); border-color: rgba(102, 239, 255, 0.24);
  background: linear-gradient(180deg, rgba(102, 239, 255, 0.1), rgba(93, 131, 255, 0.08));
  box-shadow: 0 20px 46px rgba(16, 50, 96, 0.22); outline: none;
}
.detail-card { display: grid; grid-template-columns: minmax(0, 1.05fr) 320px; min-height: 540px; }
.detail-copy { padding: 28px; }
.detail-hero {
  position: relative; min-height: 260px; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03);
}
.detail-headline { display: grid; gap: 10px; margin-top: 18px; }
.detail-title { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.detail-subtitle { margin: 10px 0 0; max-width: 60ch; color: var(--muted); line-height: 1.66; }
.detail-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.detail-panel { padding: 18px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); }
.detail-panel h4 { margin: 0 0 10px; font-size: 0.94rem; }
.detail-panel ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; color: var(--muted); line-height: 1.58; }
.detail-sidebar { padding: 28px 24px 28px 0; }
.sidebar-stack { display: grid; gap: 14px; height: 100%; }
.sidebar-card { padding: 18px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); }
.sidebar-card h4 { margin: 0 0 10px; font-size: 0.92rem; }
.sidebar-card p, .sidebar-card li { margin: 0; color: var(--muted); line-height: 1.55; font-size: 0.88rem; }
.sidebar-card ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.atlas-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: start; margin-bottom: 20px; }
.atlas-search { position: relative; }
.atlas-search input {
  width: 100%; min-height: 56px; padding: 14px 18px 14px 50px; border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); color: var(--text);
}
.atlas-search svg {
  position: absolute; left: 18px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); color: var(--muted);
}
.atlas-search input::placeholder, .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(155, 181, 200, 0.82); }
.atlas-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip { cursor: pointer; min-height: 42px; background: rgba(255, 255, 255, 0.04); }
.filter-chip[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.18), rgba(93, 131, 255, 0.18)); border-color: rgba(102, 239, 255, 0.3);
}
.atlas-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card {
  display: grid; gap: 14px; padding: 18px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 23, 42, 0.82), rgba(7, 15, 27, 0.96)); box-shadow: var(--shadow-md);
  cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.feature-card:hover, .feature-card:focus-visible {
  transform: translateY(-4px); border-color: rgba(102, 239, 255, 0.24); box-shadow: 0 26px 58px rgba(13, 33, 67, 0.26); outline: none;
}
.feature-art {
  position: relative; min-height: 170px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.feature-surface {
  position: relative; display: grid; grid-template-rows: auto 1fr; gap: 12px; height: 100%;
  padding: 16px; border-radius: inherit;
  background: linear-gradient(180deg, rgba(13, 23, 42, 0.88), rgba(6, 14, 26, 0.96));
}
.feature-surface::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 18%, rgba(102, 239, 255, 0.12), transparent 30%);
  pointer-events: none;
}
.feature-surface--detail { padding: 18px; }
.surface-hud { display: flex; flex-wrap: wrap; gap: 8px; }
.surface-chip {
  display: inline-flex; align-items: center; min-height: 28px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); color: #def8ff;
  font-size: 0.75rem; font-weight: 700;
}
.surface-chip--icon { gap: 8px; }
.surface-chip--icon svg { width: 14px; height: 14px; flex: 0 0 auto; }
.surface-stage {
  position: relative; min-height: 108px; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(6, 14, 26, 0.92), rgba(4, 10, 20, 0.98));
}
.feature-surface--detail .surface-stage { min-height: 168px; }
.surface-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 22px, 22px 100%;
  opacity: 0.14;
}
.surface-animation {
  position: absolute; inset: 0; pointer-events: none;
}
.surface-icon-shell {
  position: absolute; left: 14px; top: 14px; width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(4, 12, 24, 0.82);
  color: #dffbff; box-shadow: 0 0 20px rgba(102, 239, 255, 0.16), inset 0 0 18px rgba(102, 239, 255, 0.08);
  backdrop-filter: blur(10px); z-index: 2;
}
.feature-surface--detail .surface-icon-shell {
  width: 46px; height: 46px;
}
.surface-icon-shell svg {
  width: 22px; height: 22px;
}
.surface-kind--heart-wave .surface-icon-shell,
.surface-kind--vitals-grid .surface-icon-shell,
.surface-kind--wellness-pulse .surface-icon-shell {
  color: #9af6ff;
}
.surface-kind--xray-scan .surface-icon-shell,
.surface-kind--ocr-grid .surface-icon-shell,
.surface-kind--scan-grid .surface-icon-shell {
  color: #d9f9ff;
}
.surface-kind--mri-scan .surface-icon-shell,
.surface-kind--ct-scan .surface-icon-shell,
.surface-kind--ai-route .surface-icon-shell {
  color: #a4c3ff;
}
.surface-kind--report-stream .surface-icon-shell,
.surface-kind--vault-grid .surface-icon-shell,
.surface-kind--access-flow .surface-icon-shell {
  color: #b8f7da;
}
.ecg-graph, .vitals-wave {
  position: absolute; left: 12px; right: 12px; bottom: 12px; width: calc(100% - 24px);
}
.ecg-graph { top: 18px; height: calc(100% - 30px); }
.vitals-wave { height: 60px; }
.ecg-line {
  fill: none; stroke: #86f4ff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 420; stroke-dashoffset: 420; animation: ecgTrace 3.2s linear infinite;
}
.ecg-line--glow {
  stroke: rgba(102, 239, 255, 0.34); stroke-width: 8; filter: blur(6px);
}
.xray-frame {
  position: absolute; inset: 16px 22px 14px 22px; border-radius: 18px; border: 1px solid rgba(164, 241, 255, 0.18);
  background: radial-gradient(circle at center, rgba(132, 240, 255, 0.12), rgba(6, 15, 28, 0.84) 64%);
  overflow: hidden;
}
.xray-spine {
  position: absolute; top: 16px; bottom: 16px; left: 50%; width: 6px; transform: translateX(-50%);
  border-radius: 999px; background: linear-gradient(180deg, rgba(217, 249, 255, 0.92), rgba(130, 236, 255, 0.34));
}
.xray-rib {
  position: absolute; left: 22%; right: 22%; height: 20px; border-top: 2px solid rgba(217, 249, 255, 0.3);
  border-bottom: 2px solid rgba(217, 249, 255, 0.18); border-radius: 50%;
}
.xray-rib.rib-1 { top: 18px; }
.xray-rib.rib-2 { top: 40px; }
.xray-rib.rib-3 { top: 62px; }
.xray-rib.rib-4 { top: 84px; }
.xray-scan-bar {
  position: absolute; left: 12px; right: 12px; height: 10px;
  background: linear-gradient(90deg, transparent, rgba(102, 239, 255, 0.78), transparent);
  filter: blur(4px); animation: xraySweep 4.4s ease-in-out infinite;
}
.mri-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(164, 195, 255, 0.22);
}
.mri-ring.ring-1 { inset: 26px 74px; animation: rotate360 14s linear infinite; }
.mri-ring.ring-2 { inset: 42px 92px; animation: rotate360 18s linear infinite reverse; }
.mri-ring.ring-3 { inset: 58px 110px; animation: rotate360 10s linear infinite; }
.mri-slice {
  position: absolute; left: 18%; right: 18%; height: 12px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 131, 255, 0.1), rgba(164, 195, 255, 0.72), rgba(93, 131, 255, 0.1));
  opacity: 0.7; filter: blur(0.4px);
}
.mri-slice.slice-1 { top: 34px; animation: mriSlice 5s ease-in-out infinite; }
.mri-slice.slice-2 { top: 62px; animation: mriSlice 5s ease-in-out infinite 0.5s; }
.mri-slice.slice-3 { top: 90px; animation: mriSlice 5s ease-in-out infinite 1s; }
.ct-disc {
  position: absolute; inset: 26px 72px; border-radius: 50%;
  border: 1px solid rgba(164, 195, 255, 0.2);
  background:
    radial-gradient(circle, transparent 50%, rgba(93, 131, 255, 0.18) 51%, rgba(93, 131, 255, 0.18) 58%, transparent 59%),
    radial-gradient(circle at center, rgba(102, 239, 255, 0.06), transparent 72%);
}
.ct-core {
  position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(164, 195, 255, 0.26); background: rgba(7, 16, 30, 0.94);
}
.ct-sweep {
  position: absolute; inset: 30px 76px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(102, 239, 255, 0.8), rgba(102, 239, 255, 0.1) 18%, transparent 34%, transparent 100%);
  animation: rotate360 4.8s linear infinite; mix-blend-mode: screen;
}
.ocr-sheet {
  position: absolute; inset: 16px 22px 14px 22px; border-radius: 18px; border: 1px solid rgba(217, 249, 255, 0.16);
  background: linear-gradient(180deg, rgba(11, 20, 34, 0.94), rgba(5, 13, 24, 0.98));
}
.ocr-line {
  position: absolute; left: 18px; right: 28px; height: 5px; border-radius: 999px; background: rgba(217, 249, 255, 0.22);
}
.ocr-line.line-1 { top: 24px; }
.ocr-line.line-2 { top: 42px; right: 44px; }
.ocr-line.line-3 { top: 60px; }
.ocr-line.line-4 { top: 78px; right: 56px; }
.ocr-corner {
  position: absolute; width: 16px; height: 16px; border-color: #86f4ff; border-style: solid;
}
.ocr-corner.corner-tl { left: 10px; top: 10px; border-width: 2px 0 0 2px; }
.ocr-corner.corner-tr { right: 10px; top: 10px; border-width: 2px 2px 0 0; }
.ocr-corner.corner-bl { left: 10px; bottom: 10px; border-width: 0 0 2px 2px; }
.ocr-corner.corner-br { right: 10px; bottom: 10px; border-width: 0 2px 2px 0; }
.ocr-scan-bar {
  position: absolute; left: 14px; right: 14px; height: 8px;
  background: linear-gradient(90deg, transparent, rgba(102, 239, 255, 0.86), transparent);
  filter: blur(3px); animation: scanVertical 4s ease-in-out infinite;
}
.vault-card {
  position: absolute; width: 124px; height: 78px; border-radius: 16px; border: 1px solid rgba(184, 247, 218, 0.16);
  background: linear-gradient(180deg, rgba(12, 23, 38, 0.94), rgba(5, 13, 24, 0.98));
  box-shadow: 0 0 18px rgba(132, 255, 202, 0.08);
}
.vault-card.card-1 { left: 18px; top: 44px; transform: rotate(-8deg); }
.vault-card.card-2 { left: 52px; top: 34px; transform: rotate(-2deg); }
.vault-card.card-3 { left: 86px; top: 46px; transform: rotate(5deg); }
.vault-lock {
  position: absolute; right: 24px; bottom: 22px; width: 62px; height: 54px; border-radius: 18px;
  border: 1px solid rgba(184, 247, 218, 0.2); background: rgba(8, 18, 30, 0.94);
  box-shadow: 0 0 22px rgba(132, 255, 202, 0.1);
}
.vault-lock::before {
  content: ""; position: absolute; left: 18px; right: 18px; top: -14px; height: 22px;
  border: 3px solid rgba(184, 247, 218, 0.42); border-bottom: 0; border-radius: 14px 14px 0 0;
}
.vault-lock::after {
  content: ""; position: absolute; left: 50%; top: 20px; width: 10px; height: 14px; transform: translateX(-50%);
  border-radius: 999px; background: linear-gradient(180deg, rgba(184, 247, 218, 0.92), rgba(132, 255, 202, 0.36));
}
.report-card {
  position: absolute; width: 140px; height: 90px; padding: 16px; border-radius: 16px;
  border: 1px solid rgba(184, 247, 218, 0.14); background: linear-gradient(180deg, rgba(11, 20, 34, 0.94), rgba(5, 13, 24, 0.98));
}
.report-card span {
  display: block; height: 5px; margin-top: 10px; border-radius: 999px; background: rgba(184, 247, 218, 0.26);
}
.report-card span:first-child { margin-top: 0; width: 72%; }
.report-card span:nth-child(2) { width: 88%; }
.report-card span:nth-child(3) { width: 58%; }
.report-a { left: 18px; top: 48px; transform: rotate(-7deg); animation: floatY 6.8s ease-in-out infinite; }
.report-b { left: 74px; top: 34px; transform: rotate(-1deg); animation: floatY 7.5s ease-in-out infinite 0.5s; }
.report-c { left: 132px; top: 52px; transform: rotate(6deg); animation: floatY 8.2s ease-in-out infinite 1s; }
.ai-node {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: #86f4ff; box-shadow: 0 0 18px rgba(102, 239, 255, 0.55);
}
.ai-node.node-1 { left: 68px; top: 74px; }
.ai-node.node-2 { left: 42%; top: 34px; }
.ai-node.node-3 { right: 80px; top: 92px; }
.ai-node.node-4 { right: 34px; top: 42px; }
.ai-trace {
  position: absolute; height: 2px; background: linear-gradient(90deg, rgba(102, 239, 255, 0.08), rgba(102, 239, 255, 0.85), rgba(93, 131, 255, 0.12));
  transform-origin: left center;
}
.ai-trace.trace-a { left: 80px; top: 80px; width: 122px; transform: rotate(-20deg); animation: aiPulse 3.4s linear infinite; }
.ai-trace.trace-b { left: 45%; top: 46px; width: 94px; transform: rotate(32deg); animation: aiPulse 3.4s linear infinite 0.8s; }
.flow-node {
  position: absolute; width: 52px; height: 52px; border-radius: 16px;
  border: 1px solid rgba(184, 247, 218, 0.18); background: rgba(8, 18, 30, 0.94);
}
.flow-node.flow-1 { left: 18px; top: 62px; }
.flow-node.flow-2 { left: calc(50% - 26px); top: 46px; }
.flow-node.flow-3 { right: 18px; top: 62px; }
.flow-link {
  position: absolute; left: 70px; right: 70px; top: 88px; height: 2px;
  background: linear-gradient(90deg, rgba(184, 247, 218, 0.08), rgba(184, 247, 218, 0.78), rgba(184, 247, 218, 0.08));
}
.flow-tracer {
  position: absolute; top: 82px; left: 70px; width: 14px; height: 14px; border-radius: 50%;
  background: #b8f7da; box-shadow: 0 0 18px rgba(184, 247, 218, 0.5); animation: flowMove 3.8s ease-in-out infinite;
}
.vital-column {
  position: absolute; bottom: 18px; width: 14px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(102, 239, 255, 0.2), rgba(102, 239, 255, 0.9));
}
.vital-column.column-1 { left: 76px; height: 28px; animation: vitalRise 3s ease-in-out infinite; }
.vital-column.column-2 { left: 102px; height: 46px; animation: vitalRise 3.4s ease-in-out infinite 0.4s; }
.vital-column.column-3 { left: 128px; height: 34px; animation: vitalRise 3.2s ease-in-out infinite 0.7s; }
.vital-column.column-4 { left: 154px; height: 56px; animation: vitalRise 3.6s ease-in-out infinite 1s; }
.vitals-wave path {
  fill: none; stroke: #86f4ff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 420; stroke-dashoffset: 420; animation: ecgTrace 3.8s linear infinite;
}
.wellness-ring {
  position: absolute; left: 50%; top: 50%; border-radius: 50%; border: 1px solid rgba(154, 246, 255, 0.18);
  transform: translate(-50%, -50%);
}
.wellness-ring.ring-1 { width: 96px; height: 96px; animation: pulseSweep 4.6s ease-in-out infinite; }
.wellness-ring.ring-2 { width: 136px; height: 136px; animation: pulseSweep 5.4s ease-in-out infinite 0.6s; }
.wellness-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #9af6ff;
  box-shadow: 0 0 18px rgba(154, 246, 255, 0.45);
}
.wellness-dot.dot-1 { left: calc(50% - 6px); top: 30px; animation: orbitBob 4s ease-in-out infinite; }
.wellness-dot.dot-2 { left: 34%; bottom: 30px; animation: orbitBob 4.8s ease-in-out infinite 0.5s; }
.wellness-dot.dot-3 { right: 28%; bottom: 34px; animation: orbitBob 5.2s ease-in-out infinite 1s; }
.scan-frame {
  position: absolute; inset: 24px 42px 22px 42px; border-radius: 18px; border: 1px solid rgba(217, 249, 255, 0.16);
}
.scan-target {
  position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(217, 249, 255, 0.22); box-shadow: 0 0 28px rgba(102, 239, 255, 0.1);
}
.scan-target::before,
.scan-target::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: rgba(134, 244, 255, 0.4);
  transform: translate(-50%, -50%);
}
.scan-target::before { width: 44px; height: 1px; }
.scan-target::after { width: 1px; height: 44px; }
.scan-bar {
  position: absolute; left: 48px; right: 48px; height: 8px;
  background: linear-gradient(90deg, transparent, rgba(102, 239, 255, 0.82), transparent);
  filter: blur(3px); animation: scanVertical 3.8s ease-in-out infinite;
}
.signal-column {
  position: absolute; bottom: 18px; width: 12px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(102, 239, 255, 0.14), rgba(102, 239, 255, 0.78));
}
.signal-column.col-1 { left: 80px; height: 34px; animation: vitalRise 3s ease-in-out infinite; }
.signal-column.col-2 { left: 108px; height: 52px; animation: vitalRise 3.5s ease-in-out infinite 0.5s; }
.signal-column.col-3 { left: 136px; height: 40px; animation: vitalRise 3.1s ease-in-out infinite 0.8s; }
.signal-column.col-4 { left: 164px; height: 60px; animation: vitalRise 3.8s ease-in-out infinite 1.1s; }
.surface-sweep {
  position: absolute; left: -10%; right: -10%; top: 58%; height: 22%;
  background: linear-gradient(90deg, transparent, rgba(102, 239, 255, 0.26), transparent);
  filter: blur(8px); opacity: 0;
}
.surface-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(111, 231, 255, 0.18); display: none;
}
.surface-ring.ring-a { width: 110px; height: 110px; right: 14px; top: 12px; }
.surface-ring.ring-b { width: 156px; height: 156px; right: -8px; top: -10px; }
.surface-ring.ring-c { width: 82px; height: 82px; left: 18px; bottom: 18px; }
.surface-node {
  position: absolute; min-width: 72px; max-width: 110px; padding: 8px 10px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(4, 12, 24, 0.8);
  box-shadow: 0 0 24px rgba(102, 239, 255, 0.14); backdrop-filter: blur(10px);
}
.surface-node span { display: block; font-size: 0.74rem; line-height: 1.35; color: #e5fbff; }
.surface-node.node-1 { left: 14px; top: 14px; }
.surface-node.node-2 { right: 14px; top: 28px; }
.surface-node.node-3 { left: 28%; bottom: 14px; }
.surface-wave {
  position: absolute; left: 12px; right: 12px; bottom: 12px; height: 40px; opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(102, 239, 255, 0.85) 8% 9%, transparent 9% 17%, rgba(102, 239, 255, 0.85) 17% 18%, transparent 18% 30%, rgba(102, 239, 255, 0.85) 30% 31%, transparent 31% 44%, rgba(102, 239, 255, 0.85) 44% 45%, transparent 45% 58%, rgba(102, 239, 255, 0.85) 58% 59%, transparent 59% 72%, rgba(102, 239, 255, 0.85) 72% 73%, transparent 73% 100%);
}
.visual-ai-route .surface-sweep,
.visual-ocr-grid .surface-sweep,
.visual-scan-grid .surface-sweep,
.visual-xray-scan .surface-sweep { opacity: 0.85; animation: scanY 4s ease-in-out infinite; }
.visual-mri-scan .surface-sweep,
.visual-access-flow .surface-sweep,
.visual-vault-grid .surface-sweep { opacity: 0.6; animation: pulseSweep 5.4s ease-in-out infinite; }
.visual-heart-wave .surface-sweep,
.visual-vitals-grid .surface-sweep,
.visual-wellness-pulse .surface-sweep,
.visual-report-stream .surface-sweep { opacity: 0.55; animation: pulseGlow 4.8s ease-in-out infinite; }
.visual-mri-scan .surface-ring,
.visual-ct-scan .surface-ring,
.visual-ai-route .surface-ring { display: block; animation: rotate360 18s linear infinite; }
.visual-mri-scan .ring-b,
.visual-ai-route .ring-b { animation-direction: reverse; animation-duration: 24s; }
.visual-ct-scan .surface-stage::after {
  content: ""; position: absolute; inset: 18px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 20%, rgba(102, 239, 255, 0.86) 20% 24%, transparent 24% 46%, rgba(93, 131, 255, 0.72) 46% 50%, transparent 50% 100%);
  mask: radial-gradient(circle, transparent 42%, #000 45%, #000 60%, transparent 63%);
  animation: rotate360 10s linear infinite; opacity: 0.85;
}
.visual-xray-scan .surface-stage::after {
  content: ""; position: absolute; inset: 16px; border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(227, 246, 255, 0.2) 18% 19%, transparent 19% 81%, rgba(227, 246, 255, 0.2) 81% 82%, transparent 82% 100%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(227, 246, 255, 0.12) 18px 20px, transparent 20px 40px),
    linear-gradient(180deg, rgba(102, 239, 255, 0.08), rgba(102, 239, 255, 0.02));
  opacity: 0.7; mix-blend-mode: screen;
}
.visual-report-stream .surface-node,
.visual-vitals-grid .surface-node { display: none; }
.visual-heart-wave .surface-wave,
.visual-wellness-pulse .surface-wave,
.visual-vitals-grid .surface-wave { opacity: 0.65; }
.visual-access-flow .surface-node { top: auto; bottom: 18px; }
.visual-access-flow .node-1 { left: 12px; }
.visual-access-flow .node-2 { left: calc(50% - 42px); right: auto; }
.visual-access-flow .node-3 { left: auto; right: 12px; bottom: 18px; }
.visual-access-flow .surface-stage::after,
.visual-ai-route .surface-stage::after {
  content: ""; position: absolute; left: 18px; right: 18px; top: 50%; height: 2px;
  background: linear-gradient(90deg, rgba(102, 239, 255, 0.1), rgba(102, 239, 255, 0.75), rgba(93, 131, 255, 0.75), rgba(93, 131, 255, 0.1));
  transform: translateY(-50%);
}
.feature-card h3 { margin: 0; font-size: 1.06rem; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.58; font-size: 0.9rem; }
.feature-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.journey-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.journey-tab {
  min-height: 44px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04); color: var(--muted); font-weight: 700; cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.journey-tab.is-active, .journey-tab:hover, .journey-tab:focus-visible {
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.18), rgba(93, 131, 255, 0.16));
  border-color: rgba(102, 239, 255, 0.28); color: var(--text); outline: none;
}
.journey-card { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 18px; padding: 22px; }
.journey-visual {
  --orbit-center-x: 50%;
  --orbit-center-y: 48%;
  position: relative; min-height: 360px; border-radius: 26px; overflow: hidden; isolation: isolate; border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.92), rgba(4, 11, 22, 0.98));
}
.journey-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 24px, 24px 100%;
  opacity: 0.14;
}
.journey-sweep {
  position: absolute; left: -10%; right: -10%; top: 56%; height: 20%;
  background: linear-gradient(90deg, transparent, rgba(102, 239, 255, 0.22), transparent);
  filter: blur(8px); opacity: 0.75; animation: scanY 5s ease-in-out infinite;
}
.journey-hub {
  position: absolute; left: var(--orbit-center-x); top: var(--orbit-center-y); z-index: 4; width: 118px; height: 118px;
  transform: translate(-50%, -50%); display: grid; place-items: center;
}
.journey-hub::before,
.journey-hub::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
}
.journey-hub::before {
  border: 1px solid rgba(102, 239, 255, 0.2); background: radial-gradient(circle, rgba(102, 239, 255, 0.18), transparent 68%);
  animation: hubPulse 4.8s ease-in-out infinite;
}
.journey-hub::after {
  inset: 12px;
  background:
    radial-gradient(circle at 50% 42%, rgba(233, 253, 255, 0.96), rgba(102, 239, 255, 0.32) 48%, rgba(5, 15, 29, 0.9) 72%);
  box-shadow: 0 0 26px rgba(102, 239, 255, 0.34);
}
.journey-hub-core-dot {
  position: absolute; top: 24px; left: 50%; z-index: 1; width: 16px; height: 16px; border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #e8fcff, #66efff 58%, rgba(102, 239, 255, 0.26));
  box-shadow: 0 0 18px rgba(102, 239, 255, 0.44);
}
.journey-hub-label {
  position: relative; z-index: 1;
  display: grid; gap: 3px; justify-items: center;
  width: 84px;
  text-align: center;
  color: rgba(214, 247, 255, 0.92);
}
.journey-hub-label strong {
  margin-top: 18px;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.journey-hub-label small {
  font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(183, 221, 236, 0.68);
}
.journey-system-layer {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  transform-origin: var(--orbit-center-x) var(--orbit-center-y);
  animation: rotate360 var(--duration) linear infinite;
}
.journey-system-layer.reverse { animation-direction: reverse; }
.journey-system-layer.orbit-inner { --radius: 72px; }
.journey-system-layer.orbit-mid { --radius: 108px; }
.journey-system-layer.orbit-outer { --radius: 146px; z-index: 3; }
.journey-system-layer::before {
  content: ""; position: absolute; left: var(--orbit-center-x); top: var(--orbit-center-y);
  width: calc(var(--radius) * 2); height: calc(var(--radius) * 2);
  transform: translate(-50%, -50%); border-radius: 50%;
  border: 1px dashed rgba(102, 239, 255, 0.14);
  box-shadow: inset 0 0 30px rgba(102, 239, 255, 0.04);
}
.journey-system-layer.orbit-mid::before { border-color: rgba(93, 131, 255, 0.16); }
.journey-system-layer.orbit-outer::before {
  border-width: 1.5px;
  border-style: solid;
  border-color: rgba(102, 239, 255, 0.18);
}
.journey-planet-anchor {
  position: absolute; left: var(--orbit-center-x); top: var(--orbit-center-y);
  transform: rotate(var(--angle)) translateY(calc(var(--radius) * -1));
  transform-origin: 0 0;
}
.journey-planet-card {
  position: relative; width: 76px; height: 76px; transform: translate(-50%, -50%) rotate(var(--counter-angle));
  display: grid; place-items: center; padding: 0;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.09), transparent 30%),
    rgba(4, 11, 22, 0.9);
  box-shadow: 0 0 22px rgba(102, 239, 255, 0.1);
}
.journey-planet-card::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06); opacity: 0.42;
}
.journey-planet-face {
  width: 100%; height: 100%;
  display: grid; place-items: center; align-content: center; gap: 7px;
  animation: rotate360 var(--duration) linear infinite reverse;
}
.journey-system-layer.reverse .journey-planet-face { animation-direction: normal; }
.journey-planet-icon {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.journey-planet-icon svg { width: 16px; height: 16px; }
.journey-planet-card strong {
  max-width: 76%;
  text-align: center;
  white-space: normal;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #effcff;
}
.journey-planet-card.tone-ai { border-color: rgba(93, 131, 255, 0.2); box-shadow: 0 0 20px rgba(93, 131, 255, 0.12); }
.journey-planet-card.tone-ai .journey-planet-icon { color: #ced8ff; background: rgba(93, 131, 255, 0.16); }
.journey-planet-card.tone-report { border-color: rgba(255, 146, 198, 0.18); box-shadow: 0 0 20px rgba(255, 146, 198, 0.1); }
.journey-planet-card.tone-report .journey-planet-icon { color: #ffd1e9; background: rgba(255, 146, 198, 0.14); }
.journey-planet-card.tone-scan { border-color: rgba(102, 239, 255, 0.18); box-shadow: 0 0 20px rgba(102, 239, 255, 0.12); }
.journey-planet-card.tone-scan .journey-planet-icon { color: #baf8ff; background: rgba(102, 239, 255, 0.14); }
.journey-planet-card.tone-wellness { border-color: rgba(255, 183, 214, 0.18); box-shadow: 0 0 20px rgba(255, 183, 214, 0.1); }
.journey-planet-card.tone-wellness .journey-planet-icon { color: #ffd9ee; background: rgba(255, 183, 214, 0.12); }
.journey-planet-card.tone-medicine { border-color: rgba(152, 255, 211, 0.18); box-shadow: 0 0 20px rgba(152, 255, 211, 0.1); }
.journey-planet-card.tone-medicine .journey-planet-icon { color: #c8ffe6; background: rgba(152, 255, 211, 0.12); }
.journey-planet-card.tone-neutral .journey-planet-icon { color: #d9f6ff; }
.journey-node {
  width: 92px; height: 92px; appearance: none; cursor: pointer; pointer-events: auto;
  background: radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.08), transparent 34%), rgba(6, 14, 28, 0.92);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.journey-node::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(102, 239, 255, 0.14);
  opacity: 0.42; animation: nodePulse 4.4s ease-in-out infinite;
}
.journey-node:hover,
.journey-node:focus-visible,
.journey-node.is-active {
  transform: translate(-50%, -50%) rotate(var(--counter-angle)) scale(1.04); outline: none;
}
.journey-node strong { max-width: 70%; font-size: 0.72rem; }
.journey-node .journey-planet-icon {
  width: 32px; height: 32px;
}
.journey-node .journey-planet-icon svg { width: 18px; height: 18px; }
.journey-node.tone-access .journey-planet-icon,
.journey-card[data-active="0"] .journey-node[data-journey-node="0"] .journey-planet-icon { color: #8ff4ff; background: rgba(102, 239, 255, 0.16); }
.journey-node.tone-ai .journey-planet-icon,
.journey-card[data-active="1"] .journey-node[data-journey-node="1"] .journey-planet-icon { color: #c9d6ff; background: rgba(93, 131, 255, 0.18); }
.journey-node.tone-report .journey-planet-icon,
.journey-card[data-active="2"] .journey-node[data-journey-node="2"] .journey-planet-icon,
.journey-node.tone-wellness .journey-planet-icon { color: #ffd0ea; background: rgba(255, 146, 198, 0.16); }
.journey-node.tone-access,
.journey-card[data-active="0"] .journey-node[data-journey-node="0"] {
  box-shadow: 0 0 30px rgba(102, 239, 255, 0.22);
  border-color: rgba(102, 239, 255, 0.22);
}
.journey-node.tone-ai,
.journey-card[data-active="1"] .journey-node[data-journey-node="1"] {
  box-shadow: 0 0 30px rgba(93, 131, 255, 0.22);
  border-color: rgba(93, 131, 255, 0.24);
}
.journey-node.tone-report,
.journey-card[data-active="2"] .journey-node[data-journey-node="2"],
.journey-node.tone-wellness {
  box-shadow: 0 0 30px rgba(255, 146, 198, 0.18);
  border-color: rgba(255, 146, 198, 0.22);
}
.journey-strip {
  position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; flex-wrap: wrap; gap: 8px; z-index: 1;
}
.journey-pill {
  display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(4, 12, 24, 0.82); color: #e7fbff;
  font-size: 0.75rem; font-weight: 700; cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.journey-pill:hover,
.journey-pill:focus-visible,
.journey-pill.is-active {
  transform: translateY(-2px); outline: none;
  border-color: rgba(102, 239, 255, 0.22); background: rgba(15, 33, 57, 0.9);
}
.journey-visual.visual-wellness-pulse .journey-sweep,
.journey-visual.visual-access-flow .journey-sweep { animation: pulseSweep 5.4s ease-in-out infinite; }
.journey-visual.visual-report-stream .journey-sweep { animation: scanY 4s ease-in-out infinite; }
.journey-card[data-active="0"] .journey-step[data-step-index="0"],
.journey-card[data-active="1"] .journey-step[data-step-index="1"],
.journey-card[data-active="2"] .journey-step[data-step-index="2"] {
  border-top-color: rgba(102, 239, 255, 0.24);
  background: linear-gradient(90deg, rgba(102, 239, 255, 0.08), transparent 82%);
}
.journey-copy { display: grid; gap: 14px; }
.journey-copy p { margin: 0; color: var(--muted); line-height: 1.68; }
.journey-steps { display: grid; gap: 12px; }
.journey-step {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: start;
  padding: 14px 12px 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease;
}
.journey-step:first-child { border-top: 0; }
.journey-index {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.18), rgba(93, 131, 255, 0.2));
  border: 1px solid rgba(102, 239, 255, 0.18); font-weight: 900;
}
.journey-step h4 { margin: 0; font-size: 0.96rem; }
.journey-step p { margin: 6px 0 0; font-size: 0.9rem; }
.about-grid, .founder-grid, .trust-grid, .support-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
}
.content-card, .legal-card, .contact-card { padding: 24px; }
.content-card h3, .legal-card h3, .contact-card h3 {
  margin: 0; font-family: "Sora", "Segoe UI", sans-serif; font-size: 1.3rem;
}
.content-card p, .legal-card p, .contact-card p, .content-card li, .legal-card li, .contact-card li {
  color: var(--muted); line-height: 1.7;
}
.content-card ul, .legal-card ul, .contact-card ul {
  margin: 18px 0 0; padding-left: 18px; display: grid; gap: 10px;
}
.company-pillar-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 18px;
}
.pillar { padding: 18px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03); }
.pillar strong { display: block; margin-bottom: 8px; }
.pillar span { color: var(--muted); line-height: 1.55; font-size: 0.88rem; }
.founder-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(102, 239, 255, 0.12), transparent 34%),
    linear-gradient(160deg, rgba(8, 23, 40, 0.96), rgba(7, 16, 29, 0.92));
}
.founder-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 131, 255, 0.14), transparent 70%);
  pointer-events: none;
}
.founder-card--identity::after {
  width: 280px;
  height: 280px;
  inset: -8% -10% auto auto;
  background: radial-gradient(circle, rgba(102, 239, 255, 0.18), transparent 72%);
}
.founder-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.founder-monogram {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(102, 239, 255, 0.22);
  background:
    radial-gradient(circle at 30% 30%, rgba(102, 239, 255, 0.24), transparent 48%),
    linear-gradient(145deg, rgba(102, 239, 255, 0.12), rgba(93, 131, 255, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(7, 16, 29, 0.28);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #f6fcff;
}
.founder-role {
  margin: 8px 0 0;
  color: rgba(102, 239, 255, 0.86);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.founder-summary {
  margin: 18px 0 10px;
  color: #ecf8ff;
  font-size: 1rem;
  font-weight: 700;
}
.founder-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.founder-highlight {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(102, 239, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #dff7ff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.founder-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.founder-focus-item {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.founder-focus-item strong {
  font-size: 0.94rem;
}
.founder-focus-item span {
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.88rem;
}
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-list { display: grid; gap: 12px; margin-top: 18px; }
.trust-row {
  display: flex; align-items: start; justify-content: space-between; gap: 14px; padding: 12px 14px;
  border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04);
}
.trust-row strong { font-size: 0.92rem; }
.trust-row span { color: var(--muted); font-size: 0.9rem; text-align: right; line-height: 1.5; }
.support-grid { align-items: start; }
.contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px;
}
.contact-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-item {
  padding: 18px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04);
}
.contact-item strong { display: block; margin-bottom: 6px; }
.contact-item span, .contact-item a { color: var(--muted); text-decoration: none; line-height: 1.62; }
.contact-expectation-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.contact-expectation {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.contact-expectation strong {
  font-size: 0.94rem;
}
.contact-expectation span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}
.support-note-bar {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(102, 239, 255, 0.14);
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.08), rgba(93, 131, 255, 0.08));
  color: #dff7ff;
  line-height: 1.65;
  font-size: 0.9rem;
}
.contact-form { display: grid; gap: 14px; margin-top: 20px; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #dff7ff; font-size: 0.9rem; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px;
  background: rgba(255, 255, 255, 0.04); color: var(--text); padding: 14px 16px; resize: vertical;
}
.contact-form textarea { min-height: 150px; }
.form-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.form-status { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
.site-footer { padding: 24px 0 40px; }
.footer-shell { display: grid; gap: 14px; }
.footer-card {
  display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 22px 24px;
  border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04);
}
.footer-card strong { display: block; margin-bottom: 8px; }
.footer-card span { color: var(--muted); line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--text); outline: none; }
.footer-meta { color: var(--muted); font-size: 0.88rem; text-align: center; }
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.tilt-surface { transform-style: preserve-3d; transition: transform 180ms ease, border-color 180ms ease; }
.modal {
  position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 20px;
  background: rgba(2, 7, 13, 0.72); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: opacity 180ms ease, visibility 180ms ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-dialog {
  width: min(980px, calc(100vw - 24px)); max-height: calc(100vh - 40px); overflow: auto;
  border-radius: 28px; border: 1px solid rgba(102, 239, 255, 0.18); background: rgba(5, 12, 23, 0.96); box-shadow: var(--shadow-xl);
}
.modal-header {
  position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: rgba(5, 12, 23, 0.96); border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.modal-header h3 { margin: 0; font-family: "Sora", "Segoe UI", sans-serif; }
.modal-close {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.04); cursor: pointer;
}
.modal-body { padding: 20px; }
.legal-body { padding-top: 22px; }
.legal-page { position: relative; z-index: 2; padding-bottom: 42px; }
.legal-hero { padding: 26px 0 18px; }
.legal-hero-card { padding: 28px; }
.legal-hero h1 {
  margin: 0; font-family: "Sora", "Segoe UI", sans-serif; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 0.98;
}
.legal-hero p { margin: 14px 0 0; max-width: 64ch; color: var(--muted); line-height: 1.72; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.legal-content { display: grid; gap: 16px; }
.legal-section { padding: 24px 26px; }
.legal-section h2 { margin: 0 0 12px; font-family: "Sora", "Segoe UI", sans-serif; font-size: 1.45rem; }
.legal-section p, .legal-section li { color: var(--muted); line-height: 1.74; }
.legal-section ul { margin: 0; padding-left: 20px; display: grid; gap: 10px; }
.legal-callout {
  padding: 18px; border-radius: 18px; border: 1px solid rgba(102, 239, 255, 0.18);
  background: linear-gradient(135deg, rgba(102, 239, 255, 0.1), rgba(93, 131, 255, 0.1));
}
@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes loaderCoreBreath {
  0%, 100% { transform: scale(0.98); box-shadow: 0 0 40px rgba(102, 239, 255, 0.28), 0 0 94px rgba(93, 131, 255, 0.18); }
  50% { transform: scale(1.04); box-shadow: 0 0 52px rgba(102, 239, 255, 0.38), 0 0 118px rgba(93, 131, 255, 0.24); }
}

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

@keyframes loaderGlowPulse {
  0%, 100% { opacity: 0.34; transform: scale(0.92); }
  50% { opacity: 0.78; transform: scale(1.04); }
}

@keyframes loaderNodePulse {
  0%, 100% { filter: brightness(0.96); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34); }
  50% { filter: brightness(1.12); box-shadow: 0 0 22px rgba(102, 239, 255, 0.18), 0 14px 34px rgba(0, 0, 0, 0.34); }
}

@keyframes loaderSignalWave {
  0%, 100% { transform: translateY(0); opacity: 0.68; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes loaderProgress {
  0% { transform: scaleX(0.04); opacity: 0.4; }
  45% { transform: scaleX(0.62); opacity: 1; }
  78% { transform: scaleX(0.96); opacity: 0.94; }
  100% { transform: scaleX(0.14); opacity: 0.4; }
}

@keyframes aurora-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(5%, -4%, 0) scale(1.08); }
}

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

@keyframes scanY {
  0%, 100% { transform: translate3d(0, -120%, 0); opacity: 0; }
  14% { opacity: 0.2; }
  50% { transform: translate3d(0, 0, 0); opacity: 0.9; }
  86% { opacity: 0.2; }
}

@keyframes pulseSweep {
  0%, 100% { transform: scaleX(0.72); opacity: 0.18; }
  50% { transform: scaleX(1.04); opacity: 0.72; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.18; filter: blur(8px); }
  50% { opacity: 0.78; filter: blur(12px); }
}

@keyframes journeyFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -180; }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(0.9); opacity: 0.24; }
  50% { transform: scale(1.08); opacity: 0.74; }
}

@keyframes hubPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.2; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

@keyframes ecgTrace {
  0% { stroke-dashoffset: 420; opacity: 0.12; }
  18% { opacity: 0.58; }
  68% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -36; opacity: 0.08; }
}

@keyframes xraySweep {
  0%, 100% { top: 12px; opacity: 0.18; }
  50% { top: calc(100% - 22px); opacity: 0.92; }
}

@keyframes mriSlice {
  0%, 100% { transform: scaleX(0.72); opacity: 0.28; }
  50% { transform: scaleX(1.02); opacity: 0.88; }
}

@keyframes scanVertical {
  0%, 100% { top: 14px; opacity: 0.18; }
  50% { top: calc(100% - 22px); opacity: 0.92; }
}

@keyframes aiPulse {
  0%, 100% { opacity: 0.18; filter: blur(0); }
  50% { opacity: 0.98; filter: blur(1px); }
}

@keyframes flowMove {
  0%, 100% { transform: translateX(0); opacity: 0.28; }
  50% { transform: translateX(120px); opacity: 1; }
}

@keyframes vitalRise {
  0%, 100% { transform: scaleY(0.68); transform-origin: bottom; opacity: 0.5; }
  50% { transform: scaleY(1.06); transform-origin: bottom; opacity: 1; }
}

@keyframes orbitBob {
  0%, 100% { transform: translateY(0); opacity: 0.48; }
  50% { transform: translateY(-8px); opacity: 1; }
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.finder-shell,
.finder-results,
.workflow-stage,
.access-card {
  position: relative;
  overflow: hidden;
}

.finder-shell,
.finder-results,
.workflow-stage,
.access-card {
  padding: 28px;
}

.finder-shell::before,
.finder-results::before,
.workflow-stage::before,
.access-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(102, 239, 255, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(93, 131, 255, 0.1), transparent 28%);
}

.finder-head,
.workflow-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.access-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.access-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.finder-head h3,
.workflow-head h3,
.access-card h3 {
  margin: 8px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.08;
}

.finder-head p,
.workflow-head p,
.access-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.access-card-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #d9f4ff;
  line-height: 1.65;
  font-size: 0.9rem;
}

.finder-input-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(111, 231, 255, 0.18);
  background: rgba(7, 14, 27, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.finder-input-shell svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.finder-input-shell input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}

.finder-input-shell input::placeholder {
  color: rgba(155, 181, 200, 0.88);
}

.finder-prompt-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.finder-prompt,
.workflow-tab {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 231, 255, 0.14);
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.finder-prompt:hover,
.finder-prompt:focus-visible,
.workflow-tab:hover,
.workflow-tab:focus-visible,
.workflow-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(102, 239, 255, 0.11);
}

.workflow-tab.is-active {
  background: linear-gradient(180deg, rgba(18, 34, 58, 0.96), rgba(7, 15, 29, 0.98));
}

.finder-results-head,
.finder-empty {
  position: relative;
  z-index: 1;
}

.finder-results-head h3,
.finder-empty h3 {
  margin: 8px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.finder-results-head p,
.finder-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.finder-best-card {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(111, 231, 255, 0.16);
  background: rgba(7, 14, 27, 0.62);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.finder-best-card:hover,
.finder-best-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), 0 0 22px rgba(102, 239, 255, 0.12);
}

.finder-best-art .feature-surface--detail {
  min-height: 100%;
}

.finder-best-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.finder-best-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.finder-open-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finder-related {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.finder-related h4 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.finder-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.finder-related-card {
  padding: 15px 16px;
  border-radius: 18px;
  text-align: left;
  background: rgba(9, 16, 30, 0.8);
  border: 1px solid rgba(111, 231, 255, 0.13);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.finder-related-card:hover,
.finder-related-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.finder-related-card strong,
.finder-related-card span {
  display: block;
}

.finder-related-card span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.workflow-layout {
  display: grid;
  gap: 18px;
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workflow-stage.accent-cyan::before {
  background:
    radial-gradient(circle at top left, rgba(102, 239, 255, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(93, 131, 255, 0.14), transparent 30%);
}

.workflow-stage.accent-pink::before {
  background:
    radial-gradient(circle at top left, rgba(255, 120, 188, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(211, 92, 255, 0.14), transparent 30%);
}

.workflow-stage.accent-green::before {
  background:
    radial-gradient(circle at top left, rgba(132, 255, 202, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(94, 240, 167, 0.14), transparent 30%);
}

.workflow-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 0;
  margin-top: 24px;
  align-items: center;
}

.workflow-step-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 14, 27, 0.7);
  border: 1px solid rgba(111, 231, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.workflow-step-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.workflow-step-index {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02101c;
  font-weight: 800;
  font-size: 0.88rem;
}

.workflow-step-card strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.workflow-step-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-feature-link {
  margin-top: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 231, 255, 0.12);
  background: rgba(15, 27, 46, 0.7);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.workflow-feature-link:hover,
.workflow-feature-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(111, 231, 255, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.workflow-feature-link span,
.workflow-feature-link small {
  display: block;
}

.workflow-feature-link small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.onboarding-layout,
.scanner-demo-layout,
.compare-layout {
  display: grid;
  gap: 20px;
}

.onboarding-stage,
.scanner-demo-stage,
.compare-stage {
  padding: 28px;
}

.onboarding-head,
.scanner-demo-head,
.compare-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.onboarding-progress span {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.onboarding-progress span.is-active,
.onboarding-progress span.is-complete {
  background: linear-gradient(90deg, rgba(106, 240, 255, 0.82), rgba(125, 149, 255, 0.72));
  box-shadow: 0 0 16px rgba(106, 240, 255, 0.2);
}

.onboarding-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.onboarding-option {
  position: relative;
  min-height: 118px;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(120, 220, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 31, 51, 0.96), rgba(11, 21, 38, 0.94)),
    radial-gradient(circle at top right, rgba(111, 231, 255, 0.14), transparent 52%);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.onboarding-option::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.onboarding-option strong,
.onboarding-option span {
  position: relative;
  z-index: 1;
  display: block;
}

.onboarding-option strong {
  font-size: 1rem;
}

.onboarding-option span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.onboarding-option:hover,
.onboarding-option:focus-visible,
.onboarding-option.is-active {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.26);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 0 28px rgba(111, 231, 255, 0.1);
}

.onboarding-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.onboarding-result-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.onboarding-result-summary,
.compare-feature-stack {
  display: grid;
  gap: 14px;
}

.onboarding-result-card,
.compare-info-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(120, 220, 255, 0.1);
  background: rgba(12, 22, 38, 0.72);
}

.onboarding-result-card strong,
.compare-info-card strong {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(127, 208, 255, 0.92);
}

.onboarding-result-card span,
.compare-info-card span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  line-height: 1.65;
}

.onboarding-result-features,
.compare-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.onboarding-feature-card,
.compare-summary-card,
.compare-feature-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(120, 220, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 31, 51, 0.94), rgba(10, 20, 36, 0.94)),
    radial-gradient(circle at top right, rgba(111, 231, 255, 0.1), transparent 58%);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.onboarding-feature-card:hover,
.onboarding-feature-card:focus-visible,
.compare-summary-card:hover,
.compare-summary-card:focus-visible,
.compare-summary-card.is-active,
.compare-feature-card:hover,
.compare-feature-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111, 231, 255, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.onboarding-feature-card strong,
.compare-summary-card strong,
.compare-feature-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
}

.onboarding-feature-card p,
.compare-summary-card p,
.compare-feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.scanner-demo-tabs,
.compare-summary-grid {
  align-items: stretch;
}

.scanner-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scanner-demo-tab,
.scanner-mode-chip {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(120, 220, 255, 0.12);
  background: rgba(12, 23, 40, 0.72);
  color: var(--muted);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.scanner-demo-tab.is-active,
.scanner-mode-chip.is-active,
.scanner-demo-tab:hover,
.scanner-demo-tab:focus-visible,
.scanner-mode-chip:hover,
.scanner-mode-chip:focus-visible {
  color: var(--text);
  border-color: rgba(111, 231, 255, 0.24);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.scanner-demo-grid,
.compare-stage-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.scanner-demo-visual {
  display: grid;
  gap: 16px;
}

.scanner-demo-meter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.scanner-demo-meter span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.scanner-demo-meter span.is-active {
  background: linear-gradient(90deg, rgba(109, 241, 255, 0.86), rgba(120, 155, 255, 0.78));
  box-shadow: 0 0 18px rgba(102, 239, 255, 0.22);
}

.scanner-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scanner-demo-callout {
  margin-top: 16px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(120, 220, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(111, 231, 255, 0.1), transparent 52%),
    rgba(12, 22, 38, 0.74);
}

.scanner-demo-callout h4 {
  margin: 10px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.scanner-demo-callout p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.scanner-demo-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.scanner-demo-primary,
.scanner-demo-link {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(120, 220, 255, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scanner-demo-primary {
  padding: 15px 18px;
  background: linear-gradient(135deg, rgba(72, 237, 255, 0.18), rgba(91, 134, 255, 0.22));
  color: var(--text);
  font-weight: 600;
}

.scanner-demo-link {
  padding: 14px 16px;
  background: rgba(12, 22, 38, 0.72);
  color: var(--text);
}

.scanner-demo-primary:hover,
.scanner-demo-primary:focus-visible,
.scanner-demo-link:hover,
.scanner-demo-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(111, 231, 255, 0.24);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.scanner-demo-link strong,
.scanner-demo-link span {
  display: block;
}

.scanner-demo-link span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.compare-stage-copy {
  display: grid;
  gap: 18px;
}

.compare-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-strengths {
  display: grid;
  gap: 12px;
}

.compare-strength {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.compare-strength span {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(102, 239, 255, 0.86), rgba(102, 239, 255, 0));
  box-shadow: 0 0 16px rgba(102, 239, 255, 0.24);
}

.compare-strength p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-connector {
  position: relative;
  height: 10px;
  margin: 0 12px;
}

.workflow-connector::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(102, 239, 255, 0.18), rgba(102, 239, 255, 0.5), rgba(93, 131, 255, 0.18));
}

.workflow-connector span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(102, 239, 255, 0.9), rgba(102, 239, 255, 0));
  box-shadow: 0 0 22px rgba(102, 239, 255, 0.38);
  animation: workflowTravel 2.6s linear infinite;
}

.access-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.access-card .button-tertiary {
  display: inline-flex;
  margin-top: 18px;
}

@keyframes workflowTravel {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 18px); opacity: 0; }
}

@media (max-width: 1120px) {
  .site-loader__visual { height: 390px; }
  .site-loader__ring--outer { width: 390px; height: 390px; }
  .site-loader__ring--mid { width: 286px; height: 286px; }
  .site-loader__ring--inner { width: 198px; height: 198px; }
  .hero-shell, .command-grid, .spotlight-layout, .journey-card { grid-template-columns: 1fr; }
  .detail-card { grid-template-columns: 1fr; }
  .detail-sidebar { padding: 0 28px 28px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finder-layout,
  .onboarding-result-grid,
  .experience-layout,
  .lane-stage,
  .experience-body,
  .access-card-grid,
  .scanner-demo-grid,
  .compare-stage-grid {
    grid-template-columns: 1fr;
  }
  .onboarding-options,
  .onboarding-result-features,
  .compare-summary-grid,
  .compare-info-grid {
    grid-template-columns: 1fr;
  }
  .workflow-track {
    grid-template-columns: 1fr;
  }
  .workflow-connector {
    width: 2px;
    height: 42px;
    margin: 0 auto;
  }
  .workflow-connector::before {
    inset: 0 auto 0 50%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(102, 239, 255, 0.18), rgba(102, 239, 255, 0.5), rgba(93, 131, 255, 0.18));
  }
  .workflow-connector span {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    animation: workflowTravelVertical 2.6s linear infinite;
  }
  .experience-signal,
  .lane-kpi {
    min-width: 0;
  }
}

@media (max-width: 920px) {
  :root { --header-h: 76px; }
  .site-loader__shell { gap: 16px; }
  .site-loader__visual { height: 340px; }
  .site-loader__ring--outer { width: 320px; height: 320px; }
  .site-loader__ring--mid { width: 234px; height: 234px; }
  .site-loader__ring--inner { width: 162px; height: 162px; }
  .site-loader__node { width: 58px; height: 58px; margin-left: -29px; margin-top: -29px; }
  .site-loader__node svg { width: 23px; height: 23px; }
  .site-loader__node--heart { transform: translateY(-160px); }
  .site-loader__node--booking { transform: rotate(180deg) translateY(-160px) rotate(-180deg); }
  .site-loader__node--activity { transform: rotate(35deg) translateY(-118px) rotate(-35deg); }
  .site-loader__node--report { transform: rotate(220deg) translateY(-118px) rotate(-220deg); }
  .site-loader__node--ai { transform: rotate(25deg) translateY(-81px) rotate(-25deg); }
  .site-loader__node--gym { transform: rotate(205deg) translateY(-81px) rotate(-205deg); }
  .site-loader__core { width: 162px; height: 162px; }
  .site-loader__logo { width: 60px; height: 60px; }
  .topbar-shell { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .topbar-nav { display: none; width: 100%; padding-top: 6px; }
  .site-topbar.is-open .topbar-nav { display: flex; }
  .hero-copy, .hero-dashboard { min-height: auto; }
  .hero-value-grid, .stat-grid, .atlas-grid, .company-pillar-grid, .contact-grid, .contact-form-row, .about-grid, .founder-grid, .support-grid, .founder-focus-grid {
    grid-template-columns: 1fr;
  }
  .hero-lattice { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-chart, .signal-grid, .detail-panels, .atlas-toolbar { grid-template-columns: 1fr; }
  .footer-card { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .journey-visual { --orbit-center-y: 46%; min-height: 330px; }
  .journey-system-layer.orbit-inner { --radius: 60px; }
  .journey-system-layer.orbit-mid { --radius: 92px; }
  .journey-system-layer.orbit-outer { --radius: 126px; }
  .journey-planet-card { width: 68px; height: 68px; }
  .journey-planet-card strong { font-size: 0.54rem; }
  .journey-node { width: 82px; height: 82px; }
  .journey-node strong { font-size: 0.66rem; }
  .journey-hub { width: 102px; height: 102px; }
  .journey-hub-label { width: 74px; }
  .journey-hub-label strong { font-size: 0.66rem; }
  .journey-hub-label small { font-size: 0.48rem; }
}

@media (max-width: 640px) {
  .site-loader { padding: 18px 12px; }
  .site-loader__copy h2 { font-size: 1rem; }
  .site-loader__copy p { font-size: 0.92rem; }
  .site-loader__visual { height: 294px; }
  .site-loader__ring--outer { width: 274px; height: 274px; }
  .site-loader__ring--mid { width: 204px; height: 204px; }
  .site-loader__ring--inner { width: 142px; height: 142px; }
  .site-loader__node { width: 50px; height: 50px; margin-left: -25px; margin-top: -25px; }
  .site-loader__node svg { width: 19px; height: 19px; }
  .site-loader__node--heart { transform: translateY(-136px); }
  .site-loader__node--booking { transform: rotate(180deg) translateY(-136px) rotate(-180deg); }
  .site-loader__node--activity { transform: rotate(35deg) translateY(-100px) rotate(-35deg); }
  .site-loader__node--report { transform: rotate(220deg) translateY(-100px) rotate(-220deg); }
  .site-loader__node--ai { transform: rotate(25deg) translateY(-69px) rotate(-25deg); }
  .site-loader__node--gym { transform: rotate(205deg) translateY(-69px) rotate(-205deg); }
  .site-loader__core { width: 136px; height: 136px; padding: 12px; }
  .site-loader__core::after { inset: 12px; }
  .site-loader__logo { width: 50px; height: 50px; }
  .site-loader__core-copy strong { font-size: 0.72rem; letter-spacing: 0.1em; }
  .site-loader__core-copy span { font-size: 0.62rem; }
  .site-loader__signal-row { gap: 8px; }
  .site-loader__signal { min-height: 32px; padding: 7px 11px; font-size: 0.74rem; }
  .section-shell, .hero-shell, .footer-shell, .topbar-shell, .legal-shell {
    width: min(calc(100% - 20px), var(--max));
  }
  .hero, .site-section, .legal-hero { padding-top: 18px; }
  .hero-copy, .hero-dashboard, .command-card, .content-card, .legal-card, .contact-card, .journey-card, .legal-hero-card, .legal-section, .modal-body {
    padding: 20px;
  }
  .hero h1 { max-width: none; font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-actions, .form-actions { flex-direction: column; align-items: stretch; }
  .button, .button-secondary, .button-tertiary, .topbar-cta { width: 100%; }
  .hero-meta-grid { grid-template-columns: 1fr; }
  .hero-lattice { grid-template-columns: 1fr; }
  .radial-chart { width: 188px; height: 188px; }
  .finder-shell,
  .onboarding-stage,
  .finder-results,
  .workflow-stage,
  .scanner-demo-stage,
  .compare-stage,
  .access-card {
    padding: 22px;
  }
  .finder-best-card,
  .finder-related-grid {
    grid-template-columns: 1fr;
  }
  .onboarding-head,
  .scanner-demo-head,
  .compare-stage-head,
  .onboarding-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .scanner-demo-tab,
  .scanner-mode-chip,
  .scanner-demo-primary {
    width: 100%;
  }
  .scanner-demo-links {
    margin-top: 14px;
  }
  .journey-visual { --orbit-center-y: 45%; min-height: 300px; }
  .journey-system-layer.orbit-inner { --radius: 52px; }
  .journey-system-layer.orbit-mid { --radius: 82px; }
  .journey-system-layer.orbit-outer { --radius: 112px; }
  .journey-planet-card { width: 60px; height: 60px; }
  .journey-planet-card strong { font-size: 0.48rem; }
  .journey-node { width: 72px; height: 72px; }
  .journey-node strong { font-size: 0.58rem; }
  .journey-hub { width: 92px; height: 92px; }
  .journey-hub-label { width: 66px; }
  .journey-hub-label strong { font-size: 0.58rem; }
  .journey-hub-label small { font-size: 0.44rem; }
  .journey-strip { left: 10px; right: 10px; bottom: 10px; gap: 6px; }
  .journey-pill { min-height: 28px; padding: 5px 8px; font-size: 0.68rem; }
  .surface-node { max-width: 92px; }
  .trust-grid { grid-template-columns: 1fr; }
  .modal { padding: 12px; }
  .modal-dialog { width: calc(100vw - 12px); max-height: calc(100vh - 16px); border-radius: 22px; }
}

@keyframes workflowTravelVertical {
  0% { top: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: calc(100% - 18px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .site-canvas, .site-aurora, .site-grid-overlay, .site-pointer-light { display: none; }
  .site-loader__orbit,
  .site-loader__node,
  .site-loader__visual-glow,
  .site-loader__core,
  .site-loader__core-ring,
  .site-loader__signal,
  .site-loader__progress-line {
    animation: none !important;
  }
}
