body {
  background: #05070c;
  color: #eaeaea;
}

:root {
  --bg-main: #0b1220;
  --bg-card: rgba(255,255,255,0.04);
  --border-soft: rgba(255,255,255,0.08);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #3b82f6;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 600px at 50% -20%, #0f1b33, #070b14);
  color: var(--text-main);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
}

:root {
  --bg-main: #05070c;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text-main: #eaeaf0;
  --text-muted: #9aa0b3;
  --accent: #3b82f6;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(59,130,246,0.15), transparent 60%),
    radial-gradient(1000px 500px at 90% 10%, rgba(139,92,246,0.12), transparent 55%),
    var(--bg-main);
  color: var(--text-main);
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0,0,0,0.6);
}

nav a {
  color: #9ca3af;
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 0 24px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.hero p {
  color: #9ca3af;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.stat {
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 10px;
}

/* TABLE */
.section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

th {
  font-size: 12px;
  color: #9ca3af;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 10px;
}

/* LEARN */
.learn a {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: #93c5fd;
  text-decoration: none;
  font-size: 14px;
}

/* FOOTER */
footer {
  background: rgba(0,0,0,0.8);
  margin-top: 80px;
  padding: 40px 24px;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

footer a {
  display: block;
  color: #9ca3af;
  font-size: 14px;
  margin-top: 6px;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #6b7280;
}
.card,
.stats-card,
.market-card,
.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
h1 {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

p, td, th {
  color: var(--text-muted);
}

strong, .price {
  color: var(--text-main);
}
table {
  border-collapse: collapse;
}

thead th {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #aab0c5;
}

tbody tr {
  transition: background 0.25s ease;
}

tbody tr:hover {
  background: rgba(255,255,255,0.035);
}
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

.button,
.view-more {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}
.card,
.stats-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.6);
}
footer {
  background: linear-gradient(to top, #03050a, transparent);
  border-top: 1px solid var(--border-soft);
}

footer a {
  color: #9aa0b3;
}

footer a:hover {
  color: white;
}
.profile-page {
  max-width: 1100px;
  margin: 80px auto;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
.profile-page h1,
.profile-page h2 {
  color: #f3f4f6;
  margin-bottom: 12px;
}

.profile-page p,
.profile-page li {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}
.founder-photo {
  width: 260px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  filter: grayscale(8%) contrast(1.05);
}
footer {
  background: linear-gradient(to top, #05070d, transparent);
  padding: 40px 0;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}
/* === Premium background depth === */
body {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(60,120,255,0.08), transparent 40%),
    radial-gradient(1000px 500px at 90% 10%, rgba(120,60,255,0.06), transparent 45%),
    #05070c;
}
h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle,
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
}
.stat-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
table {
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  overflow: hidden;
}

th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.02);
}

tr {
  transition: background 0.2s ease;
}

tr:hover {
  background: rgba(255,255,255,0.04);
}
header, nav {
  backdrop-filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(10,12,20,0.9),
    rgba(10,12,20,0.75)
  );
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-footer {
  margin-top: 80px;
  padding: 50px 20px 30px;
  background: #05070c;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: #9aa4b2;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: #4da3ff;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}



















