/* ==========================================================================
   Cannon Craze official site
   The design system mirrors the game itself: deep-navy night, one luminous
   accent, Montserrat with generous tracking, glass panels, honest glows.
   ========================================================================== */

/* -- Fonts ----------------------------------------------------------------- */

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -- Tokens ------------------------------------------------------------------ */

:root {
  --ink: #eef1ff;
  --ink-dim: #9aa2c8;
  --ink-faint: #565c86;
  --accent: #2fe8d8;
  --accent-soft: #8ff7ec;
  --accent-deep: #0fa89b;
  --violet: #7b6cff;
  --coral: #ff6e7e;
  --gold: #ffc96b;
  --sky-top: #030210;
  --sky-mid: #0a0733;
  --sky-horizon: #1a1156;
  --panel: #0b0a26;
  --panel-line: #7e86cd;
  --btn-text-dark: #04222b;

  --font: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --track: 0.24em;
  --radius: 18px;
  --radius-pill: 999px;
  --container: 1120px;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* -- Reset / base -------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-dim);
  background: var(--sky-top);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-soft);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(47, 232, 216, 0.28);
  color: var(--ink);
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 1rem;
  text-wrap: balance;
}

p {
  margin: 0 0 1.1rem;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--btn-text-dark);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

/* Tracked uppercase labels, the game's signature typographic voice */
.kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: 0.02em;
}

.section-head p {
  font-size: 1.05rem;
}

.center {
  text-align: center;
}

.center .section-head {
  margin-inline: auto;
}

/* -- Reveal on scroll ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -- Buttons ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--btn-text-dark);
  box-shadow: 0 0 0 rgba(47, 232, 216, 0);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: var(--btn-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(47, 232, 216, 0.35);
}

.btn-ghost {
  background: rgba(47, 232, 216, 0.02);
  color: #c7cce8;
  border-color: rgba(126, 134, 205, 0.55);
}

.btn-ghost:hover {
  color: var(--accent-soft);
  border-color: var(--accent);
  background: rgba(47, 232, 216, 0.07);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.7em 1.35em;
  font-size: 0.72rem;
}

/* -- Nav ------------------------------------------------------------------------------ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(5, 4, 22, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(126, 134, 205, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--ink);
}

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

.nav-brand .accent {
  color: var(--accent);
}

.nav-brand img {
  width: 30px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(47, 232, 216, 0.55));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.nav-links a:not(.btn):hover {
  color: var(--accent-soft);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 4, 22, 0.97);
    border-bottom: 1px solid rgba(126, 134, 205, 0.2);
    padding: 0.5rem 1.5rem 1.4rem;
    display: none;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li {
    padding: 0.65rem 0;
  }
  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* -- Hero ------------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 11rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(46vw 46vw at 18% 16%, rgba(123, 108, 255, 0.16), transparent 62%),
    radial-gradient(50vw 50vw at 86% 52%, rgba(15, 168, 155, 0.14), transparent 64%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 52%, var(--sky-horizon) 100%);
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero > .container {
  position: relative;
}

.hero-crest {
  width: 84px;
  height: 68px;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 0 18px rgba(47, 232, 216, 0.6));
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.3rem);
  letter-spacing: 0.16em;
  margin-bottom: 0.4rem;
}

/* The wordmark is a single unbreakable line: tighten it on narrow phones */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.4rem);
    letter-spacing: 0.1em;
  }
  .hero-tagline {
    letter-spacing: 0.3em;
  }
}

.hero h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 34px rgba(47, 232, 216, 0.45);
}

.hero-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.7rem;
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 2.4rem;
  font-size: 1.08rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero-sub a {
  color: var(--ink-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-sub a:hover {
  color: var(--accent-soft);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.6rem 0 3.6rem;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid rgba(126, 134, 205, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.45em 1.1em;
  background: rgba(11, 10, 38, 0.55);
}

.hero-shot {
  position: relative;
  max-width: 880px;
  margin: 0 auto -1px;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(closest-side, rgba(47, 232, 216, 0.16), transparent 72%);
  pointer-events: none;
}

.hero-shot img {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(126, 134, 205, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(47, 232, 216, 0.08);
}

/* -- Panels / cards --------------------------------------------------------------------- */

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%), var(--panel);
  border: 1px solid rgba(126, 134, 205, 0.28);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 232, 216, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(47, 232, 216, 0.06);
}

/* -- Features ----------------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(47, 232, 216, 0.09);
  border: 1px solid rgba(47, 232, 216, 0.3);
  margin-bottom: 1.2rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.features-grid h3 {
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.features-grid p {
  font-size: 0.95rem;
  margin: 0;
}

/* -- Screenshots ---------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery button {
  padding: 0;
  border: 1px solid rgba(126, 134, 205, 0.3);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery button:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(47, 232, 216, 0.5);
}

.gallery img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: 3vmin;
  background: rgba(3, 2, 16, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(126, 134, 205, 0.4);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.lightbox figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(126, 134, 205, 0.5);
  background: rgba(11, 10, 38, 0.8);
  color: var(--coral);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: var(--coral);
}

/* -- How to play ------------------------------------------------------------------------------ */

.howto {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  display: flex;
  gap: 1.3rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(126, 134, 205, 0.16);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps .num {
  flex: none;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding-top: 0.1rem;
}

.steps h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.steps p {
  font-size: 0.95rem;
  margin: 0;
}

.howto-shot img {
  border-radius: 14px;
  border: 1px solid rgba(126, 134, 205, 0.4);
  box-shadow: var(--shadow-card);
}

.howto-note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .howto {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

/* -- Downloads ----------------------------------------------------------------------------------- */

#download {
  background:
    radial-gradient(60vw 40vw at 50% 0%, rgba(123, 108, 255, 0.09), transparent 70%),
    linear-gradient(180deg, transparent, rgba(10, 7, 51, 0.5) 30%, transparent);
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.dl-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 1.4rem;
}

.dl-card.is-detected {
  border-color: rgba(47, 232, 216, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 46px rgba(47, 232, 216, 0.1);
}

.dl-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.dl-head svg {
  width: 30px;
  height: 30px;
  fill: var(--ink);
  flex: none;
}

.dl-head h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dl-meta {
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  margin: 0 0 1.2rem;
}

.dl-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dl-buttons .btn {
  width: 100%;
  padding-inline: 0.9em;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.badge-soon {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  padding: 0.7em 1.35em;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(126, 134, 205, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.dl-note {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.dl-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dl-version {
  display: inline-block;
  margin-left: 0.6em;
  padding: 0.15em 0.8em;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(47, 232, 216, 0.4);
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  vertical-align: middle;
}

/* -- Requirements -------------------------------------------------------------------------------- */

.req-wrap {
  overflow-x: auto;
  border: 1px solid rgba(126, 134, 205, 0.28);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

table.req {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.req th,
table.req td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid rgba(126, 134, 205, 0.14);
  vertical-align: top;
}

table.req thead th {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(126, 134, 205, 0.3);
}

table.req tbody th {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  white-space: nowrap;
}

table.req td {
  color: var(--ink-dim);
}

table.req tr:last-child th,
table.req tr:last-child td {
  border-bottom: 0;
}

/* -- FAQ -------------------------------------------------------------------------------------------- */

.faq {
  max-width: 780px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid rgba(126, 134, 205, 0.28);
  border-radius: 14px;
  background: var(--panel);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: rgba(47, 232, 216, 0.45);
}

.faq summary {
  padding: 1.15rem 3.4rem 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq .faq-body {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.93rem;
}

.faq .faq-body code {
  background: rgba(126, 134, 205, 0.14);
  border-radius: 6px;
  padding: 0.1em 0.45em;
  font-size: 0.86em;
  color: var(--accent-soft);
}

/* -- Open source strip ------------------------------------------------------------------------------- */

.oss {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(10, 7, 51, 0.55), transparent);
}

.oss h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.oss p {
  max-width: 560px;
  margin: 0 auto 2rem;
}

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

.footer {
  border-top: 1px solid rgba(126, 134, 205, 0.18);
  padding: 4rem 0 2.6rem;
  background: linear-gradient(180deg, transparent, rgba(3, 2, 16, 0.8));
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 28px;
  height: 23px;
}

.footer-brand .accent {
  color: var(--accent);
}

.footer p {
  font-size: 0.85rem;
  max-width: 340px;
}

.footer h3 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.55rem;
}

.footer ul a {
  color: var(--ink-dim);
}

.footer ul a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(126, 134, 205, 0.14);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* -- Privacy page -------------------------------------------------------------------------------- */

.prose {
  max-width: 720px;
  margin-inline: auto;
  padding: 9.5rem 0 5rem;
}

.prose h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.prose h2 {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2.6rem;
}

.prose .effective {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2.2rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.5rem;
}
