/* Voyage Desk — travel booking hub */
.vc-voyage-page {
  --voyage-ink: #07111f;
  --voyage-mist: #d7e8ff;
  --voyage-flare: #ff4d6d;
  --voyage-teal: #1ec8c8;
  --voyage-display: "Outfit", system-ui, sans-serif;
  --voyage-text: "Sora", system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
  color: var(--voyage-mist);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(30, 200, 200, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(255, 77, 109, 0.2), transparent 50%),
    linear-gradient(165deg, #050b16 0%, #0b1a2e 48%, #102033 100%);
  font-family: var(--voyage-text);
}

.vc-voyage-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(5, 11, 22, 0.78);
  border-bottom: 1px solid rgba(215, 232, 255, 0.12);
  backdrop-filter: blur(14px);
}

.vc-voyage-brand {
  margin: 0;
  font-family: var(--voyage-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.vc-voyage-link {
  color: var(--voyage-mist);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
}
.vc-voyage-link:hover {
  color: #fff;
}

.vc-voyage-region {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(215, 232, 255, 0.7);
}
.vc-voyage-region select {
  border: 1px solid rgba(215, 232, 255, 0.25);
  background: rgba(7, 17, 31, 0.9);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}

.vc-voyage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 8vw, 5.5rem) 1.25rem 2.5rem;
  min-height: min(72vh, 36rem);
  display: grid;
  align-items: end;
}

.vc-voyage-hero__sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 11, 22, 0.75) 100%),
    repeating-linear-gradient(
      115deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.03) 18px 19px
    ),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(255, 77, 109, 0.35), transparent 60%);
  animation: vcVoyageDrift 18s ease-in-out infinite alternate;
}
@keyframes vcVoyageDrift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.06) translateY(-1.5%); }
}

.vc-voyage-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.vc-voyage-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--voyage-teal);
}

.vc-voyage-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--voyage-display);
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.vc-voyage-lede {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(215, 232, 255, 0.88);
  max-width: 34rem;
}

.vc-voyage-meta {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(215, 232, 255, 0.65);
}

.vc-voyage-main {
  padding: 0 1.25rem 3.5rem;
  max-width: 68rem;
  margin: 0 auto;
}

.vc-voyage-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.1rem;
}

.vc-voyage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 16rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.35rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.vc-voyage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.vc-voyage-card--skylanes {
  background:
    linear-gradient(145deg, rgba(211, 47, 47, 0.35), transparent 55%),
    linear-gradient(180deg, #0c2038, #081522);
}
.vc-voyage-card--harbor {
  background:
    linear-gradient(145deg, rgba(30, 200, 200, 0.28), transparent 55%),
    linear-gradient(180deg, #0c2a2c, #08181a);
}
.vc-voyage-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.vc-voyage-card h2 {
  margin: 0;
  font-family: var(--voyage-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.vc-voyage-card p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
}
.vc-voyage-card__badge {
  align-self: flex-start;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.12);
}
.vc-voyage-card__cta {
  font-family: var(--voyage-display);
  font-weight: 700;
  color: #fff;
}

.vc-voyage-note {
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  color: rgba(215, 232, 255, 0.55);
  max-width: 40rem;
}
.vc-voyage-note a {
  color: var(--voyage-teal);
}

@media (max-width: 640px) {
  .vc-voyage-hero {
    min-height: 58vh;
  }
  .vc-voyage-topbar {
    padding: 0.75rem 1rem;
  }
}
