:root {
  --bg: #05030b;
  --panel: rgba(18, 10, 36, 0.72);
  --panel-strong: rgba(18, 10, 36, 0.92);
  --text: #f7f5ff;
  --muted: #a8a2bc;
  --purple: #9a35ff;
  --purple-soft: #c16cff;
  --cyan: #28d8ff;
  --line: rgba(255, 255, 255, 0.11);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(38, 113, 255, 0.16), transparent 30%),
    radial-gradient(circle at 14% 20%, rgba(154, 53, 255, 0.2), transparent 34%),
    var(--bg);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -3;
}

.orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(110px);
  z-index: -2;
  opacity: 0.28;
}

.orb-one { top: 12%; left: -180px; background: var(--purple); }
.orb-two { right: -180px; top: 48%; background: var(--cyan); }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 20px auto 0;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 3, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(154,53,255,.45);
}

.cyan { color: var(--cyan); }

nav { display: flex; gap: 28px; }

nav a,
.footer-links a {
  color: var(--muted);
  font-size: .94rem;
  transition: color .2s ease;
}

nav a:hover,
.footer-links a:hover { color: white; }

.small-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.small-button,
.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--purple), #6034ff 52%, #1bb4f2);
  box-shadow: 0 12px 35px rgba(122, 51, 255, .28);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.small-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
  padding: 90px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8d2e8;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 12px var(--purple);
}

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

h1 {
  margin-bottom: 24px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.05em;
}

h1 em {
  display: block;
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #f7b8ff, var(--purple-soft), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0 44px;
}

.trust-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-row div { display: grid; gap: 5px; }
.trust-row strong { font-family: "Orbitron"; font-size: 1.05rem; }
.trust-row span { color: var(--muted); font-size: .82rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,53,255,.19), transparent 66%);
  filter: blur(6px);
}

.hero-visual img {
  width: 78%;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 32px rgba(154,53,255,.6));
  animation: float 6s ease-in-out infinite;
}

.scanner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155, 86, 255, .28);
}

.ring-one { inset: 5%; animation: spin 26s linear infinite; }
.ring-two { inset: 15%; border-color: rgba(40,216,255,.24); animation: spinReverse 18s linear infinite; }

.ring-one::before,
.ring-two::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  top: 8%;
  left: 24%;
}

.scanner-line {
  position: absolute;
  z-index: 4;
  width: 37%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  transform-origin: right center;
  right: 50%;
  top: 50%;
  animation: scan 7s linear infinite;
  opacity: .55;
}

.signal-card {
  position: absolute;
  z-index: 6;
  min-width: 178px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9,6,20,.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.signal-card span {
  display: block;
  color: var(--cyan);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 5px;
}

.signal-card strong { font-size: .83rem; }
.card-one { top: 18%; left: -3%; }
.card-two { right: -3%; bottom: 19%; }

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  padding: 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  white-space: nowrap;
  color: #cfc8dc;
  font-family: "Orbitron";
  font-size: .72rem;
  letter-spacing: .12em;
}

.ticker span { color: var(--purple-soft); }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 115px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.community-panel h2,
.waitlist-card h2 {
  margin: 18px 0 14px;
  font-family: "Orbitron";
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading p,
.community-panel p,
.waitlist-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.glass-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(128, 83, 255, .48);
}

.glass-card.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(40,216,255,.15), transparent 35%),
    linear-gradient(145deg, rgba(154,53,255,.13), rgba(255,255,255,.02));
}

.icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, rgba(154,53,255,.8), rgba(40,216,255,.5));
  font-family: "Orbitron";
  font-weight: 800;
  font-size: .78rem;
  box-shadow: 0 0 25px rgba(154,53,255,.22);
}

.glass-card h3 {
  margin: 30px 0 13px;
  font-family: "Orbitron";
  font-size: 1.15rem;
}

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

.roadmap-section { padding-top: 80px; }

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.022);
}

.roadmap-item {
  min-height: 260px;
  padding: 34px 28px;
  position: relative;
  border-right: 1px solid var(--line);
}

.roadmap-item:last-child { border-right: 0; }

.roadmap-dot {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 50%;
  border: 2px solid #746d84;
  margin-bottom: 38px;
}

.roadmap-item.complete .roadmap-dot {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.roadmap-item.active {
  background: linear-gradient(180deg, rgba(154,53,255,.12), transparent);
}

.roadmap-item.active .roadmap-dot {
  border-color: var(--purple-soft);
  background: var(--purple-soft);
  box-shadow: 0 0 18px var(--purple-soft);
}

.roadmap-item small {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .12em;
}

.roadmap-item h3 {
  font-family: "Orbitron";
  margin: 17px 0 13px;
  font-size: 1.12rem;
}

.roadmap-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.community-panel,
.waitlist-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  background:
    radial-gradient(circle at 0% 100%, rgba(154,53,255,.18), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(40,216,255,.13), transparent 35%),
    rgba(255,255,255,.025);
}

.community-panel > div:first-child,
.waitlist-card > div:first-child { max-width: 650px; }

.community-actions { display: flex; gap: 12px; flex-shrink: 0; }

.waitlist-section { padding-top: 0; }

#waitlist-form {
  width: min(100%, 430px);
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

#waitlist-form input {
  min-width: 0;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  color: white;
  background: rgba(4,3,11,.72);
  outline: none;
  font: inherit;
}

#waitlist-form input:focus {
  border-color: var(--purple-soft);
  box-shadow: 0 0 0 3px rgba(154,53,255,.13);
}

#waitlist-form button {
  border: 0;
  border-radius: 12px;
  padding: 0 20px;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 4px 0 0 !important;
  font-size: .82rem;
}

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 40px 0 55px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-brand img { width: 34px; height: 34px; }
footer p { color: var(--muted); margin: 0; }
.footer-links { display: flex; gap: 22px; }
footer small { grid-column: 1 / -1; color: #746e82; }

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

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

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes scan { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 20px;
  }

  .hero-copy > p { margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { width: min(100%, 620px); margin: 0 auto; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .roadmap-item:nth-child(2) { border-right: 0; }
  .roadmap-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .community-panel,
  .waitlist-card {
    align-items: flex-start;
    flex-direction: column;
  }

  #waitlist-form { width: 100%; }
}

@media (max-width: 650px) {
  .site-header { width: min(calc(100% - 22px), var(--max)); }
  .small-button { display: none; }
  .hero, .section, footer { width: min(calc(100% - 28px), var(--max)); }

  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero { min-height: auto; padding: 90px 0 45px; }

  .hero-actions,
  .community-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions a,
  .community-actions a { width: 100%; }

  .signal-card { display: none; }
  .ticker { justify-content: flex-start; overflow-x: auto; }

  .feature-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .roadmap-item:last-child { border-bottom: 0; }

  .community-panel,
  .waitlist-card { padding: 34px 24px; }

  #waitlist-form { grid-template-columns: 1fr; }
  #waitlist-form button { min-height: 52px; }

  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  footer small { grid-column: auto; }
}
