.site-header {
  min-height: 122px;
  height: auto;
}

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

.brand-badge {
  width: 150px;
  height: 110px;
  padding: 3px 10px;
  background: transparent;
  border-radius: 0;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 104px;
}

.site-header nav {
  align-items: center;
}

.site-header nav a,
.menu-toggle {
  min-height: 44px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 13px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.hero {
  min-height: calc(100vh - 122px);
}

.hero-visual > img {
  object-position: center;
}

.risk-image img {
  filter: saturate(.72) contrast(1.02);
  object-position: center;
}

.risk-list article {
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 116px;
  padding: 18px 20px;
  border: 1px solid rgba(243, 122, 134, .28);
  border-radius: 13px;
  background: rgba(18, 29, 49, .72);
}

.risk-list article div {
  grid-column: auto;
}

.risk-list h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.risk-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid currentColor;
  border-radius: 16px;
  color: var(--red);
  background: rgba(243, 122, 134, .1);
}

.risk-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.risk-list article:nth-child(2) .risk-icon,
.risk-list article:nth-child(5) .risk-icon {
  color: var(--amber);
  background: rgba(245, 196, 81, .1);
}

.risk-list article:nth-child(3) .risk-icon,
.risk-list article:nth-child(6) .risk-icon {
  color: var(--blue);
  background: rgba(103, 183, 255, .1);
}

.orbit-core {
  flex-direction: column;
  gap: 12px;
}

.orbit-core span {
  white-space: nowrap;
  font-size: 29px;
  line-height: 1;
}

.orbit-core strong {
  font-size: 46px;
  line-height: 1;
}

.steps .stage-icon {
  position: relative;
  width: 86px;
  height: 86px;
}

.stage-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-icon b {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--blue);
  color: #07101d;
  font-size: 13px;
  font-weight: 900;
}

.steps .finish .stage-icon b {
  background: var(--lime);
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(42px, 7vw, 90px);
  background: var(--bg2);
}

.contact-intro {
  align-self: start;
  position: sticky;
  top: 132px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--blue2);
  font-weight: 750;
}

.email-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--blue2);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--lime);
}

.contact-details strong {
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue2);
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 14px;
  background: #0b1322;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 145px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(103, 183, 255, .4);
  border-color: var(--blue);
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.contact-form .consent input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--lime);
  flex: none;
}

.contact-form .button {
  border: 0;
  justify-self: start;
  font: inherit;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.form-status:not(:empty) {
  color: var(--green);
  font-weight: 750;
}

footer img {
  width: auto;
  max-height: 76px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

footer a {
  color: var(--blue2);
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 112px;
    padding: 6px 24px;
  }

  .brand-badge {
    width: 145px;
    height: 100px;
  }

  .brand img {
    max-height: 94px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .site-header nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(7, 11, 20, .98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header nav a {
    display: flex;
    align-items: center;
    padding: 10px 13px;
    border-radius: 7px;
  }

  .site-header nav a:hover {
    background: var(--panel);
  }

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

  .contact-intro {
    position: static;
  }
}

@media (max-width: 980px) {
  .steps article {
    grid-template-columns: 86px 1fr;
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 96px;
    padding: 4px 16px;
  }

  .brand-badge {
    width: 118px;
    height: 86px;
    padding: 2px 8px;
  }

  .brand img {
    max-height: 80px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

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

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .risk-list article {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    padding: 16px;
  }

  .risk-icon {
    width: 54px;
    height: 54px;
  }

  .risk-icon svg {
    width: 30px;
    height: 30px;
  }

  .orbit-core span {
    font-size: 20px;
  }

  .orbit-core strong {
    font-size: 30px;
  }
}
