/* Generated by _src/build.mjs from _src/templates/apps/redesign-ai/styles.css — do not edit directly. */
:root {
  color-scheme: light dark;
  --bg: #f4f6f7;
  --bg-raised: #ffffff;
  --bg-sunken: #e8edef;
  --ink: #0e1b21;
  --ink-2: #3b4c54;
  --ink-3: #56666e;
  --line: #d3dcdf;
  --line-strong: #b9c6cb;
  --primary: #123b4a;
  --primary-ink: #ffffff;
  --link: #135368;
  --band: #123b4a;
  --band-deep: #0c2b37;
  --band-ink: #f1f6f7;
  --band-ink-2: #bfd1d8;
  --band-line: rgba(255, 255, 255, 0.16);
  --brass: #e0a458;
  --brass-soft: rgba(224, 164, 88, 0.22);
  --tag-bg: rgba(8, 22, 28, 0.74);
  --shadow: 0 1px 2px rgba(8, 20, 25, 0.06), 0 18px 40px -18px rgba(8, 20, 25, 0.32);
  --radius-lg: 18px;
  --radius: 12px;
  --radius-sm: 8px;
  --serif: ui-serif, "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --gutter: 16px;
  --max: 1200px;
  --section-space: 72px;
}

@media (min-width: 720px) {
  :root { --gutter: 28px; --section-space: 96px; }
}

@media (min-width: 1100px) {
  :root { --gutter: 40px; --section-space: 120px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1519;
    --bg-raised: #101e24;
    --bg-sunken: #0d191e;
    --ink: #e8eff1;
    --ink-2: #b5c4ca;
    --ink-3: #93a6ae;
    --line: #22343c;
    --line-strong: #30474f;
    --primary: #9bcbda;
    --primary-ink: #07161b;
    --link: #9bcbda;
    --band: #0d2129;
    --band-deep: #081820;
    --band-ink: #eaf2f4;
    --band-ink-2: #a9bfc7;
    --band-line: rgba(255, 255, 255, 0.12);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 22px 44px -20px rgba(0, 0, 0, 0.7);
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

@media (min-width: 900px) {
  html { scroll-padding-top: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: break-word;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--link); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.012em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem); line-height: 1.08; margin: 0; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.9rem); line-height: 1.12; margin: 0; }
h3 { font-size: 1.25rem; line-height: 1.3; margin: 0; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: calc(820px + 2 * var(--gutter)); }

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 30;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--brass);
  color: #0c2b37;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--band);
  background: color-mix(in srgb, var(--band) 94%, transparent);
  color: var(--band-ink);
  border-bottom: 1px solid var(--band-line);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "brand lang" "nav nav";
  align-items: center;
  column-gap: 16px;
  padding-top: 10px;
}
.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.brand-mark { width: 32px; height: 32px; border-radius: 8px; flex: none; box-shadow: 0 0 0 1px var(--band-line); }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; white-space: nowrap; }
.section-nav {
  grid-area: nav;
  display: flex;
  gap: 4px;
  margin-inline: calc(-1 * var(--gutter));
  padding: 6px var(--gutter) 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent 100%);
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav a {
  flex: none;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--band-ink-2);
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.section-nav a:hover { color: var(--band-ink); background: var(--band-line); }
.lang-switch { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; border: 1px solid var(--band-line); }
.site-header .lang-switch { grid-area: lang; }
.lang-switch a {
  min-width: 40px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--band-ink-2);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
}
.lang-switch a:hover { color: var(--band-ink); }
.lang-switch a[aria-current="page"] { background: var(--band-ink); color: var(--band); }

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav lang";
    padding-block: 12px;
  }
  .section-nav { justify-content: flex-end; margin: 0; padding: 0 8px 0 0; -webkit-mask-image: none; mask-image: none; }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 650;
  text-decoration: none;
}
.button-primary { background: var(--brass); color: #0c2b37; }
.button-primary:hover { background: #e9b576; }
.store-cta { margin-top: 28px; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--band-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--band-ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}
.store-pill::before { content: ""; flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px var(--brass-soft); }

.hero {
  position: relative;
  padding: 36px 0 var(--section-space);
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(224, 164, 88, 0.14), transparent 60%),
    linear-gradient(180deg, var(--band) 0%, var(--band-deep) 100%);
  color: var(--band-ink);
}
.hero-grid { display: flex; flex-direction: column; }
.hero-copy { display: contents; }
.hero .eyebrow, .hero h1 { order: 1; }
.hero .ba-hero { order: 2; margin-top: 28px; }
.hero-lede, .hero .store-cta { order: 3; }
.hero h1 { color: var(--band-ink); max-width: 19ch; text-wrap: balance; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--band-ink-2);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brass); flex: none; }
.hero-lede { margin: 24px 0 0; max-width: 30em; color: var(--band-ink-2); font-size: 1.15rem; }
.hero .ba figcaption { color: var(--band-ink-2); }
.hero .ba-frame { box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08); }

@media (min-width: 900px) {
  .hero { padding-top: 64px; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: center; }
  .hero-copy { display: block; }
  .hero .ba-hero { margin-top: 0; }
  .eyebrow { font-size: 0.8rem; letter-spacing: 0.12em; }
}

.ba { margin: 0; }
.ba-frame {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-sunken);
  box-shadow: var(--shadow);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  isolation: isolate;
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-tag {
  position: absolute;
  top: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(8, 22, 28, 0.18);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 6px 18px rgba(8, 22, 28, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.9);
}
.ba-handle::before, .ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-block: 6px solid transparent;
  transform: translateY(-50%);
}
.ba-handle::before { left: 11px; border-right: 8px solid #0c2b37; }
.ba-handle::after { right: 11px; border-left: 8px solid #0c2b37; }
.ba-frame.is-dragging .ba-handle { transform: translate(-50%, -50%) scale(1.06); }
.ba-range {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}
.ba-range:focus-visible ~ .ba-divider .ba-handle { outline: 3px solid var(--brass); outline-offset: 5px; }
.ba figcaption { margin-top: 12px; color: var(--ink-3); font-size: 0.88rem; line-height: 1.5; }

.section { padding-block: var(--section-space); }
.section-raised { background: var(--bg-raised); }
.section-band { background: linear-gradient(180deg, var(--band) 0%, var(--band-deep) 100%); color: var(--band-ink); }
.section-band h2, .section-band h3 { color: var(--band-ink); }
.section-band .section-line, .section-band figcaption { color: var(--band-ink-2); }
.section-title { margin-bottom: 32px; }
.section-title::before { content: ""; display: block; width: 36px; height: 2px; margin-bottom: 20px; background: var(--brass); }
.section-line { margin: 0; color: var(--ink-2); font-size: 1.1rem; max-width: 34em; }

.tool-tabs {
  display: flex;
  gap: 8px;
  margin: 0 calc(-1 * var(--gutter)) 28px;
  padding: 4px var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gutter);
}
.tool-tabs::-webkit-scrollbar { display: none; }
.tool-tab {
  flex: none;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-raised);
  color: var(--ink-2);
  font: 600 0.95rem/1.2 var(--sans);
  cursor: pointer;
  scroll-snap-align: start;
}
.tool-tab:hover { border-color: var(--ink-3); color: var(--ink); }
.tool-tab[aria-selected="true"] { background: var(--primary); border-color: var(--primary); color: var(--primary-ink); }
.tool-panel { display: grid; gap: 28px; }
.js .tool-panel:not(.is-active) { display: none; }
.no-js .tool-tabs { display: none; }
.no-js .tool-panel + .tool-panel { margin-top: 64px; }
.tool-line {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  line-height: 1.3;
  color: var(--ink);
}
.tool-loop { margin-top: 24px; max-width: 380px; }

@media (min-width: 900px) {
  .tool-tabs { margin-inline: 0; padding-inline: 0; flex-wrap: wrap; overflow: visible; }
  .tool-panel { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
}

.loop { margin: 0; }
.loop-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-sunken); box-shadow: var(--shadow); }
.loop-frame video { width: 100%; height: 100%; object-fit: cover; }
.loop figcaption { margin-top: 10px; color: var(--ink-3); font-size: 0.86rem; }
.video-toggle {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--tag-bg);
  color: #ffffff;
  cursor: pointer;
}
.video-toggle:hover { background: rgba(8, 22, 28, 0.9); }
.video-toggle-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-block: 8px solid transparent;
  border-left: 13px solid currentColor;
}
.is-playing .video-toggle-icon {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  border-inline: 4px solid currentColor;
}
.no-js .video-toggle { display: none; }

.styles-viewer { display: grid; gap: 32px; }
.ba-square .ba-frame { max-width: 600px; }
.segmented {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 26px;
  padding: 4px;
  border-radius: 999px;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
}
.segment, .chip {
  min-height: 40px;
  border-radius: 999px;
  font: 600 0.93rem/1.2 var(--sans);
  cursor: pointer;
}
.segment { padding: 8px 18px; border: 0; background: transparent; color: var(--ink-2); }
.segment[aria-pressed="true"] { background: var(--bg-raised); color: var(--ink); box-shadow: 0 1px 3px rgba(8, 20, 25, 0.18); }
.style-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.style-chips[hidden] { display: none; }
.chip { padding: 8px 14px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink-2); }
.chip:hover { border-color: var(--ink-3); color: var(--ink); }
.chip[aria-pressed="true"] { border-color: var(--primary); background: var(--primary); color: var(--primary-ink); }
.no-js .segmented { display: none; }

@media (min-width: 900px) {
  .styles-viewer { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 56px; align-items: start; }
  .style-chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .chip { text-align: center; }
}

.walkthrough-grid { display: grid; gap: 32px; }
.walkthrough-copy .section-title { margin-bottom: 16px; }
.walkthrough-video .loop-frame { border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08); }
.walkthrough-video figcaption { color: var(--band-ink-2); }

@media (min-width: 900px) {
  .walkthrough-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 56px; align-items: center; }
}

.steps-grid { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  counter-increment: step;
}
.step > * { grid-column: 2; }
.step::before {
  content: counter(step);
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.step h3 { font-size: 1.2rem; align-self: center; }
.step p { margin: 4px 0 0; color: var(--ink-2); font-size: 0.97rem; }


@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .step { padding: 24px; }
}

.plan-grid { display: grid; gap: 16px; }
.plan { padding: 22px 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg); }
.plan-featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow); background: var(--bg-raised); }
.plan h3 { font-size: 1.4rem; }
.fineprint { margin: 20px 0 0; color: var(--ink-3); font-size: 0.9rem; }
.checklist { margin: 16px 0 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 7px 0 7px 30px; color: var(--ink-2); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(-45deg);
}

@media (min-width: 720px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  padding: 20px 44px 20px 0;
  font-weight: 650;
  font-size: 1.05rem;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-answer { padding: 0 0 22px; color: var(--ink-2); }
.faq-answer p { margin: 0; max-width: 62ch; }

.section-closing { text-align: center; }
.closing { display: flex; flex-direction: column; align-items: center; }
.closing-icon { width: 96px; height: 96px; margin-bottom: 26px; border-radius: 22px; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.7); }
.closing h2 { max-width: 18ch; }
.closing .store-cta { margin-top: 24px; }

.legal {
  max-width: calc(70ch + 2 * var(--gutter));
  padding-top: 48px;
  padding-bottom: 88px;
}
.legal h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); margin-bottom: 12px; }
.legal h2 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.65rem); margin: 2.2em 0 0.6em; scroll-margin-top: 140px; }
.legal h3 { font-size: 1.15rem; margin: 1.7em 0 0.5em; }
.legal p, .legal ul, .legal ol, .legal dl { margin: 0 0 1.05em; }
.legal ul, .legal ol { padding-left: 1.3em; }
.legal li { margin-bottom: 0.45em; }
.legal li::marker { color: var(--ink-3); }
.legal strong { font-weight: 650; }
.legal em { font-style: normal; font-weight: 600; }
.legal code { font-size: 0.92em; padding: 0.1em 0.35em; border-radius: 4px; background: var(--bg-sunken); }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.legal blockquote { margin: 1.4em 0; padding-left: 18px; border-left: 3px solid var(--brass); color: var(--ink-2); }
.legal dt { font-weight: 650; }
.legal dd { margin: 0 0 0.8em; color: var(--ink-2); }
.lede { font-size: 1.12rem; color: var(--ink-2); }
.updated {
  color: var(--ink-3);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8em;
}
.callout {
  margin: 1.8em 0;
  padding: 6px 22px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  background: var(--bg-raised);
}
.callout h2 { margin-top: 0.9em; }
.callout > :last-child { margin-bottom: 0; }
p.callout { padding: 16px 22px; }
.callout-warn { font-weight: 500; }
.legal table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 0 0 1.4em;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.legal th, .legal td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal th { background: var(--bg-sunken); font-weight: 650; }
.legal .faq { border-top: 1px solid var(--line); margin-bottom: 1.4em; }
.legal .faq details { border-bottom: 1px solid var(--line); }
.legal .faq summary { position: relative; padding: 14px 36px 14px 0; font-weight: 650; list-style: none; cursor: pointer; }
.legal .faq summary::-webkit-details-marker { display: none; }
.legal .faq summary::after { content: "+"; position: absolute; right: 6px; top: 12px; color: var(--ink-3); font-weight: 700; }
.legal .faq details[open] summary::after { content: "\2212"; }
.legal .faq details > :not(summary) { color: var(--ink-2); }
.legal ol.steps { padding-left: 0; list-style: none; counter-reset: step; }
.legal ol.steps > li { position: relative; padding-left: 42px; margin-bottom: 0.9em; counter-increment: step; }
.legal ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer { padding: 56px 0 28px; border-top: 1px solid var(--band-line); background: var(--band-deep); color: var(--band-ink-2); font-size: 0.93rem; }
.site-footer a { color: var(--band-ink); }
.footer-grid { display: grid; gap: 32px; }
.footer-brand .brand { color: var(--band-ink); margin-bottom: 14px; }
.footer-brand p { max-width: 36em; margin: 0 0 10px; }
.footer-status { color: var(--band-ink); font-weight: 600; }
.footer-heading { margin: 0 0 10px; color: var(--band-ink); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--band-line);
}
.footer-bottom p { margin: 0; }

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr); gap: 48px; }
}
