﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #08090e;
  --card: #12141c;
  --violet: #7c5cff;
  --gold: #ffb454;
  --gold-hot: #ffc56e;
  --text: #f2f3f8;
  --muted: #8b91a8;
  --faint: #5a6078;
  --ok: #3ecf8e;
  --line: rgba(255, 255, 255, 0.08);
  --font: 'Inter', system-ui, sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  background-color: var(--bg);
}
body.site {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(124, 92, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(255, 180, 84, 0.06), transparent 50%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  padding-bottom: 72px;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* â€”â€” Marketing nav â€”â€” */
.topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 9, 14, 0.82);
  border-bottom: 1px solid transparent;
}
.topnav.is-scrolled { border-bottom-color: var(--line); }
.topnav-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}
.brand strong {
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 15px;
}
.topnav-links {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin-left: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.topnav-links a { text-decoration: none; color: inherit; }
.topnav-links a:hover { color: var(--text); }
.topnav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* â€”â€” Buttons â€”â€” */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  filter: none;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-hot), var(--gold));
  color: #1a1206;
  box-shadow: 0 8px 24px rgba(255, 180, 84, 0.22);
}
.btn-gold:hover { filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}
.btn-xl { min-height: 52px; padding: 0 28px; font-size: 15px; }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 12px; }
.btn-block { width: 100%; }

/* â€”â€” Hero â€”â€” */
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 28px;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 36px 48px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.hero-copy .gold { color: var(--gold); }
.lead {
  margin: 0;
  max-width: 42ch;
  color: rgba(242, 243, 248, 0.82);
  font-size: 17px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 28px;
}
.link-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color 0.15s ease;
}
.link-discover__arrow {
  display: block;
  flex: 0 0 auto;
  transition: transform 0.18s ease;
}
.link-discover:hover { color: var(--gold); }
.link-discover:hover .link-discover__arrow { transform: translateX(3px); }
.hero-price {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero-meta i {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.16);
}
.hero-visual { min-width: 0; }
.app-glow {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(124, 92, 255, 0.12);
  background: #0e1018;
}
.app-glow img {
  width: 100%;
  height: auto;
}

/* â€”â€” Section heads â€”â€” */
.inside {
  width: min(760px, calc(100% - 40px));
  margin: 56px auto 8px;
  text-align: center;
}
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-sub {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* â€”â€” Feature rows â€”â€” */
.feature {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}
.feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px 48px;
  align-items: center;
  position: relative;
}
.feature.is-flip .feature-copy { order: 2; }
.feature.is-flip .feature-media { order: 1; }
.feature-num {
  position: absolute;
  top: -28px;
  left: -8px;
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  user-select: none;
}
.feature.is-flip .feature-num { left: auto; right: -8px; }
.feature-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.feature-copy h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.feature-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}
.check-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(242, 243, 248, 0.88);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 180, 84, 0.16);
  border: 1px solid rgba(255, 180, 84, 0.45);
  box-shadow: inset 0 0 0 4px transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffb454' d='M4.8 9.2 1.6 6l1.1-1.1 2.1 2.1 4.5-4.5L10.4 3.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.feature-footnote {
  margin: -8px 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.feature-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  background: #0e1018;
}
.feature-media img { width: 100%; height: auto; }

/* â€”â€” Download â€”â€” */
.download {
  width: min(1080px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.download .section-sub { margin-bottom: 28px; }
.dl-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}
.dl-row--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.dl-card, .price-card {
  position: relative;
  background: rgba(18, 20, 28, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dl-card.is-hot, .price-card.is-hot {
  border-color: rgba(255, 180, 84, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 180, 84, 0.12);
}
.dl-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1206;
  background: var(--gold);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.dl-card h3, .price-card h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 20px;
}
.dl-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  flex: 1;
}
.dl-file {
  display: block;
  font-size: 11px;
  color: var(--faint);
  word-break: break-all;
}
.dl-note {
  margin: 22px auto 0;
  max-width: 720px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.55;
}

/* —— Premium —— */
.premium {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 64px;
  text-align: center;
}
.premium .section-sub { margin-bottom: 28px; }
.unlock-table {
  width: min(720px, 100%);
  margin: 0 auto 36px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(14, 16, 24, 0.92);
  overflow: hidden;
}
.unlock-tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px 88px;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--text);
}
.unlock-tr--head {
  border-top: none;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.unlock-tr--head span:nth-child(3) { color: var(--gold); }
.unlock-tr--group {
  grid-template-columns: 1fr;
  padding: 12px 18px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 180, 84, 0.04);
}
.unlock-tr span:nth-child(2),
.unlock-tr span:nth-child(3) {
  text-align: center;
  justify-self: center;
}
.unlock-yes { color: var(--gold); font-weight: 700; }
.unlock-no { color: var(--faint); }
.unlock-soon {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}
.price { margin: 4px 0 0; font-family: var(--display); font-size: 36px; letter-spacing: -0.03em; }
.price span { font-size: 16px; color: var(--muted); font-weight: 600; }
.price-note { margin: 0; color: var(--muted); font-size: 13px; flex: 1; }
.price-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* â€”â€” FAQ â€”â€” */
.faq {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
  text-align: center;
}
.faq .section-title { margin-bottom: 28px; }
.faq-list {
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(18, 20, 28, 0.88);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.55);
  border-bottom: 2px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-item summary:hover { background: rgba(255,255,255,0.03); }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 62ch;
}

.riot {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 28px;
  color: var(--faint);
  font-size: 11px;
  line-height: 1.5;
}

.ga-community {
  width: min(280px, calc(100% - 40px));
  margin: 0 auto 36px;
}
.community-block {
  min-width: 0;
}
.community-block__title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.community-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  margin: 0 0 14px;
  border-radius: 12px;
  background: #c4b5fd;
  color: #1a1228;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: filter 0.15s ease;
}
.community-discord:hover {
  filter: brightness(1.05);
  color: #1a1228;
}
.community-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.community-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0.85;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.community-socials a:hover {
  color: #fff;
  opacity: 1;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
}
.foot-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 12px;
}
.foot a { color: var(--muted); text-decoration: none; }

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 50;
  width: min(640px, calc(100% - 28px));
}
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 14px;
  border-radius: 999px;
  background: rgba(14, 16, 24, 0.94);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
}
.sticky-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  min-width: 0;
}
.sticky-copy img { flex: 0 0 auto; border-radius: 4px; }
.sticky-copy span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-copy strong { color: var(--text); }

/* â€”â€” Shared (legal / roadmap pages still use .wrap .nav) â€”â€” */
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 8px; gap: 16px;
}
.nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: block; flex-shrink: 0;
  background: #000 url('./icon.png') center/82% no-repeat;
}
.nav .brand strong { font-family: var(--display); letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }

.kicker {
  color: var(--gold); font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.lead { max-width: 640px; color: var(--muted); font-size: 18px; line-height: 1.5; }

.legal { padding: 28px 0 80px; max-width: 760px; }
.legal h1 { font-size: 36px; font-family: var(--display); }
.legal h2 { margin-top: 28px; font-size: 18px; }
.legal p, .legal li { color: var(--muted); line-height: 1.6; }
.legal a { color: #cfc6ff; }

.rm-wrap { width: min(1320px, calc(100% - 32px)); margin: 0 auto; }
.rm-hero { padding: 36px 0 18px; }
.rm-hero h1 { font-size: clamp(32px, 5vw, 48px); font-family: var(--display); }
.rm-meta {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 18px; color: var(--muted); font-size: 13px; font-weight: 600;
}
.rm-meta strong { color: var(--text); }
.rm-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 0 56px;
  align-items: start;
}
.rm-col {
  background: rgba(18, 21, 42, 0.72);
  border: 1px solid rgba(124, 92, 255, 0.18);
  border-radius: 16px;
  padding: 12px;
  min-height: 280px;
}
.rm-col-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px; padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
}
.rm-col-head h2 {
  margin: 0; font-family: var(--display); font-size: 15px; letter-spacing: -0.02em;
}
.rm-count {
  min-width: 22px; height: 22px; padding: 0 7px; border-radius: 99px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  background: rgba(255,255,255,0.06); color: var(--muted);
}
.rm-col.is-live .rm-count { background: rgba(62, 207, 142, 0.16); color: var(--ok); }
.rm-col.is-short .rm-count { background: rgba(124, 92, 255, 0.18); color: #cfc6ff; }
.rm-col.is-mid .rm-count { background: rgba(255, 180, 84, 0.16); color: var(--gold); }
.rm-card {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; padding: 9px 10px;
  border-radius: 12px;
  background: rgba(10, 12, 23, 0.65);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 13px; font-weight: 600; line-height: 1.25;
}
.rm-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.rm-col.is-live .rm-dot { background: var(--ok); }
.rm-col.is-short .rm-dot { background: var(--violet); }
.rm-col.is-mid .rm-dot { background: var(--gold); }
.rm-col.is-long .rm-dot { background: #6ea8ff; }
.rm-col.is-wish .rm-dot { background: var(--faint); }
.rm-note {
  padding: 0 0 48px;
  color: var(--muted); font-size: 14px; line-height: 1.55; max-width: 720px;
}
.rm-note a { color: #cfc6ff; }

@media (max-width: 1100px) {
  .rm-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .hero-inner,
  .feature-inner,
  .dl-row,
  .price-row { grid-template-columns: 1fr; }
  .unlock-tr {
    grid-template-columns: minmax(0, 1fr) 56px 72px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .feature.is-flip .feature-copy,
  .feature.is-flip .feature-media { order: unset; }
  .topnav-links { display: none; }
  .feature-num { display: none; }
  .sticky-copy span { font-size: 12px; }
}
@media (max-width: 800px) {
  .rm-board { grid-template-columns: 1fr; }
}
