:root {
  --ink: #071b18;
  --ink-soft: #15322d;
  --paper: #f4f1e8;
  --paper-strong: #fffdf7;
  --line: rgba(7, 27, 24, 0.16);
  --line-inverse: rgba(255, 255, 255, 0.17);
  --muted: #5d6a66;
  --acid: #d8ff36;
  --orange: #ff5c35;
  --white: #ffffff;
  --shell: min(1180px, calc(100vw - 40px));
  --radius: 18px;
  --shadow: 0 24px 70px rgba(7, 27, 24, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

p {
  text-wrap: pretty;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(244, 241, 232, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 27, 24, 0.06);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.brand > span:last-child > span {
  color: var(--orange);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  display: block;
  content: "";
  background: var(--paper);
}

.brand-mark::before {
  top: 8px;
  left: 8px;
  width: 18px;
  height: 5px;
}

.brand-mark::after {
  top: 8px;
  left: 14.5px;
  width: 5px;
  height: 18px;
}

.brand-mark span {
  right: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

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

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  padding: 11px 16px;
  color: var(--paper);
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.main-nav .nav-cta:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.breadcrumbs {
  padding-top: 18px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  opacity: 0.45;
}

.breadcrumbs a {
  text-decoration: none;
}

.section {
  padding: 108px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  min-height: min(780px, calc(100svh - 82px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 108px;
}

.hero::before {
  position: absolute;
  top: 5%;
  right: -90px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  right: 58px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  content: "";
  border: 62px solid rgba(255, 92, 53, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.hero-copy,
.section-heading,
.signal-board,
.deliverable-list,
.faq-list,
.request-form {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 8px;
  background: var(--orange);
  transform: skewX(-20deg);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.7vw, 91px);
  font-weight: 920;
  letter-spacing: -0.072em;
  line-height: 0.96;
  overflow-wrap: break-word;
}

body[data-page-kind="home"] .hero h1 {
  font-size: clamp(46px, 5.5vw, 78px);
  letter-spacing: -0.062em;
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 13px 35px rgba(7, 27, 24, 0.2);
}

.button-primary:hover {
  background: var(--orange);
  box-shadow: 0 16px 35px rgba(255, 92, 53, 0.24);
}

.button-quiet {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.button-accent {
  width: 100%;
  color: var(--ink);
  background: var(--acid);
}

.button-accent:disabled {
  cursor: wait;
  opacity: 0.72;
}

.microcopy {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.signal-board {
  position: relative;
  padding: 13px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
}

.signal-board::before {
  position: absolute;
  top: -16px;
  right: 28px;
  width: 72px;
  height: 32px;
  content: "";
  border: 1px solid rgba(7, 27, 24, 0.12);
  background: rgba(216, 255, 54, 0.9);
  transform: rotate(6deg);
}

.board-top,
.board-result,
.signal-row {
  display: flex;
  align-items: center;
}

.board-top {
  gap: 8px;
  padding: 12px 11px 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 54, 0.12);
}

.board-status {
  margin-left: auto;
  color: var(--acid);
}

.signal-flow {
  overflow: hidden;
  border: 1px solid var(--line-inverse);
  border-radius: 14px;
}

.signal-row {
  min-height: 70px;
  gap: 15px;
  padding: 16px;
  border-bottom: 1px solid var(--line-inverse);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-index {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 800;
}

.signal-row strong {
  font-size: 17px;
}

.signal-check {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: auto;
  color: var(--ink);
  border-radius: 50%;
  background: var(--acid);
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}

.board-result {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 20px 11px 10px;
}

.board-result span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-result strong {
  color: var(--acid);
  font-size: 14px;
}

.trust-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.trust-rail .shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.trust-rail .shell::-webkit-scrollbar {
  display: none;
}

.trust-rail span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-rail i {
  width: 5px;
  min-width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.section-light {
  background: var(--paper-strong);
}

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

.section-heading {
  max-width: 770px;
}

.section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 67px);
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 1;
}

.section-heading > p:not(.section-kicker) {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading-inverse .section-kicker {
  color: var(--acid);
}

.section-heading-inverse > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.64);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.problem-card {
  min-height: 275px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.problem-card > span {
  display: inline-flex;
  margin-bottom: 62px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.problem-card h3 {
  margin-bottom: 13px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.problem-card h3 a {
  color: inherit;
  text-decoration: none;
}

.problem-card h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.related-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.split,
.proof-grid,
.faq-grid,
.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

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

.deliverable-list li {
  display: grid;
  min-height: 79px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.deliverable-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.deliverable-list strong {
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.02em;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid var(--line-inverse);
  border-radius: var(--radius);
  background: var(--line-inverse);
}

.step-card {
  min-height: 330px;
  padding: 28px;
  background: var(--ink);
}

.step-card > span {
  display: inline-flex;
  margin-bottom: 84px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.proof-section {
  overflow: hidden;
}

.proof-grid {
  align-items: center;
}

.proof-stamp {
  position: relative;
  display: grid;
  width: min(390px, 80vw);
  aspect-ratio: 1;
  place-content: center;
  justify-self: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-align: center;
}

.proof-stamp::before,
.proof-stamp::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.proof-stamp::before {
  inset: 25px;
  border: 1px dashed rgba(7, 27, 24, 0.32);
}

.proof-stamp::after {
  top: 50%;
  left: 50%;
  width: 115px;
  height: 115px;
  background: var(--acid);
  transform: translate(-50%, -50%) rotate(12deg);
  z-index: -1;
}

.proof-stamp span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.proof-stamp strong {
  margin: 10px 0;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.proof-points {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.proof-points li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-weight: 720;
}

.proof-points li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 14px;
  height: 8px;
  content: "";
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.faq-grid {
  align-items: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  font-size: 18px;
  font-weight: 830;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 17px;
  height: 2px;
  content: "";
  background: var(--ink);
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 24px 0;
  margin: 0;
  color: var(--muted);
}

.request-section {
  color: var(--paper);
  background: var(--orange);
}

.request-grid {
  align-items: center;
}

.request-section .section-kicker,
.request-section .section-heading > p:not(.section-kicker) {
  color: rgba(7, 27, 24, 0.68);
}

.request-section .section-heading h2 {
  color: var(--ink);
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 30px;
}

.contact-line a {
  width: fit-content;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
}

.request-form {
  padding: 30px;
  color: var(--paper);
  border-radius: 22px;
  background: var(--ink);
  box-shadow: 0 28px 75px rgba(7, 27, 24, 0.24);
}

.request-form label:not(.consent) {
  display: block;
  margin-bottom: 20px;
}

.request-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 760;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--paper);
  border: 1px solid var(--line-inverse);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--acid);
}

.request-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 20px;
}

.request-form .consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--acid);
}

.request-form .consent span {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 72px 0 22px;
  color: var(--paper);
  background: #03110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

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

.footer-grid > div:first-child p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.33);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.status-page {
  display: grid;
  min-height: 100svh;
  padding: 40px;
  place-items: center;
}

.status-page > div {
  width: min(720px, 100%);
}

.status-page h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 9vw, 106px);
  font-weight: 920;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.status-page p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 40px;
  }

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

  .problem-card:last-child {
    grid-column: 1 / -1;
    min-height: 220px;
  }

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

  .step-card {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: flex;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    transition: max-height 240ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - 70px);
    padding: 12px 16px 22px;
    overflow-y: auto;
  }

  .main-nav > a,
  .main-nav .nav-cta {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    color: var(--paper);
    border: 0;
    border-radius: 10px;
    text-align: center;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .breadcrumbs {
    padding-top: 13px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 80px;
  }

  .hero-grid,
  .split,
  .proof-grid,
  .faq-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(46px, 12vw, 72px);
  }

  .signal-board {
    width: min(500px, 96%);
    justify-self: center;
    transform: rotate(0.8deg);
  }

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

  .problem-card:last-child {
    grid-column: auto;
  }

  .problem-card {
    min-height: auto;
  }

  .problem-card > span {
    margin-bottom: 42px;
  }

  .proof-stamp {
    order: 2;
  }

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

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

  .brand {
    font-size: 20px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 50px);
    letter-spacing: -0.068em;
  }

  body[data-page-kind="home"] .hero h1 {
    font-size: clamp(36px, 10.5vw, 42px);
    letter-spacing: -0.055em;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .signal-board {
    width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .problem-grid {
    margin-top: 38px;
  }

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

  .step-card {
    min-height: auto;
  }

  .step-card > span {
    margin-bottom: 50px;
  }

  .proof-stamp {
    width: min(320px, 86vw);
  }

  .proof-stamp strong {
    font-size: 31px;
  }

  .request-form {
    padding: 21px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
