/* Rally — Dark, high-contrast, electric */

:root {
  --bg: #080C14;
  --surface: #0D1526;
  --surface-2: #111D33;
  --fg: #E8EDF5;
  --fg-muted: #7B8BA5;
  --accent: #C8FF00;
  --accent-dim: rgba(200, 255, 0, 0.12);
  --border: rgba(232, 237, 245, 0.08);
  --signal-green: #00E87D;
}

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

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

/* Header */
.site-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Signal block */
.signal-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.signal-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.3;
  flex-shrink: 0;
}
.signal-dot.active {
  background: var(--signal-green);
  opacity: 1;
  box-shadow: 0 0 8px rgba(0, 232, 125, 0.5);
}
.signal-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.signal-count {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
}

/* Section base */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* Work */
.work {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.work-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.work-item {
  background: var(--surface);
  padding: 2rem 1.75rem;
}
.work-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.work-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.work-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Cycle */
.cycle {
  padding: 5rem 2rem;
}
.cycle-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cycle-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cycle-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.cycle-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Objections */
.objections {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.objections-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.obj-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.obj-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
  line-height: 1.4;
}
.obj-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner,
  .cycle-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .obj-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  .work, .cycle, .objections {
    padding: 3.5rem 1.5rem;
  }
  .closing {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 2rem;
  }
}