:root {
  --deep: #082770; --tropical: #205EB6; --sky: #5A9DDD; --sky-light: #d4edfb;
  --white: #ffffff; --cloud: #f0f8ff; --sand: #fffbf4; --gold: #C9A84C;
  --text-mid: #2d5490; --text-body: #2c3e6b;
  --gradient: linear-gradient(135deg, #082770 0%, #205EB6 55%, #5A9DDD 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', 'Open Sans', sans-serif; background: var(--white); color: var(--text-body); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 48px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,39,112,0.08);
  box-shadow: 0 2px 24px rgba(8,39,112,0.07);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { width: 180px; height: auto; display: block; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--text-mid); font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--tropical); }
.nav-cta {
  background: var(--gradient); color: white; padding: 11px 22px; border-radius: 7px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 18px rgba(32,94,182,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 26px rgba(32,94,182,0.5); }

/* LOGIN DROPDOWN */
.login-wrap { position: relative; }
.login-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--tropical); font-size: 14px; font-weight: 600;
  text-decoration: none; padding: 8px 16px; border-radius: 6px;
  background: transparent; border: none; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
}
.login-trigger:hover { background: rgba(32,94,182,0.08); }
.login-trigger svg {
  width: 12px; height: 12px; transition: transform 0.25s ease;
  stroke: var(--tropical); stroke-width: 2.4; fill: none;
}
.login-wrap.open .login-trigger svg { transform: rotate(180deg); }
.login-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 260px; background: white; border-radius: 12px;
  border: 1px solid rgba(8,39,112,0.08);
  box-shadow: 0 16px 48px rgba(8,39,112,0.14), 0 2px 8px rgba(8,39,112,0.06);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
}
.login-wrap.open .login-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.login-menu a {
  display: block; padding: 12px 14px; border-radius: 8px;
  text-decoration: none; color: var(--deep);
  transition: background 0.15s;
}
.login-menu a:hover { background: var(--cloud); }
.login-menu .lm-label {
  font-family: 'DM Serif Display', serif; font-size: 15px;
  color: var(--deep); line-height: 1.2; margin-bottom: 2px;
}
.login-menu .lm-sub {
  font-size: 12px; color: var(--text-mid); font-weight: 400;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 132px 80px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.78) 52%, rgba(8,39,112,0.04) 100%),
    url('https://images.unsplash.com/photo-1439130490301-25e322d88054?w=1800&q=85') center 40%/cover no-repeat;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 64px; align-items: center;
}
.hero-content { max-width: 600px; }

/* THE LIVE BADGE — Nikki loved this */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,39,112,0.06); border: 1px solid rgba(8,39,112,0.14);
  border-radius: 40px; padding: 8px 18px; margin-bottom: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--tropical); animation: fadeUp 0.6s ease both;
}
.live-dot {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.3); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.08); } }

.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5vw, 66px); color: var(--deep); line-height: 1.05;
  margin-bottom: 24px; animation: fadeUp 0.6s 0.1s ease both;
}
.hero-content h1 em { font-style: italic; color: var(--tropical); }
.hero-content p {
  font-size: 18px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300; animation: fadeUp 0.6s 0.18s ease both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.32s ease both; }
.btn-white {
  background: var(--gradient); color: white; padding: 16px 36px; border-radius: 8px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 24px rgba(32,94,182,0.3); transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(32,94,182,0.45); }
.btn-outline-white {
  border: 2px solid rgba(8,39,112,0.2); color: var(--deep); padding: 14px 30px;
  border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: var(--tropical); background: rgba(8,39,112,0.04); }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.85); color: #ffffff; padding: 14px 30px;
  border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.12); }

/* Floating stat cards */
.hero-stats {
  display: flex; flex-direction: column; gap: 16px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat-card {
  background: white; border: 1px solid rgba(8,39,112,0.1);
  border-radius: 16px; padding: 22px 28px; min-width: 210px;
  box-shadow: 0 8px 40px rgba(8,39,112,0.1);
}
.hero-stat-card strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 42px; color: var(--tropical); line-height: 1; margin-bottom: 4px;
}
.hero-stat-card span { font-size: 12.5px; color: var(--text-mid); line-height: 1.4; }

/* NOT A BUSINESS TOOL */
.clarity-section { background: white; padding: 80px 80px; }
.clarity-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.section-kicker { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; display: block; }
h2.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 48px); color: var(--deep); line-height: 1.15; margin-bottom: 18px; text-wrap: balance; }
.section-sub { font-size: 17px; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.clarity-points { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.clarity-point { display: flex; gap: 14px; align-items: flex-start; }
.clarity-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, #082770, #5A9DDD);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; margin-top: 2px;
}
.clarity-point h4 { font-size: 15px; font-weight: 600; color: var(--deep); margin-bottom: 4px; }
.clarity-point p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
.clarity-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(8,39,112,0.14); }
.clarity-img img { width: 100%; display: block; }

/* BENEFITS */
.benefits-section { background: var(--cloud); padding: 80px 80px; }
.benefits-inner { max-width: 1100px; margin: 0 auto; }
.benefits-header { text-align: center; margin-bottom: 56px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: white; border-radius: 18px; padding: 32px 28px;
  border: 1px solid rgba(8,39,112,0.07);
  box-shadow: 0 4px 24px rgba(8,39,112,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(8,39,112,0.13); }
.benefit-card-icon {
  width: 44px; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #082770, #5A9DDD);
  margin-bottom: 20px;
}
.benefit-card h3 { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--deep); margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.benefit-card .highlight { color: var(--tropical); font-weight: 700; font-size: 13px; margin-top: 12px; display: block; }

/* DESTINATIONS */
.dest-section { background: white; padding: 80px 80px; }
.dest-inner { max-width: 1100px; margin: 0 auto; }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.dest-card {
  border-radius: 16px; overflow: hidden; position: relative;
  height: 220px; cursor: pointer; transition: transform 0.35s;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card-bg { position: absolute; inset:0; background-size:cover; background-position:center; transition: transform 0.5s; }
.dest-card:hover .dest-card-bg { transform: scale(1.06); }
.dest-card-overlay { position: absolute; inset:0; background: linear-gradient(to top, rgba(8,39,112,0.85) 0%, rgba(8,39,112,0.15) 60%, transparent 100%); }
.dest-card-body { position: absolute; bottom:0; left:0; right:0; padding:20px; z-index:2; }
.dest-label { font-family: 'DM Serif Display', serif; font-size: 19px; color: white; font-weight: normal; }
.dest-count { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 3px; }
.dest-hero-card {
  border-radius: 16px; overflow: hidden; position: relative;
  height: 460px; grid-column: 1; grid-row: 1 / 3;
}
.dest-total {
  background: var(--gradient); border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: white; height: 220px;
}
.dest-total strong { font-family: 'DM Serif Display', serif; font-size: 60px; line-height: 1; }
.dest-total span { font-size: 14px; opacity: 0.8; margin-top: 8px; }

/* FAMILY PORTALS */
.family-section { background: var(--cloud); padding: 80px 80px; }
.family-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.family-content h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px,3.5vw,46px); color: var(--deep); margin-bottom: 18px; line-height: 1.15; }
.family-content p { font-size: 16px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }
.family-features { display: flex; flex-direction: column; gap: 14px; }
.ff { display: flex; gap: 12px; align-items: flex-start; }
.ff-dot { flex-shrink:0; width:8px; height:8px; border-radius:50%; background:var(--sky); margin-top:8px; }
.ff p { font-size: 14.5px; color: var(--text-body); line-height: 1.55; letter-spacing: -0.1px; text-wrap: pretty; }
.family-visual {
  background: var(--gradient); border-radius: 20px; padding: 32px;
  box-shadow: 0 20px 60px rgba(8,39,112,0.2);
}
.portal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.portal-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.portal-header .dot.red { background: #ff5f56; }
.portal-header .dot.yellow { background: #ffbd2e; }
.portal-header .dot.green { background: #27c93f; }
.portal-header p { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
.portal-friends { display: flex; flex-direction: column; gap: 10px; }
.pf-row {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.pf-name { font-size: 14px; font-weight: 600; color: white; display: flex; align-items: center; gap: 10px; }
.pf-name svg { width: 18px; height: 18px; stroke: #ffffff; stroke-width: 1.8; fill: none; flex-shrink: 0; }
.pf-status { font-size: 11px; color: rgba(255,255,255,0.55); }
.pf-add {
  background: rgba(255,255,255,0.08); border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 10px; padding: 12px 16px;
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.45);
}
.portal-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }

/* PRICING */
.pricing-section { background: white; padding: 80px 80px; }
.pricing-inner { max-width: 820px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card {
  border-radius: 18px; padding: 40px 32px; border: 1.5px solid rgba(8,39,112,0.1);
  background: var(--cloud); text-align: center; transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.price-card.popular { border-color: var(--tropical); background: white; box-shadow: 0 8px 40px rgba(8,39,112,0.12); }
.price-card.popular::before { content: 'BEST VALUE — SAVE 41%'; position: absolute; top:0; left:50%; transform:translateX(-50%); background: var(--gradient); color: white; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; padding: 5px 18px; border-radius: 0 0 8px 8px; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(8,39,112,0.12); }
.price-period { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); font-weight: 600; margin-top: 14px; margin-bottom: 10px; }
.price-amount { font-family: 'DM Serif Display', serif; font-size: 64px; color: var(--deep); line-height: 1; }
.price-amount sup { font-size: 24px; font-family: 'DM Sans', sans-serif; font-weight: 300; vertical-align: super; top: -0.5em; margin-right: 2px; }
.price-amount .cents { font-size: 28px; font-family: 'DM Sans', sans-serif; font-weight: 400; vertical-align: super; top: -1.4em; margin-left: 2px; }
.price-cycle { font-size: 13px; color: var(--text-mid); margin-top: 6px; margin-bottom: 10px; }
.price-save { font-size: 12px; color: var(--gold); font-weight: 700; height: 18px; margin-bottom: 22px; display: block; letter-spacing: 0.04em; }
.price-trial { font-size: 12px; color: var(--sky); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; display: block; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li { font-size: 13.5px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid rgba(8,39,112,0.06); display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.price-features li strong { font-weight: 700; color: var(--deep); }
.price-features li::before { content: '✓'; color: var(--sky); font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.price-btn {
  display: block; width: 100%; padding: 14px; border-radius: 8px; text-align: center;
  font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.3s; cursor: pointer;
}
.price-btn.primary { background: var(--gradient); color: white; box-shadow: 0 4px 14px rgba(32,94,182,0.35); }
.price-btn.primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(32,94,182,0.45); }
.price-btn.ghost { border: 1.5px solid rgba(8,39,112,0.15); color: var(--tropical); }
.price-btn.ghost:hover { background: rgba(8,39,112,0.05); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* TOTAL MEMBER SAVINGS BAND */
.savings-band {
  position: relative; overflow: hidden; padding: 72px 48px; text-align: center;
  background: linear-gradient(135deg, #082770 0%, #0d3488 50%, #205EB6 100%);
}
.savings-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 50%, rgba(90,157,221,0.25), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(201,168,76,0.12), transparent 50%);
}
.savings-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.savings-divider {
  width: 60px; height: 2px; background: var(--gold); margin: 0 auto 24px;
  border-radius: 2px;
}
.savings-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.savings-amount {
  font-family: 'DM Serif Display', serif; font-size: clamp(40px, 7vw, 88px);
  color: white; line-height: 1.05; margin-bottom: 18px; letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.savings-amount sup {
  font-size: 0.42em; font-family: 'DM Sans', sans-serif; font-weight: 300;
  vertical-align: super; top: -0.1em; margin-right: 4px; opacity: 0.85;
}
.savings-amount em {
  font-style: normal; background: linear-gradient(120deg, #C9A84C 0%, #f0d589 50%, #C9A84C 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.savings-currency {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 0.42em; color: rgba(255,255,255,0.7);
  margin-left: 8px; letter-spacing: 0.05em;
}
.savings-sub {
  color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7;
  max-width: 560px; margin: 0 auto; font-weight: 300;
}

/* CTA BAND */
.cta-band {
  position: relative; overflow: hidden; padding: 96px 48px; text-align: center;
  background: url('https://images.unsplash.com/photo-1578922746465-3a80a228f223?w=1600&q=85') center/cover no-repeat;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,39,112,0.85) 0%, rgba(32,94,182,0.78) 100%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px,4vw,52px); color: white; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 44px; line-height: 1.65; font-weight: 300; }

/* ALSO SECTION */
.also-section { background: var(--cloud); padding: 72px 80px; }
.also-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.also-card {
  background: white; border-radius: 18px; padding: 36px;
  border: 1px solid rgba(8,39,112,0.08);
  box-shadow: 0 4px 24px rgba(8,39,112,0.07);
}
.also-card h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--deep); margin-bottom: 10px; }
.also-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.also-link { color: var(--tropical); font-size: 14px; font-weight: 700; text-decoration: none; }
.also-link:hover { text-decoration: underline; }

/* FOOTER */
footer { background: #05123a; color: rgba(255,255,255,0.55); padding: 60px 80px 32px; }
.footer-top { display: flex; gap: 60px; justify-content: space-between; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo-img { width: 150px; height: auto; display: block; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; }
.footer-col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  nav { padding: 9px 20px; } .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat-card { width: 100%; min-width: 0; }
  .clarity-section, .benefits-section, .dest-section, .family-section, .pricing-section, .also-section, footer { padding-left: 24px; padding-right: 24px; }
  .clarity-inner, .family-inner, .also-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-hero-card { grid-column: 1; grid-row: auto; height: 220px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .savings-band { padding: 56px 24px; }
  .login-menu { right: 0; min-width: 240px; }
}