:root {
  color-scheme: dark;
  --bg: #03040b;
  --bg-2: #070816;
  --ink: #fbfbff;
  --muted: #b8b6ce;
  --soft: #74708d;
  --line: rgba(157, 97, 255, 0.28);
  --glass: rgba(12, 14, 32, 0.72);
  --glass-2: rgba(18, 18, 46, 0.82);
  --purple: #9b55ff;
  --magenta: #e044ff;
  --blue: #25a8ff;
  --cyan: #1fe6ff;
  --green: #25d884;
  --amber: #ffb32c;
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 18%, rgba(132, 52, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 40%, rgba(18, 133, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #02030a 0%, #070816 48%, #03040b 100%);
  overflow-x: hidden;
}

.cosmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(75, 168, 255, 0.62) 0 1px, transparent 1.5px);
  background-size: 74px 74px, 129px 129px;
  background-position: 0 0, 18px 42px;
  opacity: 0.18;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto -22vh -12vw;
  width: 65vw;
  height: 48vh;
  z-index: -1;
  background: radial-gradient(circle, rgba(121, 49, 255, 0.28), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

body::after {
  inset: -18vh -20vw auto auto;
  background: radial-gradient(circle, rgba(23, 142, 255, 0.22), transparent 67%);
}

.particle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle-field span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #b970ff;
  box-shadow: 0 0 18px #9b55ff;
  opacity: 0.65;
  animation: floatParticle 12s ease-in-out infinite;
}

.particle-field span:nth-child(1) { left: 8%; top: 24%; animation-delay: -1s; }
.particle-field span:nth-child(2) { left: 22%; top: 72%; animation-delay: -4s; background: #25a8ff; }
.particle-field span:nth-child(3) { left: 48%; top: 18%; animation-delay: -7s; }
.particle-field span:nth-child(4) { left: 68%; top: 62%; animation-delay: -3s; background: #1fe6ff; }
.particle-field span:nth-child(5) { left: 86%; top: 30%; animation-delay: -8s; }
.particle-field span:nth-child(6) { left: 92%; top: 78%; animation-delay: -5s; background: #25d884; }

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(3, 4, 11, 0.7);
  border-bottom: 1px solid rgba(157, 97, 255, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-toggle,
.button,
.join-row,
.value-strip article,
.principle-grid article,
.app-grid article {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand em {
  color: #d7baff;
  font-style: normal;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--purple), #4a2dff 55%, var(--cyan));
  box-shadow: 0 0 30px rgba(155, 85, 255, 0.55);
  font-weight: 900;
}

.site-nav {
  justify-self: end;
  gap: clamp(16px, 3vw, 34px);
  color: #e5def5;
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.site-nav a:hover {
  color: white;
  text-shadow: 0 0 16px rgba(155, 85, 255, 0.9);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(180, 125, 255, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #b14cff, #6327ff 55%, #1a71ff);
  box-shadow: 0 0 24px rgba(139, 70, 255, 0.38);
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(157, 97, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #e9e3ff;
}

.language-picker svg {
  width: 17px;
  height: 17px;
  color: #b46bff;
}

.language-picker select {
  width: 108px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.language-picker option {
  color: #101020;
  background: #ffffff;
}

.nav-toggle {
  display: none;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 5vw, 66px) clamp(18px, 4vw, 56px) 24px;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 4, 11, 0.12) 0%, rgba(3, 4, 11, 0.02) 46%, rgba(3, 4, 11, 0.74) 100%),
    radial-gradient(circle at 50% 70%, rgba(172, 66, 255, 0.16), transparent 30%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin-inline: auto;
}

.pill,
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  color: #c88cff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 13, 31, 0.78);
  box-shadow: inset 0 0 26px rgba(138, 74, 255, 0.12);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span,
.final-copy h2,
.section-heading h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #b677ff 36%, #6d4cff 70%, #28baff);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 34px rgba(138, 74, 255, 0.18);
}

.hero-lede {
  max-width: 690px;
  margin: 18px auto 0;
  color: #ddd9ee;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.hero-slogan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid rgba(180, 125, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(155, 85, 255, 0.1), rgba(37, 168, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 28px rgba(155, 85, 255, 0.13), 0 0 34px rgba(37, 168, 255, 0.08);
}

.hero-slogan::before,
.hero-slogan::after {
  content: "";
  width: clamp(28px, 6vw, 86px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 137, 255, 0.85));
}

.hero-slogan::after {
  background: linear-gradient(90deg, rgba(37, 168, 255, 0.85), transparent);
}

.hero-slogan span {
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #d198ff 45%, #38c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(0.9rem, 1.6vw, 1.16rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(155, 85, 255, 0.22);
  white-space: nowrap;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
  width: min(520px, 100%);
  min-height: 58px;
  margin: 22px auto 0;
  padding: 7px;
  border: 1px solid rgba(157, 97, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(9, 10, 25, 0.72);
  box-shadow: 0 0 42px rgba(121, 49, 255, 0.13);
}

input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  padding: 0 12px;
}

.portal-login-form label,
.guide-form label {
  display: grid;
  gap: 8px;
  color: #e8e0ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.portal-login-form input,
.guide-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(157, 97, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: white;
  padding: 0 14px;
}

.guide-form select option {
  color: #101020;
  background: white;
}

input::placeholder {
  color: #8f8aa8;
}

.button {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(180, 125, 255, 0.42);
  border-radius: var(--radius);
  cursor: pointer;
  color: white;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, #b14cff, #6327ff 55%, #1a71ff);
  box-shadow: 0 0 28px rgba(139, 70, 255, 0.52);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 22px rgba(139, 70, 255, 0.12);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-actions .waitlist-form {
  margin: 0;
}

.join-row {
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack span {
  width: 30px;
  height: 30px;
  margin-left: -8px;
  border: 2px solid #11122a;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c78a, #825dff);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-grid {
  position: absolute;
  inset: 32% clamp(18px, 7vw, 110px) auto;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-grid article {
  width: 190px;
  text-align: center;
}

.hero-grid strong {
  display: block;
  color: #a85cff;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.9;
  text-shadow: 0 0 34px rgba(168, 92, 255, 0.5);
}

.hero-grid span,
.hero-grid small {
  display: block;
}

.hero-grid span {
  margin-top: 8px;
  font-weight: 800;
}

.hero-grid small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.ecosystem-visual {
  width: min(780px, 94vw);
  margin: 24px auto 0;
}

.ecosystem-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 0 48px rgba(138, 74, 255, 0.38));
}

.value-strip {
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 24, 58, 0.88), rgba(9, 10, 25, 0.88));
  box-shadow: 0 0 46px rgba(72, 89, 255, 0.13);
  overflow: hidden;
}

.value-strip article {
  gap: 16px;
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid rgba(157, 97, 255, 0.2);
}

.value-strip article:last-child {
  border-right: 0;
}

.value-strip svg,
.principle-grid svg,
.app-grid svg,
.launch-card svg {
  width: 34px;
  height: 34px;
  color: #b46bff;
  filter: drop-shadow(0 0 12px rgba(180, 107, 255, 0.72));
  flex: 0 0 auto;
}

.value-strip h2 {
  margin: 0;
  font-size: 1.06rem;
}

.value-strip p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ecosystem-section {
  padding-top: 76px;
}

.portal-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 168, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 42%, rgba(155, 85, 255, 0.2), transparent 30%),
    rgba(5, 7, 18, 0.34);
}

.portal-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(420px, 1fr);
  gap: 18px;
}

.login-panel,
.account-dashboard,
.guide-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 18, 46, 0.86), rgba(7, 9, 24, 0.82)),
    radial-gradient(circle at 85% 0%, rgba(155, 85, 255, 0.18), transparent 30%);
  box-shadow: inset 0 0 34px rgba(103, 70, 180, 0.12), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.login-panel,
.account-dashboard {
  padding: 24px;
}

.panel-head,
.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-head {
  justify-content: flex-start;
}

.panel-head svg,
.dashboard-top svg,
.owned-apps svg {
  width: 30px;
  height: 30px;
  color: #b46bff;
  filter: drop-shadow(0 0 12px rgba(180, 107, 255, 0.72));
}

.panel-head h3,
.dashboard-top h3,
.recommendation-panel h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.panel-head p,
.dashboard-top p,
.recommendation-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.portal-login-form,
.guide-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.dashboard-stats article,
.owned-apps article,
.admin-access-panel,
.recommendation-panel {
  border: 1px solid rgba(157, 97, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-stats article {
  min-height: 92px;
  padding: 16px;
}

.dashboard-stats strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #b677ff 44%, #28baff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  line-height: 1;
}

.dashboard-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.admin-access-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1fr;
  gap: 18px;
  margin-top: 12px;
  padding: 18px;
  border-color: rgba(37, 216, 132, 0.42);
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 216, 132, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 28px rgba(37, 216, 132, 0.08);
}

.admin-access-panel[hidden] {
  display: none;
}

.admin-access-panel h3 {
  margin: 0 0 8px;
}

.admin-access-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.admin-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.admin-tools span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(37, 216, 132, 0.24);
  border-radius: var(--radius);
  background: rgba(37, 216, 132, 0.08);
  color: #eaffe7;
  font-size: 0.85rem;
  font-weight: 800;
}

.admin-tools svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.owned-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.owned-apps article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 16px;
}

.owned-apps article.is-active {
  border-color: rgba(37, 216, 132, 0.42);
  box-shadow: inset 0 0 24px rgba(37, 216, 132, 0.08);
}

.owned-apps span {
  font-weight: 900;
}

.owned-apps small {
  color: var(--muted);
}

.guide-panel {
  margin-top: 18px;
  padding: 24px;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 18px;
}

.recommendation-panel {
  min-height: 260px;
  padding: 24px;
}

.recommended-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.recommended-apps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(180, 125, 255, 0.36);
  border-radius: 999px;
  background: rgba(155, 85, 255, 0.12);
  color: #efe8ff;
  font-weight: 800;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 980px;
  margin-inline: auto;
}

.principle-grid article,
.app-grid article {
  justify-content: center;
  gap: 10px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: inset 0 0 34px rgba(77, 51, 160, 0.12);
}

.principle-grid span,
.app-grid span {
  font-weight: 800;
}

.ecosystem-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(155, 85, 255, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(11, 13, 31, 0.84), rgba(5, 7, 18, 0.78));
  box-shadow: 0 0 60px rgba(45, 111, 255, 0.13);
  overflow: hidden;
}

.ecosystem-orbit::before,
.ecosystem-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(103, 111, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ecosystem-orbit::after {
  inset: 28%;
  border-color: rgba(204, 77, 255, 0.22);
}

.core-node {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(210, 160, 255, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 83, 255, 0.38), rgba(4, 5, 13, 0.96) 62%);
  box-shadow: 0 0 70px rgba(155, 85, 255, 0.62);
  text-align: center;
}

.core-node span {
  font-size: 3rem;
  font-weight: 900;
}

.core-node strong {
  color: #d9c6ff;
}

.ecosystem-orbit article,
.feature-card,
.app-card,
.use-grid article,
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 18, 46, 0.82), rgba(7, 9, 24, 0.78));
  box-shadow: inset 0 0 32px rgba(103, 70, 180, 0.12), 0 0 0 rgba(155, 85, 255, 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ecosystem-orbit article {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 16px;
}

.ecosystem-orbit article:hover,
.feature-card:hover,
.app-card:hover,
.use-grid article:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187, 122, 255, 0.64);
  box-shadow: 0 18px 54px rgba(80, 55, 200, 0.2);
}

.ecosystem-orbit svg,
.feature-card svg,
.app-card svg,
.use-grid svg,
.price-card svg,
.nexus-map svg {
  width: 28px;
  height: 28px;
  color: #b46bff;
  filter: drop-shadow(0 0 12px rgba(180, 107, 255, 0.72));
}

.feature-grid,
.module-grid,
.use-grid,
.pricing-grid,
.reward-grid,
.trust-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.pricing-grid {
  grid-template-columns: repeat(5, 1fr);
}

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

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.app-card,
.price-card,
.reward-card,
.trust-card {
  min-height: 210px;
  padding: 24px;
}

.feature-card h3,
.app-card h3,
.price-card h3,
.reward-card h3,
.trust-card h3 {
  margin: 20px 0 10px;
  font-size: 1.08rem;
}

.feature-card p,
.app-card p,
.price-card p,
.reward-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.reward-card,
.trust-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(37, 168, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 18, 46, 0.84), rgba(7, 9, 24, 0.82));
  box-shadow: inset 0 0 32px rgba(103, 70, 180, 0.12);
}

.reward-card svg,
.trust-card svg {
  width: 30px;
  height: 30px;
  color: #b46bff;
  filter: drop-shadow(0 0 12px rgba(180, 107, 255, 0.72));
}

.reward-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 20px;
  padding: 0 12px;
  border: 1px solid rgba(37, 216, 132, 0.3);
  border-radius: 999px;
  background: rgba(37, 216, 132, 0.08);
  color: #dfffe7;
}

.app-card {
  min-height: 190px;
  background:
    radial-gradient(circle at 86% 0%, rgba(155, 85, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(18, 18, 46, 0.84), rgba(7, 9, 24, 0.82));
}

.launch-image {
  margin: 30px 0 0;
}

.launch-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: 22px;
}

.launch-cards {
  display: grid;
  gap: 14px;
}

.launch-card {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(19, 18, 46, 0.96), rgba(6, 8, 19, 0.94)),
    radial-gradient(circle at 86% 20%, rgba(155, 85, 255, 0.36), transparent 30%);
}

.launch-card.blue svg {
  color: var(--cyan);
}

.launch-card.violet svg {
  color: #bd6cff;
}

.launch-card h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
  color: #c15cff;
  text-transform: uppercase;
}

.launch-card.blue h3 {
  color: var(--blue);
}

.launch-card p {
  margin: 0;
  color: #dfdbef;
  line-height: 1.55;
}

.launch-image img {
  width: 100%;
  border: 1px solid rgba(157, 97, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 0 50px rgba(37, 168, 255, 0.16);
}

.os-section {
  background:
    radial-gradient(circle at 50% 45%, rgba(155, 85, 255, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(5, 7, 18, 0.2), rgba(13, 10, 33, 0.62));
}

.nexus-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 18, 0.72);
}

.nexus-core {
  grid-column: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 170px;
  border: 1px solid rgba(210, 160, 255, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 83, 255, 0.34), rgba(4, 5, 13, 0.96) 64%);
  box-shadow: 0 0 70px rgba(155, 85, 255, 0.58);
  font-weight: 900;
}

.nexus-map article,
.use-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 84px;
  padding: 18px;
  text-align: center;
}

.use-grid article {
  font-weight: 800;
}

.module-section {
  padding-top: 32px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.app-grid article {
  flex-direction: column;
  min-height: 112px;
  gap: 12px;
  text-align: center;
}

.app-grid svg {
  width: 30px;
  height: 30px;
}

.app-grid span {
  font-size: 0.86rem;
  line-height: 1.25;
}

.roadmap-section,
.pricing-section,
.rewards-section,
.trust-section {
  background: linear-gradient(180deg, rgba(8, 10, 28, 0.22), rgba(10, 8, 24, 0.7));
}

.trust-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 216, 132, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(5, 7, 18, 0.2), rgba(10, 8, 24, 0.72));
}

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

.roadmap article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 12%, rgba(37, 168, 255, 0.18), transparent 28%),
    rgba(12, 14, 32, 0.78);
}

.roadmap span {
  color: #c88cff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.roadmap h3 {
  margin: 18px 0 12px;
  font-size: 1.4rem;
}

.roadmap p {
  color: var(--muted);
  line-height: 1.65;
}

.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #b677ff 44%, #28baff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.35rem;
}

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

.steps article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-2);
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b14cff, #4a2dff);
  box-shadow: 0 0 24px rgba(155, 85, 255, 0.58);
  font-size: 1.35rem;
  font-weight: 900;
}

.steps h3 {
  margin: 20px 0 8px;
  text-transform: uppercase;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 24px;
  width: min(1360px, calc(100% - 36px));
  margin: clamp(54px, 7vw, 90px) auto 34px;
  min-height: 330px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080a1c;
  overflow: hidden;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 5, 12, 0.94), rgba(4, 5, 12, 0.62) 55%, rgba(4, 5, 12, 0.12));
}

.final-copy,
.cta-form {
  position: relative;
  z-index: 1;
}

.final-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #e9e5f5;
}

.final-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-copy svg {
  width: 18px;
  height: 18px;
  color: #865cff;
}

.cta-form {
  justify-self: end;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(24px, 6vw, 80px);
  padding: 44px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid rgba(157, 97, 255, 0.18);
  background: rgba(3, 4, 11, 0.62);
}

.site-footer p {
  max-width: 360px;
  margin: 14px 0 0;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 12px;
}

.site-footer a:hover {
  color: white;
}

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

.reveal {
  animation: fadeLift 720ms ease both;
}

@keyframes fadeLift {
  from {
    opacity: 0.92;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(28px, -42px, 0) scale(1.8);
    opacity: 0.9;
  }
}

.button svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1180px) {
  .hero-grid {
    position: static;
    order: 3;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
  }

  .app-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-orbit {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 190px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .value-strip,
  .launch-layout,
  .steps,
  .final-cta,
  .portal-shell,
  .guide-layout,
  .module-grid,
  .reward-grid,
  .use-grid,
  .roadmap,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-form {
    justify-self: stretch;
  }

  .site-nav .nav-cta {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .language-picker {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.75rem);
    line-height: 1.02;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .hero-slogan {
    display: flex;
    width: 100%;
    padding-inline: 12px;
  }

  .hero-slogan::before,
  .hero-slogan::after {
    width: 20px;
  }

  .hero-slogan span {
    white-space: normal;
  }

  .hero-grid,
  .value-strip,
  .principle-grid,
  .app-grid,
  .feature-grid,
  .pricing-grid,
  .ecosystem-orbit {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip article {
    flex-direction: column;
    align-items: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(157, 97, 255, 0.2);
  }

  .app-grid article {
    min-height: 104px;
    padding: 14px 10px;
  }

  .launch-image {
    margin: 0;
  }

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

  .final-cta {
    width: calc(100% - 24px);
  }

  .core-node {
    position: relative;
    inset: auto;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
    order: -1;
  }

  .ecosystem-orbit {
    padding-top: 22px;
  }

  .nexus-map {
    grid-template-columns: 1fr;
  }

  .dashboard-stats,
  .owned-apps,
  .admin-access-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-tools {
    grid-template-columns: repeat(2, 1fr);
  }

  .nexus-core {
    grid-column: auto;
    border-radius: var(--radius);
  }
}

@media (max-width: 430px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid article {
    width: 100%;
  }

  .principle-grid,
  .app-grid,
  .feature-grid,
  .pricing-grid,
  .reward-grid,
  .ecosystem-orbit,
  .dashboard-stats,
  .owned-apps,
  .admin-access-panel,
  .admin-tools {
    grid-template-columns: 1fr;
  }
}
