:root {
  color-scheme: light;
  --bg: #fff8ed;
  --paper: #ffffff;
  --ink: #253047;
  --muted: #657087;
  --primary: #326edb;
  --secondary: #f7aa3f;
  --line: #e8ddcf;
  --soft: #f4efe7;
  --shadow: 0 18px 50px rgba(37, 48, 71, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 170, 63, 0.24), transparent 34rem),
    linear-gradient(180deg, #fff8ed 0%, #f7fbff 100%);
  color: var(--ink);
  font-family:
    ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.shell {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 32px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(37, 48, 71, 0.14);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  margin-bottom: 22px;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 8px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.lede {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.section:first-child {
  border-top: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

p {
  margin: 0 0 14px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
}

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

.notice {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(50, 110, 219, 0.22);
  border-radius: 14px;
  background: rgba(50, 110, 219, 0.08);
  color: var(--muted);
}

.footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 22px, 920px);
    padding-top: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .section {
    padding: 22px;
  }
}
