/* Orbit — Electric Lime on Charcoal */
:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --border: #242424;
  --fg: #f0f0f0;
  --muted: #888;
  --accent: #d4ff00;
  --accent-dim: #a8cc00;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* HERO */
.hero {
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}

/* WIDGET */
.hero-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,255,0,0.04);
}

.widget-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.widget-title {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  margin-left: 8px;
}

.widget-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compose-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.compose-line .label {
  font-size: 11px;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  width: 52px;
}

.compose-line .value {
  font-size: 13px;
  color: var(--fg);
}

.cursor-blink {
  border-right: 2px solid var(--accent);
  animation: blink 1.1s step-end infinite;
  padding-right: 2px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.compose-body {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.compose-text {
  font-size: 13px;
  color: var(--fg);
}

.faded { color: var(--muted); }

.cursor-blink-line {
  color: var(--accent);
  font-size: 16px;
  animation: blink 1.1s step-end infinite;
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(212,255,0,0.04);
  border: 1px solid rgba(212,255,0,0.1);
  border-radius: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.widget-status span {
  font-size: 11px;
  color: var(--muted);
}

.widget-tags {
  display: flex;
  gap: 8px;
}

.w-tag {
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.w-tag.accent {
  background: rgba(212,255,0,0.1);
  border-color: rgba(212,255,0,0.2);
  color: var(--accent);
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}

.manifesto blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.manifesto blockquote em {
  color: var(--muted);
  font-style: normal;
}

.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 100px 48px;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-header h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.process-header p {
  color: var(--muted);
  font-size: 16px;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.step {
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* PROOF */
.proof {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.proof-stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .proof-inner {
    flex-direction: column;
    gap: 40px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .manifesto, .process, .proof, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}