/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --surface: #0F0F0F;
  --surface2: #181818;
  --fg: #E8E8E8;
  --fg-muted: #6B6B6B;
  --accent: #CAFF16;
  --accent-dim: rgba(202, 255, 22, 0.12);
  --red: #FF3B3B;
  --border: rgba(255,255,255,0.08);
  --radius: 4px;
}

html { scroll-behavior: smooth; }

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

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav__logo-mark { color: var(--accent); }

.nav__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(202,255,22,0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(202,255,22,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(202,255,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(202,255,22,0); }
}

/* === HERO === */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.hero__pre {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #000;
  padding: 4px 10px;
  border-radius: 2px;
}

.hero__time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 760px;
}

.hero__title-em {
  font-style: normal;
  color: var(--accent);
}

.hero__body {
  font-size: 18px;
  color: rgba(232,232,232,0.65);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero__ticker {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero__ticker::-webkit-scrollbar { display: none; }

.hero__ticker-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 32px;
  border: 1px solid var(--border);
  border-right: none;
  min-width: 220px;
}

.hero__ticker-item:last-child { border-right: 1px solid var(--border); }

.hero__ticker-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero__ticker-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* === STATS === */
.stats {
  padding: 64px 48px;
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stats__item {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}

.stats__value {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stats__plus { color: var(--accent); font-size: 28px; }
.stats__star { color: var(--accent); font-size: 28px; }

.stats__label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* === HOW IT WORKS === */
.hiw {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.hiw__header { margin-bottom: 64px; }

.hiw__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.hiw__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 640px;
}

.hiw__highlight { color: var(--accent); }

.hiw__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.hiw__step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border);
}

.hiw__step:last-child { border-right: none; }

.hiw__step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hiw__step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hiw__step-body {
  font-size: 14px;
  color: rgba(232,232,232,0.6);
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.features__card {
  background: var(--bg);
  padding: 40px 36px;
}

.features__card--accent {
  background: var(--accent-dim);
}

.features__card--wide {
  grid-column: span 2;
}

.features__icon {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1;
}

.features__card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.features__card-body {
  font-size: 14px;
  color: rgba(232,232,232,0.6);
  line-height: 1.65;
}

/* === LIVE FEED === */
.livefeed {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.livefeed__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.livefeed__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,59,59,0.5);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}

.livefeed__live-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.livefeed__title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.livefeed__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.livefeed__item {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--surface);
}

.livefeed__item:last-child { border-bottom: 1px solid var(--border); }

.livefeed__store {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.livefeed__product {
  font-size: 15px;
  color: var(--fg);
}

.livefeed__price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
}

.livefeed__was {
  color: var(--fg-muted);
  text-decoration: line-through;
  font-size: 13px;
}

.livefeed__badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
  white-space: nowrap;
}

.livefeed__badge--freebie {
  border-color: #00D4AA;
  color: #00D4AA;
}

/* === MANIFESTO === */
.manifesto {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.manifesto__inner {
  max-width: 720px;
}

.manifesto__text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.manifesto__text--secondary {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: rgba(232,232,232,0.6);
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 48px;
}

.footer__logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.footer__sub {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer__tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
  letter-spacing: 0.06em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero__title { font-size: 36px; }
  .hero__body { font-size: 16px; }
  .hero__ticker-item { min-width: 180px; padding: 16px 20px; }
  .hero__ticker-val { font-size: 22px; }
  .stats { padding: 40px 24px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hiw { padding: 64px 24px; }
  .hiw__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hiw__step { border-right: none; padding: 0; }
  .features { padding: 48px 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .features__card--wide { grid-column: span 1; }
  .livefeed { padding: 48px 24px; }
  .livefeed__item { grid-template-columns: 80px 1fr auto; gap: 12px; }
  .livefeed__badge { display: none; }
  .manifesto { padding: 64px 24px; }
  .footer { flex-direction: column; gap: 24px; padding: 40px 24px; }
  .footer__tagline { text-align: left; }
}