:root {
  --bg: #050505;
  --bg-alt: #0a0a0a;
  --accent: #ff2136; /* red */
  --text: #e6e6e6;   /* light gray */
  color-scheme: dark;
}

@font-face {
  font-family: 'Monaspace Neon';
  src: url('MonaspaceNeon-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(800px 80% at 20% 10%, rgba(255, 33, 54, 0.06), transparent 60%),
    radial-gradient(700px 80% at 80% 80%, rgba(255, 33, 54, 0.04), transparent 70%);
  font-family: 'Monaspace Neon', ui-monospace, SFMono-Regular, "Cascadia Code", "Fira Code", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.logo {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 22px);
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.caret {
  color: var(--accent);
  animation: blink 1.1s steps(1, end) infinite;
}

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

.site-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.headline {
  margin: 0;
  font-size: clamp(36px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(255, 33, 54, 0.08);
}

.prompt {
  color: var(--accent);
  margin-right: 12px;
}

.soon {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(255, 33, 54, 0.2);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.email {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 33, 54, 0.5);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.email:hover,
.email:focus {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 12px rgba(255, 33, 54, 0.5);
  outline: none;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 33, 54, 0.07),
    rgba(255, 33, 54, 0.07) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.08;
}

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