/* CarRentalDeal.com — launch site (light direction) */

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* A fixed light composition: the page does not flip with the OS theme. */
:root {
  color-scheme: light;

  --white: #ffffff;
  --ivory: #fffaf2;
  --sand-50: #fbf6ee;
  --sand-100: #f4ecdf;
  --sand-300: #e4d5bf;
  --sky-50: #eef6fd;
  --sky-100: #dcecfb;
  --sky-300: #9cc6ef;
  --sky-500: #2f7fd1;
  --sky-700: #1a5ea8;

  --ink: #0b1a3a;
  --ink-soft: #46526e;
  --ink-muted: #5f6a84;
  --navy: #0f2147;
  --line: #e9e2d5;
  --line-cool: #e2e8f1;

  --orange: #ff7a1a;
  --orange-600: #f26806;
  --orange-text: #b54800; /* orange for small text on light backgrounds (AA) */
  --orange-ink: #1a0c02;
  --orange-soft: #fff1e5;

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --gutter: clamp(16px, 4vw, 40px);
  --maxw: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 1px 2px rgba(11, 26, 58, 0.04), 0 10px 30px -14px rgba(11, 26, 58, 0.16);
  --shadow-lift: 0 2px 4px rgba(11, 26, 58, 0.04), 0 24px 48px -20px rgba(11, 26, 58, 0.26);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 8px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg, picture { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: inherit; }
button, input, select { font: inherit; }

.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--orange-ink);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.accent { color: var(--orange-600); }
.accent-ink { color: var(--sky-700); }
.accent-light { color: #ffc79e; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.2s;
}
.btn--primary {
  background: var(--orange);
  color: var(--orange-ink);
  box-shadow: 0 10px 24px -10px rgba(242, 104, 6, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn--primary:hover {
  background: #ff8a33;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -12px rgba(242, 104, 6, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:active { transform: translateY(0); background: var(--orange-600); }
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(15, 33, 71, 0.6);
}
.btn--navy:hover { background: #18306a; transform: translateY(-1px); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 0.9375rem; }
.btn--lg { min-height: 58px; padding: 0 32px; font-size: 1.0625rem; }
.btn[aria-busy="true"] { opacity: 0.75; cursor: progress; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top);
  box-sizing: content-box;
  color: var(--ink);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open,
.site-header--solid {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(11, 26, 58, 0.3);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
  min-height: 44px;
}
.brand__mark { width: 34px; height: 34px; border-radius: 9px; }
.brand__word { font-weight: 800; font-size: 1.1875rem; letter-spacing: -0.02em; } /* ≥ 18.66px bold = large text, so the orange .com meets 3:1 */
.brand__tld { color: #e25e00; } /* a shade deeper than --orange-600 for margin over 3:1 on white */

.site-nav { order: 3; }
.site-nav__toggle {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  cursor: pointer;
}
.site-nav__bars,
.site-nav__bars::before,
.site-nav__bars::after {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.site-nav__bars { position: relative; }
.site-nav__bars::before, .site-nav__bars::after { content: ""; position: absolute; left: 0; }
.site-nav__bars::before { top: -6px; }
.site-nav__bars::after { top: 6px; }
.site-nav__toggle[aria-expanded="true"] .site-nav__bars { background: transparent; }
.site-nav__toggle[aria-expanded="true"] .site-nav__bars::before { transform: translateY(6px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] .site-nav__bars::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav__list {
  position: absolute;
  top: calc(var(--header-h) + env(safe-area-inset-top));
  left: 0; right: 0;
  margin: 0;
  padding: 8px var(--gutter) 20px;
  list-style: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 30px -24px rgba(11, 26, 58, 0.35);
  display: none;
}
.site-header.is-open .site-nav__list { display: block; }
.site-nav__list a {
  display: block;
  padding: 14px 4px;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.site-nav__list li:last-child a { border-bottom: 0; }
/* Without JS the menu button can't work, so show the links inline instead. */
html:not(.js) .site-nav__toggle { display: none; }
html:not(.js) .site-nav__list { position: static; display: flex; gap: 12px; padding: 0; background: none; border: 0; box-shadow: none; }
html:not(.js) .site-nav__list a { padding: 8px 0; border: 0; font-size: 0.875rem; }

.site-header__cta { display: none; }
@media (min-width: 420px) { .site-header__cta { display: inline-flex; } }

@media (min-width: 900px) {
  .site-nav { order: 0; margin-right: 8px; }
  .site-nav__toggle { display: none; }
  .site-nav__list,
  html:not(.js) .site-nav__list {
    position: static;
    display: flex;
    gap: 4px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .site-nav__list a,
  html:not(.js) .site-nav__list a {
    padding: 10px 14px;
    border: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.2s, color 0.2s;
  }
  .site-nav__list a:hover { background: rgba(11, 26, 58, 0.06); }
}

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 16px;
}
.eyebrow--pill {
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px -10px rgba(11, 26, 58, 0.3);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}
.pulse-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
@media (prefers-reduced-motion: no-preference) {
  .pulse-dot::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2.4s var(--ease) infinite;
  }
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}

.section { padding-block: clamp(72px, 10vw, 124px); }
.section--white { background: var(--white); }
.section--ivory { background: var(--ivory); }
.section--sand { background: var(--sand-50); }
.section--sky { background: linear-gradient(180deg, var(--sky-50) 0%, #f6fafe 55%, var(--white) 100%); }

.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head--split { display: grid; gap: 20px; align-items: end; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}
.section-intro {
  margin-top: 18px;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.section-head--split .section-intro { margin-top: 0; }

/* ---------- Hero ---------- */
/* Phones and portrait screens: headline on ivory, photo band below with a soft fade. */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(156, 198, 239, 0.28), transparent 70%),
    var(--ivory);
  overflow: hidden;
}
.hero__content {
  order: 1;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 28px);
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
}
.hero__media {
  order: 2;
  position: relative;
  display: block;
  aspect-ratio: 15 / 14;
  max-height: 72svh;
  margin-top: -56px;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(255, 250, 242, 0.55) 16%, rgba(255, 250, 242, 0) 34%);
  pointer-events: none;
}
.hero__wash { display: none; }

.hero__title {
  font-size: clamp(2.5rem, 9.4vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}
.hero__lede {
  margin-top: 20px;
  max-width: 40rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.br-wide { display: none; }
@media (min-width: 720px) { .br-wide { display: inline; } }

.hero__operator {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  min-height: 44px;
  margin-top: 6px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  transition: background-color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.hero__operator-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sky-50);
  color: var(--sky-700);
  font-weight: 700;
}
.hero__operator-cta { font-weight: 800; color: var(--ink); }
.hero__operator-cta span { display: inline-block; color: var(--orange-600); transition: transform 0.25s var(--ease); }
.hero__operator:hover { background: var(--white); border-color: var(--sand-300); }
.hero__operator:hover .hero__operator-cta span { transform: translateX(4px); }
@media (max-width: 519px) {
  .hero__operator { border-radius: 16px; padding: 10px 14px; }
}

/* Landscape screens: the photo fills the right side and feathers into ivory behind the text,
   so the landscape keeps its presence and the headline needs almost no wash. */
@media (min-width: 900px) and (orientation: landscape) {
  .hero {
    display: block;
    min-height: max(680px, min(100svh, 960px));
  }
  .hero__media {
    position: absolute;
    top: 0; bottom: 0; right: 0;
    left: 30%;
    aspect-ratio: auto;
    max-height: none;
    margin: 0;
    z-index: -2;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 16%, #000 34%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 16%, #000 34%);
  }
  .hero__media::after {
    display: block;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.55) 0%, rgba(255, 250, 242, 0) 18%);
  }
  .hero__media img { object-position: 72% 50%; }
  .hero__wash {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 42% 46% at 30% 48%, rgba(255, 250, 242, 0.7) 0%, rgba(255, 250, 242, 0.35) 55%, rgba(255, 250, 242, 0) 100%);
  }
  .hero__content {
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 72px;
  }
  .hero__title { font-size: clamp(3.25rem, 6.2vw, 6rem); }
}
@media (min-width: 900px) and (orientation: landscape) and (prefers-reduced-motion: no-preference) {
  .hero__media img { animation: hero-drift 22s var(--ease) both; }
}
@keyframes hero-drift {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

/* ---------- Signup forms ---------- */
.signup { margin-top: 30px; max-width: 560px; width: 100%; }
.signup__row { display: flex; flex-direction: column; gap: 10px; }
.signup__input,
.field-input {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid #d9d2c4;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup__input::placeholder { color: var(--ink-muted); }
.signup__input:hover, .field-input:hover { border-color: #c6bca9; }
.signup__input:focus, .field-input:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(47, 127, 209, 0.18);
}
.signup__input[aria-invalid="true"], .field-input[aria-invalid="true"] { border-color: #c2410c; }
.signup__btn { min-height: 54px; }
.signup__note { margin-top: 12px; font-size: 0.9375rem; color: var(--ink-muted); }
.signup__status { margin-top: 8px; min-height: 1.5em; font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.signup__status[data-tone="error"] { color: #b42318; }
.signup__status[data-tone="info"] { color: #8a3b00; }
.signup__status[data-tone="success"] { color: #067647; }
.signup__consent { margin-top: 4px; font-size: 0.8125rem; color: var(--ink-muted); }
.signup__consent a { color: var(--ink-soft); font-weight: 700; }
/* Honeypot: hidden from people (and assistive tech via aria-hidden), still present for naive bots. */
.hp { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
/* Turnstile stays invisible unless Cloudflare needs an interaction. */
.turnstile-slot:not(:empty) { margin-top: 10px; }

/* Confirmation that replaces a form after a confirmed save. */
.signup-done {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
  margin-top: 30px;
  max-width: 560px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  outline: none;
}
.signup-done__icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--orange-ink);
}
.signup-done__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.signup-done__title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
.signup-done__text { margin-top: 6px; color: var(--ink-soft); }
.join-card .signup-done { margin-top: 22px; max-width: none; box-shadow: none; background: var(--sand-50); }
.join-card--supplier .signup-done__icon { background: var(--navy); color: var(--white); }
@media (prefers-reduced-motion: no-preference) {
  .signup-done { animation: done-in 0.6s var(--ease) both; }
  .signup-done__icon svg path { stroke-dasharray: 30; animation: tick-draw 0.6s var(--ease) 0.2s both; }
}
@keyframes done-in { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes tick-draw { from { stroke-dashoffset: 30; } to { stroke-dashoffset: 0; } }

/* The hero form is one bright pill on wider screens. */
@media (min-width: 520px) {
  .signup--hero .signup__row {
    flex-direction: row;
    gap: 0;
    padding: 6px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -22px rgba(11, 26, 58, 0.45), 0 2px 6px rgba(11, 26, 58, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .signup--hero .signup__row:focus-within {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(47, 127, 209, 0.18), 0 18px 40px -22px rgba(11, 26, 58, 0.45);
  }
  .signup--hero .signup__input,
  .signup--hero .signup__input:hover,
  .signup--hero .signup__input:focus {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    padding-left: 18px;
  }
  .signup--hero .signup__btn { min-height: 50px; flex: none; }
}
@media (max-width: 519px) {
  .signup--hero .signup__input { box-shadow: 0 10px 24px -18px rgba(11, 26, 58, 0.45); border-radius: 999px; }
}

.field-label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.field-grid { display: grid; gap: 14px; margin-bottom: 14px; }
select.field-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%2346526e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 16px center / 12px 8px no-repeat;
}

/* ---------- Route strip (animated map motif) ---------- */
.route-strip {
  position: relative;
  display: none;
  aspect-ratio: 6 / 1;
  margin: 0 0 64px;
}
@media (min-width: 760px) { .route-strip { display: block; } }
.route-strip svg { width: 100%; height: 100%; overflow: visible; }
.route-base {
  fill: none;
  stroke: #c3cfe0;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1 10;
}
.route-draw {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.route-stop circle { fill: var(--white); stroke: var(--sky-500); stroke-width: 3.5; }
.route-pin--start circle { fill: var(--sky-500); }
.route-pin--end path { fill: var(--orange); }
.route-pin__core { fill: var(--white) !important; }
.route-car { opacity: 0; transition: opacity 0.4s; }
.is-moving .route-car { opacity: 1; }
.route-car__halo { fill: rgba(255, 122, 26, 0.22); }
.route-car__dot { fill: var(--orange); stroke: var(--white); stroke-width: 2.5; }
.route-label {
  position: absolute;
  transform: translate(-50%, 0);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--line-cool);
  box-shadow: 0 6px 16px -10px rgba(11, 26, 58, 0.35);
  color: var(--ink);
}
/* Positions are the SVG waypoint coordinates as percentages of the 1200×200 viewBox. */
.route-label--start { left: 5.8%; top: 78%; }
.route-label--a { left: 25.1%; top: 60%; color: var(--sky-700); }
.route-label--b { left: 49.9%; top: 24%; color: var(--sky-700); }
.route-label--c { left: 74.5%; top: 34%; color: var(--sky-700); }
.route-label--end { left: 94.2%; top: 44%; background: var(--orange); border-color: var(--orange); color: var(--orange-ink); }

@media (prefers-reduced-motion: no-preference) {
  .js [data-route] .route-draw { stroke-dashoffset: 1; transition: stroke-dashoffset 2.4s var(--ease) 0.2s; }
  .js [data-route].is-in .route-draw { stroke-dashoffset: 0; }
  .js .route-label { opacity: 0; transform: translate(-50%, 6px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
  .js .is-in .route-label { opacity: 1; transform: translate(-50%, 0); }
  .js .is-in .route-label--a { transition-delay: 0.7s; }
  .js .is-in .route-label--b { transition-delay: 1.1s; }
  .js .is-in .route-label--c { transition-delay: 1.5s; }
  .js .is-in .route-label--end { transition-delay: 2s; }
}

/* ---------- Deal cards ---------- */
.deal-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .deal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .deal-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.deal-card {
  position: relative;
  padding: 12px 12px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.deal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: #f2c9a8; }
.deal-card__art {
  position: relative;
  display: grid;
  place-items: center;
  height: 118px;
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
}
.deal-card--sky .deal-card__art { background: linear-gradient(160deg, #e7f2fd 0%, #d6e9fb 100%); }
.deal-card--sand .deal-card__art { background: linear-gradient(160deg, #fbf3e6 0%, #f4e6d0 100%); }
.deal-card__art svg { width: 76%; max-width: 190px; height: auto; overflow: visible; }
.deal-card__chip {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.deal-card__title,
.deal-card p { padding-inline: 12px; }
.deal-card__title {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.deal-card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

.art-route { fill: none; stroke: var(--sky-500); stroke-width: 3.2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
.art-route--soft { stroke: var(--sky-300); }
.art-arrow { fill: none; stroke: var(--orange); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
.art-pin { fill: var(--orange); }
.art-pin--muted { fill: var(--sky-300); }
.art-core { fill: var(--white); }
.art-days rect { fill: rgba(47, 127, 209, 0.16); }
.art-day-on { fill: var(--orange); transform-box: fill-box; transform-origin: 50% 100%; }
.art-tag { fill: #ffe3cc; stroke: var(--orange); stroke-width: 3; stroke-linejoin: round; }
.art-spark { fill: none; stroke: var(--orange); stroke-width: 2.6; stroke-linecap: round; transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: no-preference) {
  .js .deal-card .art-route,
  .js .deal-card .art-arrow { stroke-dashoffset: 1; transition: stroke-dashoffset 1.1s var(--ease) 0.35s; }
  .js .deal-card.is-in .art-route,
  .js .deal-card.is-in .art-arrow { stroke-dashoffset: 0; }
  .js .deal-card .art-arrow { transition-delay: 1.1s; transition-duration: 0.5s; }
  .js .deal-card .art-day-on { transform: scaleY(0.3); opacity: 0.4; transition: transform 0.6s var(--ease) 0.5s, opacity 0.6s 0.5s; }
  .js .deal-card .art-day-on--2 { transition-delay: 0.7s; }
  .js .deal-card.is-in .art-day-on { transform: none; opacity: 1; }
  .deal-card:hover .art-route { animation: redraw 1s var(--ease); }
  .deal-card:hover .art-spark { animation: twinkle 0.9s var(--ease); }
  .deal-card:hover .art-day-on { animation: hop 0.6s var(--ease); }
}
@keyframes redraw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes twinkle { 50% { transform: scale(1.35) rotate(20deg); } }
@keyframes hop { 40% { transform: translateY(-5px); } }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 16px; }
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
  .steps::before {
    content: "";
    position: absolute;
    top: 55px; left: 16.66%; right: 16.66%;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--sand-300) 0 12px, transparent 12px 22px);
    border-radius: 2px;
  }
}
@media (min-width: 800px) and (prefers-reduced-motion: no-preference) {
  .steps::after {
    content: "";
    position: absolute;
    top: 49px; left: 16.66%;
    width: 15px; height: 15px;
    margin-left: -7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.2);
    animation: travel 7s var(--ease) infinite;
  }
}
@keyframes travel {
  0% { left: 16.66%; opacity: 0; }
  8% { opacity: 1; }
  45%, 55% { left: 50%; }
  92% { opacity: 1; }
  100% { left: 83.33%; opacity: 0; }
}
.step {
  position: relative;
  padding: 26px 24px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
  align-content: start;
}
.step__num {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sky-50);
  color: var(--sky-700);
  border: 2px solid var(--sky-100);
  font-weight: 800;
  font-size: 1rem;
}
.step__title {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step p { color: var(--ink-soft); }
.step:nth-child(3) .step__num { background: var(--orange); border-color: #ffd0ad; color: var(--orange-ink); }
@media (min-width: 800px) {
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 20px 26px 34px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .step__num {
    grid-row: auto;
    width: 72px; height: 72px;
    margin: 0 0 22px;
    font-size: 1.125rem;
    background: var(--white);
    box-shadow: 0 0 0 8px var(--ivory), var(--shadow-card);
    position: relative;
    z-index: 1;
  }
}

/* ---------- Value ---------- */
.value__layout { display: grid; gap: 40px; }
@media (min-width: 1000px) {
  .value__layout { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
}
.value-grid { display: grid; gap: 14px; }
@media (min-width: 560px) { .value-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.value-card {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--sand-50);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background-color 0.3s;
}
.value-card:hover { transform: translateY(-3px); background: var(--white); box-shadow: var(--shadow-lift); }
.value-card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: #d45a05;
}
.value-card__icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card__title { font-size: 1.1875rem; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 6px; }
.value-card p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Operators / Founding Supplier ---------- */
.operators__layout { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1000px) {
  .operators__layout { grid-template-columns: 1fr 540px; gap: 72px; }
}
.operators__title { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.operators__lede {
  margin-top: 22px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.operators__copy .section-intro { margin-top: 12px; max-width: 36rem; }
.operators__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.operators__visual { position: relative; margin-bottom: 40px; }
.operators__visual picture {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sky-100);
  box-shadow: var(--shadow-lift);
}
.operators__visual img { width: 100%; height: 100%; object-fit: cover; }
.move-card {
  position: absolute;
  left: 16px; right: 16px; bottom: -40px;
  padding: 16px 18px 14px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
@media (min-width: 1000px) { .move-card { left: -36px; right: auto; width: 360px; } }
.move-card__row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.8125rem; font-weight: 800; }
.move-card__place { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); }
.move-card__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.18); }
.move-card__dot--muted { background: var(--sky-500); box-shadow: 0 0 0 4px rgba(47, 127, 209, 0.16); }
.move-card svg { width: 100%; height: 40px; margin: 6px 0 4px; overflow: visible; }
.move-base { fill: none; stroke: #c3cfe0; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1 8; }
.move-card .route-draw { stroke-width: 3; }
.move-card__caption { font-size: 0.875rem; color: var(--ink-soft); }

.founding {
  margin-top: clamp(64px, 8vw, 96px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.founding__head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-bottom: 26px; }
.founding__badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--orange-ink);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.founding__title { font-size: clamp(1.25rem, 2.2vw, 1.625rem); font-weight: 800; letter-spacing: -0.02em; }
.founding__grid { display: grid; gap: 12px; }
@media (min-width: 560px) { .founding__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .founding__grid { grid-template-columns: repeat(4, 1fr); } }
.founding__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: 16px;
  background: var(--sand-50);
  border: 1px solid var(--line);
}
.founding__item strong {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.founding__item strong::after {
  content: "";
  display: block;
  width: 28px; height: 4px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--orange);
}
.founding__item span { margin-top: 8px; font-weight: 700; color: var(--ink-soft); line-height: 1.4; }
.founding__welcome { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.founding__welcome-title { font-weight: 800; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--sky-700);
  font-weight: 700;
  font-size: 0.9375rem;
}
.founding__inventory { margin-top: 18px; color: var(--ink-soft); }
.founding__inventory strong { color: var(--ink); }

/* ---------- About & FAQ ---------- */
.about__layout { display: grid; gap: 48px; }
@media (min-width: 1000px) {
  .about__layout { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
}
.about__copy > p:not(.eyebrow) { margin-top: 18px; color: var(--ink-soft); max-width: 36rem; }
.about__copy .section-title { max-width: 16ch; }
.about__status {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  color: var(--ink) !important;
  font-size: 0.9875rem;
}
.faq {
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.faq__title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 6px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 0; }
.faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 14px 44px 14px 0;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -8px;
  border-right: 2.5px solid var(--orange-600);
  border-bottom: 2.5px solid var(--orange-600);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__item summary:hover { color: var(--orange-text); }
.faq__item p { padding: 0 0 20px; color: var(--ink-soft); }
.faq__item a { color: var(--orange-text); font-weight: 700; }

/* ---------- Launch CTA ---------- */
.launch { background: var(--sand-50); padding-bottom: clamp(72px, 10vw, 120px); }
.launch__banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 12vw, 150px) 0 clamp(150px, 16vw, 200px);
  background: var(--sky-500);
  color: var(--white);
  text-align: center;
}
.launch__media, .launch__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.launch__media { z-index: -2; }
.launch__media img { object-fit: cover; object-position: 50% 40%; }
.launch__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(11, 40, 90, 0.42), rgba(11, 40, 90, 0) 75%),
    linear-gradient(180deg, rgba(11, 40, 90, 0.2) 0%, rgba(11, 40, 90, 0) 50%, rgba(251, 246, 238, 0) 80%, var(--sand-50) 100%);
}
.launch__head { display: flex; flex-direction: column; align-items: center; }
.launch__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 14ch;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(11, 26, 58, 0.35);
}
.launch__lines {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 16px rgba(11, 26, 58, 0.4);
}

.join-grid {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: clamp(-130px, -12vw, -90px);
}
@media (min-width: 900px) { .join-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.join-card {
  position: relative;
  padding: clamp(24px, 3.4vw, 36px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.join-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-300));
}
.join-card--supplier::before { background: linear-gradient(90deg, var(--orange-600), #ffb27a); }
.join-card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-700);
}
.join-card--supplier .join-card__kicker { color: var(--orange-text); }
.join-card__icon {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sky-50);
}
.join-card--supplier .join-card__icon { background: var(--orange-soft); }
.join-card__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.join-card__title { margin-top: 16px; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.join-card__text { margin-top: 10px; color: var(--ink-soft); }
.chips--compact { margin-top: 16px; }
.chips--compact li { padding: 6px 12px; font-size: 0.875rem; }
.signup--card { margin-top: 22px; max-width: none; }
.signup--card .signup__btn { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #b9c2d6;
  padding: 56px 0 calc(40px + env(safe-area-inset-bottom));
  font-size: 0.9375rem;
}
.site-footer .brand { color: var(--white); }
.site-footer .brand__tld { color: var(--orange); }
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand--footer { margin-right: 0; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 4px 6px; margin: 0 -10px; padding: 0; list-style: none; }
.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  text-decoration: none;
  color: #e6eaf3;
  font-weight: 600;
}
.site-footer__nav a:hover { color: var(--orange); }
.site-footer__disclaimer { margin-top: 24px; max-width: 60rem; line-height: 1.6; }
.site-footer__copy { margin-top: 14px; color: #95a0b8; }

/* ---------- Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
    transition-delay: calc(var(--i, 0) * 80ms);
  }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .deal-card.reveal.is-in:hover { transform: translateY(-5px); transition-delay: 0s; }
}

/* ---------- Legal pages ---------- */
.legal { background: var(--white); color: var(--ink); padding: calc(var(--header-h) + 56px) 0 96px; }
.legal__body { max-width: 760px; }
.legal__body h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.035em; line-height: 1.1; font-weight: 800; }
.legal__body .updated { margin-top: 10px; color: var(--ink-soft); font-size: 0.9375rem; }
.legal__body h2 { margin-top: 40px; font-size: 1.3125rem; letter-spacing: -0.015em; font-weight: 800; }
.legal__body p, .legal__body ul { margin-top: 14px; color: var(--ink-soft); }
.legal__body ul { padding-left: 1.2em; }
.legal__body a { color: var(--orange-text); font-weight: 600; }
.legal__back { display: inline-flex; margin-top: 48px; }
