@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("assets/bebas-neue-regular-cyrillic.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("assets/cormorant-light-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

:root {
  --paper: #f5f3ef;
  --white: #ffffff;
  --ink: #0a0a0a;
  --muted: #605d59;
  --line: rgba(10, 10, 10, 0.14);
  --red: #e31513;
  --red-dark: #a82d23;
  --blue: #ebe7df;
  --blue-strong: #e31513;
  --yellow: #f5f3ef;
  --dark: #0a0a0a;
  --dark-soft: #161616;
  --container: 1320px;
  --radius: 4px;
  --shadow: 0 18px 45px rgba(10, 10, 10, 0.1);
  --font-sans: "Montserrat", Arial, sans-serif;
  --font-script: "Cormorant", Georgia, serif;
  --font-numeric: "Bebas Neue", "Arial Narrow", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.cookie-notice-visible {
  padding-bottom: 104px;
}

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

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  background: rgba(245, 243, 239, 0.86);
}

.site-header__inner {
  display: grid;
  width: min(calc(100% - 96px), 1720px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.brand__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.03;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.site-nav a {
  position: relative;
  color: #474743;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--compact {
  min-height: 46px;
  padding: 11px 18px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
}

.button--compact:hover {
  background: var(--red-dark);
}

.button--primary,
.button--form {
  background: var(--red);
  color: var(--white);
}

.button--primary:hover,
.button--form:hover {
  background: var(--red-dark);
}

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

.button--light:hover {
  background: var(--red);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #4f4f4b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--red);
}

.eyebrow--light {
  color: #c9c9c5;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), 1120px);
  min-height: min(740px, calc(100svh - 112px));
  grid-template-columns: minmax(0, 650px) minmax(420px, 1fr);
  align-items: stretch;
  gap: 50px;
  padding-top: 54px;
}

.hero__copy {
  align-self: center;
  max-width: 650px;
  padding-bottom: 46px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(58px, 3.75vw, 72px);
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 em {
  margin: 4px 0 3px;
  color: var(--red);
  font-family: var(--font-script);
  font-size: 0.72em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.04;
  white-space: nowrap;
}

.hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.hero__facts {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  min-width: 0;
  padding: 0;
}

.hero__facts li + li {
  border-left: 0;
  padding-left: 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  font-family: var(--font-numeric);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.hero__facts span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-person {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 660px;
  max-width: 640px;
  align-self: end;
  margin: 0 0 0 auto;
}

.hero-person img {
  position: absolute;
  z-index: 2;
  right: -78px;
  bottom: 0;
  width: min(138%, 760px);
  height: 700px;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 24px 22px rgba(10, 10, 10, 0.12));
}

.hero-person__caption {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  right: -118px;
  left: auto;
  width: min(320px, calc(100% - 20px));
  border-left: 4px solid var(--red);
  padding: 15px 18px;
  background: rgba(247, 245, 241, 0.96);
  box-shadow: 0 14px 34px rgba(18, 18, 16, 0.14);
  color: var(--ink);
}

.hero-person__caption strong,
.hero-person__caption span,
.hero-person__caption small {
  display: block;
}

.hero-person__caption strong {
  font-size: 17px;
  line-height: 1.2;
}

.hero-person__caption span {
  margin-top: 4px;
  color: #53534f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-person__caption small {
  margin-top: 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__scribble {
  position: absolute;
  z-index: 1;
  width: 116px;
  height: 30px;
  border: 1px solid currentColor;
  opacity: 0.18;
  pointer-events: none;
}

.hero__scribble--one {
  top: 15%;
  left: -55px;
  color: var(--red);
  transform: rotate(12deg);
  animation: float-one 7s ease-in-out infinite;
}

.hero__scribble--two {
  right: 7%;
  bottom: 15%;
  color: var(--red);
  transform: rotate(-10deg);
  animation: float-two 8s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-top: 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  padding: 0;
  animation: ticker 24s linear infinite;
}

.ticker__group {
  display: flex;
  min-width: 100vw;
  flex: none;
  align-items: stretch;
}

.ticker span {
  position: relative;
  flex: 1 0 auto;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 15px 30px 15px 47px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.ticker span::before {
  position: absolute;
  top: 50%;
  left: 29px;
  width: 5px;
  height: 5px;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2,
.about__copy h2,
.faq__intro h2,
.application__copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(46px, 3.7vw, 64px);
  font-weight: 700;
  line-height: 1.04;
}

.section-heading h2 span,
.section-heading h2 em,
.about__copy h2 span,
.about__copy h2 em,
.faq__intro h2 span,
.faq__intro h2 em,
.application__copy h2 span,
.application__copy h2 em {
  display: block;
}

.section-heading h2 em,
.about__copy h2 em,
.faq__intro h2 em,
.application__copy h2 em {
  margin-top: 6px;
  color: var(--red);
  font-family: var(--font-script);
  font-size: 0.76em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
}

.section-heading--wide {
  max-width: 920px;
}

.section-heading--wide > p:last-child {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.diagnostic {
  overflow: hidden;
  background: var(--blue);
}

.diagnostic__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.diagnostic__copy {
  min-width: 0;
  max-width: 650px;
}

.diagnostic__heading {
  margin-bottom: 0;
}

.diagnostic__heading h2 {
  max-width: 650px;
}

.diagnostic__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #454541;
  font-size: 19px;
  line-height: 1.55;
}

.diagnostic__promise {
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin: 28px 0 0;
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 24px;
}

.diagnostic__promise strong,
.diagnostic__promise span {
  display: block;
}

.diagnostic__promise strong {
  color: var(--red);
  font-family: var(--font-numeric);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.diagnostic__promise span {
  max-width: 540px;
  color: #454541;
  font-size: 16px;
  line-height: 1.55;
}

.diagnostic__services {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  padding: 34px 40px 12px;
  background: var(--dark);
  box-shadow: var(--shadow);
  color: var(--white);
}

.diagnostic__services::before {
  position: absolute;
  top: 0;
  left: 40px;
  width: 96px;
  height: 4px;
  background: var(--red);
  content: "";
}

.diagnostic__services-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.diagnostic__services-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.diagnostic__services-heading > span {
  color: var(--red);
  font-family: var(--font-numeric);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.diagnostic__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic__list li {
  display: grid;
  min-height: 88px;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 0;
}

.diagnostic__list li > span {
  color: var(--red);
  font-family: var(--font-numeric);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.diagnostic__list p {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.diagnostic__cta {
  display: grid;
  max-width: 480px;
  gap: 9px;
  margin-top: 34px;
}

.diagnostic__cta > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: left;
}

.button--diagnostic {
  width: 100%;
  min-height: 70px;
  padding: 18px 26px;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
}

.button--diagnostic:hover {
  background: var(--red-dark);
}

.cases {
  background: var(--dark);
  color: var(--white);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 60px;
}

.section-heading--split > p {
  margin: 0 0 4px;
  color: #adada8;
  font-size: 16px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-proof {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #414346;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.case-proof__header {
  min-height: 166px;
  padding: 26px 26px 22px;
  border-bottom: 1px solid var(--line);
}

.case-proof__index {
  margin: 0 0 11px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-proof__header h3 {
  max-width: 320px;
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.case-proof__header > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.case-proof__result {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 24px 26px 18px;
}

.case-proof__result strong {
  font-family: var(--font-numeric);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
}

.case-proof__result span {
  font-size: 18px;
  font-weight: 600;
}

.case-proof__metrics {
  display: grid;
  margin: 0;
  padding: 0 26px 24px;
}

.case-proof__metrics div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 11px 0;
}

.case-proof__metrics dt {
  color: var(--muted);
  font-size: 11px;
}

.case-proof__metrics dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.case-proof__media {
  position: relative;
  margin: auto 0 0;
  padding: 12px 12px 11px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.case-proof__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border: 1px solid #d8d8d4;
  background: var(--white);
}

.case-proof__badge {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 7px 9px;
  background: rgba(10, 10, 10, 0.92);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.case-proof__media figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.cases__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 36px;
  border-top: 1px solid #393c40;
  padding-top: 32px;
}

.cases__note p {
  max-width: 780px;
  margin: 0;
  color: #adada8;
}

.cases__note strong {
  color: var(--white);
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.about-photo {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.about-photo::before {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 56%;
  height: 46%;
  background: var(--red);
  content: "";
}

.about-photo img {
  width: 100%;
  height: clamp(520px, 58vw, 690px);
  max-height: 690px;
  object-fit: cover;
  object-position: center 20%;
}

.about-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 20px;
  background: rgba(18, 18, 18, 0.9);
  color: var(--white);
  font-size: 13px;
}

.about__copy {
  max-width: 680px;
}

.about__lead {
  margin: 28px 0 0;
  color: #4f4f4b;
  font-size: 20px;
}

.about__list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.about__list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.about__list li > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.about__list p {
  margin: 0;
  color: #4d4d49;
}

.about__list strong {
  color: var(--ink);
}

.about__action {
  margin-top: 30px;
}

.button--about {
  min-height: 66px;
  max-width: 100%;
  padding: 17px 30px;
  font-size: 16px;
}

.fit {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.fit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 52px);
  background: var(--paper);
}

.fit-card--yes {
  border-top: 7px solid var(--red);
  padding-top: 46px;
}

.fit-card--later {
  border-top: 7px solid var(--ink);
  padding-top: 46px;
}

.fit-card__sign {
  position: absolute;
  top: 16px;
  right: 24px;
  margin: 0;
  color: var(--line);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.fit-card h3 {
  max-width: 520px;
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.fit-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 23px;
  color: #4d4d49;
}

.fit-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--red);
  content: "";
}

.fit-card--later li::before {
  background: var(--ink);
}

.faq {
  background: var(--blue);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 6vw, 90px);
}

.faq__intro h2 span {
  white-space: nowrap;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.faq__portrait {
  width: min(100%, 430px);
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
}

.faq__portrait img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
}

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

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

.faq__list summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}

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

.faq__list summary i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq__list details[open] summary i {
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__list details > p {
  max-width: 720px;
  margin: -6px 58px 0 0;
  padding: 0 0 25px;
  color: var(--muted);
}

.application {
  background: var(--red);
  color: var(--white);
}

.application__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.application__copy {
  max-width: 680px;
}

.application__copy h2 {
  color: var(--white);
}

.application__copy h2 em {
  color: var(--ink);
}

.application__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 0;
  color: #ffe3dc;
  font-size: 20px;
}

.application__facts {
  display: grid;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  list-style: none;
}

.application__facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 17px 0;
}

.application__facts strong {
  font-size: 17px;
}

.application__facts span {
  color: #ffe3dc;
  font-size: 13px;
  text-align: right;
}

.application-card {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(82, 16, 5, 0.24);
}

.application-card header {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.application-card header p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.application-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.application-card__intro {
  display: block;
  margin-top: 14px;
  color: #65655f;
  font-size: 14px;
  line-height: 1.55;
}

.application-card form {
  display: grid;
  gap: 21px;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field > span:first-child {
  font-size: 13px;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #aaa9a3;
  border-radius: 4px;
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

.form-field input::placeholder {
  color: #85857f;
}

.form-field input:focus {
  border-color: var(--blue-strong);
  outline: 3px solid rgba(227, 21, 19, 0.14);
}

.form-field [aria-invalid="true"] {
  border-color: var(--red);
}

.form-check {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  color: #5c5c58;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.form-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-check__box {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #777773;
  border-radius: 3px;
  background: var(--white);
}

.form-check input:checked + .form-check__box {
  border-color: var(--blue-strong);
  background: var(--blue-strong);
}

.form-check input:checked + .form-check__box::after {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: rotate(45deg);
}

.form-check input:focus-visible + .form-check__box {
  outline: 3px solid rgba(227, 21, 19, 0.24);
  outline-offset: 2px;
}

.button--form {
  width: 100%;
  min-height: 64px;
  border: 0;
  margin-top: 3px;
}

.button--form:disabled {
  background: #b9b9b4;
  color: #efefeb;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  margin: -5px 0 0;
  color: #6b6b65;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--red);
  padding: 10px 12px;
  background: #fff0ec;
  color: #8b2718;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid #35383b;
  padding: 28px 0;
  background: var(--dark);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 8px 52px;
}

.brand--footer {
  grid-row: 1 / span 2;
  color: var(--white);
}

.site-footer__inner > p {
  margin: 0;
  color: #aaa9a5;
  font-size: 13px;
}

.site-footer nav {
  display: grid;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-items: end;
  gap: 6px;
}

.site-footer nav a {
  color: #d4d4cf;
  font-size: 12px;
}

.site-footer__meta {
  grid-column: 2;
  font-size: 12px;
}

.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(560px, calc(100% - 40px));
  align-items: center;
  gap: 22px;
  border: 1px solid #93928c;
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.22);
}

.cookie-notice p {
  margin: 0;
  color: #555550;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-notice button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 5px;
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float-one {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(12deg);
  }
  50% {
    transform: translate3d(24px, 10px, 0) rotate(8deg);
  }
}

@keyframes float-two {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }
  50% {
    transform: translate3d(-20px, -12px, 0) rotate(-5deg);
  }
}

@media (max-width: 1120px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(38px, 3.8vw, 44px);
  }

  .hero-person {
    min-height: 610px;
  }

  .hero-person img {
    right: 0;
    width: 100%;
    height: 620px;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-person__caption {
    right: 0;
  }

  .about__grid {
    gap: 60px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .site-header__inner {
    width: min(calc(100% - 36px), var(--container));
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: 48px;
  }

  .hero__copy {
    max-width: 780px;
    padding-bottom: 54px;
  }

  .hero-person {
    width: min(100%, 620px);
    min-height: 630px;
    margin: 0 auto;
  }

  .hero-person img {
    right: 50%;
    width: min(100%, 560px);
    height: 630px;
    transform: translateX(50%);
  }

  .hero-person__caption {
    bottom: 22px;
    right: auto;
    left: 50%;
    width: min(calc(100% - 40px), 360px);
    transform: translateX(-50%);
  }

  .diagnostic__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .diagnostic__copy {
    max-width: 760px;
  }

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

  .case-proof:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .about__grid,
  .faq__grid,
  .application__grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(100%, 620px);
  }

  .about-photo img {
    height: min(760px, 110vw);
  }

  .about__copy,
  .application__copy {
    max-width: none;
  }

  .faq__intro {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 0 40px;
  }

  .faq__intro .eyebrow,
  .faq__intro h2,
  .faq__intro > p {
    grid-column: 1;
  }

  .faq__portrait {
    grid-column: 2;
    grid-row: 1 / 5;
    margin: 0;
  }

  .faq__portrait img {
    height: 100%;
    min-height: 300px;
  }

  .application-card {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  body.cookie-notice-visible {
    padding-bottom: 154px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .site-header__inner {
    width: min(calc(100% - 30px), var(--container));
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .brand__name {
    font-size: 11px;
  }

  .button--compact {
    min-height: 40px;
    gap: 7px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .hero__inner {
    gap: 0;
    padding-top: 36px;
  }

  .hero__copy {
    padding-bottom: 42px;
  }

  .hero__scribble {
    display: none;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 52px);
    line-height: 0.98;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero h1 em {
    font-size: 0.6em;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 14px;
  }

  .hero__actions {
    display: grid;
    justify-items: start;
    gap: 20px;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    margin-top: 30px;
  }

  .hero__facts li {
    padding: 0 8px 0 0;
  }

  .hero__facts li + li {
    padding-left: 0;
  }

  .hero__facts strong {
    font-size: 24px;
  }

  .hero__facts span {
    font-size: 10px;
  }

  .hero-person {
    min-height: 520px;
    max-width: 460px;
  }

  .hero-person img {
    right: 50%;
    width: min(100%, 430px);
    height: 520px;
    transform: translateX(50%);
  }

  .hero-person__caption {
    bottom: 16px;
    width: calc(100% - 24px);
    padding: 14px 16px;
  }

  .ticker__track {
    gap: 0;
    padding: 0;
  }

  .ticker span {
    padding: 12px 22px 12px 37px;
    font-size: 10px;
  }

  .ticker span::before {
    left: 22px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about__copy h2,
  .faq__intro h2,
  .application__copy h2 {
    font-size: clamp(36px, 9.5vw, 46px);
    line-height: 1.08;
  }

  .section-heading--wide > p:last-child,
  .about__lead,
  .application__copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .diagnostic__lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .diagnostic__promise {
    margin-top: 24px;
    padding-left: 18px;
  }

  .diagnostic__promise strong {
    font-size: 32px;
  }

  .diagnostic__services {
    padding: 28px 24px 8px;
  }

  .diagnostic__services::before {
    left: 24px;
  }

  .diagnostic__services-heading {
    padding-bottom: 18px;
  }

  .diagnostic__services-heading h3 {
    font-size: 18px;
  }

  .diagnostic__services-heading > span {
    font-size: 44px;
  }

  .diagnostic__list li {
    min-height: 76px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .diagnostic__list li > span {
    font-size: 30px;
  }

  .diagnostic__list p {
    font-size: 16px;
  }

  .diagnostic__cta {
    width: 100%;
  }

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

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .case-proof:last-child {
    grid-column: auto;
    width: auto;
  }

  .case-proof__header {
    min-height: 0;
    padding: 24px 22px 20px;
  }

  .case-proof__result {
    padding: 22px 22px 16px;
  }

  .case-proof__result strong {
    font-size: 52px;
  }

  .case-proof__metrics {
    padding: 0 22px 22px;
  }

  .cases__note .button {
    width: 100%;
  }

  .about-photo::before {
    right: -10px;
    bottom: -10px;
  }

  .about-photo img {
    height: 118vw;
    max-height: 610px;
    min-height: 430px;
  }

  .about__list {
    margin-top: 30px;
  }

  .about__list li {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .button--about {
    width: 100%;
  }

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

  .fit-card {
    padding: 30px 24px;
  }

  .fit-card--yes,
  .fit-card--later {
    padding-top: 38px;
  }

  .fit-card h3 {
    max-width: 280px;
    font-size: 23px;
  }

  .faq__grid {
    gap: 38px;
  }

  .faq__intro {
    display: block;
  }

  .faq__portrait {
    width: 100%;
    margin-top: 28px;
  }

  .faq__portrait img {
    height: 80vw;
    min-height: 280px;
    max-height: 420px;
  }

  .faq__list summary {
    grid-template-columns: 1fr 32px;
    gap: 14px;
    padding: 21px 0;
    font-size: 16px;
  }

  .faq__list summary i {
    width: 32px;
    height: 32px;
  }

  .faq__list details > p {
    margin-right: 0;
    font-size: 14px;
  }

  .application__grid {
    gap: 42px;
  }

  .application__facts {
    margin-top: 34px;
  }

  .application-card {
    padding: 26px 20px;
  }

  .application-card h3 {
    font-size: 25px;
  }

  .form-field input {
    min-height: 56px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand--footer {
    grid-row: auto;
  }

  .site-footer nav {
    grid-column: auto;
    grid-row: auto;
    justify-items: start;
  }

  .site-footer__meta {
    grid-column: auto;
  }

  .cookie-notice {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 13px;
  }

  .cookie-notice button {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .brand__name {
    display: none;
  }

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

  .hero__facts li,
  .hero__facts li + li {
    padding: 0 6px 0 0;
  }
}

/* Mobile reading and layout fixes — 2026-09-09. */
@media (max-width: 920px) {
  .hero h1 span,
  .hero h1 em,
  .faq__intro h2 span {
    white-space: normal;
  }

  .hero h1,
  h2,
  h3,
  .application-card,
  .form-field,
  .form-field input {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero-person img {
    object-position: center top;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 82px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .section {
    padding: 52px 0;
  }

  .button {
    max-width: 100%;
    min-width: 0;
    gap: 10px;
    padding-inline: 16px;
    line-height: 1.4;
  }

  .button > span[aria-hidden] {
    flex: 0 0 auto;
  }

  .site-header__inner {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .button--compact {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .brand {
    min-height: 44px;
  }

  .hero__inner {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero__copy {
    padding-bottom: 24px;
    text-align: center;
  }

  .hero__copy .eyebrow {
    justify-content: center;
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero__copy .eyebrow > span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(30px, 8.3vw, 52px);
    line-height: 1.12;
  }

  .hero h1 em {
    margin-block: 7px;
    font-size: 0.88em;
    line-height: 1.15;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero__actions {
    justify-items: center;
    gap: 6px;
    margin-top: 22px;
  }

  .hero__actions .button {
    min-height: 60px;
  }

  .text-link {
    min-height: 44px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .hero__facts li,
  .hero__facts li + li {
    padding: 0;
  }

  .hero__facts strong {
    font-size: clamp(21px, 6.1vw, 25px);
  }

  .hero__facts span {
    font-size: 12px;
    line-height: 1.45;
    text-transform: none;
    overflow-wrap: anywhere;
  }

  .hero-person {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    max-width: 460px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  .hero-person img {
    position: static;
    width: 112px;
    height: 156px;
    transform: none;
    object-fit: cover;
    object-position: center top;
    filter: none;
  }

  .hero-person__caption {
    position: static;
    width: 100%;
    border-left-width: 2px;
    padding: 4px 0 4px 12px;
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .hero-person__caption strong {
    font-size: 16px;
    line-height: 1.3;
  }

  .hero-person__caption span {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    overflow-wrap: anywhere;
  }

  .hero-person__caption small {
    font-size: 11px;
    line-height: 1.4;
    text-transform: none;
  }

  .ticker,
  .faq__portrait {
    display: none;
  }

  .section-heading h2,
  .about__copy h2,
  .faq__intro h2,
  .application__copy h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
  }

  .section-heading h2 em,
  .about__copy h2 em,
  .faq__intro h2 em,
  .application__copy h2 em {
    font-size: 0.94em;
    line-height: 1.18;
  }

  .diagnostic__cta > span,
  .case-proof__header > p:last-child,
  .case-proof__media figcaption,
  .form-note {
    font-size: 13px;
    line-height: 1.5;
  }

  .diagnostic__layout,
  .about__grid {
    gap: 32px;
  }

  .case-proof:last-child {
    width: 100%;
    justify-self: stretch;
  }

  .case-proof__header,
  .case-proof__result,
  .case-proof__metrics {
    padding-inline: 18px;
  }

  .case-proof__metrics div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .case-proof__metrics dt {
    font-size: 13px;
  }

  .case-proof__metrics dd {
    font-size: 14px;
  }

  .case-proof__badge {
    position: static;
    display: block;
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  .about-photo img {
    height: clamp(220px, 75vw, 360px);
    min-height: 0;
    object-position: center 24%;
  }

  .about-photo figcaption {
    position: static;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .faq__list details > p {
    font-size: 16px;
    line-height: 1.6;
  }

  .application__facts li {
    flex-wrap: wrap;
    gap: 3px 14px;
  }

  .application__facts span {
    text-align: left;
    font-size: 14px;
  }

  .application-card {
    padding: 24px 18px;
  }

  .application-card h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .application-card__intro {
    font-size: 16px;
  }

  .form-field > span:first-child {
    font-size: 14px;
  }

  .form-check {
    grid-template-columns: 24px minmax(0, 1fr);
    font-size: 13px;
    line-height: 1.5;
    padding-block: 4px;
    overflow-wrap: anywhere;
  }

  .site-footer nav {
    gap: 0;
  }

  .site-footer nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding-block: 8px;
    font-size: 13px;
  }

  .cookie-notice {
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 8px;
    padding: 12px;
  }

  .cookie-notice p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-notice button {
    min-height: 44px;
  }
}

@media (max-width: 370px) {
  .hero-person {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .hero-person img {
    width: 88px;
    height: 124px;
  }

  .hero-person__caption strong {
    font-size: 14px;
  }
}

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

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