/* Andromeda — minimal, monochrome, hard-edged.
   No curves anywhere: every border-radius is 0 by design. */

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #8a8a8a;
  --line: #2a2a2a;
  --accent: #ffffff;
  --space: clamp(1.5rem, 4vw, 4rem);
  --mono: "SFMono-Regular", "JetBrains Mono", "Fira Code", Consolas,
    "Liberation Mono", Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0; /* enforce hard edges globally */
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

/* Faint technical grid in the background. */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}

.frame {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: var(--space);
  display: flex;
  align-items: center;
}

.hero {
  width: 100%;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgba(0, 0, 0, 0.6);
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.headline {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.cursor {
  display: inline-block;
  margin-left: 0.1em;
  font-weight: 400;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.lede {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Footer ──────────────────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem var(--space);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .cursor {
    animation: none;
  }
}
