@font-face {
  font-family: "Pier Sans";
  src: url("/static/assets/68cc8e8b7f4cab705c9bc362_PierSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pier Sans";
  src: url("/static/assets/68cc8e8bd9d17aba0932f255_PierSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1667f7;
  --blue-bright: #367bff;
  --navy: #071637;
  --navy-soft: #10275b;
  --cyan: #35dbff;
  --violet: #775cff;
  --ink: #0d1d3d;
  --muted: #5d6b86;
  --ice: #f4f8ff;
  --line: rgba(21, 70, 150, 0.14);
  --white: #fff;
  --container: 1180px;
  --shadow: 0 28px 70px rgba(14, 57, 132, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Pier Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.container {
  width: min(calc(100% - 48px), 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: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 24px;
  transition: padding .3s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1240px);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(22,103,247,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 32, 93, .13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 164px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-shell .brand img {
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 12px 15px;
  color: #43516d;
  font-size: .91rem;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .9rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.is-disabled,
.button.is-disabled:hover,
.button.is-disabled:focus-visible {
  cursor: default;
  transform: none;
  pointer-events: none;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #4b65ff);
  box-shadow: 0 12px 28px rgba(22,103,247,.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 34px rgba(22,103,247,.34);
}

.button-ghost {
  color: var(--blue);
  background: #edf4ff;
}

.button-light {
  min-height: 54px;
  padding-inline: 27px;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0,21,73,.23);
}

.button-outline {
  color: var(--blue);
  border-color: rgba(22,103,247,.24);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 44%), rgba(53,219,255,.22), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(119,92,255,.3), transparent 30%),
    linear-gradient(128deg, #061330 0%, #0b2c73 48%, #135ee9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(rgba(255,255,255,.34) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.hero::after {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -260px;
  width: 720px;
  height: 440px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: rotate(12deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 36px;
  padding-top: 110px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--cyan);
}

.eyebrow-blue {
  color: var(--blue);
}

.eyebrow-blue > span {
  background: var(--blue);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3.5rem, 5.8vw, 6.1rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.052em;
}

.hero h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, #fff, #58e1ff 52%, #b1a4ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-subtitle {
  margin: 28px 0 0;
  color: rgba(255,255,255,.77);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: .035em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
}

.text-link {
  appearance: none;
  padding: 10px 0;
  border: 0;
  color: rgba(255,255,255,.9);
  background: transparent;
  font-size: .92rem;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
}

.text-link.is-disabled {
  cursor: default;
  pointer-events: none;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--cyan);
  transition: transform .2s ease;
}

.text-link:not(.is-disabled):hover span,
.text-link:not(.is-disabled):focus-visible span {
  transform: translate(3px, -3px);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 58px;
}

.signal-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  font-size: .72rem;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(650px, 55vw);
  margin-right: -12%;
  justify-self: end;
  transform-style: preserve-3d;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 32px 60px rgba(0, 17, 69, .38));
  animation: orbitFloat 7s ease-in-out infinite;
}

.visual-halo {
  position: absolute;
  z-index: 0;
  inset: 17%;
  border-radius: 50%;
  background: rgba(53,219,255,.34);
  filter: blur(80px);
  animation: haloPulse 5s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 96%;
  height: 34%;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
}

.orbit-ring-one {
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-ring-two {
  transform: translate(-50%, -50%) rotate(58deg);
}

.floating-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 13px;
  color: rgba(255,255,255,.84);
  background: rgba(5,20,58,.44);
  box-shadow: 0 15px 35px rgba(0,0,0,.14);
  font-size: .73rem;
  backdrop-filter: blur(12px);
}

.floating-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.label-top {
  top: 24%;
  left: 1%;
}

.label-bottom {
  right: 5%;
  bottom: 25%;
}

.hero-grid-lines,
.mexico-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, transparent 35%, #000);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  width: 28px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 99px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 2s ease infinite;
}

.statement {
  position: relative;
  padding: 150px 0 130px;
  overflow: hidden;
  background: var(--ice);
}

.statement::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,123,255,.14), transparent 68%);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.benefits h2,
.mexico h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.statement-copy p,
.benefits-head > p,
.mexico-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.65;
}

.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: center;
  margin-top: 84px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(18,78,177,.1);
  border-radius: 32px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}

.flow-glow {
  position: absolute;
  top: -150px;
  left: 37%;
  width: 320px;
  height: 250px;
  border-radius: 50%;
  background: rgba(53,219,255,.16);
  filter: blur(45px);
}

.flow-step {
  position: relative;
  min-height: 185px;
  padding: 10px;
}

.flow-number {
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.flow-step strong {
  display: block;
  max-width: 180px;
  margin-top: 16px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.flow-icon {
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 90px;
  height: 70px;
}

.flow-icon span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(22,103,247,.08);
}

.flow-icon span:nth-child(1) { top: 9px; left: 38px; }
.flow-icon span:nth-child(2) { top: 27px; left: 10px; }
.flow-icon span:nth-child(3) { top: 27px; right: 10px; }
.flow-icon span:nth-child(4) { bottom: 4px; left: 25px; }
.flow-icon span:nth-child(5) { right: 24px; bottom: 4px; }

.flow-icon::before,
.flow-icon::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 18px;
  width: 54px;
  height: 1px;
  background: rgba(22,103,247,.33);
  transform: rotate(31deg);
}

.flow-icon::after {
  transform: rotate(-31deg);
}

.flow-icon-orbit {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(22,103,247,.34);
  border-radius: 50%;
}

.flow-icon-orbit::before,
.flow-icon-orbit::after {
  top: 37px;
  left: -8px;
  width: 92px;
  transform: rotate(35deg);
}

.flow-icon-orbit::after {
  transform: rotate(-35deg);
}

.flow-icon-orbit span {
  top: 27px;
  left: 27px;
  width: 24px;
  height: 24px;
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 25px rgba(22,103,247,.45);
}

.flow-icon-pulse {
  top: auto;
  height: 75px;
  overflow: hidden;
}

.flow-icon-pulse::before {
  top: 38px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: none;
}

.flow-icon-pulse::after {
  top: 22px;
  left: 33px;
  width: 27px;
  height: 27px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: rgba(53,219,255,.12);
  transform: none;
  animation: pulseRing 2s ease-out infinite;
}

.flow-icon-pulse span {
  top: 32px;
  left: 43px;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--blue);
}

.flow-connector {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(22,103,247,.16), rgba(22,103,247,.55), rgba(22,103,247,.16));
}

.flow-connector i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: dataTravel 2.8s linear infinite;
}

.benefits {
  padding: 140px 0 155px;
  background: var(--white);
}

.benefits-head {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: 80px;
  align-items: end;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 78px;
}

.benefit-card {
  position: relative;
  min-height: 460px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgba(18,78,177,.1);
  border-radius: 28px;
  background: linear-gradient(160deg, #f8fbff, #edf4ff);
  transition: transform .35s ease, box-shadow .35s ease;
}

.benefit-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.card-realtime {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, #145cf0, #4939c8);
}

.card-cost {
  background: linear-gradient(155deg, #ecfdff, #e9ecff);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.card-realtime .card-topline {
  color: var(--cyan);
}

.card-topline i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.card-icon {
  position: relative;
  width: 116px;
  height: 116px;
  margin: 62px auto 54px;
  border: 1px solid rgba(22,103,247,.2);
  border-radius: 32px;
  background: rgba(255,255,255,.62);
  transform: rotate(9deg);
}

.card-realtime .card-icon {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
}

.card-icon > span {
  position: absolute;
  inset: 27px;
  border: 2px solid var(--blue);
  border-radius: 20px;
  transform: rotate(-9deg);
}

.icon-shield > span {
  border-radius: 30px 30px 42px 42px;
}

.icon-shield > span::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 17px;
  height: 9px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.icon-time > span {
  border-color: var(--cyan);
  border-radius: 50%;
}

.icon-time > span::before,
.icon-time > span::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 17px;
  height: 2px;
  background: var(--white);
  transform-origin: left;
}

.icon-time > span::before { transform: rotate(-90deg); }
.icon-time > span::after { transform: rotate(20deg); }

.icon-cost {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 31px;
}

.icon-cost > span {
  position: static;
  width: 10px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(var(--cyan), var(--blue));
  transform: rotate(-9deg);
}

.icon-cost > span:nth-child(1) { height: 22px; }
.icon-cost > span:nth-child(2) { height: 37px; }
.icon-cost > span:nth-child(3) { height: 53px; }

.benefit-card h3 {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.benefit-card p {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: var(--muted);
}

.card-realtime p {
  color: rgba(255,255,255,.68);
}

.card-orb {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.84), rgba(53,219,255,.25) 22%, rgba(22,103,247,.18) 48%, transparent 70%);
  filter: blur(2px);
}

.mexico {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 47%, rgba(53,219,255,.16), transparent 32%),
    linear-gradient(125deg, #06132f, #0d2862 62%, #13265b);
}

.mexico::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 42%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.mexico-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  min-height: 820px;
  gap: 20px;
}

.mexico-copy {
  position: relative;
  z-index: 3;
}

.mexico-copy > p {
  max-width: 510px;
  margin-top: 30px;
  color: rgba(255,255,255,.66);
}

.mexico-visual {
  position: relative;
  width: 120%;
  margin-right: -18%;
}

.mexico-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,.36));
}

.map-halo {
  position: absolute;
  z-index: 0;
  inset: 18%;
  border-radius: 50%;
  background: rgba(22,103,247,.24);
  filter: blur(80px);
}

.mexico-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.mexico-principles span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.8);
  font-size: .83rem;
  letter-spacing: .06em;
}

.mexico-principles i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.closing {
  padding: 120px 0;
  background: var(--ice);
}

.closing-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 60px;
  overflow: hidden;
  border: 1px solid rgba(22,103,247,.13);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.closing-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(53,219,255,.18), rgba(119,92,255,.2));
  filter: blur(5px);
}

.closing-mark {
  position: relative;
  width: 130px;
  height: 130px;
}

.closing-mark span {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(22,103,247,.2);
}

.closing-mark span:nth-child(1) { top: 12px; left: 56px; width: 12px; height: 12px; }
.closing-mark span:nth-child(2) { top: 35px; left: 32px; }
.closing-mark span:nth-child(3) { top: 35px; right: 32px; }
.closing-mark span:nth-child(4) { top: 54px; left: 54px; width: 23px; height: 23px; }
.closing-mark span:nth-child(5) { top: 62px; left: 8px; width: 10px; height: 10px; }
.closing-mark span:nth-child(6) { top: 62px; right: 8px; width: 10px; height: 10px; }
.closing-mark span:nth-child(7) { bottom: 25px; left: 31px; }
.closing-mark span:nth-child(8) { bottom: 25px; right: 31px; }
.closing-mark span:nth-child(9) { bottom: 3px; left: 59px; width: 12px; height: 12px; }

.closing-copy h2 {
  max-width: 700px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.closing-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid rgba(22,103,247,.1);
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-brand {
  width: 150px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links span {
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

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

.benefit-card:nth-child(2) { transition-delay: .1s; }
.benefit-card:nth-child(3) { transition-delay: .2s; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes haloPulse {
  0%, 100% { opacity: .65; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 17px); }
}

@keyframes pulseRing {
  0% { opacity: 1; transform: scale(.45); }
  100% { opacity: 0; transform: scale(1.8); }
}

@keyframes dataTravel {
  from { left: 0; }
  to { left: calc(100% - 7px); }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr .78fr;
  }

  .hero-visual {
    width: 600px;
    margin-right: -45%;
  }

  .statement-grid,
  .benefits-head {
    gap: 50px;
  }

  .flow-card {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
  }

  .closing-card {
    grid-template-columns: 110px 1fr;
  }

  .closing-mark {
    transform: scale(.8);
    transform-origin: left center;
  }

  .closing-actions {
    grid-column: 2;
    flex-direction: row;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px;
  }

  .nav-shell {
    min-height: 64px;
    padding: 8px 9px 8px 15px;
    border-radius: 20px;
  }

  .brand {
    width: 145px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 91px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 18px;
    border: 1px solid rgba(22,103,247,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px;
    text-align: center;
  }

  .hero {
    min-height: 1060px;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 155px;
    text-align: center;
  }

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero .eyebrow,
  .hero-actions,
  .signal-row {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-visual {
    width: min(580px, 100vw);
    margin: -35px auto -120px;
    justify-self: center;
  }

  .floating-label {
    display: none;
  }

  .statement,
  .benefits {
    padding: 105px 0;
  }

  .statement-grid,
  .benefits-head,
  .mexico-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .flow-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-step {
    min-height: 140px;
    padding: 18px;
  }

  .flow-connector {
    width: 1px;
    height: 48px;
    margin-left: 29px;
    background: linear-gradient(rgba(22,103,247,.16), rgba(22,103,247,.55), rgba(22,103,247,.16));
  }

  .flow-connector i {
    top: 0;
    left: -3px;
    animation: dataTravelVertical 2s linear infinite;
  }

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

  .benefit-card {
    min-height: 400px;
  }

  .mexico-grid {
    min-height: 900px;
    padding: 100px 0 60px;
  }

  .mexico-copy {
    text-align: center;
  }

  .mexico .eyebrow,
  .mexico-principles {
    justify-content: center;
  }

  .mexico-copy > p {
    margin-inline: auto;
  }

  .mexico-visual {
    width: 115%;
    margin: -25px -7.5% 0;
  }

  .closing-card {
    grid-template-columns: 1fr;
    padding: 46px;
    text-align: center;
  }

  .closing-mark {
    margin: 0 auto;
    transform-origin: center;
  }

  .closing-card .eyebrow {
    justify-content: center;
  }

  .closing-actions {
    grid-column: auto;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  @keyframes dataTravelVertical {
    from { top: 0; }
    to { top: calc(100% - 7px); }
  }
}

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

  .hero {
    min-height: 960px;
  }

  .hero-grid {
    padding-top: 135px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .signal-row {
    gap: 7px;
    margin-top: 36px;
  }

  .signal-row span {
    font-size: .64rem;
  }

  .hero-visual {
    margin-top: -10px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .benefits h2,
  .mexico h2,
  .closing h2 {
    font-size: 2.55rem;
  }

  .flow-card {
    width: calc(100% - 24px);
    padding: 20px;
    border-radius: 24px;
  }

  .benefits-head {
    text-align: left;
  }

  .benefit-grid {
    margin-top: 50px;
  }

  .mexico-grid {
    min-height: 830px;
  }

  .closing {
    padding: 80px 0;
  }

  .closing-card {
    width: calc(100% - 24px);
    padding: 36px 24px;
  }

  .closing-actions {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 13px;
  }
}

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

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