:root {
  color-scheme: dark;
  --bg: #090b0f;
  --bg-soft: #0f1319;
  --surface: #141820;
  --surface-2: #1a1f28;
  --paper: #f2f3f5;
  --paper-2: #e8eaed;
  --ink: #101217;
  --text: #f7f8fa;
  --muted: #aab1bc;
  --muted-dark: #5d6470;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(13, 16, 22, 0.13);
  --accent: #ff4b2b;
  --accent-bright: #ff6a36;
  --accent-dark: #cc2e16;
  --success: #42c984;
  --danger: #ff7466;
  --shell: 1240px;
  --header-height: 78px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 106, 54, 0.92);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: var(--radius-s);
  background: var(--text);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(8, 10, 14, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  line-height: 1;
}

.brand__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  place-items: center;
  transform: skewX(-10deg);
  border-radius: 6px 2px 6px 2px;
  background: var(--accent);
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand__word {
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.brand__word span {
  color: var(--accent-bright);
}

.brand__domain {
  margin-left: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: #d8dce2;
  font-size: 0.91rem;
  font-weight: 580;
}

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

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-s);
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(255, 75, 43, 0.2);
  color: #fff;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  box-shadow: 0 16px 40px rgba(255, 75, 43, 0.29);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  transform: none;
  border-color: #4c5058;
  background: #4c5058;
  box-shadow: none;
  color: #c8cbd0;
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(8, 10, 14, 0.2);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  background: #07090d;
}

.carousel {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
}

.carousel__viewport,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 650ms;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.025);
  filter: saturate(0.86) contrast(1.04);
  transition: transform 8s linear;
}

.hero-slide.is-active .hero-slide__image {
  transform: scale(1.075);
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.81) 29%, rgba(5, 7, 10, 0.18) 67%, rgba(5, 7, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.84) 0%, transparent 38%, rgba(5, 7, 10, 0.24) 100%);
}

.hero-slide__shade::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.hero-slide__content {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: center;
  padding-top: calc(var(--header-height) + 10px);
  padding-bottom: 180px;
}

.hero-copy {
  width: min(690px, 58vw);
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 550ms ease 180ms, transform 650ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.hero-slide.is-active .hero-copy {
  transform: translateY(0);
  opacity: 1;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #e1e4e8;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--accent-bright);
}

.eyebrow::after,
.section-kicker::before {
  width: 58px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 820px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(3.1rem, 5.5vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.hero-copy h1 em,
.hero-copy h2 em {
  color: #c7ccd3;
  font-style: normal;
  font-weight: 380;
}

.hero-copy__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #d3d7dd;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.96rem;
  font-weight: 680;
  transition: color 170ms ease, border-color 170ms ease;
}

.text-link span {
  color: var(--accent-bright);
  font-size: 1.15rem;
  transition: transform 170ms ease;
}

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

.text-link:hover span {
  transform: translate(3px, 3px);
}

.slide-note {
  position: absolute;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 172px;
  display: grid;
  min-width: 260px;
  gap: 3px;
  padding: 17px 20px 17px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(9, 11, 15, 0.74);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 450ms ease 450ms, transform 500ms ease 450ms;
}

.hero-slide.is-active .slide-note {
  opacity: 1;
  transform: translateX(0);
}

.slide-note span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-note strong {
  font-size: 0.98rem;
  font-weight: 690;
}

.carousel__controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 76px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.carousel-tabs {
  display: flex;
  min-width: min(610px, 68vw);
  border: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.carousel-tab {
  flex: 1;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #b8bec7;
  font-size: 0.88rem;
  font-weight: 690;
  text-align: left;
  transition: background-color 170ms ease, color 170ms ease;
}

.carousel-tab:last-child {
  border-right: 0;
}

.carousel-tab span {
  margin-right: 7px;
  color: #7c838d;
  font-size: 0.7rem;
}

.carousel-tab:hover,
.carousel-tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.carousel-tab.is-active span {
  color: var(--accent-bright);
}

.carousel-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.55);
  color: #fff;
  font-size: 1.15rem;
  transition: border-color 170ms ease, background-color 170ms ease;
}

.carousel-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.carousel__progress {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.carousel__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.carousel.is-running .carousel__progress span {
  width: 100%;
  transition: width 6s linear;
}

.trust-rail {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 10, 14, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.trust-rail__inner {
  display: grid;
  min-height: 62px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-rail p {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  border-right: 1px solid var(--line);
  color: #c9ced5;
  font-size: 0.82rem;
  font-weight: 580;
}

.trust-rail p:last-child {
  border-right: 0;
}

.trust-rail p span {
  color: var(--accent-bright);
  font-weight: 900;
}

.section {
  padding: 128px 0;
}

.section-heading {
  display: grid;
  max-width: 850px;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.48fr);
  gap: 24px 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--accent-bright);
}

.section-kicker::before {
  width: 42px;
}

.section-heading h2,
.process__intro h2,
.control-panel__copy h2,
.request__copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  font-weight: 740;
  letter-spacing: -0.057em;
  line-height: 1.02;
}

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

.directions {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 75, 43, 0.08), transparent 25%),
    var(--bg);
}

.directions::before {
  position: absolute;
  top: 128px;
  right: -90px;
  width: 260px;
  height: 1px;
  transform: rotate(-26deg);
  background: var(--accent);
  content: "";
  opacity: 0.45;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.direction-card {
  position: relative;
  min-height: 440px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.direction-card::after {
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.direction-card:hover {
  z-index: 1;
  transform: translateY(-7px);
  border-color: rgba(255, 75, 43, 0.55);
  background: rgba(255, 255, 255, 0.055);
}

.direction-card--accent {
  border-color: rgba(255, 75, 43, 0.48);
  background: linear-gradient(145deg, rgba(255, 75, 43, 0.14), rgba(255, 255, 255, 0.018));
}

.direction-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 86px;
}

.direction-card__top span {
  color: var(--accent-bright);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.direction-card__top small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direction-card h3 {
  max-width: 300px;
  margin-bottom: 16px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.direction-card > p {
  min-height: 77px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.direction-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-card li {
  position: relative;
  padding-left: 18px;
  color: #d4d8de;
  font-size: 0.88rem;
}

.direction-card li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--accent);
  content: "";
}

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

.process__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 11vw;
}

.process__intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  height: fit-content;
}

.process .section-kicker {
  color: var(--accent-dark);
}

.process__intro h2 {
  margin-bottom: 28px;
}

.process__intro > p:not(.section-kicker) {
  max-width: 510px;
  margin-bottom: 28px;
  color: var(--muted-dark);
}

.text-link--dark {
  border-color: rgba(16, 18, 23, 0.35);
  color: var(--ink);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 0 0 42px;
}

.process-list li:not(:last-child) {
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 42px;
}

.process-list > li > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 75, 43, 0.35);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 0.77rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.control {
  background: var(--paper);
  color: var(--ink);
  padding-top: 0;
}

.control-panel {
  position: relative;
  padding: 72px;
  overflow: hidden;
  background: #11151b;
  box-shadow: var(--shadow);
  color: var(--text);
}

.control-panel::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 550px;
  height: 550px;
  border: 90px solid rgba(255, 75, 43, 0.08);
  border-radius: 50%;
  content: "";
}

.control-panel__copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  gap: 24px 90px;
  align-items: end;
  margin-bottom: 68px;
}

.control-panel__copy .section-kicker {
  grid-column: 1 / -1;
}

.control-panel__copy > p:last-child {
  margin-bottom: 5px;
  color: var(--muted);
}

.control-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.control-grid article {
  min-height: 235px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.control-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(255, 75, 43, 0.5);
  color: var(--accent-bright);
  font-size: 1.25rem;
}

.control-grid h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.control-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq {
  background: var(--bg-soft);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 10vw;
}

.faq .section-heading {
  display: block;
  margin-bottom: 0;
}

.faq .section-heading .section-kicker {
  margin-bottom: 22px;
}

.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 auto;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  color: #eef0f3;
  font-size: 1.08rem;
  font-weight: 660;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-bright);
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.faq-list details p {
  max-width: 700px;
  padding: 0 52px 28px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.request {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 75, 43, 0.13), transparent 34%),
    #080a0e;
}

.request::after {
  position: absolute;
  z-index: 0;
  right: -11vw;
  bottom: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255, 255, 255, 0.018), 0 0 0 13vw rgba(255, 255, 255, 0.012);
  content: "";
}

.request__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 9vw;
  align-items: start;
}

.request__copy {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.request__copy h2 {
  margin-bottom: 26px;
}

.request__copy > p:not(.section-kicker) {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.02rem;
}

.request__privacy-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  max-width: 470px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.request__privacy-note > span {
  color: var(--accent-bright);
  font-size: 0.75rem;
}

.request__privacy-note p {
  margin: 0;
  color: #c5cad1;
  font-size: 0.87rem;
}

.form-card {
  padding: 42px;
  border-top: 3px solid var(--accent);
  background: #f4f5f6;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  color: var(--ink);
}

.lead-form {
  display: grid;
  gap: 23px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  position: relative;
  display: grid;
  gap: 8px;
}

.field label,
.captcha-field__label {
  color: #343943;
  font-size: 0.82rem;
  font-weight: 720;
}

.field label span,
.captcha-field__label span {
  color: var(--accent-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #cfd3d8;
  border-radius: 7px;
  outline: 0;
  background: #fff;
  color: #16191f;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field select {
  padding-right: 42px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a919b;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d8392b;
  box-shadow: 0 0 0 3px rgba(216, 57, 43, 0.1);
}

.field__counter {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 2px 5px;
  background: rgba(255, 255, 255, 0.88);
  color: #777e88;
  font-size: 0.7rem;
}

.captcha-field {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 130px;
  gap: 18px;
  align-items: end;
}

.captcha-box {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.captcha-image-wrap {
  position: relative;
  display: grid;
  width: 220px;
  max-width: calc(100% - 50px);
  height: 72px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #cfd3d8;
  border-radius: 7px;
  background: #11151b;
}

.captcha-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.captcha-image-wrap img:not([src]),
.captcha-image-wrap img[src=""] {
  display: none;
}

.captcha-loading {
  position: absolute;
  color: #b8bec7;
  font-size: 0.75rem;
}

.captcha-image-wrap.is-loaded .captcha-loading {
  display: none;
}

.captcha-refresh {
  display: grid;
  width: 44px;
  height: 72px;
  place-items: center;
  border: 1px solid #cfd3d8;
  border-radius: 7px;
  background: #fff;
  color: #313640;
  font-size: 1.35rem;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.captcha-refresh:hover {
  border-color: var(--accent);
  background: #fff8f5;
  color: var(--accent-dark);
}

.field--captcha input {
  height: 72px;
  font-size: 1.35rem;
  font-weight: 750;
  text-align: center;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #5f6670;
  font-size: 0.79rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.consent button,
.site-footer__bottom button {
  padding: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: inherit;
}

.button--submit {
  width: 100%;
  min-height: 58px;
}

.button__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 750ms linear infinite;
}

.button--submit.is-loading .button__spinner {
  display: inline-block;
}

.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: #68707b;
  font-size: 0.81rem;
  text-align: center;
}

.form-status.is-success {
  color: #137246;
  font-weight: 650;
}

.form-status.is-error {
  color: #b42318;
  font-weight: 650;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06080b;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 70px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 54px;
}

.brand--footer {
  margin-bottom: 20px;
}

.site-footer__main > div:first-child > p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  gap: 13px;
}

.site-footer nav a {
  width: fit-content;
  color: #c5cad1;
  font-size: 0.9rem;
}

.site-footer nav a:hover {
  color: var(--accent-bright);
}

.site-footer__cta {
  justify-self: end;
}

.site-footer__cta p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer__bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #858c96;
  font-size: 0.74rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom button {
  border-bottom-color: rgba(133, 140, 150, 0.5);
}

.privacy-dialog {
  width: min(660px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-m);
  background: #f5f6f7;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.6);
  color: var(--ink);
}

.privacy-dialog::backdrop {
  background: rgba(2, 3, 5, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.privacy-dialog__head {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #d8dbe0;
  background: rgba(245, 246, 247, 0.95);
}

.privacy-dialog__head h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.privacy-dialog__head button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #e6e8eb;
  color: #252932;
  font-size: 1.35rem;
}

.privacy-dialog__body {
  padding: 28px;
}

.privacy-dialog__body p {
  color: #4d535d;
}

.privacy-dialog__body p:last-child {
  margin-bottom: 0;
}

.noscript-note {
  position: fixed;
  z-index: 999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 18px;
  border: 1px solid #f09a83;
  border-radius: var(--radius-s);
  background: #fff0eb;
  color: #7f1d12;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-copy {
    width: min(680px, 68vw);
  }

  .slide-note {
    display: none;
  }

  .direction-card {
    padding: 28px;
  }

  .direction-card__top {
    margin-bottom: 60px;
  }

  .process__layout,
  .request__layout {
    gap: 6vw;
  }

  .control-panel {
    padding: 54px;
  }

  .control-panel__copy {
    gap: 24px 54px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(8, 10, 14, 0.48);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    gap: 4px;
    padding: 18px 20px 28px;
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 14, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    color: #d9dde3;
    font-weight: 620;
  }

  .mobile-nav .button {
    margin-top: 12px;
  }

  .carousel,
  .hero-slide__content {
    min-height: max(700px, 100svh);
  }

  .hero-slide__image {
    object-position: 60% center;
  }

  .hero-slide__shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.93) 0%, rgba(5, 7, 10, 0.67) 55%, rgba(5, 7, 10, 0.25) 100%),
      linear-gradient(0deg, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.15) 60%, rgba(5, 7, 10, 0.45) 100%);
  }

  .hero-slide__content {
    align-items: center;
    padding-bottom: 210px;
  }

  .hero-copy {
    width: min(600px, 82vw);
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2.8rem, 8.5vw, 5rem);
  }

  .carousel__controls {
    bottom: 78px;
  }

  .carousel-tabs {
    min-width: 0;
    flex: 1;
  }

  .carousel-tab {
    padding: 14px 10px;
    text-align: center;
  }

  .carousel-tab span {
    display: none;
  }

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

  .trust-rail p {
    min-height: 31px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-kicker {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    margin-bottom: 22px;
  }

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

  .direction-card {
    min-height: 0;
  }

  .direction-card__top {
    margin-bottom: 44px;
  }

  .direction-card > p {
    min-height: 0;
  }

  .process__layout,
  .request__layout,
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .process__intro,
  .request__copy {
    position: static;
  }

  .control-panel {
    padding: 46px 32px;
  }

  .control-panel__copy {
    display: block;
  }

  .control-panel__copy .section-kicker {
    margin-bottom: 22px;
  }

  .control-panel__copy h2 {
    margin-bottom: 24px;
  }

  .faq .section-heading {
    margin-bottom: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 1.08rem;
  }

  .brand__word {
    font-size: 1.12rem;
  }

  .carousel,
  .hero-slide__content {
    min-height: max(720px, 100svh);
  }

  .hero-slide__image {
    object-position: 66% center;
  }

  .hero-slide__shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.44) 100%),
      linear-gradient(0deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.4) 53%, rgba(5, 7, 10, 0.48) 100%);
  }

  .hero-slide__content {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 212px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.7rem;
  }

  .eyebrow::after {
    width: 34px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    margin-bottom: 19px;
    font-size: clamp(2.4rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

  .hero-copy__lead {
    display: -webkit-box;
    margin-bottom: 24px;
    overflow: hidden;
    font-size: 0.95rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-copy__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

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

  .hero-copy__actions .text-link {
    width: fit-content;
    margin-left: 2px;
  }

  .carousel__controls {
    bottom: 76px;
    gap: 8px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .carousel-tab {
    padding: 11px 5px;
    font-size: 0.74rem;
  }

  .trust-rail p {
    justify-content: flex-start;
    padding-left: 10px;
    font-size: 0.69rem;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading h2,
  .process__intro h2,
  .control-panel__copy h2,
  .request__copy h2 {
    font-size: clamp(2.08rem, 10.4vw, 3.1rem);
  }

  .section-kicker {
    font-size: 0.69rem;
  }

  .direction-card {
    padding: 25px;
  }

  .direction-card__top {
    margin-bottom: 34px;
  }

  .process__layout,
  .request__layout,
  .faq__layout {
    gap: 48px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }

  .process-list > li > span {
    width: 44px;
    height: 44px;
  }

  .control {
    padding: 0;
  }

  .control .shell {
    width: 100%;
  }

  .control-panel {
    padding: 64px 20px;
  }

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

  .control-grid article {
    min-height: 0;
  }

  .faq-list summary {
    font-size: 0.98rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-row,
  .captcha-field {
    grid-template-columns: 1fr;
  }

  .captcha-field {
    gap: 14px;
  }

  .captcha-image-wrap {
    width: calc(100% - 52px);
    max-width: none;
  }

  .field--captcha input {
    height: 54px;
    text-align: left;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

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

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

  .hero-slide__image {
    transform: none !important;
  }

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