/* Stacker Pro — marketing site
   Distinctive, refined macOS product feel */

:root {
  --ink: #14141c;
  --ink-soft: #3a3a48;
  --muted: #6b6b7b;
  --line: rgba(20, 20, 28, 0.08);
  --line-strong: rgba(20, 20, 28, 0.14);
  --bg: #f6f4ef;
  --bg-elevated: #ffffff;
  --bg-soft: #eeece6;
  --accent: #3d3bff;
  --accent-deep: #2a28d4;
  --accent-soft: #e8e7ff;
  --accent-wash: rgba(61, 59, 255, 0.08);
  --warm: #ff8a4c;
  --success: #1f8a5b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 28, 0.04), 0 4px 12px rgba(20, 20, 28, 0.04);
  --shadow-md: 0 8px 28px rgba(20, 20, 28, 0.08), 0 2px 8px rgba(20, 20, 28, 0.04);
  --shadow-lg: 0 24px 60px rgba(42, 40, 212, 0.14), 0 8px 24px rgba(20, 20, 28, 0.06);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2f1ec;
    --ink-soft: #c8c7d0;
    --muted: #9a99a8;
    --line: rgba(242, 241, 236, 0.1);
    --line-strong: rgba(242, 241, 236, 0.16);
    --bg: #101018;
    --bg-elevated: #1a1a24;
    --bg-soft: #16161f;
    --accent: #7b79ff;
    --accent-deep: #9b99ff;
    --accent-soft: #24233a;
    --accent-wash: rgba(123, 121, 255, 0.12);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(123, 121, 255, 0.08);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--accent-wash), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 138, 76, 0.06), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.brand__mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.brand__name {
  font-size: 1.05rem;
}

.brand__name span {
  font-weight: 500;
  color: var(--muted);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--ink);
}

@media (min-width: 820px) {
  .nav__links {
    display: flex;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(61, 59, 255, 0.28);
}

.btn--primary:hover {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 14px 28px rgba(61, 59, 255, 0.34);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  color: var(--ink);
  background: var(--bg-elevated);
  border-color: var(--line-strong);
}

.btn--secondary {
  background: var(--bg-elevated);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line-strong));
}

.btn--lg {
  min-height: 3.25rem;
  padding-inline: 1.45rem;
  font-size: 1.02rem;
}

.nav__cta.btn {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 820px) {
  .nav__cta.btn {
    display: inline-flex;
  }
}

/* —— Hero —— */
.hero {
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: clip;
}

.hero__grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.65rem);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
}

.hero__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.hero__note a {
  color: inherit;
  font-weight: 600;
}

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

.hero__visual {
  position: relative;
  min-height: 320px;
}

.hero__visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(61, 59, 255, 0.12));
}

/* CSS window stack (fallback / decorative layer) */
.window-stack {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 5 / 4;
  margin-inline: auto;
}

.window-stack__pane {
  position: absolute;
  inset: auto;
  width: 72%;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.window-stack__pane::before {
  content: "";
  display: block;
  height: 28px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  background-image:
    radial-gradient(circle at 14px 14px, #ff6b6b 4px, transparent 4.5px),
    radial-gradient(circle at 28px 14px, #ffd93d 4px, transparent 4.5px),
    radial-gradient(circle at 42px 14px, #6bcb77 4px, transparent 4.5px);
}

.window-stack__pane::after {
  content: "";
  display: block;
  margin: 1.1rem 1rem;
  height: 55%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--accent-soft), transparent 70%),
    repeating-linear-gradient(
      180deg,
      var(--line-strong) 0 8px,
      transparent 8px 18px
    );
  opacity: 0.85;
}

.window-stack__pane--back {
  top: 8%;
  left: 4%;
  transform: rotate(-7deg);
  opacity: 0.72;
  background: var(--accent-soft);
}

.window-stack__pane--mid {
  top: 18%;
  left: 16%;
  transform: rotate(2.5deg);
  opacity: 0.9;
}

.window-stack__pane--front {
  top: 28%;
  left: 26%;
  width: 74%;
  z-index: 2;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line-strong));
  box-shadow: var(--shadow-lg);
}

.window-stack__pane--front::before {
  background: var(--accent);
  border-bottom-color: transparent;
  background-image:
    radial-gradient(circle at 14px 14px, #ff8a8a 4.5px, transparent 5px),
    radial-gradient(circle at 30px 14px, #ffe066 4.5px, transparent 5px),
    radial-gradient(circle at 46px 14px, #7ddb8c 4.5px, transparent 5px);
}

.window-stack__badge {
  position: absolute;
  right: 2%;
  bottom: 6%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.window-stack__badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

/* —— Sections —— */
section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* Problem / Solution */
.problem {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.problem__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
}

.card--accent {
  background: linear-gradient(160deg, var(--bg-elevated), var(--accent-soft));
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
}

.card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card__kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

/* How it works */
.steps {
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.5rem 1.35rem 1.55rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Features */
.features {
  background:
    radial-gradient(700px 360px at 50% 0%, var(--accent-wash), transparent 70%),
    var(--bg);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.feature:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.95rem;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Comparison */
.compare-wrap {
  overflow-x: auto;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare th,
.compare td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.compare thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--bg-soft);
}

.compare th:first-child,
.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 42%;
}

.compare tbody tr:last-child td,
.compare tbody tr:last-child th {
  border-bottom: 0;
}

.compare .col-pro {
  background: var(--accent-wash);
}

.compare thead .col-pro {
  color: var(--accent-deep);
  font-weight: 800;
}

.check,
.dash {
  font-weight: 700;
}

.check {
  color: var(--success);
}

.dash {
  color: var(--muted);
}

.compare-footnote {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Pricing */
.pricing {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.price-card {
  max-width: 520px;
  margin-inline: auto;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: 22px;
  background: var(--bg-elevated);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.price-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.price-card__amount {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.35rem;
}

.price-card__amount small {
  font-size: 0.4em;
  font-family: var(--font);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 0.2rem;
}

.price-card__tagline {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.price-card__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  text-align: left;
}

.price-card__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 2px var(--bg-elevated), 0 0 0 1px var(--accent);
}

.price-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.price-card__fine {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Trust / Requirements */
.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.trust-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.trust-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* CTA band */
.cta-band {
  padding: 0 0 4.5rem;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #2a28d4 0%, #3d3bff 45%, #6b5cff 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 800px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    padding: 2.25rem 2.5rem;
  }
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
}

.cta-band .btn--primary {
  background: #fff;
  color: #2a28d4;
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: #f2f1ff;
  color: #1f1db0;
}

.cta-band .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer__brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 28rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
}

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

.footer__meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Honest-limits callout on the marketing page */
.callout {
  margin: 1.75rem 0 0;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.callout h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.callout a {
  font-weight: 650;
}

/* Legal / help articles */
.prose-page {
  padding: 2.25rem 0 4rem;
}

.prose {
  max-width: 42rem;
  margin-inline: auto;
}

.prose h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.4rem;
}

.prose .legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.75rem;
}

.prose h2 {
  font-size: 1.15rem;
  margin: 1.85rem 0 0.55rem;
}

.prose h3 {
  font-size: 1.02rem;
  margin: 1.35rem 0 0.4rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

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

.prose li + li {
  margin-top: 0.35rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 0.75rem 0 1.25rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose code {
  font-family: var(--mono);
  font-size: 0.86em;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.footer__legal a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 550;
}

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

/* Utilities */
.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;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .feature {
    transition: none;
  }

  .btn:hover,
  .feature:hover {
    transform: none;
  }
}
