:root {
  --bg: #050F1E;
  --bg-alt: #0B1D3A;
  --fg: #E8EEF4;
  --fg-muted: #8BA3BC;
  --accent: #F59E0B;
  --accent-dim: #C97D08;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(11,29,58,0.6);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,15,30,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-badge {
  background: rgba(245,158,11,0.15);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-content { max-width: 520px; }
.hero-label {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat { padding: 0 28px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px 0 0;
}

/* DATA PANEL */
.hero-data-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.data-panel-header {
  background: rgba(11,29,58,0.9);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.data-rows { padding: 8px 0; }
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.data-row:last-child { border-bottom: none; }
.data-row:hover { background: rgba(255,255,255,0.03); }
.data-row.fade { opacity: 0.55; }
.row-left { flex: 1; min-width: 0; }
.row-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-meta {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.contractor-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  margin-left: 16px;
}
.data-panel-footer {
  padding: 10px 20px;
  font-size: 11px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  background: rgba(11,29,58,0.5);
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* HOW */
.how {
  background: var(--bg-alt);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.8px;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(245,158,11,0.1);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.step-body p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* FEED */
.feed-section {
  padding: 100px 24px;
  background: var(--bg);
}
.feed-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feed-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}
.feed-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.feed-tag {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 14px;
}
.feed-stats {
  display: flex;
  gap: 36px;
}
.feed-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.feed-stat-key {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
}

/* TABLE */
.feed-table {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr;
  padding: 10px 20px;
  background: rgba(11,29,58,0.8);
  border-bottom: 1px solid var(--border);
}
.th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(255,255,255,0.02); }
.td {
  font-size: 13px;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.td:nth-child(2) { color: var(--fg-muted); }
.td:nth-child(3) {
  font-weight: 700;
  color: var(--accent);
}
.setaside {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}
.setaside.sb { background: rgba(59,130,246,0.15); color: #60A5FA; }
.setaside.hub { background: rgba(16,185,129,0.15); color: #34D399; }
.setaside.full { background: rgba(139,163,188,0.1); color: var(--fg-muted); }
.setaside.sdvosb { background: rgba(168,85,247,0.15); color: #C084FC; }
.setaside.eighta { background: rgba(245,158,11,0.15); color: var(--accent); }

/* DIFFERENTIATORS */
.diff {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.diff-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.diff-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.8px;
}
.diff-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.diff-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.diff-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-3px);
}
.diff-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.diff-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* OUTRO */
.outro {
  padding: 120px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.outro-inner {
  max-width: 700px;
  margin: 0 auto;
}
.outro-badge {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.outro-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}
.outro-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-note {
  color: var(--fg-muted);
  font-size: 15px;
}

/* FOOTER */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 360px;
  line-height: 1.6;
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .hero-data-panel { margin-top: 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .feed-inner { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .table-head, .table-row { grid-template-columns: 2fr 1fr 1fr; }
  .th:nth-child(4), .td:nth-child(4) { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
  .feed-stats { flex-direction: column; gap: 20px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .table-head, .table-row { grid-template-columns: 2fr 1fr; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.3); border-radius: 3px; }
