:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --border: #d8d8d8;
  --text: #111111;
  --muted: #4f4f4f;
  --accent: #111111;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
}

.hero {
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--text);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.18;
}

h2 {
  margin: 32px 0 10px;
  font-size: 20px;
}

p,
li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

ul {
  padding-left: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--text);
}

.button.primary {
  background: var(--text);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--text);
}

.meta {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.meta-item {
  padding: 18px 20px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid var(--border);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal {
  margin-top: 20px;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 920px);
    padding: 20px 0 40px;
  }

  .card {
    padding: 22px;
  }
}
