:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --ink: #15171a;
  --muted: #5d6470;
  --line: #d8dde3;
  --panel: #ffffff;
  --accent: #1267d8;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.panel {
  width: min(760px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}

.content {
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.15;
}

h2 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.lead {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: #eef3fb;
  color: var(--accent);
}

@media (max-width: 560px) {
  .panel {
    padding: 26px;
  }

  h1 {
    font-size: 28px;
  }
}
