:root {
  color-scheme: light;
  --bg: #f4f4f6;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #666a70;
  --subtle: #8b9097;
  --line: #e6e7eb;
  --black: #101010;
  --accent: #0a66c2;
  --radius: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
}

a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgb(244 244 246 / 92%);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  left: 0;
  padding: 18px clamp(20px, 5vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.page {
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(36px, 8vw, 76px) 20px 64px;
}

.hero {
  padding: clamp(20px, 5vw, 34px) 0 20px;
}

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

h1 {
  font-size: clamp(36px, 8vw, 76px);
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 18px;
}

.legal h1 {
  font-size: clamp(32px, 6vw, 50px);
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0 0 14px;
}

h3 {
  font-size: 18px;
  line-height: 1.5;
  margin: 22px 0 8px;
}

p,
li,
dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

dt {
  font-weight: 800;
  margin-top: 18px;
}

dd {
  margin: 6px 0 0;
}

.lead {
  color: #3d4148;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.8;
  max-width: 780px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgb(0 0 0 / 7%);
  padding: clamp(24px, 5vw, 38px);
}

.section {
  margin-top: 22px;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

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

.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.mini-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-link {
  background: var(--black);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  padding: 13px 18px;
  text-decoration: none;
}

.secondary-link {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.notice {
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #4b515a;
  padding: 16px 18px;
}

.meta {
  color: var(--subtle);
  font-size: 14px;
  margin-bottom: 22px;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f7f8fa;
  color: var(--ink);
  font-weight: 800;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.footer {
  color: var(--subtle);
  font-size: 13px;
  margin-top: 36px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }
}
