:root {
  color-scheme: light;
  --bg: #f5f2ec;
  --panel: #ffffff;
  --text: #1e2930;
  --muted: #5f6d73;
  --accent: #0b6f7c;
  --accent-strong: #095761;
  --border: #d9dfdf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.panel {
  width: min(100%, 680px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(28px, 6vw, 56px);
  box-shadow: 0 20px 60px rgb(30 41 48 / 10%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
}

p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.summary {
  margin: 24px 0 32px;
}

.policy p {
  margin: 24px 0;
}

.button,
.link {
  color: var(--accent-strong);
  font-weight: 700;
}

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

.button:focus-visible,
.link:focus-visible {
  outline: 3px solid rgb(11 111 124 / 35%);
  outline-offset: 3px;
}
