/* Webifyr publisher chrome. Parchment only. Breakpoints: 720 / 1024 / 1280. */

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

html {
  color-scheme: light;
  background: var(--bg);
  color: var(--text);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse 70% 42% at 8% -8%, var(--glow-a), transparent 54%),
    radial-gradient(ellipse 52% 34% at 100% 0%, var(--glow-b), transparent 48%),
    var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--r-sm);
}

.skip-link:focus {
  top: 12px;
}

/* —— Lockup: square mark + live DM Sans wordmark —— */

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.lockup:hover {
  color: var(--text);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
}

.brand-word {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  line-height: 1;
  color: var(--text);
}

/* —— Buttons —— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin: 0;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--on-accent);
}

.btn-primary:active {
  background: var(--accent-deep);
}

/* —— Top bar (tablet + desktop). Hidden on phone. —— */

.topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px 32px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.topbar-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.topbar-nav a:hover {
  color: var(--text);
}

/* —— Phone compact lockup in the scroll —— */

.phone-lockup {
  display: flex;
  align-items: center;
  padding: 8px 0 4px;
}

.phone-lockup .brand-mark {
  width: 28px;
  height: 28px;
}

.phone-lockup .brand-word {
  font-size: 18px;
}

/* —— Layout shells —— */

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  width: 100%;
  padding: 8px var(--gutter) calc(var(--tabbar-h) + 24px);
}

.page-header {
  padding: 20px 0 8px;
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.page-header .support {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 22px;
}

/* —— Home sales stack —— */

.sales {
  padding-top: 12px;
}

.sales-kicker {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.sales-promise {
  margin: 0 0 10px;
  max-width: var(--measure-sales);
  color: var(--text-dim);
  font-size: 16px;
  line-height: 22px;
}

.sales-stats {
  margin: 0 0 20px;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-frame {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teach {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.teach li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.teach-num {
  color: var(--text-faint);
  font-size: 13px;
  line-height: 22px;
  font-weight: 600;
}

.teach h2 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.teach p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 22px;
}

.home-cta {
  margin: 8px 0 40px;
}

.band-head {
  margin: 0 0 16px;
}

.band-head h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.shelf-count {
  margin-left: 8px;
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 500;
}

.band-head p {
  margin: 6px 0 0;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 20px;
}

.families {
  margin-top: 8px;
}

.family + .family {
  margin-top: 36px;
}

.who-for {
  margin-top: 48px;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.who-card {
  padding: 20px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.who-num {
  display: block;
  margin: 0 0 10px;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}

.who-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
}

.who-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 22px;
}

.proof-rail {
  margin: 8px 0 0;
  padding: 16px 0 4px;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.01em;
}

.spotlight-band {
  margin-top: 48px;
}

.spotlight-card {
  display: block;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 140ms ease, transform 140ms ease, border-color 140ms ease;
}

.spotlight-card:hover {
  transform: translateY(-1px);
  border-color: #a89f91;
  box-shadow: 0 16px 36px rgba(43, 38, 31, 0.12);
}

.plans-band {
  margin-top: 48px;
}

.plans-card {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

.plans-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.plans-card p {
  margin: 0;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 24px;
}

.shelf-support {
  margin: 6px 0 0;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 20px;
}

/* —— Catalog cards —— */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card-grid-lead .app-card:first-child .shot {
  aspect-ratio: 16 / 10;
}

.app-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 140ms ease, transform 140ms ease, border-color 140ms ease;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.app-card:hover {
  transform: translateY(-1px);
  border-color: #a89f91;
  box-shadow: 0 16px 36px rgba(43, 38, 31, 0.12);
}

.shot {
  position: relative;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.shot-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 18% 20%, var(--glow-a), transparent 52%),
    var(--surface-alt);
}

.shot-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  opacity: 0.7;
}

.shot-device {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  max-width: 112px;
  aspect-ratio: 10 / 13;
  transform: translate(-50%, -50%) rotate(-4deg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: rgba(237, 230, 220, 0.42);
  box-shadow: 6px 8px 0 -1px rgba(106, 79, 122, 0.12);
}

.card-name {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.card-status {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 18px;
}

.card-pitch {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 22px;
}

.card-studio {
  margin: 6px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 18px;
}

.card-open {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
}

.card-open::after {
  content: " →";
}

.shelf {
  margin-top: 36px;
}

.page-header + .shelf {
  margin-top: 20px;
}

.page-apps .shelf .band-head {
  margin-bottom: 16px;
}

.page-apps .shelf h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0;
}

/* —— About paper —— */

.paper {
  max-width: 66ch;
}

.paper-aside {
  margin-top: 8px;
}

.paper-aside address,
.paper-aside p {
  margin-bottom: 0;
}

.paper-aside h2 + address,
.paper-aside h2 + p {
  margin-bottom: 12px;
}

.paper h2 {
  margin: 28px 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.paper p,
.paper address {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 26px;
  font-style: normal;
}

.about-cta {
  margin: 28px 0 0;
}

/* —— Forms —— */

.contact-compose,
.delete-compose {
  width: 100%;
}

.form-stage {
  width: 100%;
}

.form-card {
  width: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-form);
}

.form-card label {
  display: block;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-card input,
.form-card textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-alt);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.form-note,
.direct {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 22px;
}

.direct h2 {
  margin: 28px 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* —— Legal article —— */

.article {
  max-width: var(--measure-legal);
}

.article .meta {
  margin: 8px 0 24px;
  color: var(--text-faint);
  font-size: 13px;
}

.article h2 {
  margin: 32px 0 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.article p,
.article li {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 26px;
}

.article ul {
  padding-left: 1.2em;
}

.miss {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100dvh - 220px);
  padding-top: 16px;
}

.miss-stage {
  max-width: 28rem;
}

.miss h1 {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.miss p {
  color: var(--text-dim);
  margin: 12px 0 20px;
}

/* —— Footer (above tab bar on phone) —— */

.site-footer {
  padding: 28px var(--gutter) calc(var(--tabbar-h) + 12px);
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 13px;
  line-height: 20px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 10px;
}

.site-footer a {
  color: var(--text-dim);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

/* —— Phone sticky footer tabs —— */

.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: calc(56px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
  color: var(--text-faint);
  text-decoration: none;
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}

.tabbar a[aria-current="page"] {
  color: var(--text);
  box-shadow: inset 0 2px 0 var(--accent);
}

.tabbar a[aria-current="page"] svg {
  color: var(--accent);
}

.tabbar svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.version-stamp {
  display: none;
}

/* —— Tablet 720–1199: top bar, no tabs, 2-col catalog —— */

@media (min-width: 720px) {
  :root,
  html.light {
    --gutter: 28px;
  }

  .phone-lockup,
  .tabbar {
    display: none;
  }

  .topbar {
    display: flex;
  }

  .page-main {
    padding: 28px var(--gutter) 48px;
    max-width: none;
  }

  .page-header h1,
  .sales-kicker {
    font-size: 30px;
    line-height: 36px;
  }

  .sales {
    max-width: 42rem;
  }

  .hero-frame {
    max-width: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .card-grid-lead .app-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.85fr);
    gap: 22px;
    align-items: center;
  }

  .card-grid-lead .app-card:first-child .shot {
    margin: 0;
    aspect-ratio: 16 / 10;
  }

  .spotlight-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.85fr);
    gap: 24px;
    align-items: center;
    padding: 20px;
  }

  .spotlight-card .shot {
    margin: 0;
    aspect-ratio: 16 / 9;
  }

  .spotlight-card .card-name {
    font-size: 22px;
    line-height: 28px;
  }

  .proof-rail {
    padding: 20px 0 8px;
  }

  .plans-card {
    padding: 28px 24px;
  }

  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .who-card {
    padding: 22px 20px;
  }

  .who-grid .who-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .form-stage {
    max-width: 560px;
    margin: 8px auto 0;
  }

  .page-contact .page-header,
  .page-contact .direct {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .miss {
    min-height: calc(100dvh - 200px);
    align-items: center;
    padding-top: 48px;
  }

  .miss-stage {
    text-align: left;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px 32px;
  }

  .site-footer nav {
    margin-top: 0;
  }
}

/* —— 1024: 3-col catalog, Home may content-split —— */

@media (min-width: 1024px) {
  :root,
  html.light {
    --gutter: 36px;
  }

  /* 1024 Home is a sales band (copy | hero), then full-width family shelves.
     Not the old featured-in-the-right-column pinch, and not auth panes. */
  .home-compose {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-compose .sales {
    display: grid;
    grid-template-columns: minmax(260px, 36ch) minmax(0, 1fr);
    grid-template-areas:
      "kicker hero"
      "promise hero"
      "stats hero"
      "cta hero"
      "teach teach";
    column-gap: 40px;
    row-gap: 0;
    align-items: start;
    max-width: none;
    padding-top: 4px;
  }

  .home-compose .sales-kicker { grid-area: kicker; }
  .home-compose .sales-promise { grid-area: promise; }
  .home-compose .sales-stats { grid-area: stats; }
  .home-compose .home-cta { grid-area: cta; margin: 16px 0 24px; }
  .home-compose .hero-frame {
    grid-area: hero;
    margin: 0;
    min-height: 0;
    align-self: stretch;
  }
  .home-compose .teach {
    grid-area: teach;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
  }

  .families,
  .who-for,
  .proof-rail,
  .spotlight-band,
  .plans-band {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .family + .family {
    margin-top: 44px;
  }

  .families .card-grid,
  .page-apps .card-grid-lead {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid-lead .app-card:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .card-grid-lead .app-card:first-child .shot {
    flex: 1;
    margin: 0 0 14px;
    min-height: 240px;
    height: auto;
    aspect-ratio: auto;
  }

  .card-grid-lead .app-card:first-child .shot img {
    height: 100%;
    object-fit: cover;
  }

  .card-grid-lead .app-card:first-child .card-name {
    font-size: 22px;
    line-height: 28px;
  }

  .who-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .who-grid .who-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .page-apps .page-main,
  .page-about .page-main {
    max-width: calc(var(--catalog-max) + 72px);
  }

  .page-apps .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .paper-compose {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
    gap: 48px;
    align-items: start;
    max-width: var(--catalog-max);
  }

  .paper-compose .paper-primary,
  .paper-compose .paper-aside {
    max-width: none;
  }

  .paper-aside {
    margin-top: 0;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
  }

  .paper-aside h2:first-child {
    margin-top: 0;
  }

  .article {
    margin-right: auto;
  }
}

/* —— Desktop 1200+: composed publisher, version stamp —— */

@media (min-width: 1200px) {
  .topbar {
    min-height: 72px;
    padding: 14px 48px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-word {
    font-size: 22px;
  }

  .page-main {
    padding: 40px 48px 72px;
  }

  .sales-kicker {
    font-size: 34px;
    line-height: 42px;
  }

  /* Desktop Home: sales band (copy | hero) then full-width Apps + SaaS families.
     Not a 1024 pinch, and not auth panes. */
  .home-compose {
    display: block;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-compose .sales {
    grid-template-columns: minmax(280px, 38ch) minmax(0, 1fr);
    column-gap: 56px;
    padding-top: 8px;
  }

  .home-compose .home-cta {
    margin: 16px 0 28px;
  }

  .families,
  .who-for,
  .proof-rail,
  .spotlight-band,
  .plans-band {
    max-width: 1200px;
  }

  .families {
    margin-top: 56px;
  }

  .who-for,
  .spotlight-band,
  .plans-band {
    margin-top: 56px;
  }

  .families .card-grid,
  .page-apps .card-grid-lead {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .card-grid-lead .app-card:first-child {
    padding: 20px;
  }

  .card-grid-lead .app-card:first-child .shot {
    min-height: 320px;
  }

  .spotlight-card {
    padding: 24px;
    border-radius: var(--r-xl);
  }

  .spotlight-card .card-name {
    font-size: 26px;
    line-height: 32px;
  }

  .page-apps .page-main,
  .page-about .page-main {
    max-width: calc(var(--catalog-max) + 96px);
    margin-left: auto;
    margin-right: auto;
  }

  .contact-compose {
    display: grid;
    grid-template-columns: minmax(240px, 34ch) minmax(400px, 560px);
    grid-template-areas:
      "header form"
      "direct form";
    column-gap: 56px;
    row-gap: 8px;
    align-items: start;
    max-width: 960px;
  }

  .contact-compose .page-header {
    grid-area: header;
    max-width: none;
    margin: 0;
    padding-top: 0;
  }

  .contact-compose .form-stage {
    grid-area: form;
    margin: 0;
    max-width: 560px;
  }

  .contact-compose .direct {
    grid-area: direct;
    max-width: none;
    margin: 16px 0 0;
  }

  .delete-compose .form-stage {
    margin: 0;
    max-width: 560px;
  }

  .delete-compose {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(400px, 560px);
    gap: 48px;
    align-items: start;
    max-width: 1120px;
  }

  .delete-compose .article {
    max-width: none;
  }

  .version-stamp {
    display: block;
    position: fixed;
    right: 16px;
    bottom: 16px;
    margin: 0;
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 600;
    pointer-events: none;
    z-index: 20;
  }

  .site-footer {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-card,
  .spotlight-card,
  .btn {
    transition: none;
    transform: none;
  }
}
