/* Suzune — Nocturne design system, hand-authored from the Claude Design source.
   A quiet, compact dark interface: near-neutral blue-grey ground, Inter at
   medium weight, soft 8px radii, and an accent used as a line and a glow. */

:root {
  --bg: #161826;
  --text: #e9e9ed;
  --text-soft: #e4e7f5;
  --muted: #b2b6ca;
  --muted-2: #cfd3e5;
  --muted-3: #9397ab;
  --muted-4: #75798c;
  --accent: #9184d9;
  --accent-bright: #b5abfc;
  --accent-light: #d2cefd;
  --accent-deep: #5d5294;
  --accent-mid: #796cbf;
  --surface: #232532;
  --surface-sunken: #1c1e2e;
  --hairline: rgba(233, 233, 237, 0.1);
  --hairline-soft: rgba(233, 233, 237, 0.07);
  --card-ring: #3f424d;
  --radius: 8px;
  --radius-lg: 14px;
  --maxw: 1180px;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-light); text-decoration: underline; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: rgba(145, 132, 217, 0.3); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6, p, ul, pre, table, figure { margin: 0; }

code {
  font-family: var(--mono);
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(145, 132, 217, 0.14);
  color: var(--accent-light);
}
pre code { padding: 0; background: none; color: inherit; font-size: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 0 0 1px var(--card-ring);
  transition: top 0.15s ease;
}
.skip-link:focus-visible { top: 12px; }

/* ---------- Animations ---------- */

@keyframes pulseGlow { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.9; } }
@keyframes spinCW { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes trace { to { stroke-dashoffset: -560; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit *,
  .orbit { animation: none !important; }
}

/* ---------- Page shell ---------- */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(120% 70% at 12% -10%, #1f2138 0%, #161826 55%, #161826 100%);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(22, 24, 38, 0.82);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--text); text-decoration: none; }

.brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: linear-gradient(160deg, var(--accent-bright), var(--accent-deep));
  box-shadow: 0 0 18px rgba(145, 132, 217, 0.45);
  flex: 0 0 auto;
}
.brand__mark span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav__link:hover {
  background: rgba(145, 132, 217, 0.12);
  color: var(--text);
  text-decoration: none;
}
.nav__link[aria-current="page"] {
  color: var(--text);
  background: rgba(145, 132, 217, 0.1);
}

.btn {
  display: inline-block;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; }

.btn--invite {
  padding: 9px 18px;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 14px;
  white-space: nowrap;
}
.btn--invite:hover { background: rgba(145, 132, 217, 0.16); color: #f5f4ff; }

.nav__invite { margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { margin: 0 auto; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--hairline);
  padding: 44px 28px 36px;
}

.site-footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}
.site-footer__mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: linear-gradient(160deg, var(--accent-bright), var(--accent-deep));
  flex: 0 0 auto;
}
.site-footer__mark span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  opacity: 0.75;
}
.site-footer__tagline {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted-3);
  max-width: 34ch;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-4);
}
.site-footer__col a { font-size: 13.5px; color: var(--muted); }

.site-footer__legal {
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--hairline-soft);
}
.site-footer__legal p { font-size: 12px; color: var(--muted-4); }

/* ---------- Home: hero ---------- */

main { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 28px 96px;
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__art {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: min(46vw, 560px);
  aspect-ratio: 1;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 132, 217, 0.34), transparent 68%);
  filter: blur(30px);
  animation: pulseGlow 9s ease-in-out infinite;
}
.orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: breathe 12s ease-in-out infinite;
}
.orbit__spin-cw { transform-origin: 200px 200px; animation: spinCW 68s linear infinite; }
.orbit__spin-ccw { transform-origin: 200px 200px; animation: spinCCW 96s linear infinite; }
.orbit__trace { animation: trace 9s linear infinite; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px;
  border: 1px solid rgba(145, 132, 217, 0.45);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-light);
  background: rgba(145, 132, 217, 0.09);
  letter-spacing: 0.02em;
}
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent);
}

.hero__title {
  margin: 22px 0 0;
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 12ch;
}

.hero__lede {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}
.hero__lede .accent { color: var(--accent-bright); }

.hero__body {
  margin: 26px 0 0;
  max-width: 52ch;
  font-size: 16px;
  color: var(--muted);
  text-wrap: pretty;
}

.cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--primary {
  padding: 13px 26px;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 15px;
}
.btn--primary:hover { background: rgba(145, 132, 217, 0.18); color: #f5f4ff; }

.btn--secondary {
  padding: 13px 26px;
  border: 1px solid rgba(233, 233, 237, 0.18);
  color: var(--text);
  font-size: 15px;
}
.btn--secondary:hover { background: rgba(233, 233, 237, 0.07); color: var(--text); }

.btn--ghost {
  padding: 13px 26px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 15px;
}
.btn--ghost:hover { color: var(--text); background: rgba(233, 233, 237, 0.05); }

/* ---------- Home: stat band ---------- */

.stat-band-wrap { padding: 0 28px; }

.stat-band {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(120deg, #262a60, #353b80 55%, #2b2f6b);
  border-radius: var(--radius-lg);
  padding: 38px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}
.stat__num {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.stat__label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted-2);
}

/* ---------- Home: content sections ---------- */

.section { padding: 96px 28px 0; }
.section--last { padding-bottom: 104px; }
#features { scroll-margin-top: 80px; }

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-3);
}

.section__title {
  margin: 12px 0 0;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.section__lead {
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--muted);
  text-wrap: pretty;
}

.feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 0 0 1px var(--card-ring);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.15s ease;
}
.feature-card:hover {
  box-shadow: 0 0 0 1px #595d6c, 0 6px 18px rgba(0, 0, 0, 0.55);
}
.feature-card__rule { width: 34px; height: 1px; background: var(--accent); }
.feature-card__title {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.feature-card__body {
  font-size: 14px;
  color: var(--muted);
  text-wrap: pretty;
}
.feature-card__link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-bright);
}

/* ---------- Home: setup ---------- */

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: start;
}

.steps {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step { display: flex; gap: 14px; align-items: baseline; }
.step__num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-mid);
  min-width: 18px;
}
.step p { font-size: 14px; color: var(--muted-2); }

.panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px var(--card-ring);
  overflow: hidden;
}
.panel__head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 9px;
}
.panel__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep); }
.panel__label { font-size: 13px; font-weight: 500; color: var(--muted-2); }
.panel__body { padding: 8px 20px 20px; }
.panel__note { margin: 16px 0 0; font-size: 12px; color: var(--muted-3); }

.preset-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.preset-table th {
  text-align: left;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-3);
  border-bottom: 1px solid rgba(233, 233, 237, 0.12);
}
.preset-table th:first-child { padding-left: 0; }
.preset-table th:last-child { padding-right: 0; }
.preset-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--muted);
}
.preset-table td:first-child { padding-left: 0; font-weight: 500; color: var(--text); }
.preset-table td:last-child { padding-right: 0; }
.preset-table tr:last-child td { border-bottom: none; }
.preset-table tr:last-child td:first-child { color: var(--accent-light); }

/* ---------- Home: commands ---------- */

.cmd-chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cmd-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 237, 0.14);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-2);
  background: rgba(35, 37, 50, 0.7);
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.cmd-chip:hover {
  border-color: var(--accent);
  color: #f5f4ff;
  background: rgba(145, 132, 217, 0.14);
  text-decoration: none;
}

/* ---------- Home: closing ---------- */

.closing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.closing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 0 0 1px var(--card-ring);
}
.closing-card--accent {
  background: linear-gradient(150deg, #2b2741, #232532 70%);
  box-shadow: 0 0 0 1px #423a6a;
}
.closing-card h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.closing-card p { margin: 10px 0 0; font-size: 14px; color: var(--muted); }
.closing-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-bright);
}
.closing-card__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn--sm-primary {
  padding: 9px 18px;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 14px;
}
.btn--sm-primary:hover { background: rgba(145, 132, 217, 0.18); color: #f5f4ff; }
.btn--sm-secondary {
  padding: 9px 18px;
  border: 1px solid rgba(233, 233, 237, 0.18);
  color: var(--text);
  font-size: 14px;
}
.btn--sm-secondary:hover { background: rgba(233, 233, 237, 0.07); color: var(--text); }

/* ---------- Doc pages (wiki + legal) ---------- */

.doc { padding: 52px 28px 96px; }
.doc__inner { max-width: var(--maxw); margin: 0 auto; }

.doc__title {
  margin: 12px 0 0;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.doc__updated { margin: 12px 0 0; font-size: 13px; color: var(--muted-3); }
.doc__intro {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--muted);
  text-wrap: pretty;
}
.doc__intro--legal { margin-top: 16px; max-width: 70ch; }

.doc-layout {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.doc-aside {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.doc-aside--legal { gap: 1px; max-height: 74vh; overflow: auto; }

.doc-search {
  width: 100%;
  padding: 9px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(233, 233, 237, 0.16);
  background: var(--surface-sunken);
  color: var(--text);
  font-family: inherit;
  font-size: 13.5px;
}
.doc-search:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.toc {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-height: 64vh;
  overflow: auto;
}
.doc-aside--legal .toc { max-height: none; }
.toc a {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted-3);
  border-left: 1px solid var(--hairline);
  white-space: pre;
}
.toc a:hover {
  color: var(--text);
  background: rgba(145, 132, 217, 0.1);
  border-left-color: var(--accent);
  text-decoration: none;
}

.doc-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-width: 0;
}
.doc-content--legal { gap: 44px; }

.doc-section { scroll-margin-top: 88px; }
.doc-section__head { display: flex; align-items: baseline; gap: 12px; }
.doc-section__num { font-size: 12px; font-weight: 600; color: var(--accent-mid); }
.doc-section__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.doc-content--legal .doc-section__title { font-size: 26px; }

.doc-blocks {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doc-content--legal .doc-blocks { margin-top: 14px; gap: 14px; }

.doc-blocks h3 {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}
.doc-content--legal .doc-blocks h3 { margin-top: 6px; font-size: 17px; letter-spacing: 0; }

.doc-blocks p {
  color: var(--muted);
  max-width: 74ch;
  text-wrap: pretty;
}

.note {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(145, 132, 217, 0.1);
  box-shadow: 0 0 0 1px #423a6a;
  color: var(--accent-light);
  font-size: 14px;
  max-width: 74ch;
}

.doc-blocks pre {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface-sunken);
  box-shadow: 0 0 0 1px var(--card-ring);
  overflow: auto;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-2);
}

.doc-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.doc-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  max-width: 74ch;
}
.doc-list li::before {
  content: "";
  margin-top: 9px;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-mid);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chips span {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 237, 0.14);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-2);
}

.doc-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--card-ring);
  background: var(--surface);
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 520px;
}
.doc-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-3);
  border-bottom: 1px solid rgba(233, 233, 237, 0.12);
  white-space: nowrap;
}
.doc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--muted);
  vertical-align: top;
}
.doc-table tr:last-child td { border-bottom: none; }
.doc-table code { white-space: nowrap; }

.no-results { color: var(--muted-3); }
[hidden] { display: none !important; }

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .hero__title { font-size: 68px; }
  .hero__art { opacity: 0.5; width: min(52vw, 460px); }
}

@media (max-width: 900px) {
  .doc-layout { grid-template-columns: 1fr; gap: 24px; }
  .doc-aside,
  .doc-aside--legal {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(35, 37, 50, 0.6);
    box-shadow: 0 0 0 1px var(--card-ring);
  }
  .toc { max-height: 320px; }
  .doc-content { gap: 44px; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .site-header__inner { gap: 16px; position: relative; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    background: rgba(22, 24, 38, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
  }
  .nav:not(.is-open) { display: none; }
  .nav__link { padding: 11px 13px; }
  .nav__invite { margin: 6px 0 2px; text-align: center; }

  .hero { padding: 72px 22px 64px; }
  .hero__title { font-size: 46px; }
  .hero__lede { font-size: 21px; }
  .hero__art { display: none; }

  .stat-band-wrap { padding: 0 22px; }
  .stat-band { padding: 28px 24px; gap: 20px; }

  .section { padding: 64px 22px 0; }
  .section--last { padding-bottom: 72px; }
  .section__title { font-size: 30px; }

  .doc { padding: 40px 22px 72px; }
  .doc__title { font-size: 34px; }
  .doc-section__title,
  .doc-content--legal .doc-section__title { font-size: 24px; }

  .site-footer { padding: 40px 22px 32px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 40px; }
  .brand { font-size: 16px; }
}
