:root {
  --bg: #0f1115;
  --surface: #161922;
  --text: #f4f5f7;
  --muted: #9aa0ac;
  --accent: #7c9cff;
  --line: #262b36;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vh, 48px);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  word-break: break-word;
}

.lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  line-height: 1.6;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.email {
  color: var(--text);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  align-self: center;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.email:hover,
.email:focus-visible {
  color: var(--accent);
}

.email:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

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