@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --red: #cc0000;
  --red-bright: #ff1a1a;
  --red-dim: #7a0000;
  --bg: #080808;
  --bg2: #101010;
  --bg3: #181818;
  --bg4: #222222;
  --gray: #888;
  --gray-light: #aaa;
  --white: #f0f0f0;
  --border: rgba(204,0,0,0.25);
  --border-subtle: rgba(255,255,255,0.07);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-bright); }

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

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: all 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(204,0,0,0.12);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--red);
}

.nav-cta {
  font-family: var(--font-head) !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 3px !important;
}

.nav-cta:hover {
  background: var(--red-bright) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ── */
.page {
  display: none;
  min-height: 100vh;
  padding-top: 64px;
}
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(204,0,0,0.04) 120px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 119px,
      rgba(204,0,0,0.04) 120px
    ),
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(120,0,0,0.18) 0%, transparent 70%),
    var(--bg);
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}

.hero-title .red { color: var(--red); display: block; }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s forwards;
}

.hero-actions {
  padding-bottom: 40px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.8s forwards;
}

.hero-stat-bar {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp 0.6s 1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-bright);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204,0,0,0.08);
}

/* ── SECTIONS ── */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-sub {
  color: var(--gray-light);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1rem 0 2rem;
}

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--bg2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--red-dim);
  background: linear-gradient(135deg, var(--bg3) 0%, #1a0000 100%);
}

.team-card-platform-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-transform: uppercase;
}

.team-card-body {
  padding: 1.25rem;
}

.team-card-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card-bio {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-card-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.team-card-link {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 2px;
  transition: all 0.2s;
}
.team-card-link:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(204,0,0,0.08);
}

/* ── ASSETS ── */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.asset-card {
  background: var(--bg2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.asset-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.asset-preview {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.asset-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-icon {
  font-size: 2.5rem;
  color: var(--red-dim);
}

.asset-ext-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--border-subtle);
  padding: 2px 7px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  border-radius: 2px;
}

.asset-info {
  padding: 1rem;
}

.asset-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.asset-size {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.asset-dl-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(204,0,0,0.12);
  color: var(--red);
  border: 1px solid var(--red-dim);
  padding: 0.55rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.asset-dl-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── COMMUNITY ── */
.discord-hero {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.discord-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(204,0,0,0.08) 0%, transparent 70%);
}

.discord-hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  position: relative;
}

.discord-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.discord-hero-sub {
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.rule-card {
  background: var(--bg2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.rule-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--red-dim);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.rule-text h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.rule-text p {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── EVENTS ── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}

.event-row {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.2s;
  border-bottom: 1px solid var(--border-subtle);
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { background: var(--bg3); }

.event-date {
  text-align: center;
  font-family: var(--font-head);
}
.event-date-day {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.event-date-month {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

.event-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.event-meta {
  font-size: 0.85rem;
  color: var(--gray);
}

.event-badge {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.event-badge.live { background: rgba(204,0,0,0.15); color: var(--red); border: 1px solid var(--red-dim); }
.event-badge.upcoming { background: var(--bg3); color: var(--gray); border: 1px solid var(--border-subtle); }
.event-badge.highlight { background: rgba(255,165,0,0.1); color: #fa8; border: 1px solid rgba(255,165,0,0.3); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-brand-name span { color: var(--red); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

/* ── UTIL / ANIM ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.red-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
  margin: 3rem 0;
}

/* ── PAGE HEADER BANNER ── */
.page-banner {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: attr(data-title);
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(204,0,0,0.04);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-banner-inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(8,8,8,0.98); padding: 1rem; gap: 0.25rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-stat-bar { position: static; margin-top: 3rem; gap: 2rem; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .event-row { grid-template-columns: 60px 1fr; }
  .event-badge { display: none; }
}


:root {
  --radius-sm: 8px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 36px rgba(0,0,0,0.32);
  --shadow-card: 0 10px 28px rgba(0,0,0,0.22);
  --content-narrow: 1180px;
}

body {
  letter-spacing: 0.01em;
}

#nav {
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.nav-inner,
.hero-content,
.section,
.page-banner-inner,
.footer-inner {
  max-width: var(--content-narrow);
}

.nav-inner {
  height: 72px;
}

.nav-links {
  gap: 0.4rem;
}

.nav-links a {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
}

.nav-links a.active::after {
  display: none;
}

.nav-cta,
.btn,
.btn-outline,
.btn-primary {
  border-radius: 999px !important;
}

.page {
  padding-top: 72px;
}

.hero {
  min-height: calc(100vh - 72px);
}

.hero-content {
  padding: 5rem 2rem 8rem;
}

.hero-sub {
  max-width: 600px;
}

.hero-stat-bar {
  gap: 2rem;
  padding: 1.15rem 1.35rem;
  background: rgba(10,10,10,0.72);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section {
  padding: 5.5rem 2rem;
}

.section-title {
  margin-bottom: 1.1rem;
}

.page-intro {
  color: var(--gray-light);
  max-width: 640px;
  line-height: 1.75;
}

.divider {
  margin: 1rem 0 1.75rem;
}

.feature-tile,
.rule-card,
.team-card,
.asset-card,
.discord-hero,
.events-list,
.milestone-card,
.spotlight-table {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

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

.feature-tile {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border-subtle);
  padding: 1.35rem;
}

.feature-tile.accent {
  background: linear-gradient(180deg, rgba(204,0,0,0.14), rgba(204,0,0,0.05));
  border-color: var(--border);
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(204,0,0,0.08);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.feature-copy {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.cta-band {
  background: var(--red);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.08) 20px, rgba(0,0,0,0.08) 40px);
}

.cta-band-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.panel-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border-subtle);
}

.panel-cta {
  background: var(--bg2);
  border-top: 1px solid var(--border-subtle);
  padding: 3.25rem 2rem;
  text-align: center;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.toolbar-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.toolbar .btn {
  padding: 0.55rem 1.05rem;
  font-size: 0.72rem;
}

.asset-preview {
  background:
    linear-gradient(135deg, rgba(204,0,0,0.16), rgba(255,255,255,0.02)),
    var(--bg3);
}

.asset-preview-token {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.channels-grid,
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.channel-card,
.milestone-card {
  background: var(--bg2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

.channel-badge,
.milestone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg3);
  color: var(--gray-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.channel-title,
.milestone-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.channel-copy,
.milestone-label {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

.milestone-value {
  font-size: 1.6rem;
  color: var(--red);
}

.spotlight-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.spotlight-row {
  background: var(--bg2);
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 2rem 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.spotlight-row:last-child {
  border-bottom: none;
}

.spotlight-row.header {
  background: var(--bg3);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

.spotlight-rank {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
}

.spotlight-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.spotlight-copy {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.spotlight-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .spotlight-row {
    grid-template-columns: 2rem 1fr;
  }

  .spotlight-row.header span:nth-child(3),
  .spotlight-row.header span:nth-child(4),
  .spotlight-row .spotlight-copy,
  .spotlight-row .spotlight-date {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    top: 72px;
    padding: 1rem 1rem 1.25rem;
    gap: 0.5rem;
  }

  .hero-content {
    padding: 4rem 1.25rem 3rem;
  }

  .hero-stat-bar {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .section,
  .page-banner,
  footer,
  .cta-band,
  .panel-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .toolbar {
    align-items: stretch;
  }

  .toolbar-actions {
    width: 100%;
  }

  .toolbar-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
