:root {
  --bg: #09090b;
  --bg-2: #0f0f12;
  --fg: #fafaf9;
  --fg-2: #a8a8a3;
  --fg-3: #5c5c57;
  --accent: #f97316;
  --accent-2: #fdba74;
  --mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Geist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(9,9,11,0.9) 0%, rgba(9,9,11,0) 100%);
}

.wordmark {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  gap: 0;
}
.ship { color: var(--fg); }
.stack { color: var(--accent); }
.os { color: var(--fg-3); }

.tagline {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 120px 48px 80px;
  position: relative;
}

.hero-inner {
  max-width: 780px;
  width: 100%;
}

.overline {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-2);
}

.sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 560px;
  font-weight: 300;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Manifesto */
.manifesto {
  background: var(--bg-2);
  padding: 120px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.manifesto blockquote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 48px;
  font-style: italic;
}

.manifesto .body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  margin-bottom: 24px;
  font-weight: 300;
}

/* Tools */
.tools {
  padding: 120px 48px;
}

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

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.tool-grid {
  display: grid;
  gap: 0;
}

.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tool-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tool-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.tool-status.active { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.tool-status.waiting { background: var(--fg-3); }

.tool-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}

.tool-content p {
  font-size: 14px;
  color: var(--fg-3);
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 160px 48px;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.closing h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

/* Footer */
footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

footer p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .tagline { display: none; }
  .hero { padding: 100px 24px 60px; text-align: left; }
  .manifesto { padding: 80px 24px; }
  .tools { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  footer { padding: 24px; }
}