:root {
  --navy: #001b63;
  --blue: #003da5;
  --blue-bright: #0d66e8;
  --yellow: #ffc20a;
  --ink: #071a3a;
  --muted: #61708a;
  --white: #ffffff;
  --surface: #f6f8fc;
  --whatsapp: #1fcd67;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, a { font: inherit; }
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100% - 48px, 1260px);
  height: 92px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-monogram {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 12px 26px rgba(0,0,0,.12);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.brand-copy { display: flex; flex-direction: column; gap: 1px; color: var(--white); }
.brand-copy strong { font-size: 13px; font-weight: 800; }
.brand-copy small {
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 12px 11px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0, 19, 74, .52);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.header-cta span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 16px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 1120px;
  padding: 136px 0 72px;
  background:
    radial-gradient(circle at 76% 16%, rgba(42,121,255,.42), transparent 28%),
    radial-gradient(circle at 0% 78%, rgba(255,194,10,.14), transparent 27%),
    linear-gradient(135deg, #001650 0%, var(--blue) 58%, #002878 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(255,255,255,.6) .7px, transparent .7px);
  background-size: 8px 8px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}

.route-line {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 50px solid rgba(255,194,10,.15);
  border-radius: 50%;
  pointer-events: none;
}
.route-one { top: -390px; right: -100px; }
.route-two { bottom: -530px; left: -260px; }

.hero-shell {
  position: relative;
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .72fr);
  gap: 32px;
  align-items: start;
}

.hero-intro { max-width: 650px; padding-top: 28px; color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-dot, .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,194,10,.13);
}

h1, h2, h3, p { text-wrap: balance; }
h1 {
  margin: 0;
  max-width: 650px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(53px, 5vw, 72px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.06em;
}
h1 span { display: block; margin-top: 7px; color: var(--yellow); }

.hero-description {
  max-width: 585px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  font-size: 10px;
  font-weight: 700;
}
.benefit-list span { color: var(--yellow); }

.hero-art {
  position: absolute;
  z-index: -1;
  top: 475px;
  left: 0;
  width: calc(100% - 400px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 29px;
  background: #00247e;
  box-shadow: 0 34px 70px rgba(0, 12, 58, .38);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,25,92,.08), transparent 56%, rgba(0,22,83,.16));
  pointer-events: none;
}
.hero-art img { display: block; width: 100%; height: auto; }
.hero-art figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(0,19,74,.76);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #34e278;
  box-shadow: 0 0 0 5px rgba(52,226,120,.14);
}
.image-glow { position: absolute; inset: -1px; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }

.form-card {
  position: relative;
  z-index: 5;
  grid-column: 2;
  grid-row: 1;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 29px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 34px 90px rgba(0,14,68,.4), inset 0 1px 0 var(--white);
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--yellow), #ffdb64);
}
.form-heading { margin-bottom: 22px; }
.form-step { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.form-heading h2 {
  margin: 8px 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
form { display: grid; gap: 15px; }
form label:not(.consent) { display: grid; gap: 7px; color: var(--ink); font-size: 11px; font-weight: 800; }

input, select {
  width: 100%;
  height: 51px;
  border: 1px solid #dbe2ee;
  border-radius: 14px;
  outline: 0;
  background: #f8faff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input { padding: 0 15px; }
select { padding: 0 38px 0 15px; cursor: pointer; }
input::placeholder { color: #96a1b5; font-weight: 500; }
input:focus, select:focus { border-color: var(--blue-bright); background: var(--white); box-shadow: 0 0 0 4px rgba(13,102,232,.11); }

.consent { display: flex; align-items: flex-start; gap: 9px; color: #6c7890; font-size: 9px; line-height: 1.5; cursor: pointer; }
.consent input { width: 16px; height: 16px; flex: 0 0 16px; margin: 0; accent-color: var(--blue); }

.submit-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  overflow: hidden;
  margin-top: 1px;
  padding: 10px 14px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(115deg, #31e274 0%, var(--whatsapp) 55%, #0fac4a 100%);
  box-shadow: 0 18px 36px rgba(31,205,103,.24), inset 0 1px 0 rgba(255,255,255,.45);
  color: #052c14;
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.submit-button::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -30%;
  width: 19%;
  height: 260%;
  background: rgba(255,255,255,.48);
  transform: rotate(22deg);
  animation: buttonShine 4.2s 1s ease-in-out infinite;
}
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 23px 48px rgba(31,205,103,.32), inset 0 1px 0 rgba(255,255,255,.55); }
.whatsapp-mark { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 13px; background: var(--white); color: #12ad4e; font-size: 22px; font-weight: 900; }
.submit-button > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 2px; }
.submit-button small { font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.submit-button strong { font-size: 15px; font-weight: 900; letter-spacing: -.02em; }
.button-arrow { font-size: 21px; }
.security-note { display: flex; align-items: flex-start; gap: 7px; margin: 14px 0 0; color: #8b96a8; font-size: 8px; line-height: 1.45; }
.security-note span { color: var(--blue); }

.marketplaces { position: relative; overflow: hidden; padding: 78px 0 30px; background: var(--yellow); }
.marketplace-heading { width: min(100% - 48px, 1100px); margin: 0 auto 28px; text-align: center; }
.marketplace-heading p { margin: 0 0 7px; color: rgba(0,27,99,.62); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.marketplace-heading h2 {
  max-width: 740px;
  margin: 0 auto;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.logo-ticker { position: relative; width: 100%; height: 132px; overflow: hidden; background: #ffc10a; }
.logo-ticker::before, .logo-ticker::after { content: ""; position: absolute; z-index: 3; top: 0; bottom: 0; width: 10vw; pointer-events: none; }
.logo-ticker::before { left: 0; background: linear-gradient(90deg, var(--yellow), transparent); }
.logo-ticker::after { right: 0; background: linear-gradient(-90deg, var(--yellow), transparent); }
.logo-track { display: flex; width: max-content; animation: logoScroll 24s linear infinite; }
.marketplace-sheet {
  width: 1080px;
  height: 132px;
  flex: 0 0 1080px;
  background-image: url("assets/marketplaces-reference.png");
  background-repeat: no-repeat;
  background-position: center -799px;
  background-size: 1080px 1080px;
}
.independence-note { width: min(100% - 32px, 800px); margin: 20px auto 0; color: rgba(0,27,99,.55); font-size: 9px; font-weight: 700; text-align: center; }

.steps { padding: 95px 0; background: var(--white); }
.steps-heading, .steps-grid { width: min(100% - 48px, 1180px); margin-right: auto; margin-left: auto; }
.steps-heading { margin-bottom: 38px; }
.steps-heading > span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.steps-heading h2 { margin: 10px 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(33px, 4vw, 53px); line-height: 1; letter-spacing: -.055em; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps-grid article { padding: 28px; border: 1px solid #e6eaf1; border-radius: 24px; background: #f9faff; }
.steps-grid article > span { display: grid; place-items: center; width: 39px; height: 39px; margin-bottom: 34px; border-radius: 12px; background: var(--yellow); color: var(--navy); font-size: 10px; font-weight: 900; }
.steps-grid h3 { margin: 0 0 9px; font-family: "Space Grotesk", sans-serif; font-size: 19px; letter-spacing: -.03em; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.site-footer { padding: 36px 0; background: var(--navy); color: var(--white); }
.footer-inner { width: min(100% - 48px, 1180px); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: center; }
.footer-brand div { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { font-size: 12px; }
.footer-brand small, .footer-inner > p { color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.55; }
.footer-inner > p { margin: 0; }

@keyframes buttonShine { 0%, 58% { left: -30%; } 77%, 100% { left: 125%; } }
@keyframes logoScroll { to { transform: translateX(-1080px); } }

@media (max-width: 1000px) {
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-shell { grid-template-columns: 1fr; gap: 28px; }
  .hero-intro { max-width: 720px; }
  .hero-art { position: relative; z-index: 1; top: auto; left: auto; width: 100%; grid-row: 2; }
  .form-card { grid-column: 1; grid-row: 3; width: min(100%, 550px); }
}

@media (max-width: 700px) {
  .site-header { width: min(100% - 28px, 560px); height: 76px; }
  .brand-monogram { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px; }
  .brand-copy small { display: none; }
  .header-cta { gap: 9px; padding: 7px 8px 7px 13px; font-size: 10px; }
  .header-cta span { width: 27px; height: 27px; }
  .hero { min-height: auto; padding: 108px 0 42px; }
  .hero-shell { width: min(100% - 28px, 560px); }
  .hero-intro { padding-top: 0; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  h1 { font-size: clamp(46px, 13.5vw, 62px); }
  .hero-description { margin-top: 21px; font-size: 14px; line-height: 1.62; }
  .benefit-list { gap: 7px; margin-top: 20px; }
  .benefit-list li { padding: 7px 9px; font-size: 9px; }
  .hero-art { border-radius: 21px; }
  .hero-art figcaption { left: 12px; bottom: 12px; }
  .form-card { padding: 24px 20px; border-radius: 23px; }
  .form-heading h2 { font-size: 27px; }
  .marketplaces { padding-top: 58px; }
  .marketplace-heading { width: min(100% - 28px, 560px); margin-bottom: 21px; }
  .logo-ticker { height: 120px; }
  .marketplace-sheet { height: 120px; background-position: center -805px; }
  .steps { padding: 70px 0; }
  .steps-heading, .steps-grid { width: min(100% - 28px, 560px); }
  .steps-heading { margin-bottom: 27px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { display: grid; grid-template-columns: auto 1fr; column-gap: 15px; padding: 21px; }
  .steps-grid article > span { grid-row: 1 / 3; margin: 0; }
  .steps-grid h3 { margin-top: 1px; }
  .footer-inner { width: min(100% - 28px, 560px); grid-template-columns: 1fr; gap: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
