:root {
  color-scheme: light;
  --paper: #f3f2ed;
  --sheet: #fbfaf7;
  --ink: #14171a;
  --slate: #4f5954;
  --line: #bdb8ac;
  --mist: #e8e7e1;
  --signal: #b8201d;
  --verified: #31523d;
  --white: #ffffff;
  --max: 80rem;
  --measure: 62ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.75rem, 9vw, 7rem);
  --font-sans: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --shadow-document: 0 28px 80px rgba(20, 23, 26, 0.1);
  --shadow-lift: 0 12px 36px rgba(20, 23, 26, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(20, 23, 26, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 32px;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--sheet);
  background: var(--ink);
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--sheet);
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

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

.section {
  padding-block: var(--section);
  border-bottom: 1px solid var(--line);
}

.section--sheet {
  background: var(--sheet);
}

.section--ink {
  color: var(--sheet);
  background: var(--ink);
}

.section-header {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.section-header > :last-child {
  max-width: var(--measure);
  color: var(--slate);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section--ink .section-header > :last-child {
  color: #d5d2c9;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--signal {
  color: var(--signal);
}

.eyebrow--verified {
  color: var(--verified);
}

.section--ink .eyebrow {
  color: #d5d2c9;
}

.rule-label::before {
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  margin-right: 0.75rem;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.display {
  max-width: 14ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.7rem, 7vw, 4.55rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.heading-xl {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.heading-lg {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.heading-md {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.2;
}

.lead {
  max-width: var(--measure);
  margin-bottom: 0;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.section--ink .lead {
  color: #d5d2c9;
}

.text-slate {
  color: var(--slate);
}

.text-verified {
  color: var(--verified);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(189, 184, 172, 0.85);
  background: rgba(243, 242, 237, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand-dot {
  color: var(--signal);
}

.desktop-nav,
.header-actions,
.language-nav {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a,
.language-nav a,
.language-nav span {
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--signal);
}

.header-actions {
  gap: 1.25rem;
}

.language-nav {
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.language-nav [aria-current="page"] {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

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

.mobile-panel {
  position: absolute;
  top: 3rem;
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--sheet);
  box-shadow: var(--shadow-lift);
}

.mobile-panel nav {
  display: grid;
  gap: 0.9rem;
}

.mobile-panel a {
  font-weight: 650;
  text-decoration: none;
}

.mobile-panel .language-nav {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--ink);
  color: var(--sheet);
  background: var(--ink);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  border-color: var(--signal);
  background: var(--signal);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
}

.button--secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--sheet);
}

.button--light {
  border-color: var(--sheet);
  color: var(--ink);
  background: var(--sheet);
}

.button--light:hover {
  border-color: var(--paper);
  background: var(--paper);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.hero-copy {
  min-width: 0;
}

.trustline {
  margin: 1.5rem 0 0;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
}

.dossier {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--sheet);
  box-shadow: var(--shadow-document);
}

.dossier::before {
  position: absolute;
  z-index: -1;
  inset: -1.1rem -1.1rem 1.1rem 1.1rem;
  border: 1px solid var(--line);
  content: "";
}

.dossier-head,
.dossier-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
}

.dossier-head {
  border-bottom: 1px solid var(--line);
}

.dossier-head .heading-md {
  margin-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid currentColor;
  color: var(--verified);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dossier-list {
  margin: 0;
}

.dossier-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.dossier-row--limit {
  border-left: 3px solid var(--signal);
}

.dossier-row dt {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.dossier-row dd {
  margin: 0;
}

.dossier-row strong {
  display: block;
  margin-top: 0.2rem;
}

.dossier-foot {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.frame-grid,
.step-grid,
.card-grid,
.price-grid,
.persona-grid,
.fact-grid,
.annotation-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.frame-card,
.step-card,
.feature-card,
.price-card,
.fact-card,
.annotation-card {
  background: var(--sheet);
}

.frame-card,
.step-card,
.feature-card,
.price-card,
.annotation-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.frame-card {
  min-height: 16rem;
}

.frame-number,
.step-number {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.frame-card .heading-md,
.step-card .heading-md,
.feature-card .heading-md {
  margin-top: 3rem;
}

.frame-card p:last-child,
.step-card p:last-child,
.feature-card p:last-child,
.annotation-card p:last-child {
  margin-bottom: 0;
  color: var(--slate);
}

.certificate-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.certificate-shell {
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid rgba(49, 82, 61, 0.72);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0, transparent 0 12px, rgba(49, 82, 61, 0.18) 13px 14px, transparent 15px),
    radial-gradient(circle at 90% 100%, transparent 0 12px, rgba(49, 82, 61, 0.18) 13px 14px, transparent 15px),
    var(--sheet);
  background-size: 30px 30px;
  box-shadow: var(--shadow-document);
}

.certificate {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(49, 82, 61, 0.55);
  background: var(--sheet);
}

.certificate-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 2px solid var(--ink);
}

.certificate-head .heading-lg {
  margin-bottom: 0;
}

.certificate-meta {
  display: grid;
  margin: 0;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.certificate-meta div {
  padding: 0.7rem 0;
}

.certificate-meta dt {
  color: var(--slate);
}

.certificate-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.run-steps {
  margin: 1.5rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.run-steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.run-steps .gate-step {
  padding-left: 0.75rem;
  border-left: 3px solid var(--signal);
}

.certificate-proof {
  display: grid;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.certificate-proof p {
  margin-bottom: 0;
}

.hash {
  overflow-wrap: anywhere;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.qr-demo {
  width: 7rem;
  height: 7rem;
  padding: 0.5rem;
  background: var(--white);
}

.qr-label {
  margin-top: 0.5rem;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.annotation-grid {
  align-self: stretch;
}

.annotation-card .frame-number {
  margin-bottom: 1rem;
}

.feature-card .eyebrow {
  color: var(--signal);
}

.fact-grid {
  margin-top: 2.5rem;
  border-right: 0;
  border-left: 0;
}

.fact-card {
  padding: 1.25rem;
}

.fact-card p {
  margin-bottom: 0;
}

.fact-card strong {
  display: block;
  margin-top: 0.25rem;
}

.persona-grid {
  gap: 2rem;
  border: 0;
  background: transparent;
}

.persona-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--sheet);
}

.persona-card .button {
  margin-top: 1.5rem;
}

.definition-list {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.definition-list div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.definition-list dt {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.definition-list dd {
  margin: 0;
  font-weight: 650;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  color: var(--sheet);
  background: var(--ink);
}

.price {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  margin: 1.75rem 0 0.75rem;
}

.price strong {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price span,
.price-card > p {
  color: var(--slate);
}

.price-card--featured .price span,
.price-card--featured > p,
.price-card--featured .eyebrow {
  color: #d5d2c9;
}

.credit-box {
  margin: 1.5rem 0;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card--featured .credit-box {
  border-color: rgba(213, 210, 201, 0.45);
}

.credit-box strong {
  display: block;
  font-size: 1.2rem;
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 1.75rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--verified);
  color: var(--slate);
}

.comparison-wrap {
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid var(--line);
  background: var(--sheet);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
}

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

.comparison thead th {
  background: var(--mist);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison th + th,
.comparison td + td {
  border-left: 1px solid var(--line);
}

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

.yes {
  color: var(--verified);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::after {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  content: "+";
}

.faq[open] summary::after {
  content: "−";
}

.faq p {
  max-width: var(--measure);
  padding: 0 3rem 1.5rem 0;
  margin-bottom: 0;
  color: var(--slate);
}

.cta-band {
  color: var(--sheet);
  background: var(--verified);
}

.cta-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 5rem);
}

.cta-row .heading-xl {
  margin-bottom: 0;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--sheet);
}

.page-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-hero .display {
  max-width: 18ch;
}

.page-index {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.page-index p:last-child {
  margin-bottom: 0;
}

.story-grid,
.faq-layout,
.legal-layout,
.proof-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.story-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--sheet);
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.additional-professions {
  margin-top: 2rem;
}

.proof-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.proof-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-list strong {
  display: block;
  margin-bottom: 0.3rem;
}

.honesty-note {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid var(--signal);
  background: var(--sheet);
}

.honesty-note p:last-child {
  margin-bottom: 0;
}

.legal-copy {
  max-width: 48rem;
}

.legal-copy h2 {
  margin-top: 2.5rem;
}

.legal-copy address {
  font-style: normal;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding-block: var(--section);
}

.not-found-card {
  max-width: 44rem;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--ink);
  background: var(--sheet);
  box-shadow: var(--shadow-document);
}

.site-footer {
  color: var(--sheet);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem 2.25rem;
}

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

.footer-copy {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: #d5d2c9;
}

.footer-title {
  margin-bottom: 0.7rem;
  color: #d5d2c9;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid address {
  font-style: normal;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #d5d2c9;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(213, 210, 201, 0.3);
  color: #d5d2c9;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 48rem) {
  .section-header,
  .page-hero-grid,
  .story-grid,
  .proof-grid,
  .faq-layout,
  .legal-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

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

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

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

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

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

  .certificate-meta,
  .certificate-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-proof {
    align-items: end;
  }

  .cta-row {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
  }

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

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

  .certificate-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  }

  .annotation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56rem) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .dossier::before {
    display: none;
  }

  .comparison,
  .comparison tbody,
  .comparison tr,
  .comparison th,
  .comparison td {
    display: block;
    width: 100%;
  }

  .comparison thead {
    display: none;
  }

  .comparison tr {
    border-bottom: 1px solid var(--line);
  }

  .comparison tbody tr:last-child {
    border-bottom: 0;
  }

  .comparison th,
  .comparison td {
    border: 0 !important;
  }

  .comparison th {
    background: var(--mist);
  }

  .comparison td::before {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--slate);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .comparison td:nth-of-type(1)::before {
    content: "Lokbox";
  }

  .comparison td:nth-of-type(2)::before {
    content: "Gratis-KI-Browser / Free AI browser";
  }
}

@media (max-width: 36rem) {
  .button-row,
  .button {
    width: 100%;
  }

  .dossier-head,
  .dossier-foot,
  .certificate-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .definition-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .run-steps li {
    grid-template-columns: 1.75rem 1fr;
  }

  .run-steps li > :last-child {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .button-row,
  .cta-band,
  .site-footer {
    display: none !important;
  }

  body {
    background: var(--white);
  }

  .section,
  .hero,
  .page-hero {
    border: 0;
  }
}
