:root { --bg: #0a0a0a; --ink: #fafafc; --muted: #9ca3af; --accent: #3b82f6; --accent-warm: #f59e0b; }

* { box-sizing: border-box; }
html, body { height: 100%; }
html { background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden; /* no scroll */
}

/* Canvas and orb layers */
#particles { position: fixed; inset: 0; width: 100vw; height: 100vh; display: block; z-index: 0; background: var(--bg); }

/* removed orbs and gradients for strict monochrome */

/* Subtle scanlines */
/* removed scanlines overlay */

/* Content */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(20px, 8vmin, 60px) clamp(20px, 6vmin, 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.brand { margin-bottom: clamp(12px, 3vmin, 24px); }

.wordmark {
  font-family: "Syne", "Space Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 0.9;
  color: var(--ink);
}

.pre {
  margin: clamp(16px, 4vmin, 32px) 0 clamp(8px, 2vmin, 16px) 0;
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: clamp(20px, 4.5vw, 32px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(250, 250, 252, 0.8);
  text-transform: uppercase;
}

.tagline { 
  margin: clamp(12px, 3vmin, 24px) auto 0; 
  color: var(--muted); 
  max-width: 42ch; 
  font-size: clamp(16px, 3.5vw, 20px); 
  line-height: 1.4; 
  font-weight: 500; 
  letter-spacing: 0.005em;
}

/* removed meta and contact for pure typographic focus */

@media (max-width: 768px) {
  .hero { padding: clamp(16px, 6vmin, 32px) clamp(16px, 4vmin, 24px); }
  .wordmark { font-size: clamp(28px, 9vw, 48px); }
  .pre { font-size: clamp(18px, 5vw, 24px); }
  .tagline { font-size: clamp(14px, 4vw, 16px); max-width: 38ch; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}


