:root {
  color-scheme: light;
  --bg: #eef4f2;
  --surface: #ffffff;
  --ink: #102f33;
  --text: #273433;
  --muted: #60706d;
  --teal: #216469;
  --line: #c5d4d0;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--teal);
  font-weight: 700;
}

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

.narrow {
  width: min(820px, calc(100% - 32px));
}

.hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
  box-shadow: 0 18px 60px rgba(16, 47, 51, 0.08);
}

.compact {
  padding-block: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
  text-decoration: none;
}

.button.secondary {
  background: #ffffff;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card,
.notice,
.policy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.card {
  padding: 24px;
}

.notice {
  margin-top: 18px;
  padding: 24px;
}

.policy {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 40px);
}

.policy h2 {
  margin-top: 26px;
}

.policy h2:first-child {
  margin-top: 0;
}

.toplink {
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
