/* Itinero pre-launch Ã¢â‚¬â€ production polish (aligned with itinero-web) */

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

:root {
  --navy: #010e2a;
  --navy-soft: #03163a;
  --saffron: #f57c00;
  --saffron-hover: #e06a12;
  --saffron-light: #fff6ed;
  --saffron-glow: rgba(245, 124, 0, 0.2);
  --shadow-saffron: 0 1px 2px rgba(1, 14, 42, 0.06), 0 3px 10px rgba(245, 124, 0, 0.14);
  --shadow-saffron-hover: 0 2px 4px rgba(1, 14, 42, 0.08), 0 5px 14px rgba(245, 124, 0, 0.2);
  --shadow-saffron-inset: none;
  --bg: #ffffff;
  --bg-muted: #f8fafc;
  --text: #010e2a;
  --text-secondary: #374151;
  --muted: #6b7280;
  --muted-soft: #8fa4c0;
  --line: #e5e7eb;
  --line-strong: #d1d5db;

  --container: 1120px;
  /* Hero inset: modest top/sides, generous white gap below the card */
  --hero-padding-x: clamp(0.5rem, 1.25vw, 0.875rem);
  --hero-padding-top: clamp(0.5rem, 1.5vw, 1rem);
  --hero-padding-bottom: calc(var(--hero-padding-x) * 8);
  --hero-stage-h: clamp(33rem, 68vh, 44rem);
  --hero-content-gap-lg: clamp(1.125rem, 2.5vh, 1.75rem);
  --hero-content-gap-md: clamp(0.875rem, 1.85vh, 1.375rem);
  --hero-content-gap-sm: clamp(0.75rem, 1.5vh, 1.125rem);
  --container-padding: clamp(0.5rem, 3vw, 1.5rem);
  --header-h: 56px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(1, 14, 42, 0.05);
  --shadow-sm: 0 4px 16px rgba(11, 22, 41, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 22, 41, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 22, 41, 0.1);
  --ring: 0 0 0 1px rgba(1, 14, 42, 0.06);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(245, 124, 0, 0.09), transparent 50%),
    linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 35%);
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Typography Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}

.section-eyebrow--center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--muted-soft);
  max-width: 36rem;
  margin-top: 0.75rem;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header .section-lead {
  margin-inline: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--saffron) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Buttons Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
  min-height: 44px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--saffron);
  box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-saffron-hover);
}

.btn-secondary {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: var(--bg-muted);
}

.btn-ghost {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  min-height: 40px;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--navy);
  flex-shrink: 0;
}

.btn-icon:hover {
  background: var(--saffron-light);
  border-color: rgba(245, 124, 0, 0.35);
}

/* ─── Header (aligned with itinero-web HomeTopNav) ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to right, #0a1120, #0b1629, #0a1120);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow: visible;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  min-width: 0;
  max-width: 100%;
}

a.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

a.brand:hover {
  opacity: 0.92;
}

.brand-wordmark {
  display: inline-block;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
}

.brand-itin {
  color: #ffffff;
}

.brand-ero {
  color: var(--saffron);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  min-width: 0;
  flex-shrink: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.header-nav a:hover {
  color: #fff;
}

.header-nav a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(245, 124, 0, 0.55);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}

@media (min-width: 640px) {
  .header-actions {
    gap: 0.75rem;
  }
}

.header-launch-badge {
  display: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.3125rem 0.625rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  line-height: 1;
}

.header-actions .btn-sm,
.header-actions .header-cta {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  min-height: 36px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(245, 124, 0, 0.25), 0 2px 4px -2px rgba(245, 124, 0, 0.15);
}

.header-actions .btn-sm:hover,
.header-actions .header-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 10px 15px -3px rgba(245, 124, 0, 0.35), 0 4px 6px -4px rgba(245, 124, 0, 0.2);
}

.header-offer-pill,
.launch-pill {
  display: none;
}

/* legacy hooks Ã¢â‚¬â€ hidden in favor of cleaner header */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Hero Ã¢â‚¬â€ SearchHome-style product preview (compact viewport fit) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero {
  display: block;
  padding:
    var(--hero-padding-top)
    var(--hero-padding-x)
    var(--hero-padding-bottom);
  background: var(--bg);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-width: 0;
}

.hero-frame {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(clamp(2.75rem, 15vh, 6.5rem), 1fr) auto;
  align-items: stretch;
  justify-items: center;
  width: 100%;
  height: var(--hero-stage-h);
  min-height: var(--hero-stage-h);
  max-height: var(--hero-stage-h);
  min-width: 0;
  padding:
    clamp(0.625rem, 1.25vh, 0.875rem)
    clamp(0.75rem, 1.5vh, 1rem)
    clamp(1.5rem, 3.5vh, 2.5rem);
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-stage-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.hero-stage-scrim {
  position: absolute;
  inset: 0;
  background:
    rgba(11, 22, 41, 0.06),
    linear-gradient(180deg, rgba(11, 22, 41, 0.28) 0%, rgba(11, 22, 41, 0.08) 32%, transparent 58%),
    linear-gradient(0deg, rgba(11, 22, 41, 0.82) 0%, rgba(11, 22, 41, 0.48) 42%, transparent 70%);
}

.hero-dest-chip {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.125rem);
  right: clamp(0.75rem, 2vw, 1.125rem);
  z-index: 2;
  width: fit-content;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.3rem 0.625rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(1, 14, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(1, 14, 42, 0.2);
}

.hero-stage-content {
  position: relative;
  z-index: 4;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(48rem, 100%);
  margin-inline: auto;
  min-width: 0;
}

.hero-stage-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  text-align: center;
  padding-inline: clamp(0.5rem, 3vw, 2rem);
  max-width: 40rem;
  width: min(100%, 40rem);
  min-width: 0;
  margin-bottom: var(--hero-content-gap-md);
}


.hero-title {
  width: 100%;
  font-size: clamp(1.625rem, 3.4vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: clamp(0.375rem, 0.85vh, 0.625rem);
  text-align: center;
  text-shadow: 0 2px 28px rgba(1, 14, 42, 0.4);
  text-wrap: balance;
}

.hero-accent {
  color: var(--saffron);
}

.hero-desc {
  width: 100%;
  max-width: 32rem;
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  text-shadow: 0 1px 14px rgba(1, 14, 42, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-preview-wrap {
  position: relative;
  z-index: 3;
  align-self: stretch;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: var(--hero-content-gap-lg);
  min-width: 0;
  overflow: visible;
}

.hero-preview-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
  padding: 0.625rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(11, 22, 41, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-preview-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.125rem;
  padding: 0.1875rem;
  background: #f3f4f6;
  border-radius: 10px;
}

.hero-preview-tab {
  padding: 0.375rem 0.25rem;
  min-height: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
  border-radius: 8px;
  user-select: none;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hero-preview-tab.is-active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 1px 3px rgba(11, 22, 41, 0.08);
}

.hero-preview-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.85fr;
  gap: 0.375rem;
  padding: 0.125rem 0 0.25rem;
  opacity: 0.78;
  pointer-events: none;
}

.hero-preview-field {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.4375rem 0.5rem;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 0;
  min-height: 2.125rem;
}

.hero-preview-field--wide {
  grid-column: 1 / -1;
}

.hero-preview-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.1;
}

.hero-preview-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.hero-waitlist {
  padding: 0.375rem 0.125rem 0.125rem;
  border-top: 1px solid var(--line);
  margin-top: 0.125rem;
}

.hero-waitlist-lead {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.hero-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem 0.75rem;
  align-self: center;
  width: 100%;
}

/* Pill chips — same treatment as hero-dest-chip for contrast on bright hero photos */
.hero-link-careers,
.hero-foot .btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.4375rem 0.875rem;
  min-height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(1, 14, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(1, 14, 42, 0.32);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero-link-careers {
  color: #fff;
  text-decoration: none;
}

.hero-hiring-accent {
  color: var(--saffron);
}

.hero-link-careers:hover {
  color: #fff;
  background: rgba(1, 14, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.hero-foot .btn-share {
  color: #fff;
  cursor: pointer;
}

.hero-foot .btn-share:hover {
  color: #fff;
  background: rgba(1, 14, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.hero-foot .btn-share svg {
  flex-shrink: 0;
}

.signup-card {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--ring);
}

.signup-card-label,
.hero-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* HeroSearchCard-style inline signup */
.hero-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.375rem;
  padding: 0.25rem;
  background: var(--bg-muted);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 10px;
  box-shadow: var(--shadow-xs);
  min-width: 0;
  max-width: 100%;
}

.hero-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 40px;
  height: 40px;
  padding: 0 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hero-form input[type="email"]::placeholder {
  color: var(--muted);
}

.hero-form input[type="email"]:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.12);
}

.hero-form button[type="submit"] {
  flex-shrink: 0;
  min-height: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
}

.hero-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}


.hero-notify-error,
.hero-notify-success,
.notify-error,
.notify-success {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

.hero-notify-success,
.notify-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.hero-notify-success.show,
.notify-success.show {
  display: block;
}

.hero-notify-error,
.notify-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.hero-notify-error.show,
.notify-error.show {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Countdown Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.countdown-section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}

.countdown-section .section-eyebrow {
  display: block;
  text-align: center;
}

.countdown-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-wrap {
  text-align: center;
}

.cd-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
}

.cd-box {
  flex: 1;
  min-width: 4.5rem;
  max-width: 6.5rem;
  padding: 1.25rem 0.75rem 1rem;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm), var(--ring);
}

.cd-num {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--saffron);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.35rem;
}

.cd-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cd-colon {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--line-strong);
  opacity: 0.8;
  animation: none;
}

.cd-date-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.cd-date-pill time {
  padding: 0.5rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Content sections Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.content-section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.content-section .section-title {
  margin-bottom: 1.5rem;
}

.content-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.content-lead:last-of-type {
  margin-bottom: 0;
}

.content-lead a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
}

.content-lead a:hover {
  text-decoration: underline;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Features Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.features-section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--bg);
}

.features-section .section-eyebrow {
  display: block;
  text-align: center;
}

.features-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.features-title span {
  color: var(--saffron);
}

.features-sub {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--muted-soft);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 32rem;
  margin-inline: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feat-card {
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), var(--ring);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 124, 0, 0.25);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245, 124, 0, 0.08);
}

.feat-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--saffron);
  font-size: 0;
}

.feat-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feat-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Waitlist steps Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.waitlist-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.waitlist-steps li {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.25rem 1.375rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs), var(--ring);
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  background: var(--saffron);
  border-radius: var(--radius-full);
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.step-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.step-body a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
}

.step-body a:hover {
  text-decoration: underline;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FAQ Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq-item[open] {
  border-color: rgba(245, 124, 0, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s var(--ease);
}

.faq-item summary:hover {
  color: var(--saffron);
}

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

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23F57C00' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.faq-item a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Social Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.social-section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}

.social-section .section-eyebrow,
.social-section .section-title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.social-section .section-title {
  max-width: 20ch;
}

.social-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted-soft);
  max-width: 34rem;
  margin: 0.5rem auto 2.75rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.25rem);
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.75rem 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), var(--ring);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 124, 0, 0.22);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245, 124, 0, 0.08);
}

.social-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(1, 14, 42, 0.14);
}

.social-icon svg {
  display: block;
}

.social-icon.yt {
  background: #ff0000;
}

.social-icon.tt {
  background: #010101;
}

.social-icon.ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.md {
  background: #000000;
  color: #ffffff;
}

.social-platform {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 0.125rem;
}

.social-handle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-soft);
  margin-top: -0.15rem;
}

.social-follow {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5625rem 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(245, 124, 0, 0.55);
  background: transparent;
  color: var(--saffron-hover);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.social-follow:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #ffffff;
  box-shadow: var(--shadow-saffron);
}

.social-follow:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

/* ─── Footer (dark navy — aligned with itinero-web Footer.jsx) ─── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.875rem, 2vw, 1.25rem);
  padding-block: clamp(1.5rem, 3vh, 2rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-vero-avatar {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: #f0c27f;
  border: 2px solid var(--saffron);
  box-shadow:
    0 0 0 3px rgba(245, 124, 0, 0.16),
    0 0 14px rgba(245, 124, 0, 0.28);
  flex-shrink: 0;
}

.footer-vero-avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 14%;
  transform: scale(2.35);
  transform-origin: 50% 18%;
}

.footer-wordmark {
  font-size: 1.0625rem;
  line-height: 1.1;
}

.footer-logo-sub {
  margin-top: 0.125rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.footer-tagline {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
  max-width: 22rem;
  margin: 0;
}

.footer-company {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.3;
  max-width: 22rem;
  margin: 0;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.footer-contact {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

.footer-contact a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.875rem, 1.5vw, 1.125rem);
}

.footer-links-col {
  min-width: 0;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-link-list a {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.footer-link-list a:hover {
  color: #fff;
}

.footer-cta-lead {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.4375rem;
  max-width: 24rem;
}

.footer-cta-lead strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.footer-form-wrap {
  padding: 0.625rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.footer-form {
  position: relative;
  display: flex;
  gap: 0.375rem;
  padding: 0.1875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  min-width: 0;
  max-width: 100%;
}

.footer-form input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 32px;
  padding: 0 0.75rem;
  font-family: inherit;
  font-size: 0.8125rem;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-sm) - 2px);
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow 0.2s var(--ease);
}

.footer-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-form input[type="email"]:focus,
.footer-form input[type="email"]:focus-visible {
  outline: none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 1px rgba(245, 124, 0, 0.55);
}

.footer-form input[type="email"]:-webkit-autofill,
.footer-form input[type="email"]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--navy-soft) inset;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.footer-form button[type="submit"] {
  height: 32px;
  padding: 0 0.75rem;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: var(--saffron);
  border: none;
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-saffron);
  transition: filter 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
}

.footer-form button[type="submit"]:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-saffron-hover);
}

.footer-form button[type="submit"]:active {
  transform: scale(0.98);
}

.footer-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.waitlist-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  margin-top: 0.3125rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.waitlist-consent input {
  margin-top: 0.15rem;
  width: 0.9375rem;
  height: 0.9375rem;
  accent-color: var(--saffron);
  flex-shrink: 0;
}

.waitlist-consent a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
}

.waitlist-consent a:hover {
  color: #fff;
}

.footer-offer-note {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.25rem;
  line-height: 1.35;
}

footer .notify-error,
footer .notify-success {
  margin-top: 0.375rem;
}

footer .notify-error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #fecaca;
}

footer .notify-success {
  background: rgba(245, 124, 0, 0.12);
  border: 1px solid rgba(245, 124, 0, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 0.5rem;
  background: rgba(0, 0, 0, 0.12);
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.footer-copy,
.footer-love {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  line-height: 1.35;
}

.footer-copy {
  justify-self: start;
}

.footer-love {
  justify-self: end;
  text-align: right;
}

.footer-love span {
  color: var(--saffron);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.875rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 500;
  transition: color 0.15s var(--ease);
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-legal {
  display: none;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Utilities Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fade-up {
  animation: fadeUp 0.7s var(--ease) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

.skip-link {
  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:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.625rem 1rem;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--saffron);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

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

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (min-width: 900px) {
  .header-launch-badge {
    display: block;
  }
}

@media (min-width: 1025px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.75fr) minmax(0, 0.75fr) minmax(0, 1.4fr);
    gap: clamp(0.875rem, 2vw, 1.25rem);
  }

  .footer-links-grid {
    display: contents;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.125rem 0.875rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }

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

  .footer-copy,
  .footer-love {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 52px;
  }

  .header-inner {
    gap: 0.5rem 0.625rem;
  }

  .hero-preview-fields {
    grid-template-columns: 1fr 1fr;
  }

  .hero-preview-field--wide {
    grid-column: 1 / -1;
  }

  .header-nav {
    display: none;
  }

  .header-launch-badge {
    display: none !important;
  }
}

@media (max-height: 760px) {
  .hero-desc {
    display: none;
  }
}

@media (max-height: 820px) {
  .hero-stage {
    grid-template-rows: minmax(clamp(2rem, 12vh, 5rem), 1fr) auto;
    padding-bottom: clamp(1.25rem, 3vh, 2rem);
  }

  .hero-stage-head {
    margin-bottom: var(--hero-content-gap-sm);
  }

  .hero-preview-wrap {
    margin-bottom: var(--hero-content-gap-md);
  }

  .hero-waitlist-lead {
    margin-bottom: 0.25rem;
  }
}

@media (max-height: 700px) {

  .hero-preview-fields {
    display: none;
  }

  .hero-preview-card {
    gap: 0.1875rem;
    padding: 0.375rem;
  }

  .hero-waitlist {
    padding-top: 0.25rem;
    margin-top: 0;
    border-top: none;
  }
}

@media (max-width: 640px) {
  .hero-dest-chip {
    font-size: 0.625rem;
  }

  .hero-preview-fields {
    grid-template-columns: 1fr;
  }

  .hero-form {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0.375rem;
  }

  .hero-form input[type="email"] {
    width: 100%;
    min-height: 40px;
    height: 40px;
    background: #fff;
  }

  .hero-form input[type="email"]:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.12);
  }

  .hero-form button[type="submit"] {
    width: 100%;
    min-height: 40px;
    height: 40px;
  }

  .cd-colon {
    display: none;
  }

  .cd-grid {
    gap: 0.375rem;
  }

  .features-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-form button[type="submit"] {
    width: 100%;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-copy,
  .footer-love {
    justify-self: center;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
