/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg-panel: rgba(15, 15, 22, 0.9);
  --bg-panel-hover: rgba(20, 20, 30, 0.95);
  --border: rgba(212, 160, 23, 0.15);
  --border-bright: rgba(212, 160, 23, 0.35);
  --glow: rgba(212, 160, 23, 0.25);
  --gold: #d4a017;
  --gold-bright: #f0c040;
  --gold-dim: #8a6a10;
  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.15);
  --text: #e8e8f0;
  --text-dim: #8888a0;
  --text-muted: #555570;
  --mono: 'Space Mono', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === SHADER CANVAS === */
#shader-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === NAV === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-moon { font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}
.nav-toggle:hover,
.nav-toggle.open {
  border-color: var(--border-bright);
  background: rgba(212, 160, 23, 0.13);
  color: var(--gold-bright);
}
.nav-toggle.open { transform: rotate(90deg); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.nav-spendhub,
.nav-links a.nav-agentcomms {
  color: var(--gold-bright);
  border: 1px solid rgba(212, 160, 23, 0.42);
  background: rgba(212, 160, 23, 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  box-shadow: 0 0 16px rgba(212, 160, 23, 0.12);
}
.nav-links a.nav-agentcomms {
  color: #94f7ff;
  border-color: rgba(106, 176, 255, 0.42);
  background: rgba(74, 142, 255, 0.1);
  box-shadow: 0 0 16px rgba(74, 142, 255, 0.12);
}
.nav-links a.nav-spendhub:hover,
.nav-links a.nav-agentcomms:hover {
  color: #0a0a0f;
  background: var(--gold-bright);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.28);
}
.nav-links a.nav-agentcomms:hover {
  background: #94f7ff;
  box-shadow: 0 0 24px rgba(74, 142, 255, 0.28);
}

/* === HERO === */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(5, 5, 12, 0.9) 0%, rgba(5, 5, 12, 0.5) 60%, transparent 80%);
  padding: 3rem 4rem;
  border-radius: 16px;
}

.hero-title {
  font-family: var(--mono);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 10px;
  color: var(--gold-bright);
  text-shadow: 0 0 40px var(--glow), 0 0 80px rgba(212, 160, 23, 0.2), 0 2px 10px rgba(0,0,0,0.9);
  margin-bottom: 0.5rem;
  animation: title-glow 4s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% { text-shadow: 0 0 30px var(--glow), 0 0 60px rgba(212, 160, 23, 0.15); }
  100% { text-shadow: 0 0 50px var(--glow), 0 0 100px rgba(212, 160, 23, 0.3); }
}

.hero-subtitle {
  font-family: var(--mono);
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: rgba(212, 160, 23, 0.25);
  box-shadow: 0 0 24px var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}

.btn.disabled,
.btn:disabled,
.btn.disabled:hover {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  color: var(--text-muted) !important;
  border-color: var(--text-muted) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === SECTIONS === */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
}

.section::before {
  content: '';
  position: absolute;
  inset: 1.5rem auto auto 50%;
  width: min(720px, 82vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.28), transparent);
  pointer-events: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

/* === STORY === */
.story-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
}

.story-block {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  padding: 1.25rem 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(15, 15, 22, 0.72), rgba(10, 10, 15, 0.35));
  border: 1px solid rgba(212, 160, 23, 0.09);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.story-block::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--glow);
}

.story-date {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.story-content h3 {
  font-family: var(--mono);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.story-content p {
  color: #bbbbd0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.story-content strong { color: var(--gold-bright); }

.story-manifesto {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(15, 15, 22, 0.94));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.story-manifesto blockquote {
  color: #cccce0;
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

.story-sign {
  font-family: var(--mono);
  color: var(--gold);
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* === DASHBOARDS === */
.dashboard-card {
  background: linear-gradient(145deg, rgba(15, 15, 22, 0.94), rgba(9, 9, 14, 0.78));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.03);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dashboard-header h3 {
  font-family: var(--mono);
  font-size: 1.1rem;
  color: #fff;
}

.dashboard-updated {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dashboard-total {
  text-align: center;
  margin-bottom: 2rem;
}

.dashboard-big-num {
  display: block;
  font-family: var(--mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-shadow: 0 0 30px var(--glow);
}

.dashboard-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Revenue bars */
.revenue-bars { margin-bottom: 2rem; }

.rev-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.035);
  border-radius: 10px;
  background: rgba(255,255,255,0.018);
}

.rev-name {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  min-width: 160px;
}

.rev-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.rev-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width 1.5s ease;
}

.rev-fill[data-color="green"] {
  background: linear-gradient(90deg, #1a6b3a, var(--green));
}

.rev-amount {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--gold-bright);
  min-width: 60px;
  text-align: right;
}

/* Milestones */
.milestone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.milestone-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.milestone-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.milestone-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  transition: width 1.5s ease;
}

.milestone-nums {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Downloads */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.dl-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.3s;
}

.dl-card:hover { border-color: var(--border-bright); }

.dl-name {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
  word-break: break-all;
}

.dl-version {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.dl-weekly {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.dl-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === FEED === */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feed-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feed-item:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}

.feed-date {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.feed-title {
  font-family: var(--mono);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feed-body {
  color: #aaaabc;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.feed-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feed-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--gold-dim);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === PROJECTS === */
.project-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.filter-btn:hover { color: var(--gold); border-color: var(--gold-dim); }

.filter-btn.active {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.project-card {
  background: linear-gradient(145deg, rgba(15, 15, 22, 0.92), rgba(8, 8, 13, 0.82));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 160, 23, 0.09), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.08);
  border-color: var(--border-bright);
}

.project-card:hover::after { opacity: 1; }

.project-card.hidden { display: none; }

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.project-status.live {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.project-status.active-badge {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
}

.project-status.archived-badge {
  color: var(--text-muted);
  background: rgba(85, 85, 112, 0.15);
  border: 1px solid rgba(85, 85, 112, 0.3);
}

.project-card h3 {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.5rem;
  padding-right: 4rem;
}

.project-card p {
  color: #9999b0;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.project-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.pm-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.project-link:hover { color: var(--gold-bright); }

/* === NAV PRICE BADGE === */
.nav-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  background: rgba(201, 162, 39, 0.07);
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.nav-price:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.2);
  background: rgba(201, 162, 39, 0.12);
}
.nav-price-symbol { color: var(--gold); font-weight: 700; }
.nav-price-value { color: var(--text); }
.nav-price-change { font-size: 0.7rem; }
.nav-price-change.up { color: #4ade80; }
.nav-price-change.down { color: #f87171; }

/* === TOKEN / HODL === */
.token-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.token-stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.token-stat-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}
.token-stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.token-stat-value {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.token-stat-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.coming-soon {
  display: inline-block;
  background: rgba(100, 100, 120, 0.2);
  border: 1px solid rgba(100, 100, 120, 0.3);
  border-radius: 20px;
  padding: 0.15rem 0.6rem;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.token-buy {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-large { padding: 0.8rem 2rem; font-size: 0.9rem; }
.token-how { margin-bottom: 3rem; }
.token-how-title {
  font-family: var(--mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 1.5rem;
}
.token-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.token-step { display: flex; gap: 1rem; align-items: flex-start; }
.token-step-num {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.25);
  line-height: 1;
  flex-shrink: 0;
}
.token-step-body h4 {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.token-step-body p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.token-submit {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.token-submit-title {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.token-submit-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.submit-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #0a0a0f; }
.form-submit { margin-top: 0.5rem; }
.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
  font-family: var(--mono);
}
@media (max-width: 768px) {
  .token-stats { grid-template-columns: 1fr 1fr; }
  .token-submit { padding: 1.5rem 1.2rem; }
  .token-steps { grid-template-columns: 1fr; }
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.service-tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--glow);
}

.service-icon { font-size: 2rem; }

.service-name {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: #fff;
  letter-spacing: 1px;
}

.service-status {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--green);
  letter-spacing: 2px;
  font-weight: 700;
}

/* === HIRE === */
.hire-hero {
  background: var(--bg-panel);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hire-hero-text h3 {
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.hire-hero-text p {
  color: #bbbbd0;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.hire-note {
  color: var(--text-dim) !important;
  font-size: 0.85rem !important;
  font-style: italic;
}

.hire-cta {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--border);
}

.hire-email-btn {
  font-size: 0.95rem !important;
  padding: 0.85rem 2.2rem !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 0 30px var(--glow);
}

.hire-email-btn:hover {
  box-shadow: 0 0 50px rgba(212, 160, 23, 0.4) !important;
}

.hire-cta-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
  letter-spacing: 1px;
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hire-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.hire-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
}

.hire-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.hire-card h4 {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.hire-card p {
  color: #9999b0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.hire-process {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.hire-process h3 {
  font-family: var(--mono);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hire-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hire-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.hire-step-num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-bright);
  min-width: 2.5rem;
  text-shadow: 0 0 20px var(--glow);
}

.hire-step-text strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hire-step-text p {
  color: #9999b0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.hire-track-record {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.hire-stat {
  text-align: center;
}

.hire-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-shadow: 0 0 20px var(--glow);
}

.hire-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hire-hero { padding: 1.5rem; }
  .hire-grid { grid-template-columns: 1fr; }
  .hire-process { padding: 1.5rem; }
  .hire-track-record { gap: 1.5rem; }
  .hire-stat-num { font-size: 1.4rem; }
}

/* === LINKS === */
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.88rem;
  transition: all 0.3s;
}

.link-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow);
  transform: translateY(-2px);
}

.link-icon { font-size: 1.2rem; }

/* === FOOTER === */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
}

footer p {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-sub {
  font-size: 0.72rem !important;
  margin-top: 0.5rem;
  color: var(--text-muted) !important;
}

/* === FADE IN === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE === */
@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }

  .nav-inner {
    padding: 0.65rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .nav-logo { font-size: 1rem; letter-spacing: 2px; }
  .nav-toggle { display: flex; order: 3; justify-self: end; }
  .nav-price {
    order: 2;
    justify-self: end;
    max-width: 44vw;
    overflow: hidden;
    padding: 0.34rem 0.65rem;
    gap: 0.4rem;
    font-size: 0.68rem;
  }
  .nav-price-change { display: none; }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(10, 10, 15, 0.98), rgba(7, 7, 12, 0.98)),
      radial-gradient(circle at top right, rgba(212, 160, 23, 0.12), transparent 45%);
    padding: 1rem;
    border-bottom: 1px solid var(--border-bright);
    gap: 0.7rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li { min-width: 0; }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-size: 0.72rem;
  }
  .nav-links a:hover {
    color: var(--gold-bright);
    border-color: var(--border-bright);
    background: rgba(212, 160, 23, 0.08);
  }

  .section { padding: 4rem 1.2rem; }
  .section-title { font-size: 1.2rem; }

  .hero-content { padding: 2rem 1.5rem; }
  .hero-title { letter-spacing: 5px; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.4rem; }

  .story-timeline { padding-left: 1.5rem; }
  .story-block { padding-left: 1rem; }
  .story-manifesto { padding: 1.5rem; }

  .dashboard-card { padding: 1.2rem; }
  .dashboard-big-num { font-size: 2.2rem; }
  .milestone-row { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .project-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }

  .links-grid { flex-direction: column; align-items: stretch; }
  .link-card { justify-content: center; }

  .rev-name { min-width: 90px; font-size: 0.7rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.5rem; letter-spacing: 3px; }
  .hero-subtitle { font-size: 0.75rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .section { padding: 3rem 1rem; }
  .downloads-grid { grid-template-columns: 1fr 1fr; }
}

/* === TOKEN PAGE === */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.token-teaser {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(15, 15, 22, 0.92));
  border: 1px solid var(--border-bright);
  border-radius: 18px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26), 0 0 60px rgba(212, 160, 23, 0.06);
}

.token-teaser h2,
.token-hero h1 {
  font-family: var(--mono);
  color: var(--gold-bright);
  letter-spacing: 2px;
}

.token-teaser p { color: var(--text-dim); max-width: 680px; }
.token-teaser-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: flex-end; }

.token-page { position: relative; z-index: 1; padding-top: 4.5rem; }
.token-hero { min-height: 72vh; display: flex; align-items: center; }
.token-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}
.token-hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 0 50px var(--glow);
}
.token-hero-lede {
  color: #c8c8d8;
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 1.6rem;
}
.token-hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.token-disclaimer {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.6;
  max-width: 680px;
}
.token-terminal-card {
  background: rgba(5, 5, 10, 0.86);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.12);
}
.terminal-dots { display: flex; gap: 0.45rem; margin-bottom: 1rem; }
.terminal-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-dim); }
.token-terminal-card pre {
  white-space: pre-wrap;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.9;
}
.token-terminal-card span { color: var(--gold-bright); }
.token-stats-wide { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.token-stat-card.hot {
  border-color: rgba(212, 160, 23, 0.55);
  box-shadow: inset 0 0 25px rgba(212, 160, 23, 0.07), 0 0 28px rgba(212, 160, 23, 0.12);
}
.positive, .nav-price-change.positive { color: var(--green); }
.negative, .nav-price-change.negative { color: #f87171; }
.utility-grid, .roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.utility-card, .roadmap-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.utility-card:hover, .roadmap-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}
.utility-num, .roadmap-status {
  font-family: var(--mono);
  color: rgba(212, 160, 23, 0.45);
  font-weight: 700;
  letter-spacing: 2px;
}
.utility-card h3, .roadmap-card h3 {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 0.98rem;
  margin: 0.7rem 0 0.55rem;
}
.utility-card p, .roadmap-card p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; }
.token-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
}
.tier-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tier-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.tier-row span {
  font-family: var(--mono);
  color: var(--gold-bright);
  font-size: 0.78rem;
}
.tier-row p { color: var(--text-dim); font-size: 0.84rem; }
.roadmap-card.live { border-color: rgba(74, 222, 128, 0.35); }
.roadmap-card.live .roadmap-status { color: var(--green); }

@media (max-width: 900px) {
  .token-teaser,
  .token-hero-grid,
  .token-split { grid-template-columns: 1fr; }
  .token-teaser-actions { justify-content: flex-start; }
  .token-hero { min-height: auto; }
}

@media (max-width: 520px) {
  .token-stats { grid-template-columns: 1fr; }
  .tier-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .token-terminal-card pre { font-size: 0.72rem; }
}
