:root {
  color-scheme: light;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #162033;
  --ink-strong: #0d1628;
  --muted: #4d5c70;
  --paper: #f6f9ff;
  --surface: #ffffff;
  --line: #d7e1ef;
  --line-strong: #aebed4;
  --blue: #145bff;
  --blue-deep: #0b3fb3;
  --blue-soft: #edf3ff;
  --teal: #008c7a;
  --teal-deep: #006a5d;
  --teal-soft: #e7f8f4;
  --rose: #e5485f;
  --rose-deep: #a91f3c;
  --rose-soft: #fff0f3;
  --rose-line: #f2a6b2;
  --yellow: #ffc83d;
  --yellow-soft: #fff7d6;
  --focus: #0b3fb3;
  --container: 1180px;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
a {
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration-thickness: 2px;
}

a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(20, 91, 255, 0.18);
}

a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--focus);
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.06;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

p {
  margin-bottom: 18px;
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: 24px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  color: #ffffff;
  background: var(--ink-strong);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
}

.brand__text {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.brand__text strong {
  font-size: 19px;
  font-weight: 800;
}

.brand__text span {
  color: var(--muted);
  font-size: 12px;
}

.brand:hover strong {
  color: var(--blue-deep);
}

.nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.nav__link,
.nav__email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.nav__link {
  padding: 0 13px;
}

.nav__email {
  gap: 9px;
  margin-left: 4px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  color: var(--ink-strong);
  background: var(--surface);
}

.nav__email svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav__link:hover,
.nav__email:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.nav__email:hover {
  border-color: var(--blue);
}

.hero {
  padding: 60px 0 54px;
  background: var(--surface);
}

.hero__grid {
  display: grid;
  min-height: calc(100svh - 300px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 52px;
}

.hero__content,
.hero__visual {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.eyebrow::before {
  width: 28px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--yellow);
  content: "";
}

.hero__lead {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: #ffffff;
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--ink-strong);
  background: var(--surface);
}

.button--secondary:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.hero__email {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero__email a {
  color: var(--blue-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero__promise {
  max-width: 680px;
  margin: 14px 0 0;
  padding: 14px 16px 14px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.hero__promise a {
  color: var(--blue-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.safety-note {
  display: flex;
  max-width: 680px;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.safety-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__visual img {
  width: 100%;
  max-width: 610px;
  max-height: 280px;
  object-fit: contain;
}

.statement-band {
  color: #ffffff;
  background: var(--blue-deep);
}

.statement-band__inner {
  display: grid;
  min-height: 94px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.statement-band code {
  color: var(--yellow);
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
}

.statement-band span {
  color: rgba(255, 255, 255, 0.76);
}

.statement-band a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
}

.statement-band a:hover {
  color: var(--yellow);
}

.support,
.faq {
  padding: 96px 0;
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading a {
  color: var(--blue-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0;
  border-bottom: 1px solid var(--line-strong);
}

.support__item {
  min-width: 0;
  padding: 30px 32px 32px;
  border-top: 4px solid var(--blue);
}

.support__item:nth-child(2) {
  border-top-color: var(--teal);
}

.support__item:nth-child(3) {
  border-top-color: var(--rose);
}

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

.support__number {
  display: block;
  margin-bottom: 34px;
  color: var(--blue-deep);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
}

.support__item:nth-child(2) .support__number {
  color: var(--teal-deep);
}

.support__item:nth-child(3) .support__number {
  color: var(--rose-deep);
}

.support__item p {
  margin-bottom: 0;
  color: var(--muted);
}

.request {
  padding: 96px 0;
  background: var(--paper);
}

.request .section-kicker {
  color: var(--teal-deep);
}

.request__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 72px;
}

.steps {
  display: grid;
  gap: 0;
  margin: 36px 0 30px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps__number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-deep);
  background: var(--teal-soft);
  font-size: 14px;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.data-safety {
  padding: 34px;
  border: 1px solid var(--rose-line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(22, 32, 51, 0.1);
}

.data-safety__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--rose-deep);
  background: var(--rose-soft);
}

.data-safety__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.data-safety h2 {
  font-family: inherit;
  font-size: 28px;
  line-height: 1.2;
}

.data-safety > p:not(.section-kicker) {
  color: var(--muted);
}

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

.faq__item {
  min-width: 0;
  padding: 28px 0 30px;
  border-top: 1px solid var(--line-strong);
}

.faq__item h3 {
  font-size: 19px;
}

.faq__item p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq__item a {
  color: var(--blue-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact {
  overflow: hidden;
  padding: 72px 0 0;
  border-top: 4px solid var(--yellow);
  background: var(--blue-soft);
}

.contact__grid {
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 50px;
}

.contact__content {
  padding-bottom: 72px;
}

.contact__content > p:not(.section-kicker) {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.contact__visual {
  align-self: end;
}

.contact__visual img {
  width: 100%;
  max-width: 603px;
  margin-left: auto;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink-strong);
}

.footer__inner {
  display: grid;
  min-height: 154px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.footer__inner strong {
  color: #ffffff;
  font-size: 18px;
}

.footer__inner p {
  margin: 4px 0 0;
  font-size: 13px;
}

.footer__inner > a:not(.footer__top) {
  color: #ffffff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer__top {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.footer__top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer__top:hover {
  border-color: var(--yellow);
  color: var(--ink-strong);
  background: var(--yellow);
}

.error-page {
  display: grid;
  min-height: calc(100svh - 232px);
  place-items: center;
  padding: 72px 0;
  background: var(--paper);
}

.error-page__content {
  max-width: 720px;
  text-align: center;
}

.error-page__code {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
}

.error-page__content p:not(.error-page__code) {
  color: var(--muted);
  font-size: 18px;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 34px;
  }

  .request__grid {
    gap: 46px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .nav__link {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__visual img {
    max-width: 620px;
  }

  .statement-band__inner {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 22px 0;
  }

  .statement-band a {
    grid-column: 1 / -1;
  }

  .support__item {
    padding-right: 22px;
    padding-left: 22px;
  }

  .request__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .data-safety {
    max-width: 640px;
  }

  .contact__grid {
    gap: 0;
  }

  .contact__content {
    padding-bottom: 20px;
  }

  .contact__visual img {
    max-width: 520px;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 19px;
  }

  .header__inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

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

  .brand__text span {
    display: none;
  }

  .nav__email {
    width: 44px;
    padding: 0;
  }

  .nav__email-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    padding: 44px 0 42px;
  }

  .hero__grid {
    gap: 32px;
  }

  .hero__lead,
  .section-heading > p:last-child,
  .contact__content > p:not(.section-kicker) {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__email {
    display: grid;
  }

  .hero__visual img {
    width: 100%;
    max-width: 520px;
  }

  .statement-band__inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .statement-band a {
    grid-column: auto;
    margin-top: 6px;
  }

  .support,
  .request,
  .faq {
    padding: 72px 0;
  }

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

  .support__grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .support__item {
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--line-strong);
  }

  .support__item + .support__item {
    border-left: 0;
  }

  .support__number {
    margin-bottom: 18px;
  }

  .request__grid {
    gap: 42px;
  }

  .steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .data-safety {
    padding: 26px;
  }

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

  .contact {
    padding-top: 64px;
  }

  .contact__grid {
    min-height: 0;
  }

  .contact__content {
    padding-bottom: 32px;
  }

  .contact__visual img {
    width: 100%;
    max-width: 500px;
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding: 28px 0;
  }

  .footer__inner > a:not(.footer__top) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer__top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 29px;
  }

  .data-safety {
    padding: 22px;
  }
}

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

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