:root {
  --bg: #0D0D10;
  --orange: #FF4D00;
  --orange-deep: #CC3D00;
  --text: #F5F5F5;
}

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

html, body {
  height: 100%;
  background: #000;
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 1.75rem;
}

.wordmark-link {
  display: block;
  line-height: 0;
  outline: none;
}

.wordmark-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 8px;
  border-radius: 4px;
}

.wordmark {
  width: min(1100px, 94vw);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  mix-blend-mode: screen;
  transition: transform 220ms ease;
}

.wordmark-link:hover .wordmark,
.wordmark-link:focus-visible .wordmark {
  transform: scale(1.01);
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orange);
  background: transparent;
  border: 1px solid var(--orange-deep);
  border-radius: 2px;
  text-decoration: none;
  text-transform: lowercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--orange);
  color: var(--bg);
  border-color: var(--orange);
  outline: none;
}

.email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--orange-deep);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 180ms ease;
}

.email span {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.email:hover,
.email:focus-visible {
  color: var(--orange);
  outline: none;
}

.email:hover span,
.email:focus-visible span {
  border-bottom-color: var(--orange);
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 600px) {
  .hero { padding: 2rem 1rem; gap: 1.25rem; }
  .wordmark { width: 95vw; }
  .links { gap: 0.7rem; }
  .cta { font-size: 0.9rem; padding: 0.75rem 1.3rem; gap: 0.55rem; }
  .email { font-size: 0.8rem; }
  .icon { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta, .wordmark, .email { transition: none; }
}
