



:root {
  
  --snow: #f8fafc;
  --paper: #ffffff;
  --panel: #f6f1e7;
  
  --cream: #fdf8f0;
  --blue-soft: #edf2ff;

  
  --midnight: #14213d;
  --ink-muted: #53627a;

  
  --link: #0e5a5e;
  --link-hover: #0a4144;
  --brand: #a05226;

  
  --action: #275dff;
  --action-deep: #1742c6;

  
  --field: #c75b2b;
  --field-deep: #8f3d17;
  --mark: #fff3e4;

  
  --line: #dce3ec;
  --line-warm: #ecdfc9;
  --teal-tint: #e7f0ef;
  --teal-tint-border: #d3e2e0;
  --control: #7a6b57;

  
  --lift: rgba(20, 33, 61, 0.1);

  
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 12px;
  --s-lg: 16px;
  --s-xl: 20px;
  --s-2xl: 24px;
  --s-3xl: 32px;
  --s-4xl: 48px;
  --s-5xl: 72px;

  
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;

  
  --measure: 36rem;
  --page: 72rem;

  
  --band-y: clamp(3.25rem, 7.5vw, 5.5rem);
}



@font-face {
  font-family: 'Bricolage Grotesque';
  src:
    url('fonts/bricolage-bold.woff2') format('woff2'),
    url('fonts/bricolage-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src:
    url('fonts/instrument-regular.woff2') format('woff2'),
    url('fonts/instrument-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src:
    url('fonts/instrument-bold.woff2') format('woff2'),
    url('fonts/instrument-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



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

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

body {
  margin: 0;
  background: var(--snow);
  color: var(--midnight);
  font-family: 'Instrument Sans', ui-sans-serif, system-ui, -apple-system,
    'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}


:lang(de) p,
:lang(de) li,
:lang(de) dd {
  hyphens: auto;
}

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

img {
  height: auto;
}

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

a:hover {
  color: var(--link-hover);
}

h1,
h2,
h3 {
  font-family: 'Bricolage Grotesque', 'Instrument Sans', ui-sans-serif,
    system-ui, sans-serif;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}

p,
ul,
ol,
dl,
dd {
  margin: 0;
}


.tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}


.nowrap {
  white-space: nowrap;
}



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

.band {
  padding-block: var(--band-y);
}

.band--paper {
  background: var(--paper);
}

.band--cream {
  background: var(--cream);
}

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

.measure-wide {
  max-width: 46rem;
}

.lede {
  font-size: clamp(1.125rem, 1.6vw + 0.6rem, 1.375rem);
  line-height: 1.55;
  color: var(--ink-muted);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s-lg);
}

h2 {
  font-size: clamp(1.875rem, 3.4vw + 0.5rem, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
}

h3 {
  font-size: 1.1875rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h2 {
  max-width: 20ch;
}

h1 + .lede,
h2 + p,
h2 + .lede {
  margin-top: var(--s-2xl);
}


.lede + p {
  margin-top: var(--s-lg);
}

.eyebrow + h2 {
  margin-top: 0;
}


.band-head {
  display: grid;
  gap: var(--s-xl) clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

@media (min-width: 56rem) {
  .band-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}


.band-head--tall {
  align-items: start;
}

.band-head .lede {
  max-width: 42ch;
}

.band-head + * {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}



.skip {
  position: absolute;
  left: var(--s-lg);
  top: var(--s-lg);
  z-index: 20;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--link);
  font-weight: 700;
  padding: var(--s-md) var(--s-xl);
  border-radius: var(--r-md);
  
  text-decoration: none;
}


.skip:focus,
.skip:focus-visible {
  transform: translateY(0);
  box-shadow: 0 8px 24px -8px var(--lift);
}


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

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

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



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

.site-head .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-md) var(--s-2xl);
  min-height: 4.5rem;
  padding-block: var(--s-md);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--s-md);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
  color: var(--midnight);
  text-decoration: none;
  margin-right: auto;
  
  min-height: 44px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-lg) var(--s-2xl);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}


.site-nav .quiet {
  color: var(--ink-muted);
  font-weight: 400;
}

.site-nav .quiet:hover {
  color: var(--midnight);
}


@media (max-width: 40rem) {
  .site-nav .quiet {
    display: none;
  }
}



.hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 6vw, 4.5rem);
}

.hero .wrap {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 62rem) {
  .hero .wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.hero h1 {
  font-size: clamp(2.625rem, 6.2vw + 0.5rem, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.hero .lede {
  margin-top: var(--s-2xl);
  max-width: 34ch;
}

.hero-cta {
  margin-top: var(--s-3xl);
}


.store-badges {
  margin-top: var(--s-3xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-lg);
}

.store-badges img {
  height: 3rem;
  width: auto;
  display: block;
}


.closing .store-badges {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--action);
  color: var(--paper);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  text-decoration: none;
}

.btn:hover {
  background: var(--action-deep);
  color: var(--paper);
}

.hero-meta {
  margin-top: var(--s-3xl);
  padding-top: var(--s-2xl);
  border-top: 1px solid var(--line);
  display: grid;
  gap: var(--s-sm);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  max-width: 36ch;
}


.hero-meta > span {
  display: grid;
  grid-template-columns: 1.125rem 1fr;
  gap: var(--s-md);
  align-items: start;
}

.hero-meta svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2rem;
  color: var(--brand);
}

.hero-meta b {
  color: var(--midnight);
  font-weight: 700;
}


.hero-stage {
  position: relative;
  display: grid;
  justify-items: stretch;
  align-items: center;
  padding: clamp(1.25rem, 4.5vw, 3.25rem) clamp(1rem, 4vw, 1.5rem);
  background: var(--field);
  border-radius: var(--r-2xl);
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before {
  content: '';
  position: absolute;
  inset: auto -12% -34% -12%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, var(--field-deep), transparent 62%);
  opacity: 0.55;
  z-index: -1;
}


.hero-stage .stage-mark {
  position: absolute;
  top: -14%;
  right: -22%;
  width: 78%;
  opacity: 0.13;
  z-index: -1;
}


@media (max-width: 30rem) {
  .hero-stage {
    padding: clamp(2.5rem, 10vw, 3.25rem) clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-stage .phone {
    max-width: 15rem;
  }
}




.phone {
  position: relative;
  width: 100%;
  max-width: 19rem;
  margin-inline: auto;
  padding: 0.625rem;
  background: linear-gradient(158deg, #33405c 0%, var(--midnight) 42%, #0c1526 100%);
  border-radius: 2.5rem;
  box-shadow:
    0 0 0 1px rgba(20, 33, 61, 0.5),
    0 32px 64px -24px rgba(20, 33, 61, 0.55),
    0 10px 24px -12px rgba(20, 33, 61, 0.35);
}

.phone img {
  display: block;
  width: 100%;
  border-radius: 1.9rem;
  background: var(--snow);
}

.phone--sm {
  max-width: 16.5rem;
}


.screen {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--snow);
  box-shadow:
    0 0 0 1px rgba(20, 33, 61, 0.08),
    0 24px 48px -24px rgba(20, 33, 61, 0.45);
}

.screen img {
  display: block;
  width: 100%;
}


.shot {
  margin: 0;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: var(--s-xl);
}


.screens {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 52rem) {
  
  .screens {
    grid-template-columns: repeat(2, minmax(0, 30rem));
    justify-content: center;
    align-items: stretch;
  }
}


.screens .shot {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.screens figcaption {
  margin-top: auto;
  padding-top: var(--s-md);
}

.shot figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 30ch;
  text-align: center;
}




.problem {
  position: relative;
  overflow: hidden;
}

.problem .wrap > * {
  position: relative;
  max-width: 44rem;
}


.band-mark {
  position: absolute;
  right: -6%;
  top: 50%;
  translate: 0 -50%;
  width: clamp(16rem, 32vw, 30rem);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
}

@media (max-width: 61.999rem) {
  .band-mark {
    display: none;
  }
}

.problem p {
  font-size: clamp(1.25rem, 1.9vw + 0.7rem, 1.75rem);
  line-height: 1.42;
  letter-spacing: -0.012em;
  
  text-wrap: pretty;
}

.problem p + p {
  margin-top: var(--s-2xl);
}


.problem .turn {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-left: clamp(1rem, 2.5vw, 1.75rem);
  
  border-left: 3px solid var(--brand);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw + 0.75rem, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}




.swap {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  gap: var(--s-xl);
  align-items: stretch;
}

@media (min-width: 48rem) {
  .swap {
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: stretch;
  }

  
  .swap-cross span {
    white-space: nowrap;
  }
}

.swap-home {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 18px 40px -32px var(--lift);
}

.swap-home .roof {
  display: block;
  width: 2.75rem;
  height: auto;
  color: var(--brand);
  margin-bottom: var(--s-lg);
}

.swap-home h3 {
  font-size: 1.0625rem;
}

.swap-home .row {
  margin-top: var(--s-lg);
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
  font-size: 0.9375rem;
}

.swap-home .row svg {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: var(--link);
}

.swap-home .row strong {
  display: block;
  font-weight: 700;
}

.swap-home .row span {
  color: var(--ink-muted);
}


.swap-home .stays {
  margin-top: auto;
  padding-top: var(--s-xl);
  padding: var(--s-md) var(--s-lg);
  background: var(--teal-tint);
  border: 1px solid var(--teal-tint-border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--link);
  display: flex;
  gap: var(--s-sm);
  align-items: center;
}

.swap-home .stays svg {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
}

.swap-cross {
  display: grid;
  align-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  justify-items: center;
  padding-block: var(--s-sm);
}


.swap-cross .leg {
  display: grid;
  justify-items: center;
  gap: var(--s-xs);
}

.swap-cross span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.swap-cross svg {
  width: 4.5rem;
  height: 1.75rem;
  
  color: var(--brand);
}


@media (max-width: 47.999rem) {
  .swap-cross svg {
    transform: rotate(90deg);
    width: 1.5rem;
    height: 3.5rem;
  }

  
  .swap-cross {
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-3xl);
  }

  .swap-cross .leg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-xs);
  }

  .swap-cross .leg svg {
    order: -1;
  }
}

.swap-note {
  margin-top: var(--s-2xl);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  max-width: 60ch;
}



.steps {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s-xl);
  counter-reset: step;
}

@media (min-width: 52rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }
}

.steps > li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.step-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

.steps p {
  color: var(--ink-muted);
  
  font-size: 0.9375rem;
}




.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 58rem) {
  .split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .split--flip > *:first-child {
    order: 2;
  }
}

.points {
  list-style: none;
  padding: 0;
  margin-top: var(--s-3xl);
  display: grid;
  gap: var(--s-xl);
}

.points > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-lg);
  align-items: start;
}

.points svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--link);
  margin-top: 0.1rem;
}

.points h3 {
  font-size: 1.0625rem;
  font-family: 'Instrument Sans', sans-serif;
  letter-spacing: 0;
}

.points p {
  margin-top: var(--s-xs);
  color: var(--ink-muted);
  font-size: 0.9375rem;
}



.price-lines {
  margin-top: var(--s-3xl);
  border-top: 1px solid var(--line);
}

.price-lines .line {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm) var(--s-lg);
  justify-content: space-between;
  align-items: baseline;
  padding-block: var(--s-lg);
  border-bottom: 1px solid var(--line);
}

.price-lines dt {
  font-weight: 700;
}

.price-lines dd {
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.price-lines .free {
  
  color: var(--midnight);
  font-weight: 700;
}

.price-note {
  margin-top: var(--s-2xl);
  font-size: 0.9375rem;
  color: var(--ink-muted);
}



.faq-list {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 56rem) {
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.faq-list h3 {
  font-size: 1.1875rem;
}

.faq-list p {
  margin-top: var(--s-md);
  color: var(--ink-muted);
}

.faq-list p + p {
  margin-top: var(--s-md);
}



.entity {
  margin-top: var(--s-3xl);
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 44rem;
}

.entity > div {
  display: grid;
  gap: var(--s-xs) var(--s-2xl);
  padding-block: var(--s-lg);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 40rem) {
  .entity > div {
    grid-template-columns: 12rem 1fr;
  }
}

.entity dt {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.entity dd {
  margin: 0;
}

.entity address {
  font-style: normal;
}




.closing {
  background: var(--field);
  color: var(--mark);
  padding-block: clamp(3.75rem, 8.5vw, 6rem);
}

.closing .wrap {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--s-2xl);
}


.closing .wrap > img {
  width: 4.5rem;
  height: 4.5rem;
}

.closing h2 {
  font-size: clamp(2rem, 4.4vw + 0.5rem, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  
  max-width: 20ch;
  color: var(--mark);
}


.closing-line {
  font-size: clamp(1.5rem, 2vw + 0.9rem, 1.875rem);
  line-height: 1.35;
  color: var(--mark);
  max-width: 26ch;
  text-wrap: balance;
}




.statement {
  background: var(--field);
  color: var(--mark);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.statement .wrap {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--s-xl);
}

.statement img {
  width: 4rem;
  height: 4rem;
}

.statement p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw + 0.5rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  max-width: 20ch;
  font-variant-numeric: tabular-nums;
  text-wrap: balance;
}



.quiet-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.quiet-band .wrap {
  display: grid;
  gap: var(--s-lg);
  max-width: 48rem;
}

.quiet-band h2 {
  font-size: clamp(1.375rem, 2vw + 0.6rem, 1.75rem);
  letter-spacing: -0.015em;
}

.quiet-band p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
}



.site-foot {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-block: var(--s-3xl);
}

.site-foot .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-lg) var(--s-2xl);
  align-items: center;
  justify-content: space-between;
}

.site-foot p {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.site-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-lg) var(--s-2xl);
}

.site-foot nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
}




.legal-head {
  padding-top: var(--band-y);
  padding-bottom: var(--s-2xl);
  max-width: 48rem;
}

.legal-head h1 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.legal-head .lede {
  margin-top: var(--s-lg);
}

.doc {
  max-width: 48rem;
  padding-bottom: var(--band-y);
}

.pending {
  background: var(--cream);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: grid;
  gap: var(--s-md);
}

.pending p {
  margin-top: 0;
}

.doc h2 {
  font-size: clamp(1.375rem, 2vw + 0.6rem, 1.75rem);
  margin-top: var(--s-4xl);
}

.doc h3 {
  margin-top: var(--s-3xl);
}

.doc p,
.doc ul,
.doc ol {
  margin-top: var(--s-lg);
}

.doc ul,
.doc ol {
  padding-left: 1.25rem;
}

.doc li + li {
  margin-top: var(--s-sm);
}


.doc .table-scroll {
  margin-top: var(--s-xl);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.doc table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9375rem;
}

.doc th,
.doc td {
  text-align: left;
  padding: var(--s-md) var(--s-lg);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.doc th {
  font-weight: 700;
  background: var(--snow);
}

.doc tr:last-child td {
  border-bottom: 0;
}

.note {
  background: var(--cream);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: grid;
  gap: var(--s-md);
}




@media print {
  .statement,
  .closing,
  .statement p,
  .closing h2,
  .closing-line {
    background: none;
    color: var(--midnight);
  }
}
