:root {
  --bg: #07070c;
  --bg-2: #0c0c14;
  --ink: #f4f7fb;
  --muted: #9aa3b5;
  --cyan: #14f195;
  --blue: #3b82f6;
  --purple: #9945ff;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(12, 12, 20, 0.62);
  --font-ui: "DM Sans", "Segoe UI", sans-serif;
  --font-display: "Orbitron", "DM Sans", sans-serif;
  --radius: 22px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-ui);
  font-optical-sizing: auto;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.bg-wash,
.bg-aurora,
#signal-canvas,
.grain,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-wash {
  z-index: 0;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(153, 69, 255, 0.16), transparent 62%),
    radial-gradient(820px 480px at 92% 8%, rgba(20, 241, 149, 0.1), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(59, 130, 246, 0.1), transparent 55%),
    var(--bg);
}

.bg-aurora {
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(153, 69, 255, 0.05) 46%, rgba(20, 241, 149, 0.05) 62%, transparent 80%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

#signal-canvas {
  z-index: 1;
  opacity: 0.38;
}

.grain {
  z-index: 2;
  opacity: 0.045;
  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");
}

.cursor-glow {
  z-index: 1;
  background: radial-gradient(220px 220px at var(--mx, 50%) var(--my, 30%), rgba(20, 241, 149, 0.08), transparent 70%);
  transition: background 80ms linear;
}

.carrier-bar,
.nav,
.ticker,
main,
footer {
  position: relative;
  z-index: 3;
}

.carrier-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 12, 0.72);
  backdrop-filter: blur(16px);
}

.carrier-left,
.carrier-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carrier-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.carrier-sep {
  width: 14px;
  height: 1px;
  background: #4b5568;
}

.carrier-mid {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  color: var(--ink);
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.signal-bars i {
  display: block;
  width: 3px;
  background: var(--cyan);
  border-radius: 1px;
  animation: bar-live 1.4s ease-in-out infinite;
}

.signal-bars i:nth-child(1) { height: 3px; animation-delay: 0s; }
.signal-bars i:nth-child(2) { height: 6px; animation-delay: 0.15s; }
.signal-bars i:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.signal-bars i:nth-child(4) { height: 10px; animation-delay: 0.45s; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 12, 0.55);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-style: italic;
  transform: skewX(-8deg);
}

.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  transform: skewX(8deg);
  box-shadow: 0 0 0 1px rgba(20, 241, 149, 0.25), 0 0 24px rgba(153, 69, 255, 0.25);
}

.nav-brand span {
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn img {
  width: 16px;
  height: 16px;
}

.icon-btn img[src*="dexscreener.svg"],
.btn-ghost img[src*="dexscreener.svg"],
.dial-brand img[src*="dexscreener.svg"] {
  filter: drop-shadow(0 0 6px rgba(20, 241, 149, 0.55));
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 241, 149, 0.4);
  box-shadow: 0 0 18px rgba(20, 241, 149, 0.18);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(153, 69, 255, 0.04);
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #7c879a;
  animation: ticker 28s linear infinite;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 42px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  vertical-align: middle;
}

main {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 56px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.live-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.6);
  animation: ping 2s ease-out infinite;
}

h1 {
  margin: 0;
}

.wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 0.92;
  transform: skewX(-10deg);
  background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 48%, var(--cyan) 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 7s linear infinite;
  filter: drop-shadow(0 10px 28px rgba(153, 69, 255, 0.25));
}

.wordmark-sub {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.34em;
  color: #c9d2e3;
}

.bio {
  max-width: 520px;
  margin: 22px 0 28px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-ctas,
.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
  color: #07110c;
  box-shadow: 0 10px 30px rgba(20, 241, 149, 0.16);
}

.btn-primary img {
  filter: brightness(0.2);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(153, 69, 255, 0.2);
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 12px 10px 14px;
  max-width: 560px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.ca-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

#ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: #d5dceb;
}

.copy-btn {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(20, 241, 149, 0.12);
  color: var(--cyan);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-stats li {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20, 241, 149, 0.16);
  animation: spin 22s linear infinite;
}

.orbit-1 { width: 340px; height: 340px; }
.orbit-2 { width: 430px; height: 430px; animation-duration: 34s; animation-direction: reverse; border-color: rgba(153, 69, 255, 0.18); }
.orbit-3 { width: 520px; height: 520px; animation-duration: 46s; border-color: rgba(59, 130, 246, 0.14); }

.orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.orbit-2::before { background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.orbit-3::before { background: var(--blue); box-shadow: 0 0 12px var(--blue); }

.handset {
  position: relative;
  width: 292px;
  height: 596px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  animation: float-handset 6s ease-in-out infinite;
}

.handset-shell {
  height: 100%;
  padding: 9px;
  border-radius: 48px;
  background: linear-gradient(160deg, var(--cyan), var(--blue), var(--purple));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(153, 69, 255, 0.18);
}

.handset-screen {
  position: relative;
  height: calc(100% - 42px);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(20, 241, 149, 0.12), transparent 42%),
    #050508;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.screen-status {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #8b93a7;
}

.screen-status::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 72px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #14141c;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.mini-bars i {
  width: 2px;
  background: var(--cyan);
}

.mini-bars i:nth-child(1) { height: 4px; }
.mini-bars i:nth-child(2) { height: 7px; }
.mini-bars i:nth-child(3) { height: 10px; }

.screen-logo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  animation: logo-glow 3.6s ease-in-out infinite;
}

.screen-sym {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.16em;
}

.screen-line {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20, 241, 149, 0.12), transparent);
  animation: scan 3.8s linear infinite;
}

.home-btn {
  width: 28px;
  height: 28px;
  margin: 7px auto 0;
  border-radius: 50%;
  background: #07070c;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.section {
  padding: 96px 0 24px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.kicker {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--cyan);
}

h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  transform: skewX(-6deg);
}

.lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.glass-card,
.dial-step,
.chart-frame,
.join-panel {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.glass-card {
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 241, 149, 0.28);
  box-shadow: 0 18px 50px rgba(153, 69, 255, 0.12);
}

.card-index {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-bottom: 18px;
}

.glass-card h3,
.dial-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.dial-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.dial-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
}

.dial-pad {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  background: linear-gradient(160deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dial-brand {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
}

.dial-brand img {
  width: 24px;
  height: 24px;
}

.solana-brand {
  padding: 0;
}

.solana-brand img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.chart-frame {
  border-radius: 28px;
  overflow: hidden;
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.chart-chrome a {
  margin-left: auto;
  color: var(--cyan);
}

.chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

#dex-embed {
  width: 100%;
  height: 680px;
  border: 0;
  background: #0b0b10;
}

.banner-stage {
  margin: 0 0 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(20, 241, 149, 0.18);
  box-shadow:
    0 0 0 1px rgba(153, 69, 255, 0.12),
    0 24px 80px rgba(59, 130, 246, 0.16);
  position: relative;
}

.banner-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: shine 6.5s ease-in-out infinite;
}

.banner-stage img {
  width: 100%;
  height: auto;
  display: block;
}

.join-panel {
  padding: 28px;
  border-radius: 24px;
}

.join-bio {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #d5dceb;
}

.footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 80px auto 0;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c5cede;
}

.fineprint {
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  z-index: 40;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 241, 149, 0.14);
  border: 1px solid rgba(20, 241, 149, 0.35);
  color: var(--cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s ease forwards;
}

.reveal[data-delay="80"] { animation-delay: 80ms; }
.reveal[data-delay="120"] { animation-delay: 120ms; }
.reveal[data-delay="160"] { animation-delay: 160ms; }
.reveal[data-delay="240"] { animation-delay: 240ms; }

@keyframes aurora-drift {
  from { transform: translateX(-4%); opacity: 0.7; }
  to { transform: translateX(4%); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(20, 241, 149, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0); }
}

@keyframes bar-live {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 180% 50%; }
}

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

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

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(20, 241, 149, 0.25)); }
  50% { filter: drop-shadow(0 0 28px rgba(153, 69, 255, 0.45)); }
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes shine {
  0%, 55% { transform: translateX(-100%); }
  75%, 100% { transform: translateX(100%); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
    order: -1;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 24px 22px;
    flex-direction: column;
    gap: 16px;
    background: rgba(7, 7, 12, 0.94);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .carrier-left span:last-child,
  .carrier-sep {
    display: none;
  }
}

@media (max-width: 720px) {
  main,
  .footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .carrier-bar,
  .nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .dial-step {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  #dex-embed {
    height: 520px;
  }

  .handset {
    width: 240px;
    height: 500px;
  }

  .orbit-3 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
