:root {
  color-scheme: light;
  --ink: #0e121c;
  --muted: #4b5565;
  --line: #dce3ec;
  --paper: #ffffff;
  --canvas: #f3f6fa;
  --teal: #008995;
  --blue: #2056cf;
  --green: #1f9d6a;
}

* {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
}

body {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 48px 0;
}

.hero,
.document {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(14, 18, 28, 0.08);
}

.hero {
  padding: clamp(28px, 6vw, 64px);
}

.document {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: clamp(24px, 5vw, 56px);
}

.top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
  font-size: 14px;
  font-weight: 650;
}

.mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 6vw, 64px);
}

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

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

section p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal li {
  margin: 8px 0;
}

.summary {
  max-width: 760px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 137, 149, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(0, 137, 149, 0.07);
}

.table-wrap {
  width: 100%;
  margin-top: 14px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper);
}

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

th {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  background: #f8fafc;
}

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

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

.support-box {
  border-bottom: 0;
}

@media (max-width: 560px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .actions,
  .button {
    width: 100%;
  }
}
