:root {
  --navy: #060b18;
  --ink: #0a1228;
  --panel: rgba(10, 18, 40, 0.62);
  --line: rgba(126, 232, 232, 0.18);
  --cyan: #7ee8e8;
  --cyan-deep: #3ecfc4;
  --indigo: #7b8cff;
  --violet: #8b7cff;
  --fog: #c9d4e8;
  --muted: #8ea0bf;
  --white: #f6f8fc;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  cursor: none;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  cursor: none;
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 80;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(126, 232, 232, 0.7);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}

.cursor-ring.is-hot {
  width: 56px;
  height: 56px;
  background: rgba(126, 232, 232, 0.08);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(62, 207, 196, 0.12), transparent 58%),
    radial-gradient(800px 480px at 88% 18%, rgba(123, 140, 255, 0.16), transparent 60%),
    radial-gradient(700px 500px at 60% 92%, rgba(139, 124, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #050814 0%, #08101f 48%, #070d1c 100%);
}

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite;
}

.mesh-a {
  width: 420px;
  height: 420px;
  left: -80px;
  top: 12%;
  background: radial-gradient(circle, rgba(62, 207, 196, 0.35), transparent 70%);
}

.mesh-b {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 8%;
  background: radial-gradient(circle, rgba(123, 140, 255, 0.32), transparent 70%);
  animation-delay: -7s;
}

.mesh-c {
  width: 380px;
  height: 380px;
  left: 38%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(139, 124, 255, 0.24), transparent 70%);
  animation-delay: -13s;
}

.aurora {
  position: absolute;
  inset: -20%;
  background:
    repeating-radial-gradient(circle at 72% 28%, transparent 0 88px, rgba(126, 232, 232, 0.035) 89px 90px),
    repeating-radial-gradient(circle at 18% 72%, transparent 0 110px, rgba(123, 140, 255, 0.03) 111px 112px);
  animation: pulseField 16s ease-in-out infinite;
}

#dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5, 8, 20, 0.55) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.nav, main, footer, .mobile-sheet {
  position: relative;
  z-index: 2;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 11, 24, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(126, 232, 232, 0.45);
  box-shadow: 0 0 0 4px rgba(126, 232, 232, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--fog);
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(126, 232, 232, 0.04);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.icon-btn img,
.btn img,
.officials img,
.text-link img,
.footer-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(126, 232, 232, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}

.btn-cyan {
  background: linear-gradient(135deg, #7ee8e8, #4fd1c5 55%, #8b9cff);
  color: #061018;
  box-shadow: 0 8px 24px rgba(79, 209, 197, 0.22);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn-lg {
  padding: 13px 20px;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(126, 232, 232, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), top 0.3s;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 24px; }

.menu-toggle.is-open span:first-child {
  top: 20px;
  transform: rotate(40deg);
}

.menu-toggle.is-open span:last-child {
  top: 20px;
  transform: rotate(-40deg);
}

.mobile-sheet {
  display: none;
  position: fixed;
  top: 84px;
  left: 14px;
  right: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(6, 11, 24, 0.92);
  backdrop-filter: blur(18px);
  z-index: 19;
  flex-direction: column;
  gap: 16px;
}

.mobile-sheet.is-open {
  display: flex;
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 80px;
}

.hero {
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.kicker-ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  box-shadow: inset 0 0 0 3px rgba(6, 11, 24, 1), inset 0 0 0 4.5px var(--cyan);
  animation: spinRing 8s linear infinite;
}

h1, h2, h3 {
  font-family: "Syne", sans-serif;
}

h1 {
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

h1 em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  background: linear-gradient(90deg, #7ee8e8, #d7e7ff 42%, #8b9cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 7s ease-in-out infinite;
  background-size: 200% 100%;
}

.lede {
  margin-top: 22px;
  max-width: 540px;
  color: var(--fog);
  font-size: 18px;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.chip {
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(126, 232, 232, 0.04);
}

.chip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip strong {
  font-size: 15px;
}

.ca-row,
.ca-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(126, 232, 232, 0.05);
  color: inherit;
  font: inherit;
}

.ca-row {
  width: 100%;
  max-width: 540px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border-radius: 16px;
  text-align: left;
}

.ca-row span,
.ca-inline span,
.fact-ca span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-row code,
.ca-inline code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--cyan);
  font-size: 13px;
}

.ca-row em,
.ca-inline em {
  font-style: normal;
  color: #061018;
  background: var(--cyan);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.ca-inline {
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  width: 100%;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.officials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.officials a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fog);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.officials a:hover,
.text-link:hover {
  color: var(--cyan);
}

.hero-orbit {
  display: grid;
  place-items: center;
}

.orbit-field {
  position: relative;
  width: min(520px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(126, 232, 232, 0.16);
  animation: breathe 8s ease-in-out infinite;
}

.ring-1 { inset: 6%; border-color: rgba(126, 232, 232, 0.42); }
.ring-2 { inset: 14%; animation-delay: -2s; border-color: rgba(123, 140, 255, 0.28); }
.ring-3 { inset: 23%; animation-delay: -4s; }
.ring-4 {
  inset: 0;
  border: 0;
  background: radial-gradient(circle, transparent 46%, rgba(126, 232, 232, 0.05) 47%, transparent 48%);
  animation: spinSlow 28s linear infinite;
}

.spark {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  animation: spinSlow 14s linear infinite;
}

.spark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  transform: translateX(-50%);
}

.spark-b {
  inset: 15%;
  animation-duration: 19s;
  animation-direction: reverse;
}

.spark-b::after {
  background: var(--indigo);
  box-shadow: 0 0 16px var(--indigo);
}

.spark-c {
  inset: 23%;
  animation-duration: 10s;
}

.portrait {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(126, 232, 232, 0.55);
  box-shadow:
    0 0 0 10px rgba(126, 232, 232, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.45);
  animation: floatY 6s ease-in-out infinite;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.orbit-label {
  position: absolute;
  bottom: 8%;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--line);
  background: rgba(6, 11, 24, 0.7);
}

.section {
  padding: 110px 0 10px;
}

.section-head {
  margin-bottom: 36px;
  max-width: 720px;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.glass {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.about-card {
  padding: 32px;
  border-radius: 28px;
}

.about-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.about-card p {
  color: var(--fog);
  line-height: 1.7;
  margin-bottom: 14px;
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.facts li {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-photo {
  margin: 0;
}

.photo-frame {
  height: 100%;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 1.2s var(--ease);
}

.photo-frame:hover img {
  transform: scale(1.04);
}

.photo-frame figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(6, 11, 24, 0.72);
  backdrop-filter: blur(10px);
  color: var(--fog);
  font-size: 13px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 24px 22px 26px;
  border-radius: 24px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(126, 232, 232, 0.12);
}

.step-num {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  color: var(--cyan);
  margin-bottom: 18px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  color: var(--fog);
  line-height: 1.65;
  font-size: 14px;
}

.step .text-link {
  margin-top: 14px;
}

.chart-shell {
  border-radius: 28px;
  overflow: hidden;
  height: 680px;
}

.chart-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1220;
}

.banner-frame {
  margin: 0 0 22px;
  aspect-ratio: 3 / 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.join-panel {
  padding: 28px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.join-panel p {
  max-width: 620px;
  color: var(--fog);
  line-height: 1.7;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 70px auto 36px;
  padding: 24px 0 10px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.footer-brand span,
.fineprint {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fog);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -24px, 0) scale(1.08); }
}

@keyframes pulseField {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.035); opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

@keyframes sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .steps,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .hero { gap: 28px; }
  .chart-shell { height: 540px; }
  .join-panel { flex-direction: column; align-items: flex-start; }
  html, body, a, button { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
}

@media (max-width: 720px) {
  .facts { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  .banner-frame { border-radius: 18px; }
  .photo-frame { min-height: 360px; }
  .steps { grid-template-columns: 1fr; }
}
