:root {
  --text: #111111;
  --subtext: #444444;
  --button: #7b1632;
  --button-hover: #651228;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 900px;
  padding: 40px 24px;
  text-align: center;
}

.logo {
  width: min(220px, 60vw);
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

.title {
  margin: 0 auto 20px;
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text);
}

.subtitle {
  margin: 0 auto 32px;
  max-width: 720px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--subtext);
  text-align: center;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--button);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--button-hover);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(123, 22, 50, 0.25);
  outline-offset: 3px;
}