:root {
  --bg: #f5f3ef;
  --ink: #111111;
  --muted: #5b5b5b;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(17, 17, 17, 0.12);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.95), rgba(255,255,255,0) 38%),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 60%, #e7e2d8 100%);
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  width: min(760px, 100%);
  text-align: center;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
}

.logo-wrap {
  width: clamp(150px, 28vw, 240px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
}

.logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.9rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.lead {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.5;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
}

.note {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .hero { border-radius: 24px; }
  .btn { width: 100%; }
}
