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

:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #888;
  --accent: #c41e3a;
  --accent-glow: rgba(196, 30, 58, 0.25);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 42rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.header {
  margin-bottom: 3rem;
}

.logo {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo .tld {
  color: var(--accent);
  font-weight: 600;
}

.tagline {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main {
  margin-bottom: 3rem;
}

.hero .title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--text);
}

.hero .subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.divider {
  margin: 2rem auto 0;
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.footer {
  padding-top: 2rem;
  border-top: 1px solid var(--surface);
}

.footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
