:root {
  --ink: #141b33;
  --ink-soft: #3d4356;
  --paper: #f4efe6;
  --paper-deep: #efe9dc;
  --paper-light: #fdfbf6;
  --line: #d8d0c0;
  --line-dark: #3a445f;
  --orange: #de4a26;
  --orange-light: #fbddcb;
  --teal: #1e8f7e;
  --teal-light: #7fd9c8;
  --purple: #7a62c9;
  --yellow: #e6b91e;
  --night: #11182d;
  --night-card: #1b2440;
  --night-muted: #a6adc4;
  --danger: #b8322a;
  --success: #187765;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: 1160px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-focus: 0 0 0 3px rgba(222, 74, 38, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

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

a:hover {
  color: var(--orange);
}

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

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7.5vw, 5.75rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

p {
  color: var(--ink-soft);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--paper-light);
  box-shadow: 0 4px 24px rgba(20, 27, 51, 0.2);
  font-weight: 700;
}

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

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

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 230, 0.96);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.brand__mark {
  flex: 0 0 auto;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.nav > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper-light);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--paper-light);
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.hero {
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  max-width: 820px;
  padding-top: clamp(72px, 9vw, 124px);
  padding-bottom: clamp(64px, 8vw, 108px);
  text-align: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--orange);
}

.hero__lede {
  max-width: 650px;
  margin: 0 auto 38px;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.waitlist-form {
  width: min(100%, 520px);
  margin-inline: auto;
}

.form-row {
  position: relative;
  display: flex;
  gap: 12px;
}

.form-row input[type="email"] {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  flex: 1 1 auto;
  padding: 12px 16px;
  border: 1px solid #c9c1ae;
  border-radius: var(--radius-sm);
  background: var(--paper-light);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-row input[type="email"]::placeholder {
  color: #8a8271;
}

.form-row input[type="email"]:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20, 27, 51, 0.12);
}

.form-row input[type="email"][aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(184, 50, 42, 0.14);
}

.form-note {
  min-height: 21px;
  margin: 12px 0 0;
  color: #817967;
  font-size: 0.86rem;
}

.waitlist-form[data-state="error"] .form-note {
  color: var(--danger);
}

.waitlist-form[data-state="success"] .form-note {
  color: var(--success);
  font-weight: 650;
}

.hero__art {
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #efe9dc;
}

.hero__art img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.section {
  padding-block: clamp(80px, 10vw, 120px);
}

.section--muted {
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
}

.split h2 {
  margin: 0;
}

.split p {
  margin: 6px 0 0;
  font-size: 1.18rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.architecture {
  overflow: hidden;
  background: var(--night);
  color: var(--paper-light);
}

.architecture h2 {
  margin-bottom: 72px;
}

.architecture__grid {
  display: grid;
  grid-template-columns:
    minmax(168px, 0.9fr)
    minmax(60px, 0.3fr)
    minmax(300px, 1.35fr)
    minmax(60px, 0.3fr)
    minmax(190px, 0.95fr);
  grid-template-areas:
    "source-label . core-label . destination-label"
    "sources pull core serve destinations";
  align-items: start;
  column-gap: 0;
  row-gap: 32px;
}

.architecture__column {
  display: contents;
}

.architecture__column--sources .diagram-label {
  grid-area: source-label;
}

.architecture__column--core .diagram-label {
  grid-area: core-label;
}

.architecture__column--destinations .diagram-label {
  grid-area: destination-label;
}

.diagram-label {
  min-height: 0;
  margin: 0;
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: clamp(0.84rem, 1.1vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.integration-grid {
  grid-area: sources;
  align-self: center;
  display: grid;
  gap: 12px;
}

.integration-card,
.destination-card,
.core-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--night-card);
}

.integration-card {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-weight: 700;
}

.integration-card::before,
.destination-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, currentColor 78%, white)
  );
  content: "";
  filter: drop-shadow(0 0 5px currentColor);
  offset-path: inset(-1px round 4px);
  animation: trace-card 4s linear infinite;
  pointer-events: none;
}

.integration-card::before {
  color: var(--teal-light);
}

.integration-card:nth-child(2)::before {
  animation-duration: 4.7s;
  animation-delay: -0.8s;
}

.integration-card:nth-child(3)::before {
  animation-duration: 4.2s;
  animation-delay: -1.7s;
}

.integration-card:nth-child(4)::before {
  animation-duration: 5s;
  animation-delay: -2.4s;
}

.integration-card:nth-child(5)::before {
  animation-duration: 3.6s;
  animation-delay: -1.2s;
}

.integration-card:nth-child(6)::before {
  animation-duration: 4.5s;
  animation-delay: -3.3s;
}

.integration-mark {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.integration-mark img {
  width: 100%;
  height: 100%;
}

.flow {
  position: relative;
  min-width: 0;
  align-self: center;
  padding-top: 0;
  color: var(--night-muted);
}

.flow--pull {
  grid-area: pull;
}

.flow--serve {
  grid-area: serve;
}

.flow__tracks {
  display: grid;
}

.flow--pull .flow__tracks {
  gap: 12px;
}

.flow--serve .flow__tracks {
  gap: 14px;
}

.flow__track {
  display: flex;
  align-items: center;
  min-width: 0;
}

.flow--pull .flow__track {
  height: 54px;
}

.flow--serve .flow__track {
  height: 90px;
}

.flow__line {
  min-width: 0;
  height: 2px;
  flex: 1 1 auto;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 9px,
    transparent 9px 17px
  );
  background-size: 17px 2px;
  animation: flow-x 900ms linear infinite;
}

.flow__track:nth-child(2n) .flow__line {
  animation-delay: -300ms;
}

.flow__track:nth-child(3n) .flow__line {
  animation-delay: -600ms;
}

.flow--pull {
  color: var(--teal);
}

.flow--serve {
  color: var(--purple);
}

.flow__arrow {
  width: 0;
  height: 0;
  flex: 0 0 auto;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

.memory-core {
  position: relative;
  grid-area: core;
  display: grid;
  gap: 12px;
  padding: 28px;
  overflow: visible;
  border: 1.5px solid #6a7597;
  border-radius: var(--radius-md);
  background: #182039;
}

.memory-core::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 2%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal-light),
    transparent
  );
  content: "";
  animation: scan-y 5.5s linear infinite;
  pointer-events: none;
}

.memory-core__trace {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 6px rgba(127, 217, 200, 0.9));
  offset-path: inset(-2px round 8px);
  animation: trace-core 7s linear infinite;
  pointer-events: none;
}

.memory-core__trace::before {
  width: 34px;
  height: 3px;
  flex: 0 0 34px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-light));
  content: "";
}

.memory-core__trace::after {
  width: 10px;
  height: 10px;
  margin-left: -4px;
  transform: rotate(45deg);
  border-top: 3px solid #eafbf7;
  border-right: 3px solid #eafbf7;
  border-radius: 1px;
  content: "";
}

.memory-core__brand {
  display: grid;
  justify-items: center;
  padding-bottom: 8px;
  text-align: center;
}

.memory-core__brand svg {
  margin-bottom: 10px;
}

.memory-core__brand strong {
  font-size: 1.25rem;
}

.memory-core__brand span,
.core-card span,
.memory-core small,
.destination-card small {
  color: var(--night-muted);
  font-size: 0.79rem;
}

.core-card {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  text-align: center;
}

.core-card:nth-of-type(2) {
  animation: core-card-a 5.5s linear infinite;
}

.core-card:nth-of-type(3) {
  animation: core-card-b 5.5s linear infinite;
}

.core-card:nth-of-type(4) {
  animation: core-card-c 5.5s linear infinite;
}

.memory-core > small {
  padding-top: 4px;
  font-family: var(--font-mono);
  text-align: center;
}

.destination-list {
  grid-area: destinations;
  align-self: center;
  display: grid;
  gap: 14px;
}

.destination-card {
  position: relative;
  display: grid;
  min-height: 90px;
  align-content: center;
  gap: 6px;
  padding: 14px 16px;
}

.destination-card::before {
  color: #9e85e7;
  animation-duration: 4.6s;
}

.destination-card:nth-child(2)::before {
  animation-duration: 3.7s;
  animation-delay: -1.9s;
}

.destination-card:nth-child(3)::before {
  animation-duration: 4.2s;
  animation-delay: -2.9s;
}

.destination-card > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.architecture__footer {
  display: grid;
  grid-template-columns:
    minmax(168px, 0.9fr)
    minmax(60px, 0.3fr)
    minmax(300px, 1.35fr)
    minmax(60px, 0.3fr)
    minmax(190px, 0.95fr);
  align-items: end;
  column-gap: 0;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid #2a3350;
}

.diagram-key {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--night-muted);
  font-size: 0.83rem;
  text-align: center;
}

.diagram-key--pull {
  grid-column: 1;
}

.diagram-key--serve {
  grid-column: 5;
}

.diagram-key__sample {
  display: flex;
  width: 76px;
  align-items: center;
}

.diagram-key__line {
  height: 2px;
  flex: 1 1 auto;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 9px,
    transparent 9px 17px
  );
  background-size: 17px 2px;
  animation: flow-x 900ms linear infinite;
}

.diagram-key__arrow {
  width: 0;
  height: 0;
  flex: 0 0 auto;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

.diagram-key--pull .diagram-key__sample {
  color: var(--teal);
}

.diagram-key--serve .diagram-key__sample {
  color: var(--purple);
}

.architecture__cta {
  grid-column: 3;
  width: 100%;
  margin: 0;
}

.waitlist-form--dark .form-note {
  color: var(--night-muted);
  text-align: center;
}

.button--orange {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--paper-light);
}

.button--orange:hover {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

.feature-list {
  margin: 42px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.feature-list li {
  padding: 17px 0;
  border-top: 1px solid var(--ink);
  font-weight: 700;
}

.switch-band {
  padding-block: clamp(64px, 7vw, 86px);
  background: var(--orange);
  color: var(--paper-light);
  text-align: center;
}

.switch-band h2 {
  margin-bottom: 14px;
}

.switch-band p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--orange-light);
  font-size: 1.1rem;
}

.final-cta {
  text-align: center;
}

.final-cta__inner {
  max-width: 760px;
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta__inner > p {
  max-width: 660px;
  margin: 0 auto 38px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid #2a3350;
  background: var(--night);
  color: var(--paper-light);
}

.footer__grid {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 42px;
}

.brand--footer:hover {
  color: var(--paper-light);
}

.footer__brand p {
  margin: 8px 0 0;
  color: var(--night-muted);
  font-size: 0.88rem;
}

.compliance {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
}

.compliance__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px dashed #5c6377;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper-light);
  text-align: left;
  cursor: default;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.compliance__badge > span {
  display: grid;
  gap: 1px;
}

.compliance__badge strong {
  font-size: 0.88rem;
}

.compliance__badge em {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-style: italic;
}

.compliance__detail {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: 260px;
  padding: 12px 16px;
  transform: translateY(6px);
  border: 1px solid var(--yellow);
  border-radius: 18px;
  background: #1b1d21;
  color: #d8d6cf;
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.compliance__detail em {
  color: var(--yellow);
}

.compliance:hover .compliance__detail,
.compliance:focus-within .compliance__detail {
  transform: translateY(0);
  opacity: 1;
}

.compliance:hover .compliance__badge,
.compliance:focus-within .compliance__badge {
  border-color: var(--yellow);
  background: rgba(230, 185, 30, 0.04);
}

@keyframes flow-x {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 17px 0;
  }
}

@keyframes trace-card {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes trace-core {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes scan-y {
  0%,
  100% {
    top: 2%;
  }
  50% {
    top: 96%;
  }
}

@keyframes core-card-a {
  0%,
  14%,
  24%,
  76%,
  86%,
  100% {
    border-color: var(--line-dark);
    box-shadow: 0 0 0 rgba(127, 217, 200, 0);
  }
  19%,
  81% {
    border-color: var(--teal-light);
    box-shadow: 0 0 12px rgba(127, 217, 200, 0.35);
  }
}

@keyframes core-card-b {
  0%,
  24%,
  34%,
  66%,
  76%,
  100% {
    border-color: var(--line-dark);
    box-shadow: 0 0 0 rgba(127, 217, 200, 0);
  }
  29%,
  71% {
    border-color: var(--teal-light);
    box-shadow: 0 0 12px rgba(127, 217, 200, 0.35);
  }
}

@keyframes core-card-c {
  0%,
  33%,
  43%,
  57%,
  67%,
  100% {
    border-color: var(--line-dark);
    box-shadow: 0 0 0 rgba(127, 217, 200, 0);
  }
  38%,
  62% {
    border-color: var(--teal-light);
    box-shadow: 0 0 12px rgba(127, 217, 200, 0.35);
  }
}

@media (max-width: 980px) {
  .architecture__grid,
  .architecture__footer {
    grid-template-columns:
      minmax(150px, 0.85fr)
      46px
      minmax(270px, 1.3fr)
      46px
      minmax(168px, 0.9fr);
  }

  .memory-core {
    padding: 22px 18px;
  }

  .integration-card,
  .destination-card {
    padding-inline: 12px;
  }
}

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

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 16px;
  }

  .nav__links {
    display: none;
  }

  .brand {
    font-size: 1.06rem;
  }

  .button--small {
    min-height: 44px;
    padding-inline: 17px;
  }

  .hero__copy {
    padding-top: 64px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.35rem);
  }

  .hero__lede {
    font-size: 1.05rem;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-row input[type="email"],
  .form-row .button {
    width: 100%;
    min-height: 50px;
  }

  .section {
    padding-block: 72px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .split p {
    margin-top: 0;
    font-size: 1.05rem;
  }

  .architecture h2 {
    margin-bottom: 48px;
  }

  .architecture__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .diagram-label {
    margin: 0 0 20px;
  }

  .integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .integration-card {
    min-width: 0;
    min-height: 52px;
    font-size: 0.9rem;
  }

  .flow {
    display: flex;
    width: 100%;
    height: 138px;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
  }

  .flow__tracks {
    display: block;
    height: 62px;
  }

  .flow__track:not(:first-child) {
    display: none;
  }

  .flow--pull .flow__track,
  .flow--serve .flow__track {
    width: 2px;
    height: 62px;
    margin-inline: auto;
    flex-direction: column;
  }

  .flow__line {
    width: 2px;
    height: 42px;
    flex: 0 0 42px;
    background: repeating-linear-gradient(
      180deg,
      currentColor 0 8px,
      transparent 8px 16px
    );
    background-size: 2px 16px;
    animation-name: flow-y;
  }

  .flow__arrow {
    transform: rotate(90deg);
  }

  .memory-core {
    padding: 26px 20px 22px;
  }

  .destination-card {
    min-height: 62px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .architecture__footer {
    grid-template-areas:
      "pull serve"
      "cta cta";
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
    margin-top: 50px;
    padding-top: 28px;
  }

  .diagram-key--pull {
    grid-area: pull;
    justify-self: start;
  }

  .diagram-key--serve {
    grid-area: serve;
    justify-self: end;
  }

  .architecture__cta {
    grid-area: cta;
  }

  .feature-list {
    margin-top: 34px;
  }

  .footer__grid {
    min-height: 0;
    align-items: flex-start;
  }
}

@keyframes flow-y {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 16px;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .brand__mark {
    width: 21px;
  }

  .button--small {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .hero__copy {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 14.5vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

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

  .integration-card {
    padding: 9px 10px;
  }

  .integration-mark {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .destination-card {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__grid {
    flex-direction: column;
    gap: 34px;
  }

  .compliance {
    justify-content: flex-start;
  }

  .compliance__detail {
    right: auto;
    left: 0;
  }
}

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

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