:root {
  --bg: #07090f;
  --bg-2: #0d1117;
  --bg-card: #0f1520;
  --fg: #e8edf5;
  --fg-muted: #8899aa;
  --accent: #10B981;
  --accent-dim: rgba(16, 185, 129, 0.12);
  --green: #10B981;
  --red: #f0453a;
  --gold: #f5a623;
  --border: rgba(255,255,255,0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.nav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.25);
  animation: pulse 2s infinite;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: var(--green);
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-cta:hover {
  background: #0fd989;
  transform: translateY(-1px);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0.1); }
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  max-width: 900px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.eyebrow-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
}

.hero-headline-wrap {
  margin-bottom: 40px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.meta-val {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.meta-key {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── MARKET TABLE ── */
.market-section {
  padding: 0 48px 72px;
}

.market-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.market-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.market-sublabel {
  font-size: 12px;
  color: var(--fg-muted);
}

.market-table {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
}

.market-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px 140px;
  padding: 14px 24px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

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

.market-row-head {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  padding: 10px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  grid-template-columns: 1fr 100px 100px 140px;
}

.market-row:not(.market-row-head):hover {
  background: rgba(255,255,255,0.02);
}

.row-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.player-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.player-team {
  font-size: 12px;
  color: var(--fg-muted);
}

.row-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

.row-change {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
}

.green { color: var(--green); }
.red { color: var(--red); }

.row-target {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── HOW ── */
.how-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.how-inner {
  max-width: 900px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.how-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -1px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}

.how-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.how-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── FEATURES ── */
.features-section {
  padding: 80px 48px;
  max-width: 900px;
}

.features-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -1px;
  margin-top: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(16,185,129,0.25);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px 96px;
  max-width: 900px;
}

.closing-inner {
  max-width: 720px;
}

.closing-statement {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.closing-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.2;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}

.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  flex: 1;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-meta { gap: 20px; }
  .market-section { padding: 0 24px 48px; }
  .how-section { padding: 56px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .features-section { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing-section { padding: 56px 24px 72px; }
  .footer { padding: 24px; flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
  .market-row { grid-template-columns: 1fr 80px 80px; }
  .market-row .col-target { display: none; }
  .market-row-head { grid-template-columns: 1fr 80px 80px; }
  .market-row-head .col-target { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-sep { display: none; }
  .nav-links .nav-tag { display: none; }
}