:root {
  --ink: #16191b;
  --muted: #62696d;
  --paper: #f5f6f6;
  --line: #dce0e1;
  --blue: #007bed;
  --night: #111314;
  --radius: 6px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
h1,
h2,
h3,
.brand {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.15;
}
h1 {
  font-size: 64px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 22px;
}
p {
  overflow-wrap: break-word;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.section-heading h2 {
  max-width: 700px;
}
.heading-note {
  max-width: 330px;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}
.text-link i {
  transition: transform 0.25s;
}
.text-link:hover i {
  transform: translateX(4px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 48px;
  padding: 14px 24px;
  background: var(--blue);
  color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #0068cc;
  transform: translateY(-2px);
}
.icon-button {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  transition: background 0.2s;
}
.icon-button:hover {
  background: var(--paper);
}
.icon-button:disabled {
  opacity: 0.35;
  cursor: default;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 19, 20, 0.98);
  color: white;
  border-bottom: 1px solid #303334;
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  white-space: nowrap;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand b {
  color: #1594ff;
  font-weight: 600;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-size: 13px;
  color: #c5cbce;
  position: relative;
  padding-block: 16px;
}
.main-nav a:hover,
.main-nav a[aria-current] {
  color: white;
}
.main-nav a[aria-current]::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1594ff;
}
.header-quote {
  font-size: 12px;
  min-height: 40px;
  padding: 10px 16px;
  gap: 14px;
}
.menu-toggle {
  display: none;
  color: white;
  border-color: #45494b;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  background: white;
  color: var(--ink);
}
.skip-link:focus {
  top: 10px;
}
.page-heading {
  padding-block: 76px 58px;
}
.page-heading h1 {
  margin-bottom: 24px;
}
.page-heading .lead {
  max-width: 640px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split > * {
  min-width: 0;
}
.split h2 {
  margin-bottom: 28px;
}
.split p + p {
  margin-top: 20px;
}
.cta-band {
  background: var(--blue);
  color: white;
  padding-block: 64px;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta-band .eyebrow {
  color: #e2f0ff;
}
.cta-band h2 {
  font-size: 38px;
}
.button.light {
  background: white;
  color: var(--ink);
}
.site-footer {
  padding-block: 76px 24px;
  background:
    linear-gradient(135deg, rgba(0, 123, 237, 0.1), transparent 34%),
    var(--night);
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr 1.15fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 58px;
}
.footer-brand-block p {
  max-width: 360px;
  color: #aeb6bb;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: #1594ff;
  background: rgba(21, 148, 255, 0.16);
}
.footer-column {
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer-column h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 15px;
  font-weight: 700;
}
.footer-column a {
  color: #aeb6bb;
  transition:
    color 0.2s,
    transform 0.2s;
}
.footer-column a:hover {
  color: white;
  transform: translateX(3px);
}
.footer-contact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}
.footer-contact-card > span {
  display: block;
  color: white;
  font-family: Manrope, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.footer-contact-card p {
  color: #aeb6bb;
  font-size: 13px;
  line-height: 1.7;
  margin-block: 12px 18px;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 148, 255, 0.45);
  border-radius: 6px;
  background: rgba(21, 148, 255, 0.12);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}
.footer-contact:hover {
  background: rgba(21, 148, 255, 0.22);
  transform: translateY(-2px);
}
.footer-contact strong {
  display: block;
  margin-left: auto;
  color: #dcefff;
  font-size: 13px;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid #363a3b;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aeb6bb;
  font-size: 11px;
}
.footer-bottom a {
  text-decoration: underline;
}
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}
.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1700px) {
  .container {
    width: min(1440px, calc(100% - 120px));
  }
}
@media (max-width: 1100px) {
  .header-quote {
    display: none;
  }
  .split {
    gap: 40px;
  }
  h1 {
    font-size: 54px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 60px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 21px;
  }
  .header-inner {
    min-height: 72px;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--night);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #363a3b;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    font-size: 17px;
    padding: 12px;
  }
  .main-nav a[aria-current]::after {
    left: 12px;
    right: auto;
    width: 25px;
    bottom: 4px;
  }
  .page-heading {
    padding-block: 50px 40px;
  }
  .page-heading .lead,
  .lead {
    font-size: 16px;
  }
  .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 24px;
    margin-bottom: 30px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cta-band {
    padding-block: 50px;
  }
  .cta-band .container {
    flex-direction: column;
    align-items: start;
  }
  .cta-band h2 {
    font-size: 30px;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
  .footer-contact-card {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 380px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 27px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-contact strong {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
