*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #eceef2;
  --ink: #0a0a0a;
  --ink-soft: rgba(10, 10, 10, 0.68);
  --ink-faint: rgba(10, 10, 10, 0.44);
  --line: rgba(10, 10, 10, 0.12);
  --line-strong: rgba(10, 10, 10, 0.5);
  --utility-font: "Helvetica Neue", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

html, body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "lotus-eden", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 10, 10, 0.028) 1px, transparent 1px);
  background-size: 90px 90px;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}

a:hover { border-bottom-color: var(--ink); }

.loupe-word {
  display: inline-block;
  white-space: nowrap;
}

.loupe-ch {
  display: inline-block;
  position: relative;
  transform-origin: 50% 60%;
  will-change: transform;
  --c-offset: 0px;
  --c-alpha: 0;
  text-shadow:
    0 calc(var(--c-offset) * -1) 0 rgba(255, 214, 10, var(--c-alpha)),
    calc(var(--c-offset) * 0.866) calc(var(--c-offset) * 0.5) 0 rgba(255, 45, 58, var(--c-alpha)),
    calc(var(--c-offset) * -0.866) calc(var(--c-offset) * 0.5) 0 rgba(30, 215, 96, var(--c-alpha));
}

.page {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 32px 78px;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: clamp(62px, 10vw, 120px);
  font-family: var(--utility-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.masthead a,
.masthead span {
  border-bottom: 0;
  text-decoration: none;
  font-weight: 400;
}

.masthead nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--ink-soft);
}

.kicker {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 8vw, 88px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.updated {
  margin: 24px 0 52px;
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 700;
}

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

h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
}

p, li {
  max-width: 720px;
  color: rgba(10, 10, 10, 0.78);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
}

p { margin: 0 0 13px; }

ul {
  margin: 0;
  padding-left: 19px;
}

li { margin: 0 0 8px; }

strong {
  color: var(--ink);
  font-weight: 700;
}

.summary {
  max-width: 780px;
  margin: 0 0 34px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.06;
}

.table {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(220px, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.table div {
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(10, 10, 10, 0.74);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.34;
}

.table div:nth-child(odd) {
  color: var(--ink);
  font-weight: 700;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.tool-row button,
.text-button {
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 15px;
}

.tool-row button:hover,
.text-button:hover {
  background: var(--ink);
  color: var(--bg);
}

body.large-type { font-size: 18px; }
body.high-contrast {
  --bg: #fff;
  --ink: #000;
  --ink-soft: #000;
  --ink-faint: #222;
  --line: #000;
  --line-strong: #000;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--utility-font);
  font-size: 13px;
  font-weight: 400;
}

.footer a,
.footer span {
  border-bottom: 0;
  text-decoration: none;
  font-weight: 400;
}

.masthead a:hover,
.footer a:hover {
  border-bottom: 0;
  color: var(--ink);
}

@media (max-width: 620px) {
  .page { padding: 24px 20px 58px; }
  .masthead {
    margin-bottom: 72px;
    flex-direction: column;
  }
  .masthead nav { justify-content: flex-start; }
  h1 { font-size: clamp(48px, 16vw, 68px); }
  .summary { font-size: 24px; }
  .table { grid-template-columns: 1fr; }
  .table div:nth-child(odd) {
    padding-bottom: 2px;
    border-bottom: 0;
  }
  .table div:nth-child(even) { padding-top: 0; }
}
