:root {
  --bg: #090611;
  --bg-soft: rgba(17, 10, 33, 0.72);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #fbf7ff;
  --muted: #d7d1eb;
  --pink: #ff4fc6;
  --pink-strong: #ff1fb0;
  --cyan: #39d8ff;
  --violet: #7e5bff;
  --orange: #ff9a44;
  --lime: #b6ff6a;
  --gold: #ffe690;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 79, 198, 0.34), transparent 24%),
    radial-gradient(circle at 24% 22%, rgba(255, 154, 68, 0.22), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(57, 216, 255, 0.28), transparent 24%),
    radial-gradient(circle at 70% 28%, rgba(182, 255, 106, 0.16), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(126, 91, 255, 0.3), transparent 35%),
    var(--bg);
  background-attachment: fixed;
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 38rem;
  height: 38rem;
  pointer-events: none;
  filter: blur(95px);
  opacity: 0.62;
  z-index: 0;
}

.site-shell::before {
  top: -6rem;
  left: -8rem;
  background: conic-gradient(from 180deg, rgba(255, 31, 176, 0.5), rgba(255, 154, 68, 0.34), rgba(57, 216, 255, 0.3), rgba(126, 91, 255, 0.42), rgba(255, 31, 176, 0.5));
}

.site-shell::after {
  right: -9rem;
  bottom: -8rem;
  background: conic-gradient(from 210deg, rgba(57, 216, 255, 0.34), rgba(182, 255, 106, 0.24), rgba(255, 230, 144, 0.26), rgba(255, 79, 198, 0.36), rgba(57, 216, 255, 0.34));
}

.container,
.topbar,
.footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 79, 198, 0.16), rgba(57, 216, 255, 0.08) 35%, rgba(255, 230, 144, 0.12) 60%, rgba(126, 91, 255, 0.18)),
    rgba(12, 8, 24, 0.72);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(255, 79, 198, 0.14);
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 30px rgba(255, 79, 198, 0.25);
}

.brand div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #12051d;
  background: linear-gradient(135deg, var(--gold), #ffd36a 16%, #ff84d6 34%, #ff9a44 54%, #63e6ff 78%, #b6ff6a 100%);
  box-shadow:
    0 12px 30px rgba(255, 79, 198, 0.26),
    0 0 26px rgba(99, 230, 255, 0.24);
}

.button-secondary {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 79, 198, 0.14), rgba(57, 216, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.24);
}

.button-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.section {
  position: relative;
  padding: 5rem 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
}

.hero-video-wrap,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.12) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 6, 17, 0.08), rgba(9, 6, 17, 0.8) 78%),
    radial-gradient(circle at 15% 12%, rgba(255, 79, 198, 0.34), transparent 24%),
    radial-gradient(circle at 32% 18%, rgba(255, 154, 68, 0.18), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(57, 216, 255, 0.28), transparent 28%),
    radial-gradient(circle at 70% 40%, rgba(182, 255, 106, 0.12), transparent 20%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #fff2bc;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(255, 214, 111, 0.26);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  line-height: 0.97;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  background: linear-gradient(135deg, #fff8da 0%, #ff92d9 22%, #ffbd66 46%, #7cebff 70%, #d1ff8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.hero h1 span {
  display: block;
  margin-top: 0.9rem;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.94);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.94);
}

.hero-bio,
.section-copy p,
.section-heading p,
.hero-card p,
.step-card p,
.joinus-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-bio {
  max-width: 42rem;
  font-size: 1.08rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.stat-pill {
  min-width: 10rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 79, 198, 0.12), rgba(57, 216, 255, 0.08)),
    rgba(9, 7, 21, 0.42);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 0 24px rgba(255, 79, 198, 0.08);
}

.stat-pill strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 1.1rem;
}

.stat-pill span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-actions,
.chart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.ca-copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
}

.ca-copy-text {
  min-width: 0;
}

.ca-copy-text span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-copy-text code {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.copy-ca-button {
  flex-shrink: 0;
}

.glass-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 79, 198, 0.08), rgba(255, 255, 255, 0.12) 30%, rgba(57, 216, 255, 0.08) 70%, rgba(182, 255, 106, 0.06)),
    var(--bg-soft);
  backdrop-filter: blur(26px) saturate(1.15);
  box-shadow:
    var(--shadow),
    0 0 32px rgba(255, 79, 198, 0.08);
}

.hero-card {
  padding: 2rem;
}

.token-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.token-chip strong {
  color: #fff;
  text-shadow: 0 0 14px rgba(99, 230, 255, 0.32);
}

.hero-card h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  box-shadow: 0 0 18px rgba(255, 79, 198, 0.6);
}

.section-grid,
.joinus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.joinus-copy h2 {
  margin-bottom: 1rem;
}

.section-copy p,
.section-heading p,
.joinus-copy p {
  margin: 0 0 1rem;
  max-width: 58rem;
}

.about-media,
.joinus-banner {
  overflow: hidden;
  padding: 0.9rem;
}

.about-media img,
.joinus-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.tag-row span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 79, 198, 0.12), rgba(57, 216, 255, 0.08));
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.step-card {
  padding: 1.6rem;
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #160319;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffe690, #ff89d8, #ff9a44, #7be8ff, #b6ff6a);
}

.step-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.35rem;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.4rem 1.6rem;
}

.cta-strip p {
  margin: 0;
  font-size: 1.05rem;
}

.chart-card {
  padding: 1rem;
  overflow: hidden;
}

.chart-embed {
  width: 100%;
  height: 34rem;
  border: 0;
  border-radius: calc(var(--radius) - 10px);
  background: #0d1117;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.chart-actions {
  margin-top: 1.4rem;
}

.joinus {
  padding-bottom: 6rem;
}

.footer {
  padding: 0 0 2.5rem;
  text-align: center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .topbar {
    border-radius: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content,
  .section-grid,
  .joinus-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    align-items: stretch;
  }

  .topbar-cta {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-content,
  .section-grid,
  .joinus-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .ca-copy-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar {
    top: 0.6rem;
    width: min(100% - 1rem, 1180px);
    padding: 0.9rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    gap: 0.85rem;
    padding: 0;
  }

  .hero h1 {
    max-width: none;
  }

  .button,
  .hero-actions .button,
  .chart-actions .button {
    width: 100%;
  }

  .stat-pill,
  .token-chip {
    width: 100%;
  }

  .hero-card,
  .step-card,
  .cta-strip {
    padding: 1.25rem;
  }

  .chart-embed {
    height: 28rem;
  }
}
