:root {
  --black: #020611;
  --charcoal: #0b1527;
  --gray: #142036;
  --blue: #2b8dff;
  --soft-blue: #62e6ff;
  --white: #f5f8ff;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: radial-gradient(circle at top, rgba(43,141,255,0.18), transparent 45%), #050b1a;
  color: var(--white);
  min-height: 100vh;
  padding: 2rem clamp(1.5rem, 4vw, 4rem);
}
.dashboard-page {
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
}
.grid-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at top, rgba(0,0,0,0.7), transparent 70%);
}
main, header, footer {
  position: relative;
  z-index: 1;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(10,10,14,0.8);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}
.brand h1 {
  font-size: 1.25rem;
}
nav {
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
}
nav a:hover {
  color: var(--white);
}
.cta-group {
  display: flex;
  gap: 0.5rem;
}
button, .primary, .outline, .ghost {
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
}
.primary {
  background: linear-gradient(120deg, var(--blue), var(--soft-blue));
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.ghost {
  background: rgba(98,230,255,0.12);
  color: var(--white);
}
.hero {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.lede {
  color: rgba(255,255,255,0.78);
  margin: 1rem 0 2rem;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stats {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stats div {
  flex: 1;
  min-width: 150px;
  background: rgba(98,230,255,0.08);
  padding: 1rem;
  border-radius: 1rem;
}
.stats span {
  font-size: 1.5rem;
  font-weight: 600;
}
.tile {
  background: linear-gradient(160deg, rgba(43,141,255,0.3), rgba(5,11,26,0.7));
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.wave {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  height: 120px;
  align-items: flex-end;
}
.wave span {
  flex: 1;
  background: var(--soft-blue);
  border-radius: 1rem;
  height: 50px;
  animation: pulse 1.8s ease infinite;
  animation-delay: var(--d);
}
@keyframes pulse {
  0%, 100% {transform: scaleY(0.4); opacity: 0.4;}
  50% {transform: scaleY(1); opacity: 1;}
}
.tile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tile li {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
}
.eyebrow {
  color: var(--soft-blue);
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.panel {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(10,10,16,0.85);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.trio article {
  background: rgba(255,255,255,0.02);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.03);
}
.chat-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge {
  background: rgba(98,230,255,0.18);
  color: #a9f5ff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
}
.chat-stream {
  background: rgba(0,0,0,0.35);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.chat-stream .user {color: rgba(255,255,255,0.8);}
.chat-stream .bot {color: #8cfcd9;}
.full {
  width: 100%;
  text-align: center;
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
}
.token-card {
  background: rgba(255,255,255,0.03);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.token-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.85);
  gap: 1rem;
}
.token-row span {opacity: 0.65;}
.token-note {
  margin: 1.25rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.dashboard .dash-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.dash-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.dash-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dash-card:hover {
  border-color: rgba(43,141,255,0.9);
  transform: translateY(-4px);
}
.dash-grid header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.card-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--soft-blue);
}
.roadmap article {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}
.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.cta .lede {
  max-width: 720px;
}
.cta .primary {
  align-self: center;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
}
footer {
  margin: 4rem auto 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand img {
  width: 48px;
  border-radius: 12px;
  object-fit: cover;
}
footer .links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
footer a:hover {color: var(--white);}
.legal {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav {
    border-radius: 1.25rem;
  }
  .cta-group {
    width: 100%;
    justify-content: center;
  }
}
.tile-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
}
