/* ============================================
   SAIL TO SPEAK & SCALE 2027
   Brand System: Authority Event Family
   Art Direction: Nautical Authority
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #472f79;
  --deep-purple: #1b0c3d;
  --teal: #1f9bb3;
  --dark-teal: #0f8897;
  --lavender: #ebeaf8;
  --soft-lavender: #f5f4fa;
  --cream: #fffffa;
  --muted-purple: #565a7c;
  --white: #fffffa;
  --section-pad: 100px;
  --section-pad-mobile: 64px;
  --content-max: 1200px;
  --paragraph-max: 640px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-purple);
  background-color: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.heading-rule {
  width: 80px;
  height: 1px;
  background: var(--teal);
  margin-top: 24px;
  border: none;
}

/* --- Layout --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

/* Light text on dark backgrounds */
.dark-section {
  color: rgba(255, 255, 250, 0.8);
}
.dark-section h2,
.dark-section h3 {
  color: var(--cream);
}
.dark-section .section-label {
  color: var(--teal);
}

/* Dark text on light backgrounds */
.light-section h2 {
  color: var(--deep-purple);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  background: var(--teal);
  padding: 16px 34px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  text-decoration: none;
  text-align: center;
}
.btn-primary:hover {
  background: var(--dark-teal);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal);
  background: transparent;
  padding: 16px 34px;
  border: 2px solid var(--teal);
  border-radius: 0;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  text-align: center;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--cream);
}

/* Focus styles for accessibility */
.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}
.faq-question:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.cta-micro {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
  opacity: 0.7;
}
.dark-section .cta-micro {
  color: rgba(255, 255, 250, 0.6);
}
.light-section .cta-micro {
  color: var(--muted-purple);
}

.cta-group {
  margin-top: 40px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--deep-purple);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-cruise-ship.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 12, 61, 0.92) 0%,
    rgba(27, 12, 61, 0.55) 45%,
    rgba(27, 12, 61, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 32px;
}
.hero .section-label {
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-bottom: 28px;
  color: var(--teal);
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: clamp(40px, 7vw, 84px);
  text-shadow: 0 2px 40px rgba(27, 12, 61, 0.4);
}
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 28px);
  color: var(--teal);
  margin-bottom: 36px;
}
.hero-subhead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 21px);
  color: rgba(255, 255, 250, 0.85);
  margin-bottom: 12px;
  line-height: 1.6;
}
.hero-hook {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--cream);
  margin: 40px 0;
}
.hero .cta-group {
  margin-top: 44px;
}
.hero .btn-primary {
  font-size: 17px;
  padding: 20px 44px;
}
.hero .cta-micro {
  color: rgba(255, 255, 250, 0.6);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.hero-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 250, 0.55);
  margin-top: 28px;
  letter-spacing: 0.02em;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 250, 0.3);
  font-size: 24px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION 2 — BIG PROMISE
   ============================================ */
.big-promise {
  background: var(--cream);
}
.big-promise-grid {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 5%;
  align-items: start;
  margin-top: 48px;
}
.big-promise-narrative p {
  max-width: var(--paragraph-max);
  margin-bottom: 16px;
}
.benefit-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 10px;
  background: var(--teal);
}
.benefit-item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-purple);
}

/* ============================================
   SECTION 3 — WHAT MAKES THIS DIFFERENT
   ============================================ */
.different {
  background: var(--deep-purple);
  position: relative;
}
.different::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.different-card {
  border: 1px solid rgba(255, 255, 250, 0.08);
  padding: 32px;
  border-top: 2px solid var(--teal);
}
.different-card h3 {
  margin-bottom: 12px;
}
.different-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   SECTION 4 — SOCIAL PROOF STRIP
   ============================================ */
.proof-strip {
  background: var(--lavender);
  text-align: center;
}
.proof-quote {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}
.proof-quote blockquote {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(17px, 2.5vw, 22px);
  font-style: italic;
  line-height: 1.7;
  color: var(--deep-purple);
}
.proof-quote .quote-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin: 0 auto 24px;
}

/* ============================================
   SECTION 5 — DESTINATIONS
   ============================================ */
.destinations {
  background: var(--cream);
}
.destination-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.destination-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--deep-purple);
}
.destination-card-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 400ms ease;
}
.destination-card:hover .destination-card-inner {
  transform: scale(1.02);
}
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,12,61,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 16px;
}
.destination-card-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.destination-card-overlay span {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgba(255, 255, 250, 0.8);
  margin-top: 4px;
}
.destinations-copy {
  max-width: var(--paragraph-max);
  margin: 32px auto 0;
  text-align: center;
  font-style: italic;
}

/* ============================================
   SECTION 6 — SHIP EXPERIENCE
   ============================================ */
.ship {
  background: var(--purple);
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
}
.ship::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
/* Ship hero image - full width dramatic treatment */
.ship-hero-image {
  position: relative;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.ship-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.ship-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(71, 47, 121, 0.1) 0%,
    rgba(71, 47, 121, 0.6) 80%,
    rgba(71, 47, 121, 1) 100%
  );
}
.ship-content-centered {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -60px;
}
.ship-content-centered > p {
  margin-bottom: 24px;
}
.ship-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px auto;
  max-width: 900px;
}
.ship-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.ship-perk svg {
  color: var(--teal);
}
.ship-perk span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 250, 0.8);
}
.ship-closing {
  font-style: italic;
  margin-top: 24px;
  font-size: 15px;
  opacity: 0.9;
}
.ship .cta-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .ship-perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ship-hero-image img {
    height: 320px;
  }
  .ship-content-centered {
    margin-top: -40px;
  }
}

/* ============================================
   SECTION 7 — WHAT YOU WALK AWAY WITH
   ============================================ */
.outcomes {
  background: var(--deep-purple);
  position: relative;
  overflow: hidden;
}
.outcomes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.outcomes .container {
  position: relative;
  z-index: 1;
}
.outcomes h2 {
  color: var(--cream);
}
.outcomes .section-label {
  color: var(--teal);
}
.outcomes .heading-rule {
  background: var(--teal);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}
.outcome-card {
  position: relative;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 250, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.outcome-card:last-child {
  border-right: none;
}
.outcome-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
}
.outcome-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  flex-shrink: 0;
}
.outcome-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.outcome-card p {
  font-size: 13px;
  color: rgba(255, 255, 250, 0.5);
  line-height: 1.5;
  font-weight: 300;
}
.outcomes .cta-group {
  text-align: center;
}
.outcomes .cta-micro {
  color: rgba(255, 255, 250, 0.5);
}

@media (max-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .outcome-card:nth-child(3) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcome-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 250, 0.06);
    padding: 28px 20px;
  }
}
@media (max-width: 480px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--teal);
}

/* ============================================
   SECTION 8 — LEADER OPPORTUNITY
   ============================================ */
.leader {
  background: var(--deep-purple);
  position: relative;
}
.leader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.leader-grid {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 5%;
  align-items: center;
  position: relative;
  z-index: 1;
}
.leader-card {
  border-left: 3px solid var(--teal);
  padding-left: 40px;
  max-width: 720px;
}
.leader-image {
  overflow: hidden;
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.leader-card h2 {
  margin-bottom: 16px;
}
.leader-card > p {
  margin-bottom: 24px;
}
.leader-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.leader-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.leader-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background: var(--teal);
}
.leader-closing {
  font-style: italic;
  margin-top: 24px;
  font-size: 15px;
  opacity: 0.9;
}

/* ============================================
   SECTION 9 — HOST CREDIBILITY
   ============================================ */
.hosts {
  background: var(--cream);
}
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.host-card {
  text-align: center;
}
.host-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 20px;
}
.host-card h3 {
  color: var(--deep-purple);
  font-size: 16px;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}
.host-card h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--teal);
  margin-top: 6px;
}
.host-card .host-role {
  font-size: 13px;
  color: var(--muted-purple);
  font-weight: 300;
  margin-top: 8px;
}

/* ============================================
   SECTION 10 — PRICING / DEPOSIT
   ============================================ */
.pricing {
  background: var(--lavender);
}
.pricing-card {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--cream);
  border: 2px solid var(--teal);
  padding: 48px;
  text-align: center;
}
.pricing-card > p {
  margin-bottom: 24px;
  font-size: 16px;
}
.pricing-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 32px;
}
.pricing-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--deep-purple);
}
.pricing-benefits li .check-icon {
  color: var(--teal);
}
.bonus-callout {
  background: var(--soft-lavender);
  padding: 24px;
  margin: 32px 0;
  border-left: 3px solid var(--teal);
  text-align: left;
}
.bonus-callout strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-purple);
  display: block;
  margin-bottom: 4px;
}
.bonus-callout p {
  font-size: 14px;
}
.pricing-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-purple);
  margin-top: 24px;
  font-style: italic;
}
.trust-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION 11 — FAQ
   ============================================ */
.faq {
  background: var(--cream);
}
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--lavender);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-purple);
  gap: 16px;
}
.faq-question:hover {
  color: var(--teal);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--teal);
  transition: transform 300ms ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  max-width: var(--paragraph-max);
}

/* ============================================
   SECTION 12 — FINAL CLOSE
   ============================================ */
.final-close {
  background: var(--deep-purple);
  text-align: center;
  position: relative;
}
.final-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.final-close .container {
  position: relative;
  z-index: 1;
}
.final-close h2 {
  margin-bottom: 24px;
}
.final-close-copy {
  max-width: var(--paragraph-max);
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 12, 61, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.exit-popup {
  background: var(--cream);
  max-width: 480px;
  width: 90%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.exit-popup h2 {
  font-size: 28px;
  color: var(--deep-purple);
  margin-bottom: 16px;
}
.exit-popup p {
  margin-bottom: 32px;
  font-size: 15px;
}
.exit-popup .btn-primary {
  width: 100%;
  margin-bottom: 16px;
}
.exit-popup-dismiss {
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--muted-purple);
  cursor: pointer;
  opacity: 0.6;
}
.exit-popup-dismiss:hover {
  opacity: 1;
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted-purple);
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* --- 4K / Ultrawide scaling --- */
@media (min-width: 1600px) {
  :root {
    --content-max: 1400px;
    --section-pad: 120px;
  }
  h1 {
    font-size: clamp(72px, 5.5vw, 96px);
  }
  h2 {
    font-size: clamp(42px, 3vw, 56px);
  }
  body {
    font-size: 18px;
  }
  .hero-content {
    max-width: 1100px;
  }
  .hero .btn-primary {
    font-size: 18px;
    padding: 22px 52px;
  }
  .btn-primary {
    font-size: 16px;
    padding: 18px 40px;
  }
}

@media (min-width: 2200px) {
  :root {
    --content-max: 1600px;
    --section-pad: 140px;
  }
  h1 {
    font-size: 96px;
  }
  h2 {
    font-size: 60px;
  }
  body {
    font-size: 20px;
  }
  .hero-content {
    max-width: 1300px;
  }
  .hero .section-label {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 32px;
  }
  .hero-subhead {
    font-size: 24px;
  }
  .hero-hook {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .big-promise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .different-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .leader-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .leader-image {
    order: -1;
  }
  .leader-image img {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }
  .hosts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .destination-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .destination-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-strip .destination-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .hosts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  .hero-content {
    padding: 0 16px;
  }
  h1 {
    font-size: clamp(32px, 8vw, 48px);
  }
}

@media (max-width: 480px) {
  .different-grid {
    grid-template-columns: 1fr;
  }
  .destination-strip {
    grid-template-columns: 1fr;
  }
  .destination-strip .destination-card:last-child {
    max-width: 100%;
  }
  .destination-card {
    aspect-ratio: 4 / 3;
  }
  .hosts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
