/* flaming.ws apps — "Roast"
 *
 * Extracted verbatim from the approved mockups in docs/site-reference/site/.
 * Every length, color and shadow here was lifted from an inline style on those
 * pages; the only additions are (a) the responsive rules at the bottom, which the
 * mockups had none of, and (b) real focus states, which clickable <div>s could not
 * have. Tokens follow docs/site-reference/site/STYLE-GUIDE.md.
 *
 * Two places where the mockups and the STYLE-GUIDE disagreed, resolved toward the
 * guide (it calls itself the design contract) and flagged for Dean:
 *   - display serif: guide says Georgia; the markup set no font-family, so the
 *     approved screenshots show the browser default serif.
 *   - body ink: guide says #33261a; the markup set no color, so the approved
 *     screenshots show #000.
 */

:root {
  --page:        #f6efe3;
  --outer:       #efe6d8;
  --ink:         #33261a;
  --accent:      #8a4b21;
  --accent-dark: #6b3a1a;
  --muted:       #6d5a44;
  --faint:       #a08a6e;
  --hair:        #e0d4bf;
  --input:       #d5c6ab;
  --dash:        #c9b896;
  --card:        #ffffff;
  --card-text:   #57524a;
  --paypal:      #ffc439;

  --sans: -apple-system, system-ui, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SF Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: 52px;
}

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

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

body {
  margin: 0;
  background: var(--outer);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-text-size-adjust: 100%;
}

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

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

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

.shell {
  background: var(--page);
  max-width: 1180px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell > main { flex: 1; }

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

/* The honeypot. Never display:none — bots skip hidden fields but fill
   off-screen ones. tabindex/autocomplete keep humans out of it. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------------------ nav --- */

.nav {
  display: flex;
  align-items: center;
  padding: 20px var(--gutter);
  border-bottom: 2px solid var(--ink);
}

.nav-brand {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.5px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.is-active {
  color: var(--accent);
  font-weight: 700;
}

/* --------------------------------------------------------------- footer --- */

.footer {
  display: flex;
  align-items: center;
  padding: 18px var(--gutter);
  border-top: 2px solid var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--faint);
}

.footer-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.footer a { color: var(--faint); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* ------------------------------------------------------------ structure --- */

.rule-section { border-top: 2px solid var(--ink); }

.kicker {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}

.kicker-sm {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
}

.display {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.02;
  margin: 14px 0 0;
}

.title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.title-lg {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 24px 0 0;
}

.accent { font-style: italic; color: var(--accent); }

.lede {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 480px;
}
.lede-wide { max-width: 500px; }

.mono { font-family: var(--mono); font-size: 12px; }

/* -------------------------------------------------------------- buttons --- */

.btn-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
  font-family: var(--sans);
}

.btn-row-center { justify-content: center; }

.btn {
  font-family: var(--sans);
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: 0;
}

.btn-solid {
  background: var(--ink);
  color: var(--page);
  font-size: 14.5px;
  padding: 13px 26px;
}
.btn-solid:hover { background: #241a12; color: var(--page); }

.btn-outline {
  background: none;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 14.5px;
  padding: 11px 24px;
}
.btn-outline:hover { background: var(--ink); color: var(--page); }

.btn-note {
  margin: 12px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--faint);
}

/* ------------------------------------------------------------------ cup --- */

.cup {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5a4230, var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.cup-hero {
  width: 200px; height: 200px;
  box-shadow: 0 24px 50px rgba(51, 38, 26, 0.35);
  font-size: 84px;
}

.cup-mid {
  width: 110px; height: 110px;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(51, 38, 26, 0.3);
  font-size: 48px;
}

.cup-sm {
  width: 54px; height: 54px;
  font-size: 26px;
}

/* ----------------------------------------------------------------- hero --- */

.hero {
  display: flex;
  gap: 48px;
  padding: 56px var(--gutter) 44px;
  align-items: center;
}
.hero-tight { padding: 52px var(--gutter) 40px; }

.hero-copy { flex: 1.3; }
.hero-side {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deal-card {
  margin-top: 20px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 12px 18px;
  font-family: var(--sans);
  box-shadow: 0 8px 22px rgba(51, 38, 26, 0.12);
}

.deal-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--card-text);
  margin: 3px 0 0;
}

/* ------------------------------------------------------------ apps grid --- */

.section-pad { padding: 28px var(--gutter) 40px; }
.section-shots { padding: 32px var(--gutter) 40px; }

.grid-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.app-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(51, 38, 26, 0.08);
  text-decoration: none;
  color: var(--ink);
}
.app-card:hover { color: var(--ink); box-shadow: 0 10px 24px rgba(51, 38, 26, 0.14); }

.app-card-name { font-size: 19px; font-weight: 700; }
.app-card-sub {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.app-card-arrow {
  margin-left: auto;
  font-family: var(--sans);
  color: var(--accent);
  font-size: 18px;
}

/* Legal index. Three agreements read better stacked than squeezed into the
   three-column app grid: each card gets the full column width, so the summary and the
   version line lay out as sentences instead of wrapping one word per line.
   .app-card is a flex ROW whose arrow floats right on margin-left:auto — a body without
   flex:1 collapses to min-content, which is exactly how the first cut broke. */
.legal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.legal-card-body { flex: 1; min-width: 0; }
.legal-card-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--faint);
  margin-top: 6px;
}

.app-card-empty {
  border: 2px dashed var(--input);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--faint);
  font-style: italic;
}

/* -------------------------------------------------------- screenshots --- */

.shots {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin-top: 16px;
}

.shot {
  border: 2px dashed var(--dash);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 380px;
  overflow: hidden;
}
.shot-narrow { flex: 0 1 321px; }
.shot-wide { flex: 1 1 480px; }

/* A filled shot is sized by its image, never by the placeholder's empty-card
   minimum — four wide screenshots must each read at browser width, not float
   inside fixed frames. */
.shot-filled {
  border: 1px solid var(--hair);
  background: var(--card);
  padding: 0;
  min-height: 0;
  display: block;
}
.shot-filled img { border-radius: 11px 11px 0 0; width: 100%; height: auto; display: block; }
.shot-filled { margin: 0; transition: box-shadow 0.15s ease, transform 0.15s ease; }
.shot-filled:hover,
.shot-filled:focus-within { box-shadow: 0 6px 24px rgba(60, 30, 5, 0.14); transform: translateY(-1px); }
.shot-zoom { display: block; cursor: zoom-in; }

/* The visible explanation under each shot. Sixteen settings windows look alike
   at thumbnail size; the caption is what tells them apart. */
.shot-note {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  padding: 10px 14px 12px;
  border-top: 1px solid var(--hair);
  text-wrap: pretty;
}
.shot-note b { color: var(--ink); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .shot-filled { transition: none; }
  .shot-filled:hover { transform: none; }
}

/* CSS-only lightbox: the overlay opens on :target — no JavaScript, CSP intact.
   Backdrop and the corner glyph both link back to the gallery anchor to close. */
.zoom {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(22, 13, 6, 0.87);
  padding: 3vmin;
  align-items: center;
  justify-content: center;
}
.zoom:target { display: flex; }
.zoom-backdrop { position: absolute; inset: 0; }
.zoom img {
  position: relative;
  max-width: 94vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5);
}
.zoom-close {
  position: absolute;
  top: 10px;
  right: 16px;
  padding: 8px 12px;
  font-size: 32px;
  line-height: 1;
  color: #f6efe4;
  text-decoration: none;
}
.zoom-close:hover { color: #fff; }

.shot-icon { font-size: 30px; opacity: 0.45; }
.shot-caption {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--faint);
  text-align: center;
  line-height: 1.5;
}

.shots-more { margin-top: 1.2rem; }

/* ------------------------------------------------------------- features --- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}

.feature {
  padding: 22px 24px;
  border-right: 1px solid var(--hair);
}
.feature:last-child { border-right: 0; }

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}
.feature p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 5px 0 0;
}

/* ------------------------------------------------------------- buy card --- */

.buy-wrap {
  border-top: 2px solid var(--ink);
  padding: 40px var(--gutter);
  display: flex;
  justify-content: center;
}

.buy-card {
  width: 520px;
  max-width: 100%;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--hair);
  padding: 28px 30px;
  box-shadow: 0 14px 38px rgba(51, 38, 26, 0.14);
  font-family: var(--sans);
}

.price-row { display: flex; align-items: baseline; gap: 10px; }
.price {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--serif);
}
.price-per { font-size: 14px; color: var(--faint); }

.badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 5px;
  padding: 3px 8px;
  letter-spacing: 0.6px;
}

.price-sub { font-size: 12.5px; color: var(--faint); margin-top: 6px; }

.hr { height: 1px; background: var(--hair); margin: 16px 0; border: 0; }

.checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink);
  list-style: none;
  margin: 0;
  padding: 0;
}
.checks li { display: flex; gap: 9px; }
.checks li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
}

/* One form, two submit buttons via formaction — so the agreement is asked for ONCE
   rather than once per payment method, and still needs no JavaScript. */
.buy-form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.buy-buttons { display: flex; gap: 10px; margin-top: 20px; align-items: stretch; }
.buy-form .buy-buttons { margin-top: 0; }

/* The agreement checkbox. `required` on the input means the browser enforces it with no
   JavaScript; the server enforces it again, because a client-side check is a courtesy
   rather than a control. */
.agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--card-text);
  cursor: pointer;
}
.agree input { margin: 2px 0 0; flex: none; accent-color: var(--accent); }
.agree a { color: var(--accent); }

.btn-buy {
  flex: 1;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 0;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.btn-square { background: var(--ink); color: var(--page); }
.btn-square:hover { background: #241a12; }
.btn-paypal { background: var(--paypal); color: #111; }
.btn-paypal:hover { background: #f0b52c; }
.btn-buy[disabled] { opacity: 0.45; cursor: not-allowed; }

.buy-note {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--faint);
  text-align: center;
}

/* -------------------------------------------------------------- support --- */

.two-col {
  display: flex;
  gap: 44px;
  padding: 48px var(--gutter) 56px;
}
.col-main { flex: 1.2; }
.col-side { flex: 0.8; }

.faq {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  border-top: 1px solid var(--hair);
}
.faq-item {
  padding: 16px 2px;
  border-bottom: 1px solid var(--hair);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item h2 { font-size: 16px; font-weight: 700; margin: 0; }
.faq-item p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 5px 0 0;
}

/* ---------------------------------------------------------------- forms --- */

.form-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 10px 28px rgba(51, 38, 26, 0.12);
  font-family: var(--sans);
}
.form-card-center { padding: 22px 24px; margin-top: 24px; }

.fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.form-card-center .fields { margin-top: 0; }

.field {
  width: 100%;
  font-family: var(--sans);
  border: 1px solid var(--input);
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--card-text);
  background: var(--card);
}
.field::placeholder { color: var(--faint); }
.field:focus { border-color: var(--accent); }
.field-tall { height: 88px; resize: vertical; }
.field-lg { padding: 11px 12px; }

select.field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%2357524a' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  padding-right: 30px;
}

.challenge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--card-text);
}
.challenge-center { justify-content: center; }
.challenge input {
  width: 44px;
  text-align: center;
  padding: 8px 10px;
  flex: none;
}

.btn-submit {
  width: 100%;
  font-family: var(--sans);
  background: var(--ink);
  color: var(--page);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 0;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.btn-submit:hover { background: #241a12; }

.form-fine {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--faint);
  line-height: 1.5;
}

.form-error {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: #8a2f21;
  background: #f7e7e2;
  border: 1px solid #e2c3ba;
  border-radius: 7px;
  padding: 9px 12px;
  margin-bottom: 12px;
}

.form-ok {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--card-text);
  background: #eef2e6;
  border: 1px solid #d3ddc2;
  border-radius: 7px;
  padding: 12px 14px;
  line-height: 1.55;
}

/* Support-data paste field (round 44c) */
.field-label { font-size: 13px; margin: 4px 0 0; }
.field-optional { color: var(--faint); font-weight: 400; }
.field-hint { font-size: 12.5px; color: var(--faint); margin: 0 0 2px; }
.field-mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; min-height: 120px; }

/* ------------------------------------------------------ narrow pages --- */

.narrow {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px var(--gutter) 64px;
  text-align: center;
}
.narrow-mid {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px var(--gutter) 56px;
  text-align: center;
}
.narrow-wide {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px var(--gutter) 56px;
}

.narrow .lede, .narrow-mid .lede { max-width: none; }
.narrow .lede { font-size: 14px; margin-top: 10px; }
.narrow-mid .lede { font-size: 15px; line-height: 1.65; margin-top: 14px; }

.fine {
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--faint);
  line-height: 1.6;
}
.fine-lg { font-size: 12.5px; margin-top: 18px; }

/* -------------------------------------------------------------- success --- */

.steps {
  margin-top: 26px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--sans);
  box-shadow: 0 8px 22px rgba(51, 38, 26, 0.1);
}
.steps ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--card-text);
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.5;
}

/* -------------------------------------------------------------- updates --- */

.updates-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.updates-head-copy { flex: 1; }
.updates-sub {
  margin: 6px 0 0;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
}
.btn-download {
  background: var(--ink);
  color: var(--page);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  padding: 13px 22px;
  flex: none;
  text-decoration: none;
}
.btn-download:hover { background: #241a12; color: var(--page); }

.releases {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  border-top: 2px solid var(--ink);
}
.release {
  display: flex;
  gap: 22px;
  padding: 20px 2px;
  border-bottom: 1px solid var(--hair);
}
.release-ver { flex: none; width: 110px; }
.release-ver .num { font-size: 20px; font-weight: 700; }
.release-ver .date {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--faint);
}
.release-ver .release-dl {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.release-ver .release-dl:hover { opacity: 0.75; }
.release-notes {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--card-text);
}
.release-notes ul { margin: 0; padding-left: 18px; }

/* ---------------------------------------------------------------- prose --- */

.prose { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: var(--card-text); }
.prose h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 8px;
}
.prose h2:first-of-type { margin-top: 22px; }
.prose p, .prose li { margin: 0 0 10px; }
.prose ul { padding-left: 20px; margin: 0 0 10px; }
.prose .updated { font-size: 12px; color: var(--faint); margin: 6px 0 0; line-height: 1.7; }
.prose .updated .mono { font-size: 11px; word-break: break-all; }

/* --------------------------------------------------------------- banner --- */

.banner {
  margin: 0;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--card-text);
  background: #fbf3e2;
  border-bottom: 1px solid var(--hair);
  padding: 10px var(--gutter);
  text-align: center;
}

/* ----------------------------------------------------------- responsive --- */

@media (max-width: 980px) {
  .grid-apps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(3), .feature:nth-child(4) { border-top: 1px solid var(--hair); }
}

@media (max-width: 860px) {
  :root { --gutter: 32px; }

  .hero, .two-col {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .hero-side { align-items: flex-start; }
  .display { font-size: 44px; letter-spacing: -0.5px; }
  .lede, .lede-wide { max-width: none; }

  .shots { flex-direction: column; }
  .shot-narrow { flex: 1 1 auto; }
  .shot { min-height: 260px; }

  .updates-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }

  .display { font-size: 34px; }
  .title { font-size: 30px; }
  .title-lg { font-size: 32px; }

  .nav { padding: 16px var(--gutter); }
  .nav-links { gap: 16px; font-size: 11.5px; }

  .grid-apps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-top: 1px solid var(--hair); }
  .feature:first-child { border-top: 0; }

  .btn-row { flex-wrap: wrap; }
  .btn-row .btn { flex: 1 1 auto; }

  .buy-buttons { flex-direction: column; }
  .buy-card { padding: 22px 20px; }

  .narrow, .narrow-mid, .narrow-wide { padding-left: var(--gutter); padding-right: var(--gutter); }

  .footer { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-links { margin-left: 0; }

  .release { flex-direction: column; gap: 8px; }
  .release-ver { width: auto; display: flex; align-items: baseline; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
