@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "PP Mori";
  src: url("./assets/fonts/pp-mori-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Mori";
  src: url("./assets/fonts/pp-mori-semibold.woff") format("woff");
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --green: #b7ed43;
  --green-soft: #e8ffc0;
  --gold: #e0dac6;
  --rose: #fd9998;
  --blue: #7cceda;
  --surface: #fbfbfb;
  --white: #fff;
  --black: #000;
  --gray-50: #f6f6f3;
  --gray-100: #f0f0f0;
  --gray-200: #deded9;
  --gray-400: #92928d;
  --gray-600: #5f5f5a;
  --gray-800: #232321;
  --font-display: "PP Neue Montreal", "PP Mori", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --shell: 1240px;
  --shadow-soft: 0 28px 80px rgb(0 0 0 / 9%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--surface);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.shell {
  width: min(100% - 32px, var(--shell));
  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: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-160%);
}

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

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

.eyebrow,
.step-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.badge > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button svg,
.text-link svg,
.header-cta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--green);
  color: var(--black);
}

.button-primary:hover {
  box-shadow: 0 10px 24px rgb(183 237 67 / 34%);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: #282825;
}

.button-secondary {
  border-color: var(--gray-200);
  background: var(--white);
  color: var(--black);
}

.button-secondary:hover {
  border-color: var(--black);
  box-shadow: 0 8px 20px rgb(0 0 0 / 8%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--black);
  font-size: 14px;
  font-weight: 700;
}

.text-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  background: transparent;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Official product glyphs exported from the Dumont design-system PDF. */
.product-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background-image: url("./assets/product-icons.svg");
  background-repeat: no-repeat;
  background-size: 80px auto;
  background-position-x: -24px;
}

.icon-plane { background-position-y: -24px; }
.icon-plane-landing { background-position-y: -77px; }
.icon-hotel { background-position-y: -504px; }
.icon-car { background-position-y: -557px; }
.icon-bus { background-position-y: -611px; }

.icon-bg-green { background: var(--green); }
.icon-bg-gold { background: var(--gold); }
.icon-bg-rose { background: var(--rose); }
.icon-bg-blue { background: var(--blue); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgb(251 251 251 / 86%);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(0 0 0 / 8%);
  box-shadow: 0 8px 30px rgb(0 0 0 / 5%);
}

.header-inner {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
  height: auto;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 auto;
  padding: 8px 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--surface);
  box-shadow: 0 20px 40px rgb(0 0 0 / 8%);
}

.mobile-menu a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 600;
}

.mobile-menu a:last-child {
  margin-top: 12px;
  border: 0;
  background: var(--green);
  padding-inline: 16px;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  padding: 104px 0 44px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  right: -130px;
  top: 108px;
  border-radius: 50%;
  background: var(--green-soft);
  filter: blur(2px);
}

.hero-grid {
  display: grid;
  gap: 36px;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(40px, 12vw, 60px);
  font-weight: 600;
  line-height: 0.98;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 14px;
  height: 14px;
  padding: 2px;
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  stroke-width: 3;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding-bottom: 26px;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  border-radius: 20px 20px 68px 20px;
  background: var(--gold);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(0 0 0 / 34%));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 45px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.route-dots {
  flex: 1;
  height: 1px;
  border-top: 1px dashed rgb(255 255 255 / 70%);
}

.hero-status-card {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 0;
  left: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: 8px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 18px 38px rgb(0 0 0 / 16%);
}

.hero-status-card .status-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
}

.hero-status-card .product-icon {
  transform: scale(0.78);
}

.hero-status-card small,
.hero-status-card strong {
  display: block;
}

.hero-status-card small {
  margin-bottom: 2px;
  color: var(--gray-600);
  font-size: 10px;
}

.hero-status-card strong {
  font-size: 13px;
}

.hero-status-card > svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  stroke-width: 3;
}

.route-orbit {
  display: none;
}

/* Product strip */
.product-strip {
  padding: 16px 0 54px;
}

.product-strip-inner {
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
}

.product-strip p {
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-strip ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

.product-chip {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
}

.product-chip .product-icon {
  transform: scale(0.72);
}

/* Story */
.story-section {
  padding: 76px 0;
  overflow: clip;
  background: var(--black);
  color: var(--white);
}

.story-heading {
  margin-bottom: 48px;
}

.story-heading .eyebrow {
  color: var(--green);
}

.story-heading h2,
.section-heading h2,
.faq-layout h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 10vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.story-heading p {
  max-width: 650px;
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 16px;
  line-height: 1.6;
}

.story-layout {
  display: grid;
  gap: 48px;
}

.story-stage {
  min-width: 0;
}

.story-board {
  position: relative;
  height: 495px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 18px;
  background:
    radial-gradient(circle at 73% 25%, rgb(183 237 67 / 16%), transparent 32%),
    linear-gradient(145deg, #171715, #090909);
}

.story-board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.story-symbol {
  position: absolute;
  z-index: 2;
  top: 72px;
  left: 50%;
  width: 106px;
  height: 106px;
  box-sizing: content-box;
  padding: 24px;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 8px;
  background: var(--white);
  transform: translateX(-50%);
}

.story-route {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 620px;
  max-width: 112%;
  transform: translateX(-50%);
}

.story-route path {
  fill: none;
  stroke-linecap: round;
}

.route-shadow {
  stroke: rgb(255 255 255 / 12%);
  stroke-width: 2;
}

.route-path {
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 6 9;
}

.moving-plane {
  position: absolute;
  z-index: 5;
  top: 282px;
  left: 46px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 9px rgb(183 237 67 / 12%);
}

.moving-plane .product-icon {
  transform: scale(0.72) rotate(-12deg);
}

.route-pin {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.pin-start { left: 9.5%; top: 76%; }
.pin-end { right: 9.5%; top: 27%; }

.travel-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: calc(100% - 32px);
  max-width: 300px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 94%);
  color: var(--black);
  box-shadow: 0 18px 48px rgb(0 0 0 / 28%);
  opacity: 0.32;
  transform: translateY(8px) scale(0.98);
  transition: opacity 300ms ease, transform 300ms ease;
}

.travel-card.is-visible {
  opacity: 1;
  transform: none;
}

.story-card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
}

.story-card-icon .product-icon {
  transform: scale(0.7);
}

.travel-card small,
.travel-card strong {
  display: block;
}

.travel-card small {
  margin-bottom: 2px;
  color: var(--gray-600);
  font-size: 9px;
}

.travel-card strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-status {
  display: none;
}

.flight-card { top: 20px; left: 16px; }
.hotel-card { top: 124px; right: 16px; }
.car-card { top: 230px; left: 16px; }
.bus-card { right: 16px; bottom: 18px; }

.story-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 50%);
  font-size: 12px;
}

.story-caption svg {
  width: 15px;
}

.story-chapters {
  display: grid;
  gap: 16px;
}

.story-chapter {
  padding: 28px 0 28px 22px;
  border-left: 2px solid rgb(255 255 255 / 18%);
  transition: border-color 240ms ease, transform 240ms ease;
}

.story-chapter.is-active {
  border-color: var(--green);
  transform: translateX(5px);
}

.story-chapter:not(.is-active) h3 {
  color: rgb(255 255 255 / 72%);
}

.story-chapter > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-chapter h3 {
  margin: 10px 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.story-chapter p {
  max-width: 500px;
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 14px;
  line-height: 1.6;
}

/* Benefits */
.benefits-section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(36px, 9vw, 60px);
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 360px;
  padding: 28px 24px;
  border-radius: 12px;
  overflow: hidden;
}

.benefit-traveler { background: var(--green); }
.benefit-manager { background: var(--gold); }
.benefit-finance { background: var(--blue); }

.benefit-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgb(0 0 0 / 18%);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgb(255 255 255 / 12%), 0 0 0 56px rgb(255 255 255 / 8%);
}

.benefit-number {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 60%);
}

.benefit-icon svg {
  width: 21px;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.benefit-card p {
  max-width: 330px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.55;
}

.benefit-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 650;
}

.benefit-card li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.benefit-card li svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* Plan demo */
.plan-section {
  padding: 40px 0 88px;
}

.plan-shell {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.plan-intro {
  position: relative;
  padding: 30px 24px;
  overflow: hidden;
  background: var(--gold);
}

.plan-intro::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgb(183 237 67 / 54%);
  filter: blur(12px);
}

.plan-intro > img {
  width: 112px;
  margin-bottom: 42px;
}

.plan-intro .badge {
  margin-bottom: 22px;
  padding: 7px 10px;
}

.plan-intro h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.02;
}

.plan-intro > p {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

.plan-progress {
  position: relative;
  z-index: 1;
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-demo {
  padding: 34px 24px 24px;
}

.plan-demo .step-label {
  margin-bottom: 8px;
}

.plan-demo h3 {
  margin-bottom: 7px;
  font-size: 30px;
  line-height: 1.05;
}

.plan-demo > p {
  margin-bottom: 28px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}

.product-selector {
  display: grid;
  gap: 12px;
}

.selector-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.selector-card:hover {
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

.selector-card.is-selected {
  border-color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
}

.selector-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
}

.selector-icon .product-icon {
  transform: scale(0.78);
}

.selector-card strong,
.selector-card small {
  display: block;
}

.selector-card strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.selector-card small {
  overflow: hidden;
  color: var(--gray-600);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selector-card > svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: transparent;
  stroke-width: 3;
}

.selector-card.is-selected > svg {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.plan-demo-footer {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.plan-demo-footer p {
  margin: 0;
  color: var(--gray-600);
  font-size: 12px;
}

.plan-demo-footer strong {
  color: var(--black);
}

/* Lead */
.lead-section {
  padding: 88px 0;
  background: var(--green);
}

.lead-shell {
  display: grid;
  gap: 34px;
}

.lead-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 600;
  line-height: 0.98;
}

.lead-intro > p {
  max-width: 540px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.lead-art {
  position: relative;
  display: none;
  width: 290px;
  height: 200px;
  margin-top: 30px;
}

.lead-art img {
  position: absolute;
  left: 45px;
  width: 155px;
  opacity: 0.12;
}

.lead-route {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 80px;
  height: 70px;
  border-top: 2px dashed rgb(0 0 0 / 28%);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.lead-plane {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 45px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgb(0 0 0 / 18%);
  background: var(--white);
  box-shadow: 0 10px 26px rgb(0 0 0 / 12%);
}

.lead-plane .product-icon {
  transform: scale(0.7) rotate(10deg);
}

.form-card {
  min-width: 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 24px 70px rgb(0 0 0 / 14%);
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.form-topline > span {
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-progress {
  width: 82px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--gray-200);
}

.form-progress span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--black);
  transition: width 300ms ease;
}

.form-card.is-qualification .form-progress span,
.form-card.is-success .form-progress span {
  width: 100%;
}

.form-viewport {
  position: relative;
  min-height: 620px;
}

.form-step,
.form-transition,
.form-success {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.form-step.is-active,
.form-transition.is-active,
.form-success.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3,
.form-success h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.08;
}

.form-heading p,
.form-success p {
  margin: 0;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.5;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field {
  min-width: 0;
}

.bot-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}

.field label span {
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
  color: #a3a39f;
}

.field input:focus,
.field select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgb(183 237 67 / 42%);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: #811212;
  box-shadow: 0 0 0 2px rgb(129 18 18 / 10%);
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: #811212;
  font-size: 10px;
  line-height: 1.35;
}

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.form-actions small {
  color: var(--gray-600);
  font-size: 10px;
  line-height: 1.45;
}

.turnstile-shell {
  width: 100%;
  min-height: 65px;
}

.turnstile-shell:empty {
  min-height: 0;
}

.turnstile-shell > div,
.turnstile-shell iframe {
  max-width: 100%;
}

.button-submit {
  width: 100%;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.qualification-actions {
  align-items: center;
  justify-items: start;
}

.qualification-actions .turnstile-shell {
  grid-column: 1 / -1;
}

.form-transition,
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.transition-flight {
  position: relative;
  width: 190px;
  height: 160px;
  margin-bottom: 18px;
}

.transition-flight img {
  position: absolute;
  inset: 14px auto auto 29px;
  width: 132px;
  opacity: 0.1;
}

.transition-flight > span {
  position: absolute;
  top: 50px;
  left: 68px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.transition-flight .product-icon {
  transform: scale(0.74);
}

.form-transition strong {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 26px;
}

.form-transition p {
  color: var(--gray-600);
  font-size: 13px;
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.success-icon svg {
  width: 28px;
  stroke-width: 3;
}

.form-success .text-button {
  margin-top: 28px;
}

.form-live {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.45;
}

.form-live:empty {
  margin-top: 0;
}

.form-live[data-type="error"] {
  color: #811212;
  font-weight: 600;
}

/* FAQ and footer */
.faq-section {
  padding: 88px 0;
}

.faq-layout {
  display: grid;
  gap: 38px;
}

.faq-layout h2 {
  max-width: 520px;
  font-size: clamp(38px, 9vw, 60px);
}

.faq-list {
  border-top: 1px solid var(--gray-200);
}

.faq-list details {
  border-bottom: 1px solid var(--gray-200);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 19px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 36px 24px 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  padding-bottom: 16px;
}

.final-cta-inner {
  position: relative;
  padding: 54px 24px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--green);
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner::before {
  width: 240px;
  height: 240px;
  right: -100px;
  top: -150px;
  border: 1px solid rgb(0 0 0 / 20%);
  box-shadow: 0 0 0 36px rgb(255 255 255 / 14%), 0 0 0 72px rgb(255 255 255 / 8%);
}

.final-cta .eyebrow {
  color: rgb(0 0 0 / 58%);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 730px;
  margin-bottom: 28px;
  font-size: clamp(38px, 9vw, 64px);
}

.final-cta .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 46px 0;
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-inner img {
  width: 132px;
}

.footer-inner p {
  margin: 0;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.5;
}

.footer-company {
  display: grid;
  gap: 5px;
}

.footer-company address {
  max-width: 720px;
  color: var(--gray-600);
  font-size: 11px;
  font-style: normal;
  line-height: 1.5;
}

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

.footer-links a,
.footer-links button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 3px 0;
  background: transparent;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

/* Privacy and consent */
.consent-banner {
  position: fixed;
  z-index: 1200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgb(0 0 0 / 16%);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 80px rgb(0 0 0 / 18%);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner-copy {
  max-width: 720px;
}

.consent-banner-copy strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 21px;
}

.consent-banner-copy p {
  margin-bottom: 8px;
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.55;
}

.consent-banner-copy a {
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
}

.consent-banner-actions {
  display: grid;
  gap: 8px;
}

.consent-banner-actions .button {
  width: 100%;
}

.consent-dialog {
  width: min(100% - 24px, 680px);
  max-height: calc(100svh - 24px);
  margin: auto;
  overflow: auto;
  border: 0;
  border-radius: 12px;
  padding: 24px;
  background: var(--surface);
  color: var(--black);
  box-shadow: 0 24px 100px rgb(0 0 0 / 28%);
}

.consent-dialog::backdrop {
  background: rgb(0 0 0 / 58%);
  backdrop-filter: blur(4px);
}

.consent-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.consent-dialog-header .eyebrow {
  margin-bottom: 9px;
}

.consent-dialog-header h2 {
  max-width: 480px;
  margin-bottom: 0;
  font-size: 31px;
  line-height: 1.05;
}

.consent-dialog-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.consent-options {
  display: grid;
  gap: 10px;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

.consent-option strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.consent-option p,
.consent-option small {
  display: block;
  margin: 0;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.5;
}

.consent-option.is-required > span {
  flex: 0 0 auto;
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.consent-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.consent-dialog-actions {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.legal-header {
  border-bottom: 1px solid var(--gray-200);
  background: var(--surface);
}

.legal-header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-header img {
  width: 132px;
}

.legal-content {
  max-width: 900px;
  padding-top: 64px;
  padding-bottom: 80px;
}

.legal-intro {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-intro h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 9vw, 72px);
  line-height: 0.98;
}

.legal-intro > p:not(.legal-updated) {
  max-width: 700px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.65;
}

.legal-updated {
  margin: 0;
  color: var(--gray-400);
  font-size: 11px;
}

.legal-content section {
  padding-top: 40px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.75;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a:not(.button) {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

.legal-content table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.legal-content th,
.legal-content td {
  padding: 14px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.5;
}

.legal-content th {
  background: var(--gray-50);
  font-weight: 700;
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .consent-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 24px;
  }

  .consent-banner-actions {
    grid-template-columns: repeat(3, auto);
  }

  .consent-banner-actions .button {
    width: auto;
    white-space: nowrap;
  }

  .consent-dialog {
    padding: 32px;
  }

  .consent-dialog-actions {
    grid-template-columns: 1fr 1fr;
  }

  .legal-content {
    padding-top: 88px;
    padding-bottom: 120px;
  }
}

.not-found {
  display: grid;
  min-height: 100svh;
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  place-content: center;
  justify-items: start;
  gap: 24px;
}

.not-found h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 10vw, 76px);
  line-height: 0.98;
}

.not-found p {
  max-width: 500px;
  margin: 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.6;
}

/* Experiment B is intentionally token-based, not a duplicate page. */
html[data-variant="b"] .hero h1 {
  max-width: 820px;
}

@media (min-width: 560px) {
  .shell {
    width: min(100% - 48px, var(--shell));
  }

  .button {
    border-radius: 6px;
  }

  .hero-status-card {
    right: 20px;
    left: auto;
    width: 272px;
  }

  .product-strip ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .travel-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    max-width: 330px;
  }

  .card-status {
    display: block;
    color: var(--gray-600);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .form-card {
    padding: 30px;
  }

  .form-viewport {
    min-height: 610px;
  }

  .plan-demo-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }

  .brand img {
    width: 144px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
  }

  .desktop-nav a {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 600;
    transition: color 160ms ease;
  }

  .desktop-nav a:hover {
    color: var(--black);
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    padding: 126px 0 62px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    align-items: center;
    gap: 42px;
  }

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

  .hero-photo {
    aspect-ratio: 0.86;
    border-radius: 24px 24px 94px 24px;
  }

  .hero-status-card {
    bottom: 18px;
  }

  .route-orbit {
    position: absolute;
    z-index: 3;
    top: 8%;
    right: -35px;
    display: block;
    width: 110px;
    height: 160px;
    border: 1px dashed rgb(255 255 255 / 60%);
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-18deg);
  }

  .route-plane {
    position: absolute;
    right: -14px;
    bottom: 35px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
  }

  .route-plane .product-icon {
    transform: scale(0.7) rotate(-24deg);
  }

  .product-strip {
    padding-bottom: 70px;
  }

  .product-strip-inner {
    display: grid;
    grid-template-columns: minmax(170px, 0.7fr) 2fr;
    align-items: center;
    gap: 36px;
  }

  .product-strip p {
    margin: 0;
  }

  .story-section,
  .benefits-section,
  .lead-section,
  .faq-section {
    padding-block: 110px;
  }

  .story-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    column-gap: 60px;
  }

  .story-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .story-heading h2 {
    margin-bottom: 0;
  }

  .story-board {
    height: 560px;
  }

  .story-symbol {
    width: 106px;
    height: 106px;
    padding: 24px;
  }

  .story-route {
    top: 40px;
  }

  .flight-card { top: 24px; left: 24px; }
  .hotel-card { top: 146px; right: 24px; }
  .car-card { top: 290px; left: 24px; }
  .bus-card { right: 24px; bottom: 24px; }

  .benefits-heading {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: end;
    gap: 48px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 430px;
    padding: 32px 28px;
  }

  .benefit-icon {
    margin-bottom: 110px;
  }

  .plan-section {
    padding-bottom: 110px;
  }

  .plan-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }

  .plan-intro {
    padding: 38px 32px;
  }

  .plan-intro > img {
    margin-bottom: 54px;
  }

  .plan-progress {
    display: grid;
    gap: 28px;
  }

  .plan-progress::before {
    content: "";
    position: absolute;
    top: 23px;
    bottom: 23px;
    left: 19px;
    border-left: 1px solid rgb(0 0 0 / 16%);
  }

  .plan-progress li {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
  }

  .plan-progress li > span {
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    grid-row: 1 / span 2;
    place-items: center;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 50%;
    background: var(--gold);
    color: var(--gray-600);
    font-size: 12px;
  }

  .plan-progress li.is-current > span {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
  }

  .plan-progress strong {
    align-self: end;
    font-size: 12px;
  }

  .plan-progress small {
    color: var(--gray-600);
    font-size: 10px;
  }

  .plan-demo {
    padding: 46px 40px 32px;
  }

  .product-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-shell {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    align-items: start;
    gap: 64px;
  }

  .lead-intro {
    position: sticky;
    top: 118px;
  }

  .lead-art {
    display: block;
  }

  .form-card {
    padding: 36px;
  }

  .form-viewport {
    min-height: 600px;
  }

  .qualification-actions {
    grid-template-columns: auto 1fr;
  }

  .button-submit {
    width: auto;
    min-width: 164px;
  }

  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
  }

  .final-cta-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding: 70px 52px;
  }

  .final-cta h2 {
    margin-bottom: 0;
  }

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

@media (min-width: 1024px) {
  .button {
    border-radius: 8px;
  }

  .hero-grid {
    min-height: 680px;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(64px, 5.9vw, 84px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-visual {
    width: min(100%, 520px);
    justify-self: end;
  }

  .story-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    align-items: start;
    gap: 72px;
  }

  .story-stage {
    position: sticky;
    top: 112px;
  }

  .story-chapters {
    gap: 0;
  }

  .story-chapter {
    display: flex;
    min-height: 62vh;
    flex-direction: column;
    justify-content: center;
    padding: 44px 0 44px 34px;
  }

  .story-chapter h3 {
    font-size: 34px;
  }

  .benefit-card h3 {
    font-size: 31px;
  }

  .plan-intro {
    padding: 46px 40px;
  }

  .plan-intro h2 {
    font-size: 42px;
  }

  .plan-demo {
    padding: 52px 48px 36px;
  }

  .plan-demo h3 {
    font-size: 36px;
  }

  .form-card {
    padding: 40px;
  }
}

@media (min-width: 1440px) {
  .shell {
    width: min(100% - 80px, var(--shell));
  }

  .hero-grid {
    min-height: 720px;
    grid-template-columns: minmax(0, 650px) minmax(0, 520px);
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 84px;
  }
}

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

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

  .travel-card {
    opacity: 1;
    transform: none;
  }

  .story-chapter {
    opacity: 1;
  }
}
