:root {
  --navy-950: #020d1f;
  --navy-900: #03142d;
  --navy-850: #061a38;
  --navy-800: #0b2448;
  --blue-600: #0869ff;
  --blue-500: #158bff;
  --blue-400: #45a7ff;
  --white: #ffffff;
  --paper: #f7f9fc;
  --ink: #07152d;
  --muted: #58657a;
  --line-light: #d7dfea;
  --line-dark: rgba(171, 201, 237, 0.2);
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1320px;
  --header-height: 92px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--white);
  background: var(--blue-600);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  transition:
    height 280ms var(--ease),
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(3, 20, 45, 0);
  backdrop-filter: blur(0);
  transition:
    background-color 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.is-scrolled::before,
.site-header-solid::before {
  background: rgba(3, 20, 45, 0.93);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  height: 76px;
  box-shadow: 0 18px 48px rgba(0, 8, 25, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--white);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  overflow: visible;
  color: var(--blue-500);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 48px);
}

.primary-nav a,
.footer-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 530;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 240ms var(--ease);
}

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

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

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 36%, rgba(16, 99, 214, 0.13), transparent 34%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 58%, #041b3e 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(100, 157, 222, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 157, 222, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 45%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 28px;
  align-items: center;
  min-height: 900px;
  padding-top: var(--header-height);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 68px 0 86px;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(60px, 5.6vw, 86px);
  font-weight: 680;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--blue-500);
  background: linear-gradient(100deg, #0b6cff 10%, #248fff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p {
  max-width: 650px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 224px;
  min-height: 64px;
  margin-top: 48px;
  padding: 0 24px 0 28px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 620;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0966ff, #138cff);
  box-shadow: 0 18px 50px rgba(0, 102, 255, 0.25);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(0, 102, 255, 0.34);
}

.button:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 770px);
  justify-self: end;
  margin-top: 36px;
  opacity: 0.93;
}

.hero-visual::after {
  position: absolute;
  inset: auto 2% 4% 4%;
  height: 18%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(3, 20, 45, 0.65), transparent);
  filter: blur(12px);
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

.routes path {
  stroke-dasharray: 6 8;
  animation: route-flow 12s linear infinite;
}

.routes path:nth-child(2) {
  animation-delay: -3s;
}

.routes path:nth-child(3) {
  animation-delay: -6s;
}

.routes path:nth-child(4) {
  animation-delay: -8s;
}

.routes path:nth-child(5) {
  animation-delay: -10s;
}

.route-nodes circle {
  animation: node-pulse 3.6s ease-in-out infinite;
}

.route-nodes circle:nth-child(2n) {
  animation-delay: -1.2s;
}

.route-nodes circle:nth-child(3n) {
  animation-delay: -2.4s;
}

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
}

.about {
  min-height: 670px;
  padding: 160px 0 150px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

.about::before,
.about::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border: 1px dashed rgba(21, 139, 255, 0.22);
  border-radius: 50%;
}

.about::before {
  width: 780px;
  height: 310px;
  right: -190px;
  bottom: -150px;
  transform: rotate(-16deg);
}

.about::after {
  width: 620px;
  height: 210px;
  bottom: -130px;
  left: -290px;
  transform: rotate(17deg);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.section-heading {
  padding: 16px 80px 40px 0;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 34px;
  max-width: 470px;
  margin-bottom: 54px;
  color: var(--blue-500);
  font-size: 20px;
  font-weight: 600;
}

.section-index i {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
}

.section-heading h2,
.services-heading h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(60px, 7vw, 104px);
  font-weight: 630;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.about-copy {
  display: flex;
  align-items: center;
  min-height: 365px;
  padding: 26px 0 26px 92px;
  border-left: 1px solid rgba(119, 170, 229, 0.42);
}

.about-copy p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(24px, 2.35vw, 35px);
  font-weight: 420;
  line-height: 1.58;
  letter-spacing: -0.025em;
}

.services {
  padding: 140px 0 150px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.012)),
    var(--navy-950);
  border-top: 1px solid var(--line-dark);
}

.services-heading {
  padding-bottom: 60px;
}

.section-label {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 15px;
  color: var(--blue-500);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  content: "";
  background: var(--blue-600);
}

.service-list {
  border-top: 1px solid rgba(175, 202, 232, 0.32);
}

.service-row {
  display: grid;
  grid-template-columns: 160px 155px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 210px;
  border-bottom: 1px solid rgba(175, 202, 232, 0.32);
  transition: background-color 240ms ease;
}

.service-row:hover {
  background: rgba(21, 139, 255, 0.035);
}

.service-number {
  color: var(--blue-500);
  font-size: clamp(64px, 6.3vw, 94px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.service-icon {
  width: 88px;
  height: 88px;
  color: rgba(255, 255, 255, 0.88);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 580;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.contact {
  position: relative;
  padding: 150px 0 140px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 8vw, 130px);
}

.contact-heading {
  padding-top: 40px;
}

.contact-heading .accent-line {
  display: block;
  width: 62px;
  height: 4px;
  margin-bottom: 44px;
  background: var(--blue-600);
}

.contact-heading h2 {
  color: var(--ink);
}

.contact-heading p {
  max-width: 440px;
  margin: 45px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.contact-details {
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.contact-details > div {
  display: grid;
  grid-template-columns: minmax(185px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-details dt,
.contact-details dd {
  margin: 0;
}

.contact-details dt {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.contact-details dd {
  color: #1a2942;
  font-size: 19px;
  line-height: 1.5;
}

.contact-details dd a {
  display: block;
  width: fit-content;
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: rgba(8, 105, 255, 0.35);
  text-underline-offset: 5px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.contact-details dd a + a {
  margin-top: 6px;
}

.contact-details dd a:hover {
  color: #004fc7;
  text-decoration-color: currentColor;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(8, 105, 255, 0.12), transparent 32%),
    var(--navy-900);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 174px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  font-size: 24px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding: calc(var(--header-height) + 84px) 0 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 35%, rgba(8, 105, 255, 0.16), transparent 28%),
    var(--navy-900);
}

.legal-hero-inner {
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  font-weight: 620;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--white);
}

.back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

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

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 16px;
}

.legal-content {
  display: grid;
  grid-template-columns: 300px minmax(0, 820px);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 130px;
}

.legal-meta {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.legal-meta dl {
  margin: 0;
}

.legal-meta dl > div + div {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line-light);
}

.legal-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.legal-body {
  min-width: 0;
}

.legal-body section + section {
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
}

.legal-body h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-body p,
.legal-body li,
.legal-body address {
  color: #3e4b5e;
  font-size: 17px;
  line-height: 1.75;
}

.legal-body p {
  margin: 0;
}

.legal-body p + p {
  margin-top: 18px;
}

.legal-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.legal-body li {
  padding-left: 8px;
}

.legal-body li::marker {
  color: var(--blue-600);
}

.legal-body strong {
  color: #17243a;
}

.legal-body address {
  margin-top: 20px;
  font-style: normal;
}

.legal-body a {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: rgba(8, 105, 255, 0.35);
  text-underline-offset: 4px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

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

.js .service-row[data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.js .service-row[data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -140;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.85);
    transform-box: fill-box;
    transform-origin: center;
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
    transform-box: fill-box;
    transform-origin: center;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: 820px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    min-height: 820px;
  }

  .hero h1 {
    font-size: clamp(54px, 6vw, 74px);
  }

  .section-heading {
    padding-right: 50px;
  }

  .about-copy {
    padding-left: 58px;
  }

  .service-row {
    grid-template-columns: 130px 125px 1fr;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 78px;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    align-content: start;
    min-height: calc(100svh - var(--header-height));
    padding: 18px 22px 28px;
    visibility: hidden;
    background: var(--navy-900);
    border-top: 1px solid var(--line-dark);
    box-shadow: 0 30px 55px rgba(0, 5, 18, 0.42);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      visibility 220ms ease,
      opacity 220ms ease,
      transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 2px;
    font-size: 18px;
    border-bottom: 1px solid var(--line-dark);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 76px;
  }

  .hero-copy {
    padding: 38px 0 0;
  }

  .hero-visual {
    width: min(90%, 650px);
    justify-self: center;
    margin: -10px 0 0;
  }

  .about {
    min-height: 0;
    padding: 110px 0;
  }

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

  .section-heading {
    padding: 0;
  }

  .section-index {
    margin-bottom: 44px;
  }

  .about-copy {
    min-height: 0;
    padding: 62px 0 0;
    margin-top: 64px;
    border-top: 1px solid rgba(119, 170, 229, 0.42);
    border-left: 0;
  }

  .services {
    padding: 110px 0;
  }

  .service-row {
    grid-template-columns: 110px 105px 1fr;
    min-height: 180px;
  }

  .service-number {
    font-size: 64px;
  }

  .contact {
    padding: 110px 0;
  }

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

  .contact-heading {
    padding-top: 0;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 52px 0;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .legal-meta {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

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

  .brand {
    gap: 10px;
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-grid {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 48px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
    line-height: 1.01;
  }

  .hero-copy > p {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.6;
  }

  .button {
    min-width: 200px;
    min-height: 58px;
    margin-top: 34px;
    font-size: 16px;
  }

  .hero-visual {
    width: 116%;
    max-width: none;
    margin: -16px -8% 0;
  }

  .about {
    padding: 90px 0;
  }

  .section-index {
    gap: 20px;
    margin-bottom: 34px;
    font-size: 17px;
  }

  .section-heading h2,
  .services-heading h2,
  .contact-heading h2 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .about-copy {
    padding-top: 42px;
    margin-top: 46px;
  }

  .about-copy p {
    font-size: 22px;
    line-height: 1.55;
  }

  .services {
    padding: 90px 0;
  }

  .services-heading {
    padding-bottom: 44px;
  }

  .service-row {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 36px 0;
  }

  .service-number {
    align-self: start;
    padding-top: 5px;
    font-size: 42px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
  }

  .service-row h3 {
    grid-column: 2;
    font-size: 27px;
    line-height: 1.2;
  }

  .contact {
    padding: 90px 0;
  }

  .contact-grid {
    gap: 62px;
  }

  .contact-heading .accent-line {
    margin-bottom: 34px;
  }

  .contact-heading p {
    margin-top: 30px;
    font-size: 18px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 22px 0;
  }

  .contact-details dt {
    font-size: 13px;
  }

  .contact-details dd {
    font-size: 17px;
  }

  .contact-details dd br {
    display: none;
  }

  .footer-main {
    min-height: 0;
  }

  .footer-brand {
    font-size: 19px;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 120px;
    font-size: 13px;
  }

  .legal-hero {
    padding: calc(var(--header-height) + 56px) 0 62px;
  }

  .back-link {
    margin-bottom: 40px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .legal-content {
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 90px;
  }

  .legal-meta {
    padding: 24px;
  }

  .legal-body section + section {
    padding-top: 36px;
    margin-top: 36px;
  }

  .legal-body h2 {
    font-size: 27px;
  }

  .legal-body p,
  .legal-body li,
  .legal-body address {
    font-size: 16px;
    line-height: 1.7;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
