:root {
  --lavender: #f0ecff;
  --lavender-2: #e8e0ff;
  --white: #ffffff;
  --blue: #2f7dff;
  --blue-light: #74d9ff;
  --purple: #6c4dff;
  --purple-dark: #25164d;
  --black: #10131f;
  --muted: #647084;
  --line: rgba(66, 43, 129, .11);
  --shadow: 0 28px 80px rgba(54, 38, 111, .13);
  --shadow-soft: 0 16px 44px rgba(54, 38, 111, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.96), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(116,217,255,.26), transparent 26%),
    radial-gradient(circle at 50% 75%, rgba(108,77,255,.10), transparent 35%),
    linear-gradient(180deg, var(--lavender), #fbfaff 48%, var(--lavender-2));
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
.wrapper { width: min(1280px, calc(100% - 44px)); margin-inline: auto; }

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
}
.glow-one {
  width: 360px; height: 360px; top: 110px; left: -90px;
  background: rgba(108, 77, 255, .18);
  animation: glow 9s ease-in-out infinite;
}
.glow-two {
  width: 420px; height: 420px; top: 260px; right: -130px;
  background: rgba(116, 217, 255, .32);
  animation: glow 11s ease-in-out infinite reverse;
}
@keyframes glow { 50% { transform: translate3d(28px, 32px, 0) scale(1.04); } }

.navbar {
  width: min(1280px, calc(100% - 44px));
  margin: 18px auto 0;
  padding: 14px 16px;
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 38px rgba(45, 31, 95, .08);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 900; color: var(--black); }
.brand-icon {
  width: 34px; height: 34px;
  display: inline-grid; place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 12px 28px rgba(108,77,255,.25);
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 800; }
.nav-links a:not(.nav-button):hover { color: var(--purple); }
.nav-button {
  padding: 13px 19px;
  color: white;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 14px 28px rgba(47,125,255,.24);
}
.menu-toggle {
  display: none;
  border: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(108,77,255,.1);
  color: var(--black);
  font-size: 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, .84fr) minmax(560px, 1.16fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0 54px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(108,77,255,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: .95;
  letter-spacing: -.075em;
  color: var(--black);
}
.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.11rem;
  line-height: 1.75;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 28px 0 32px;
  max-width: 620px;
}
.hero-points span {
  position: relative;
  padding-left: 25px;
  color: #3f4860;
  font-weight: 750;
  font-size: .93rem;
}
.hero-points span::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 15px; height: 15px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), var(--blue-light));
  box-shadow: 0 6px 12px rgba(108,77,255,.18);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 18px 34px rgba(47,125,255,.24);
}
.button.secondary, .button.outline {
  color: var(--purple-dark);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(108,77,255,.16);
}
.full { width: 100%; }
.social-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  background: linear-gradient(135deg, #ffd1d1, #7bdcff);
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #bba7ff, #fff0b3); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #92f2ca, #9ec9ff); }
.social-proof p { margin: 0; font-size: .95rem; line-height: 1.45; }

.destination-showcase {
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(116,217,255,.22), transparent 24%),
    rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.marquee-head { align-items: flex-start; }
.showcase-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.showcase-head h2 { font-size: clamp(1.35rem, 2.1vw, 1.9rem); margin: 0 0 8px; letter-spacing: -.04em; line-height: 1.05; }
.showcase-head p { margin: 0; color: var(--muted); line-height: 1.55; }
.marquee-tag {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
  color: var(--purple-dark);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(108,77,255,.12);
}
.dest-marquee {
  overflow: hidden;
  position: relative;
  padding: 4px 0 2px;
}
.dest-marquee::before,
.dest-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 86px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.dest-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248,247,255,.92) 0%, rgba(248,247,255,0) 100%);
}
.dest-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241,249,255,.92) 0%, rgba(241,249,255,0) 100%);
}
.dest-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 48s linear infinite;
}
.destination-showcase:hover .dest-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
.dest-card {
  flex: 0 0 212px;
  text-align: center;
}
.dest-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--purple), var(--blue-light));
  box-shadow: 0 12px 24px rgba(31,33,58,.11);
  transition: transform .25s ease, box-shadow .25s ease;
}
.dest-card:hover img { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 34px rgba(31,33,58,.16); }
.dest-card strong {
  display: block;
  margin-top: 10px;
  font-size: .9rem;
  color: var(--black);
}
.showcase-fill {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.showcase-fill article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(108,77,255,.1);
  box-shadow: 0 12px 28px rgba(54,38,111,.07);
}
.showcase-fill span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: .82rem;
}
.showcase-fill strong {
  display: block;
  margin-bottom: 7px;
  color: var(--black);
}
.showcase-fill p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}
.benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon title" "icon text";
  gap: 6px 15px;
  padding: 8px 22px;
  border-right: 1px solid var(--line);
}
.benefits article:last-child { border-right: 0; }
.icon {
  grid-area: icon;
  width: 58px; height: 58px;
  display: inline-grid; place-items: center;
  border-radius: 18px;
  background: rgba(108,77,255,.1);
  font-size: 1.45rem;
}
.benefits h3 { grid-area: title; margin-bottom: 0; font-size: 1rem; }
.benefits p { grid-area: text; margin: 0; color: var(--muted); line-height: 1.55; font-size: .93rem; }

.section { padding: 80px 0; }
.section-title { max-width: 600px; margin-bottom: 34px; }
.section-title.center { max-width: 900px; margin-inline: auto; text-align: center; }
.section-title h2, .cta-copy h2 {
  margin-bottom: 14px;
  color: var(--black);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.section-title p, .cta-copy p { color: var(--muted); font-size: 1.06rem; line-height: 1.7; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps article {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.steps article > span {
  width: 38px; height: 38px;
  display: inline-grid; place-items: center;
  margin-bottom: 26px;
  border-radius: 13px;
  background: rgba(108,77,255,.12);
  color: var(--purple);
  font-weight: 900;
}
.step-illustration {
  position: absolute;
  right: 22px;
  top: 44px;
  font-size: 3.4rem;
  filter: drop-shadow(0 12px 18px rgba(108,77,255,.12));
}
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--muted); line-height: 1.58; margin-bottom: 0; }

.resources {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}
.resource-grid article {
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.resource-grid article:nth-child(3n) { border-right: 0; }
.resource-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.resource-grid span {
  width: 50px; height: 50px;
  display: inline-grid; place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(108,77,255,.10);
  font-size: 1.35rem;
}
.resource-grid h3 { margin-bottom: 8px; }
.resource-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.58; }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,247,255,.92));
  border: 2px solid rgba(47,125,255,.28);
  transform: translateY(-12px);
}
.price-card.concierge {
  background:
    radial-gradient(circle at 100% 0%, rgba(116,217,255,.22), transparent 25%),
    rgba(255,255,255,.72);
}
.ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 10px 18px;
  text-align: center;
  color: white;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.featured h3 { margin-top: 28px; }
.price-card h3 { font-size: 2rem; letter-spacing: -.04em; margin-bottom: 10px; }
.price-card p { color: var(--muted); line-height: 1.62; }
.price-card strong {
  display: block;
  margin: 12px 0 20px;
  color: var(--blue);
  font-size: 2.8rem;
  letter-spacing: -.06em;
}
.price-card strong span { font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.price-card ul {
  flex: 1;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #3e485c;
  font-weight: 650;
}
.price-card li {
  position: relative;
  padding-left: 24px;
  line-height: 1.65;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #4b5568;
  font-weight: 750;
  font-size: .92rem;
}

.final-cta {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin: 42px auto 70px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 90%, rgba(116,217,255,.23), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(255,255,255,.82));
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.travel-illustration {
  margin-top: 28px;
  font-size: 4rem;
  letter-spacing: .06em;
  color: var(--purple);
}
.waitlist-form {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
}
.waitlist-form h3 { font-size: 1.6rem; letter-spacing: -.03em; margin-bottom: 8px; }
.waitlist-form p { color: var(--muted); margin-bottom: 18px; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.waitlist-form input, .waitlist-form select {
  width: 100%;
  min-height: 50px;
  margin-bottom: 12px;
  padding: 0 15px;
  border-radius: 13px;
  border: 1px solid rgba(37,22,77,.12);
  background: white;
  font: inherit;
  outline: none;
}
.waitlist-form input:focus, .waitlist-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47,125,255,.12);
}
.waitlist-form small { display: block; margin-top: 12px; text-align: center; color: var(--muted); }

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .8fr);
  gap: 34px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}
.footer p { max-width: 280px; margin: 14px 0 0; color: var(--muted); line-height: 1.6; }
.footer nav { display: grid; gap: 10px; align-content: start; }
.footer strong {
  color: var(--black);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer a { color: #586274; font-size: .94rem; }
.footer a:hover { color: var(--purple); }
.copyright {
  position: absolute;
  right: 0;
  bottom: 18px;
  color: var(--muted);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; }
  .destination-showcase { min-height: auto; }
}

@media (max-width: 1080px) {
  .resources, .final-cta { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .benefits article:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .benefits article:nth-child(n+3) { padding-top: 22px; }
  .steps, .pricing { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .resource-grid article:nth-child(2n) { border-right: 0; }
  .resource-grid article:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .resource-grid article:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 0; right: 0; top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(108,77,255,.12);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .showcase-fill { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .copyright { position: static; grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .wrapper, .navbar { width: min(100% - 28px, 1280px); }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: 3.3rem; }
  .hero-points, .benefits, .steps, .pricing, .form-row, .footer { grid-template-columns: 1fr; }
  .destination-showcase { padding: 22px; }
  .showcase-head { flex-direction: column; }
  .benefits article { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .benefits article:last-child { border-bottom: 0; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-grid article, .resource-grid article:nth-child(2n), .resource-grid article:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .resource-grid article:last-child { border-bottom: 0; }
  .final-cta { padding: 26px; }
  .social-proof { align-items: flex-start; }
  .dest-card { flex-basis: 170px; }
  .dest-card img { height: 116px; }
  .dest-track { animation-duration: 36s; }
}


/* Final polish: hero balance and photo marquee */
.destination-showcase {
  max-width: 100%;
}

.dest-marquee {
  margin-top: 2px;
}

.dest-card img {
  filter: saturate(1.08) contrast(1.04);
}

.price-card h3 {
  text-transform: none;
}

@media (min-width: 1181px) {
  .destination-showcase {
    transform: translateY(6px);
  }
}
