@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0b0d10;
  --ink-soft: #12151a;
  --panel: #15181d;
  --line: rgba(242, 238, 229, 0.1);
  --line-strong: rgba(242, 238, 229, 0.17);
  --paper: #f2eee5;
  --muted: #aaa9a4;
  --amber: #f4a340;
  --amber-deep: #d78322;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --shell: min(1180px, calc(100% - 64px));
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: var(--shell);
  height: 76px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 40px;
  height: auto;
  filter: invert(70%) sepia(82%) saturate(920%) hue-rotate(341deg) brightness(103%) contrast(91%);
}

.site-nav {
  display: flex;
  margin-left: auto;
  margin-right: 32px;
  gap: 28px;
  color: #c6c4bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a,
.footer-domain,
.contact-person a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-domain:hover,
.contact-person a:hover {
  color: var(--amber);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: transparent;
  color: var(--amber);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 10px;
}

.hero {
  display: grid;
  min-height: 660px;
  padding: 70px 0 96px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1,
.section-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(80px, 8.4vw, 128px);
}

.hero h1 em,
.final-cta h2 em {
  color: var(--amber);
  font-style: normal;
}

.hero__lede {
  margin: 30px 0 10px;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.hero__support {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero__actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  padding: 8px 0 5px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.text-link--amber {
  border-color: rgba(244, 163, 64, 0.5);
  color: var(--amber);
}

.microcopy {
  margin: 19px 0 0;
  color: #777b80;
  font-size: 11px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(244, 163, 64, 0.09);
}

.hero__visual {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.shipping-label {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: min(410px, calc(100% - 20px));
  min-height: 465px;
  padding: 24px;
  border: 1px solid rgba(11, 13, 16, 0.75);
  border-radius: 4px;
  background: #eeeae0;
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) rotate(0.7deg);
  transform-origin: 50% 70%;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 450ms ease;
}

.hero__visual:hover .shipping-label {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) rotate(0deg) translateY(-2px);
}

.shipping-label::before {
  display: none;
}

.label-head,
.label-primary,
.label-meta,
.label-footer {
  position: relative;
  z-index: 1;
}

.label-head {
  display: flex;
  padding: 0 0 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
}

.label-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.label-mark {
  display: block;
  width: 42px;
  height: auto;
}

.label-brand strong {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.label-service {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: right;
}

.label-service b {
  display: inline-block;
  padding: 3px 6px;
  background: var(--ink);
  color: var(--paper);
}

.label-service span {
  padding-right: 1px;
}

.label-primary {
  display: flex;
  padding: 25px 0 23px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.label-primary strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.label-primary p {
  margin: 7px 0 0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.label-meta {
  display: grid;
  padding: 16px 0;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
}

.label-meta p {
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(11, 13, 16, 0.35);
}

.label-meta p:first-child {
  padding-left: 0;
  border-left: 0;
}

.label-meta strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.shipping-label small {
  display: block;
  margin-bottom: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.route-code {
  padding: 5px 8px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.barcode {
  position: relative;
  z-index: 1;
  height: 87px;
  margin: 21px 0 0;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 9px, var(--ink) 9px 13px, transparent 13px 16px, var(--ink) 16px 18px, transparent 18px 23px);
}

.barcode-number {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.64em;
  text-align: center;
}

.label-footer {
  margin-top: 18px;
  padding: 11px 0 0;
  border-top: 2px solid var(--ink);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.founder-pains,
.join,
.how,
.proof,
.faq {
  padding-block: 96px;
  border-top: 1px solid var(--line);
}

.section-intro {
  margin-bottom: 50px;
}

.section-intro h2 {
  font-size: clamp(52px, 5.5vw, 78px);
}

.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 64px;
}

.section-intro--split p:last-child {
  max-width: 420px;
  margin: 0 0 7px auto;
  color: var(--muted);
  font-size: 15px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.pain-card {
  min-height: 220px;
  padding: 30px 32px;
  border: 0;
  background: transparent;
}

.pain-card + .pain-card {
  border-left: 1px solid var(--line);
}

.pain-card__number,
.step__number {
  color: var(--amber);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.pain-card h3 {
  margin: 38px 0 13px;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.pain-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.join {
  position: relative;
}

.join::before {
  display: none;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  min-height: 540px;
  padding: 36px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.service-card--amber {
  border-top: 3px solid var(--amber);
}

.service-card__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-card__tag {
  display: inline-block;
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  color: var(--amber);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card--amber .service-card__tag {
  background: transparent;
  color: var(--amber);
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 4.3vw, 62px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.93;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  margin: 38px 0 28px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 4px 0 4px 28px;
  font-size: 15px;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  position: absolute;
  top: 6px;
  left: 2px;
  color: var(--amber);
  content: "↗";
}

.service-card__fit {
  margin: auto 0 32px;
  color: var(--muted);
  font-size: 14px;
}

.service-card__fit span {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card footer {
  padding-top: 0;
  border-top: 0;
  color: #8d8e8b;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-transform: uppercase;
}

.service-card footer b {
  color: var(--amber);
}

.join-cta {
  display: flex;
  margin-top: 28px;
  padding: 22px 0 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: transparent;
}

.join-cta p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

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

.step {
  display: grid;
  min-height: 175px;
  padding: 34px 0;
  grid-template-columns: 0.24fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.step > div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 40px;
}

.step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.97;
  text-transform: uppercase;
}

.step p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-choice {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.split-choice p {
  min-height: auto;
  padding: 2px 0 2px 13px;
  border-left: 1px solid rgba(244, 163, 64, 0.55);
}

.split-choice b {
  display: block;
  margin-bottom: 3px;
  color: var(--amber);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.split-choice > span {
  color: #5e6164;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.proof-tile {
  display: flex;
  min-height: 230px;
  padding: 25px;
  flex-direction: column;
  border: 0;
  background: transparent;
  transition: background 200ms ease;
}

.proof-tile + .proof-tile {
  border-left: 1px solid var(--line);
}

.proof-tile:hover {
  background: rgba(242, 238, 229, 0.025);
}

.proof-tile > span {
  align-self: flex-end;
  color: var(--amber);
  font-size: 18px;
}

.proof-tile p {
  margin: auto 0 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-tile h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-transform: uppercase;
}

.proof-tile--amber {
  background: rgba(244, 163, 64, 0.035);
  color: var(--paper);
}

.proof-tile--amber:hover {
  background: rgba(244, 163, 64, 0.055);
}

.proof-tile--amber > span,
.proof-tile--amber p {
  color: var(--amber);
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  padding: 29px 4px;
  grid-template-columns: 60px 1fr 26px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.faq-item button > span {
  color: var(--amber);
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.faq-item button i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  background: var(--amber);
  content: "";
  transition: transform 180ms ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 780px;
  margin-left: 60px;
  padding: 0 0 29px;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

.faq-item button:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.footer-domain:focus-visible,
.contact-person a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.final-cta::after {
  display: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}

.final-cta .kicker {
  color: var(--amber-deep);
}

.final-cta h2 {
  font-size: clamp(72px, 8.5vw, 118px);
}

.final-cta h2 em {
  color: var(--amber-deep);
  -webkit-text-fill-color: currentColor;
}

.final-cta p:not(.kicker) {
  max-width: 540px;
  margin: 28px 0 32px;
  font-size: 16px;
  font-weight: 550;
}

.final-cta__actions {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.contact-person {
  display: grid;
  min-width: 280px;
  padding: 8px 0 8px 24px;
  align-content: center;
  border-left: 1px solid rgba(11, 13, 16, 0.18);
}

.contact-person > span {
  color: #69675f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-person strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.contact-person a {
  width: fit-content;
  margin-top: 4px;
  color: var(--amber-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer {
  padding-block: 60px 34px;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-domain {
  color: var(--amber);
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.06em;
}

.site-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #707377;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.noscript {
  margin: 0;
  padding: 12px 20px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  :root {
    --shell: min(920px, calc(100% - 48px));
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__visual {
    width: min(520px, 100%);
    min-height: 510px;
    margin-inline: auto;
  }

  .shipping-label {
    left: 50%;
    transform: translateX(-50%) rotate(0.5deg);
  }

  .hero__visual:hover .shipping-label {
    transform: translateX(-50%) rotate(0deg) translateY(-2px);
  }

  .section-intro--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro--split p:last-child {
    margin-left: 0;
  }

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

  .pain-card {
    min-height: 0;
    padding: 26px 0 28px;
  }

  .pain-card + .pain-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pain-card h3 {
    margin-top: 35px;
  }

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

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

  .proof-tile {
    min-height: 220px;
  }

  .proof-tile:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-tile:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    height: 68px;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand-mark {
    width: 32px;
  }

  .site-header .button {
    min-height: 38px;
    padding-inline: 12px;
    gap: 8px;
    font-size: 9px;
  }

  .hero {
    padding: 52px 0 68px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 84px);
  }

  .hero__lede {
    margin-top: 28px;
  }

  .hero__support {
    font-size: 13px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .button,
  .final-cta .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 375px;
  }

  .shipping-label {
    top: 10px;
    width: 100%;
    min-height: 355px;
    padding: 18px;
    transform: translateX(-50%) rotate(0.7deg);
  }

  .label-head {
    padding-bottom: 12px;
  }

  .label-brand strong {
    font-size: 24px;
  }

  .label-mark {
    width: 34px;
  }

  .label-primary {
    padding-block: 18px;
  }

  .label-primary strong {
    font-size: 16px;
  }

  .label-primary p {
    font-size: 7px;
  }

  .route-code {
    font-size: 18px;
  }

  .label-meta {
    padding-block: 12px;
  }

  .label-meta p {
    padding-left: 9px;
  }

  .label-meta strong {
    font-size: 8px;
  }

  .barcode {
    height: 65px;
    margin-top: 16px;
  }

  .barcode-number {
    font-size: 6px;
  }

  .label-footer {
    margin-top: 13px;
    padding-top: 9px;
  }

  .founder-pains,
  .join,
  .how,
  .proof,
  .faq {
    padding-block: 64px;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro h2 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .service-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .service-card h3 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .check-list {
    margin-top: 36px;
  }

  .service-card__fit {
    margin-top: 8px;
  }

  .join-cta {
    padding: 22px 0 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .step {
    grid-template-columns: 42px 1fr;
    align-items: start;
  }

  .step > div {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-choice {
    grid-template-columns: 1fr;
  }

  .split-choice > span {
    text-align: center;
  }

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

  .proof-tile {
    min-height: 190px;
    padding: 20px;
  }

  .faq-item button {
    padding: 24px 0;
    grid-template-columns: 39px 1fr 24px;
    gap: 4px;
  }

  .faq-answer {
    margin-left: 39px;
    padding-right: 15px;
  }

  .final-cta__inner {
    padding-block: 72px;
  }

  .final-cta h2 {
    font-size: clamp(64px, 20vw, 88px);
  }

  .final-cta__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-person {
    width: 100%;
    min-width: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(11, 13, 16, 0.18);
    border-left: 0;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top {
    gap: 22px;
  }

  .site-footer__bottom {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-tile {
    min-height: 178px;
  }

  .proof-tile + .proof-tile {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
