:root {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --muted: #8a8a8a;
  --line: rgba(255, 255, 255, 0.22);
  --font: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.wordmark {
  position: relative;
  margin: 0;
  line-height: 1;
}

.wordmark::before,
.wordmark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.wordmark::before {
  top: -14px;
  left: -14px;
  border-right: none;
  border-bottom: none;
}

.wordmark::after {
  bottom: -14px;
  right: -14px;
  border-left: none;
  border-top: none;
 }

 .wordmark__img {
  display: block;
  width: clamp(220px, 60vw, 520px);
  height: auto;
}

.tagline {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.status {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--fg);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--fg);
}

.btn:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.footer__studio {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
