:root {
  --bg: #0f111a;
  --surface: rgba(255, 255, 255, 0.02);
  --surface-strong: rgba(15, 23, 42, 0.65);
  --border: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #4f46e5;
  --primary-soft: rgba(79, 70, 229, 0.15);
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.24);
  --app-height: 100vh;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(79, 70, 229, 0.18) 0%, transparent 38%),
    radial-gradient(circle at 20% 78%, rgba(16, 185, 129, 0.08) 0%, transparent 34%),
    linear-gradient(180deg, #0f111a 0%, #0a1020 100%);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-nav-shell {
  flex-wrap: wrap;
  gap: 12px 18px;
  box-shadow: 0 18px 48px rgba(5, 8, 20, 0.34);
}

.site-nav-brand {
  color: rgba(248, 250, 252, 0.98);
  white-space: nowrap;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.site-nav-cta {
  display: flex;
  align-items: center;
}

.site-nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-shell.is-open .site-nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-shell.is-open .site-nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-nav-shell.is-open .site-nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav-panel[hidden] {
  display: none !important;
}

.site-nav-panel {
  width: 100%;
  order: 10;
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 15, 34, 0.92), rgba(13, 17, 38, 0.84));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.site-nav-panel .nav-link {
  display: block;
  padding: 8px 0;
  font-size: 0.96rem;
}

.site-nav-panel-cta {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
}

.site-nav-shell .nav-link {
  color: rgba(238, 242, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.font-header {
  font-family: "Inter", sans-serif;
}

.hero-glow {
  position: relative;
}

.hero-glow::before {
  content: "";
  position: fixed;
  inset: -10% auto auto 50%;
  width: 42rem;
  height: 42rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.16) 0%, rgba(79, 70, 229, 0.05) 35%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: var(--app-height);
  padding: 110px 0 80px;
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after,
.hero-bg-glow,
.hero-grid {
  pointer-events: none;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: -12%;
}

.hero-stage::before {
  background:
    linear-gradient(118deg, transparent 28%, rgba(255, 255, 255, 0.03) 44%, rgba(255, 255, 255, 0.01) 50%, transparent 62%),
    linear-gradient(92deg, transparent 0%, rgba(79, 70, 229, 0.045) 48%, transparent 100%);
  opacity: 0.44;
  animation: hero-simmer 18s linear infinite;
}

.hero-stage::after {
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.03), transparent 24%);
  opacity: 0.52;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 30%, rgba(109, 40, 217, 0.18), transparent 26%),
    radial-gradient(circle at 70% 48%, rgba(59, 130, 246, 0.12), transparent 24%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.hero-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

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

.hero-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-title span {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(135deg, #7c83ff 0%, #8b5cf6 42%, #53c7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 26px 0 0;
  max-width: 620px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(238, 242, 255, 0.72);
}

.hero-subtitle strong {
  color: var(--text);
}

.hero-search {
  margin-top: 28px;
  width: min(620px, 100%);
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(17, 21, 48, 0.72);
  border: 1px solid rgba(124, 131, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 18px 50px rgba(0, 0, 0, 0.22),
    0 0 40px rgba(91, 92, 240, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-search .search-input {
  flex: 1;
  min-width: 0;
  height: 58px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  padding: 0 14px;
}

.hero-search .search-input::placeholder {
  color: rgba(238, 242, 255, 0.42);
}

.hero-search button {
  border: none;
  min-width: 122px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4fe0b8 0%, #34d399 100%);
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 10px 28px rgba(52, 211, 153, 0.24);
}

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

.hero-search button,
.btn-primary,
.btn-secondary {
  border: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn {
  padding: 18px 28px;
  border-radius: 18px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 16px 38px rgba(91, 92, 240, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.hero-search button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  min-height: 400px;
  isolation: isolate;
  overflow: hidden;
}

.network-card {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  height: 400px;
  margin-top: 24px;
  padding: 34px 34px 28px;
  border-radius: 34px;
  overflow: hidden;
  background:
    url("./assets/C633E47A-1796-40AF-BF86-626D88BFCDD5.png") center center / 150% auto no-repeat,
    radial-gradient(circle at 16% 30%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 78% 16%, rgba(91, 92, 240, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(30, 34, 78, 0.56) 0%, rgba(17, 21, 49, 0.34) 58%, rgba(11, 15, 34, 0.14) 78%, rgba(11, 15, 34, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 56px rgba(0, 0, 0, 0.18);
  mask-image: radial-gradient(145% 118% at 50% 24%, black 0%, black 58%, rgba(0, 0, 0, 0.88) 74%, rgba(0, 0, 0, 0.48) 88%, transparent 100%);
  -webkit-mask-image: radial-gradient(145% 118% at 50% 24%, black 0%, black 58%, rgba(0, 0, 0, 0.88) 74%, rgba(0, 0, 0, 0.48) 88%, transparent 100%);
}

.network-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 80% 20%, rgba(91, 92, 240, 0.16), transparent 25%),
    linear-gradient(165deg, rgba(126, 92, 246, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.network-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(10, 14, 32, 0.24) 80%, rgba(10, 14, 32, 0.42) 100%),
    radial-gradient(circle at 38% 22%, rgba(255, 255, 255, 0.15) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 48%, rgba(255, 255, 255, 0.15) 0 2px, transparent 3px),
    radial-gradient(circle at 67% 38%, rgba(255, 255, 255, 0.15) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 61%, rgba(255, 255, 255, 0.15) 0 2px, transparent 3px);
  opacity: 0.72;
  pointer-events: none;
}

.network-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.network-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.network-card h3 {
  width: 66%;
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.network-nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.network-nodes-mobile {
  display: none;
}

.network-nodes .node,
.network-nodes-mobile .node {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
}

.network-nodes .node {
  position: absolute;
}

.network-nodes-mobile .node {
  position: relative;
}

.network-nodes .node::before,
.network-nodes-mobile .node::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
  animation: node-pulse 7s ease-in-out infinite;
}

.network-nodes .leadership { top: 110px; left: 58%; }
.network-nodes .clinical { top: 198px; left: 63%; }
.network-nodes .strategists { top: 164px; left: 82%; }
.network-nodes .coaches { top: 286px; left: 74%; }

.beam-glow {
  position: absolute;
  left: 8%;
  top: 42px;
  width: 78%;
  height: 420px;
  background:
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 42%, rgba(79, 70, 229, 0.08) 66%, rgba(79, 70, 229, 0) 84%);
  filter: blur(56px);
  opacity: 0.76;
  transform-origin: 86% 44%;
  animation: beamSweep 9s ease-in-out infinite;
  z-index: 1;
}

.beam-core {
  position: absolute;
  left: 12%;
  top: 82px;
  width: 68%;
  height: 300px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08) 34%, rgba(145, 171, 255, 0.12) 58%, rgba(145, 171, 255, 0) 84%);
  filter: blur(28px);
  opacity: 0.72;
  transform-origin: 88% 40%;
  animation: beamSweep 9s ease-in-out infinite;
  z-index: 2;
}

.beam-particles {
  position: absolute;
  left: 14%;
  top: 96px;
  width: 60%;
  height: 240px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.42;
  background:
    radial-gradient(circle at 4% 48%, rgba(255,255,255,0.78) 0 0.42px, transparent 1.08px),
    radial-gradient(circle at 8% 52%, rgba(255,255,255,0.92) 0 0.6px, transparent 1.28px),
    radial-gradient(circle at 12% 44%, rgba(255,255,255,0.72) 0 0.38px, transparent 0.96px),
    radial-gradient(circle at 14% 39%, rgba(255,255,255,0.9) 0 0.52px, transparent 1.2px),
    radial-gradient(circle at 18% 54%, rgba(255,255,255,0.68) 0 0.36px, transparent 0.92px),
    radial-gradient(circle at 20% 45%, rgba(255,255,255,0.96) 0 0.62px, transparent 1.4px),
    radial-gradient(circle at 24% 36%, rgba(255,255,255,0.74) 0 0.36px, transparent 0.96px),
    radial-gradient(circle at 26% 56%, rgba(255,255,255,0.84) 0 0.5px, transparent 1.14px),
    radial-gradient(circle at 31% 50%, rgba(255,255,255,0.64) 0 0.34px, transparent 0.88px),
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.94) 0 0.62px, transparent 1.4px),
    radial-gradient(circle at 38% 58%, rgba(255,255,255,0.7) 0 0.38px, transparent 0.98px),
    radial-gradient(circle at 41% 47%, rgba(255,255,255,0.82) 0 0.5px, transparent 1.08px),
    radial-gradient(circle at 46% 34%, rgba(255,255,255,0.6) 0 0.3px, transparent 0.84px),
    radial-gradient(circle at 52% 62%, rgba(255,255,255,0.88) 0 0.62px, transparent 1.34px),
    radial-gradient(circle at 56% 46%, rgba(255,255,255,0.7) 0 0.38px, transparent 0.96px),
    radial-gradient(circle at 60% 33%, rgba(255,255,255,0.8) 0 0.48px, transparent 1.08px),
    radial-gradient(circle at 64% 58%, rgba(255,255,255,0.58) 0 0.3px, transparent 0.82px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.94) 0 0.62px, transparent 1.34px),
    radial-gradient(circle at 73% 30%, rgba(255,255,255,0.68) 0 0.38px, transparent 0.92px),
    radial-gradient(circle at 76% 54%, rgba(255,255,255,0.8) 0 0.46px, transparent 1.04px),
    radial-gradient(circle at 82% 58%, rgba(255,255,255,0.86) 0 0.6px, transparent 1.32px),
    radial-gradient(circle at 86% 36%, rgba(255,255,255,0.66) 0 0.36px, transparent 0.9px),
    radial-gradient(circle at 90% 44%, rgba(255,255,255,0.76) 0 0.48px, transparent 1.06px),
    radial-gradient(circle at 94% 52%, rgba(255,255,255,0.54) 0 0.28px, transparent 0.76px);
  filter: brightness(1.25) blur(0.22px);
  animation: beamSweep 9s ease-in-out infinite;
}

.theme-energy {
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.24);
}

.theme-leadership,
.theme-wealth {
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.24);
}

.accent-fill {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 65%, white 35%));
  color: #ffffff;
  box-shadow: 0 18px 40px var(--accent-soft);
}

.action-button,
.ghost-button,
.blog-btn,
.filter-chip,
.category-toggle,
.conversation-prompt {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.action-button {
  color: #ffffff;
  border: 0;
  letter-spacing: 0.03em;
  text-transform: none;
}

.ghost-button {
  color: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-link {
  color: rgba(248, 250, 252, 0.72);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: rgba(248, 250, 252, 0.98);
}

.footer-button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.accent-ring {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 48px var(--accent-soft);
}

.glass-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.search-shell {
  border-color: rgba(255, 255, 255, 0.12);
}

.search-shell:focus-within {
  border-color: rgba(129, 140, 248, 0.45);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.28), 0 18px 42px rgba(79, 70, 229, 0.16);
}

.search-input::placeholder {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.legacy-card {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.legacy-card.is-dimmed {
  opacity: 0.32;
  transform: scale(0.98);
}

.legacy-card.is-match {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px var(--accent-soft);
}

.modal-blur {
  position: fixed;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.3s ease;
}

.modal-blur::before,
.modal-blur::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.modal-blur::before {
  background:
    linear-gradient(122deg, transparent 18%, rgba(255, 255, 255, 0.024) 40%, rgba(255, 255, 255, 0.01) 50%, transparent 68%),
    radial-gradient(circle at 22% 30%, rgba(79, 70, 229, 0.12), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(16, 185, 129, 0.06), transparent 20%);
  opacity: 0.32;
  animation: modal-simmer 22s linear infinite;
}

.modal-blur::after {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(79, 70, 229, 0.04), transparent 24%);
  opacity: 0.36;
}

.modal-content {
  position: relative;
  z-index: 1;
  transform: scale(0.95);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
}

.modal-active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.modal-copy {
  min-width: 0;
}

.modal-guide {
  display: none;
}

.modal-cutout {
  opacity: 0;
  transform: translateX(36px) scale(0.96);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-active .modal-cutout {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.is-verifying {
  animation: pulse-verifying 1.1s ease-in-out infinite;
}

.legacy-overlay {
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.asset-fallback {
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  text-align: center;
}

.asset-fallback.is-visible {
  display: grid;
}

img[data-fallback].is-hidden {
  display: none;
}

.onboarding-choices.hidden {
  display: none;
}

.onboarding-choices {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.onboarding-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.onboarding-choice.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 18px 40px var(--accent-soft);
}

.category-card {
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.category-card.is-active {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--accent), 0 26px 60px var(--accent-soft);
}

.category-toggle {
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.ecosystem-copy {
  margin-top: 14px;
}

.ecosystem-signal {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.signal-item {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  animation: signal-drift 22s linear infinite;
}

.signal-item strong {
  color: rgba(255, 255, 255, 0.92);
}

.ecosystem-stage {
  position: relative;
  border-radius: 32px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(79, 70, 229, 0.14), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(16, 185, 129, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ecosystem-stage::before,
.ecosystem-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-stage::before {
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 72% 66%, rgba(99, 102, 241, 0.08), transparent 24%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0.02) 82%, transparent 100%);
  opacity: 0.75;
  filter: blur(24px);
}

.ecosystem-stage::after {
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0.03));
  mask-image: radial-gradient(circle at center, black 62%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 62%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
}

.ecosystem-links {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-link {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.08), rgba(255, 255, 255, 0.18), rgba(16, 185, 129, 0.08));
  box-shadow: 0 0 18px rgba(79, 70, 229, 0.08);
  opacity: 0.6;
}

.link-one {
  top: 38%;
  left: 18%;
  width: 32%;
  transform: rotate(7deg);
}

.link-two {
  top: 49%;
  left: 50%;
  width: 22%;
  transform: rotate(-10deg);
}

.portal-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform:
    perspective(1000px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.portal-card:hover,
.portal-card.is-hovered {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.portal-border,
.portal-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.portal-border {
  inset: -1px;
  border-radius: inherit;
  opacity: 0.72;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 22%, var(--portal-glow, rgba(79, 70, 229, 0.35)) 50%, rgba(255, 255, 255, 0.08) 78%, transparent 100%);
  background-size: 220% 220%;
  animation: portal-border-flow 9s linear infinite;
  z-index: -1;
}

.portal-sheen {
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 30%), rgba(255, 255, 255, 0.16), transparent 28%);
  opacity: 0.65;
}

.portal-icon-shell {
  position: relative;
}

.portal-icon {
  transform: translate3d(0, 0, 0);
  transition: transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(0 12px 34px var(--portal-shadow, rgba(79, 70, 229, 0.22)));
}

.portal-card:hover .portal-icon,
.portal-card.is-hovered .portal-icon {
  transform: translateY(-4px) scale(1.02);
}

.portal-leadership {
  --portal-glow: rgba(79, 70, 229, 0.52);
  --portal-shadow: rgba(79, 70, 229, 0.26);
}

.portal-energy {
  --portal-glow: rgba(16, 185, 129, 0.48);
  --portal-shadow: rgba(16, 185, 129, 0.24);
}

.portal-wealth {
  --portal-shadow: rgba(79, 70, 229, 0.22);
}

.portal-wealth .portal-border {
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 18%, rgba(79, 70, 229, 0.44) 42%, rgba(16, 185, 129, 0.4) 62%, rgba(255, 255, 255, 0.08) 82%, transparent 100%);
  background-size: 220% 220%;
}

.enterprise-section,
.pulse-section,
.blog-section {
  padding: 96px 24px;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 10px;
}

.section-copy {
  max-width: 700px;
  opacity: 0.82;
  line-height: 1.6;
}

.pulse-section {
  padding-top: 40px;
  margin-top: 0;
}

.pulse-shell {
  display: grid;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.pulse-label {
  margin: 0;
}

.pulse-ticker {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.pulse-ticker::-webkit-scrollbar {
  display: none;
}

.pulse-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  padding: 11px 14px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pulse-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.verified-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #10b981;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.35);
}

.pulse-item:hover .verified-dot,
.literature-link:hover .verified-dot {
  animation: verified-pulse 1.3s ease-in-out infinite;
}

.blog-controls input,
.newsletter-form input {
  min-width: 280px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.blog-controls input::placeholder,
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.blog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 24px rgba(79, 70, 229, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.featured-post {
  margin-bottom: 28px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.featured-image {
  min-height: 300px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}

.post-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.meta-pill {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

.featured-card h3,
.blog-card h3,
.newsletter-card h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

.featured-card p,
.blog-card p,
.newsletter-card p {
  opacity: 0.84;
  line-height: 1.65;
}

.featured-actions,
.blog-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.blog-btn {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.blog-btn.primary {
  background: #4f46e5;
  color: white;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.28);
}

.blog-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-btn:hover,
.action-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

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

.blog-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.blog-thumb {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

.hidden-post {
  display: none;
}

.expanded-text {
  margin-top: 10px;
}

.no-results {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  opacity: 0.8;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.enterprise-visual,
.enterprise-panel {
  min-width: 0;
}

.enterprise-map {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.25), transparent 28%),
    radial-gradient(circle at 80% 75%, rgba(16, 185, 129, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(8, 18, 37, 0.95), rgba(10, 16, 32, 0.98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.enterprise-copy {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 22rem;
  z-index: 2;
}

.enterprise-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.enterprise-copy p {
  margin: 0;
  opacity: 0.84;
}

.conversation-prompt {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.72);
  color: white;
  border-radius: 999px;
  padding: 12px 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.conversation-prompt:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.conversation-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-soft);
}

.enterprise-node,
.enterprise-ring,
.enterprise-line {
  position: absolute;
}

.enterprise-node {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent-soft);
  animation: pulse-node 2.6s ease-in-out infinite;
}

.node-a { top: 18%; left: 20%; }
.node-b { top: 28%; left: 68%; }
.node-c { top: 55%; left: 35%; }
.node-d { top: 64%; left: 76%; }
.node-e { top: 42%; left: 52%; }

.enterprise-ring {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.ring-a {
  inset: 14% 14%;
}

.ring-b {
  inset: 24% 24%;
}

.enterprise-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.18), var(--accent), rgba(16, 185, 129, 0.18));
  box-shadow: 0 0 18px var(--accent-soft);
}

.line-a {
  width: 40%;
  top: 30%;
  left: 21%;
  transform: rotate(12deg);
}

.line-b {
  width: 28%;
  top: 48%;
  left: 36%;
  transform: rotate(-18deg);
}

.line-c {
  width: 18%;
  top: 60%;
  left: 58%;
  transform: rotate(22deg);
}

.enterprise-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
}

.enterprise-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.enterprise-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.enterprise-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
}

.enterprise-status {
  min-height: 1.5rem;
  opacity: 0.84;
}

.newsletter-card {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-status {
  min-height: 1.5rem;
  opacity: 0.84;
}

.literature-section {
  padding: 96px 24px;
  position: relative;
  z-index: 2;
}

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

.literature-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.literature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.literature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.literature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.literature-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.literature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.literature-modal {
  overflow: hidden;
}

.journey-section {
  padding: 96px 24px;
  position: relative;
  z-index: 2;
}

.discovery-section {
  padding: 90px 24px;
  position: relative;
}

.discovery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.discovery-card {
  text-align: left;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

.discovery-card:hover,
.discovery-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.discovery-icon {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 800;
}

.discovery-card h3 {
  margin: 0 0 6px;
}

.discovery-card p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.discovery-result {
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
}

.discovery-result.active {
  display: block;
}

.journey-head {
  margin-bottom: 30px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.journey-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.journey-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.journey-step {
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.65;
  margin-bottom: 18px;
}

.journey-icon {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.journey-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.journey-card p {
  margin: 0;
  line-height: 1.65;
  opacity: 0.84;
}

.journey-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.journey-band h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.journey-band p {
  margin: 0;
  opacity: 0.84;
  line-height: 1.65;
  max-width: 700px;
}

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

.featured-masters-section,
.network-map-section,
.join-section,
.mission-summary-section {
  padding: 96px 24px;
  position: relative;
  z-index: 2;
}

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

.master-card {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.master-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.master-photo {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: 20px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

.master-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.master-card h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
}

.master-role {
  margin: 0 0 12px;
  color: rgba(129, 140, 248, 0.96);
  font-weight: 600;
}

.master-copy {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.7;
}

.master-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.network-map-shell {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 24% 26%, rgba(79, 70, 229, 0.18), transparent 22%),
    radial-gradient(circle at 74% 58%, rgba(16, 185, 129, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(8, 12, 28, 0.92), rgba(9, 14, 30, 0.98));
}

.network-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.14;
}

.map-link {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.12), rgba(255, 255, 255, 0.22), rgba(16, 185, 129, 0.12));
  box-shadow: 0 0 18px rgba(79, 70, 229, 0.1);
}

.map-link-one {
  width: 34%;
  top: 34%;
  left: 22%;
  transform: rotate(-8deg);
}

.map-link-two {
  width: 28%;
  top: 48%;
  left: 45%;
  transform: rotate(12deg);
}

.map-link-three {
  width: 22%;
  top: 58%;
  left: 30%;
  transform: rotate(-14deg);
}

.map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(248, 250, 252, 0.86);
  font-weight: 600;
}

.map-node-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 rgba(79, 70, 229, 0.4);
  animation: node-pulse 7.2s ease-in-out infinite;
}

.map-node-ny { top: 28%; left: 14%; }
.map-node-london { top: 24%; left: 40%; }
.map-node-zurich { top: 34%; left: 47%; }
.map-node-sf { top: 46%; left: 18%; }
.map-node-singapore { top: 56%; left: 72%; }
.map-node-toronto { top: 38%; left: 24%; }
.map-node-dubai { top: 46%; left: 58%; }

.network-map-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 26rem;
  padding: 24px;
  border-radius: 24px;
}

.network-map-copy h3 {
  margin: 0 0 10px;
}

.network-map-copy p {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.7;
}

.join-shell,
.mission-summary-shell {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.16), transparent 40%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.join-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: start;
}

.join-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
}

.join-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
}

.join-form input:focus {
  border-color: rgba(129, 140, 248, 0.45);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.2);
}

.mission-summary-shell {
  text-align: center;
  justify-items: center;
}

.mission-quote {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.site-footer {
  padding: 40px 24px 72px;
  position: relative;
  z-index: 2;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  max-width: 34rem;
  color: rgba(248, 250, 252, 0.66);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-column {
  display: grid;
  gap: 10px;
  min-width: 160px;
}

.footer-title {
  margin: 0 0 2px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.82);
}

.footer-status {
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.institutional-page {
  position: relative;
  min-height: var(--app-height);
}

.institutional-shell {
  padding: 140px 24px 56px;
  position: relative;
  z-index: 2;
}

.institutional-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 1fr);
  gap: 36px;
  align-items: start;
}

.institutional-main {
  min-width: 0;
}

.institutional-aside {
  position: sticky;
  top: 108px;
  min-width: 0;
}

.institutional-intro {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.institutional-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.92);
}

.institutional-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.institutional-subhead {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(248, 250, 252, 0.74);
  line-height: 1.7;
}

.institutional-panel {
  padding: 28px;
  border-radius: 30px;
}

.institutional-panel + .institutional-panel {
  margin-top: 18px;
}

.institutional-panel h2,
.institutional-panel h3 {
  margin: 0 0 14px;
}

.institutional-panel p {
  margin: 0 0 16px;
  color: rgba(248, 250, 252, 0.78);
  line-height: 1.8;
}

.institutional-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.9;
}

.institutional-list li + li {
  margin-top: 8px;
}

.manifesto-card,
.signal-card {
  padding: 24px;
  border-radius: 24px;
}

.manifesto-card p,
.signal-card p {
  margin: 0 0 14px;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.75;
}

.signal-stack {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.signal-stack span {
  display: block;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.82);
}

.pillars-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.pillars-table th,
.pillars-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  text-align: left;
}

.pillars-table th {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.82);
}

.pillar-cards {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.pillar-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  will-change: transform;
  transform: translateZ(0);
}

.pillar-card h3 {
  margin: 0 0 10px;
}

.pillar-card p {
  margin: 0;
}

.institutional-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@keyframes pulse-verifying {
  0% {
    box-shadow: 0 0 0 0 var(--accent-soft);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-node {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes portal-border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

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

@keyframes verified-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes hero-simmer {
  0% {
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    transform: translate3d(10%, 0, 0);
  }
}

@keyframes modal-simmer {
  0% {
    transform: translate3d(-6%, 0, 0);
  }
  100% {
    transform: translate3d(6%, 0, 0);
  }
}

@keyframes beamSweep {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes sweep {
  0% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}

@keyframes lens-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes beam-particle {
  0%,
  100% {
    transform: translate3d(0, 10px, 0) scale(0.5);
    opacity: 0;
  }
  30% {
    opacity: 0.28;
  }
  50% {
    transform: translate3d(12px, -7px, 0) scale(1);
    opacity: 0.56;
  }
  70% {
    opacity: 0.18;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.18);
    opacity: 0.78;
  }
  50% {
    box-shadow: 0 0 0 16px rgba(79, 70, 229, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .modal-content,
  .modal-blur,
  .hero-stage::before,
  .modal-blur::before,
  .beam-glow,
  .beam-core,
  .beam-particles,
  .node::before,
  .map-node-dot {
    transition: none;
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 768px) {
  .site-nav-shell {
    top: 8px;
    width: calc(100% - 16px);
    justify-content: space-between;
    padding-inline: 18px;
  }

  .site-nav-links,
  .site-nav-cta {
    display: none;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .hero-glow::before {
    width: 28rem;
    height: 28rem;
  }

  .modal-blur::before {
    opacity: 0.18;
  }

  .hero {
    min-height: var(--app-height);
    padding: 96px 0 64px;
  }

  .hero-inner {
    width: min(1280px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-visual {
    min-height: 560px;
  }
}

@media (min-width: 900px) {
  .modal-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .modal-guide {
    display: block;
  }
}

@media (max-width: 980px) {
  .enterprise-grid,
  .literature-grid,
  .featured-card,
  .masters-grid,
  .join-shell,
  .institutional-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-item {
    animation-duration: 14s;
  }

  .institutional-aside {
    position: static;
  }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .network-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 400px;
    margin-top: 24px;
  }

  .network-nodes {
    inset: 32px auto auto 32px;
    display: grid;
    gap: 14px;
    max-width: 320px;
  }

  .node {
    position: relative;
    left: auto;
    top: auto;
    padding-left: 18px;
  }

  .node::before {
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
  }

  .network-copy {
    left: 32px;
    right: 32px;
    bottom: 28px;
    gap: 12px;
  }

  .network-card h3 {
    width: min(62%, 420px);
  }

  .beam-glow,
  .beam-core,
  .beam-particles {
    transform: scale(0.88);
    transform-origin: right top;
  }

  .beam-glow { right: 95px; top: 70px; }
  .beam-core { right: 120px; top: 94px; }
  .beam-particles { right: 160px; top: 92px; }

  .discovery-grid,
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-shell {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-stage,
  .hero {
    overflow: visible;
  }

  .hero {
    padding-top: 146px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .discovery-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .masters-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-search {
    order: 1;
    flex-direction: column;
    border-radius: 20px;
  }

  #search-status {
    order: 2;
  }

  .hero-visual {
    order: 3;
    position: sticky;
    top: 94px;
    min-height: 390px;
    margin: 2px 0 8px;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.16), transparent 18%),
      linear-gradient(180deg, rgba(22, 27, 61, 0.56), rgba(10, 14, 32, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .hero-search button {
    width: 100%;
    height: 54px;
  }

  .hero-actions,
  .hero-buttons {
    order: 4;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    font-weight: 600;
  }

  .network-card {
    display: block;
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    margin-top: 0;
    padding: 18px 18px 20px;
    border-radius: 22px;
    background:
      url("./assets/C633E47A-1796-40AF-BF86-626D88BFCDD5.png") center center / 185% auto no-repeat,
      linear-gradient(180deg, rgba(30, 34, 78, 0.42), rgba(12, 16, 38, 0.34));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .network-nodes {
    position: absolute;
    left: 18px;
    top: 18px;
    right: 132px;
    display: grid;
    gap: 10px;
    inset: auto;
  }

  .node {
    position: relative;
    left: auto;
    top: auto;
    padding-left: 16px;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .node::before {
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.05);
  }

  .network-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .network-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .network-card h3 {
    width: calc(100% - 188px);
    font-size: clamp(1.08rem, 6vw, 1.5rem);
    line-height: 1.03;
  }

  .beam-glow,
  .beam-core,
  .beam-particles {
    opacity: 0.42;
  }

  .beam-glow {
    width: 280px;
    height: 112px;
    left: 38px;
    top: 108px;
  }

  .beam-core {
    width: 236px;
    height: 82px;
    left: 62px;
    top: 124px;
  }

  .beam-particles {
    width: 198px;
    height: 74px;
    left: 80px;
    top: 132px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual::after {
    display: none;
  }

  .blog-controls input,
  .newsletter-form input {
    width: 100%;
    min-width: 0;
  }

  .action-button,
  .ghost-button {
    width: 100%;
  }

  .ecosystem-stage {
    padding: 18px;
  }

  .ecosystem-signal {
    gap: 16px;
    font-size: 0.78rem;
  }

  .conversation-prompt {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .network-map-shell {
    min-height: 620px;
  }

  .network-map-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .institutional-shell {
    padding-top: 124px;
  }

  .institutional-title {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }
}
