:root {
      --navy: #0a0820;
      --indigo: #1a1040;
      --blue: #2B5AFB;
      --purple: #9317FA;
      --coral: #F97416;
      --amber: #FAB321;
      --cream: #FAF8F5;
      --text: #1D1340;
      --muted: #7060A0;
      --card: #fff;
      --soft: #F3F0FF;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--navy); color: #fff; overflow-x: hidden; }

    /* ── NAV ── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 5%;
      transition: all 0.3s;
    }
    #nav.scrolled {
      background: rgba(10,8,32,0.92);
      backdrop-filter: blur(20px);
      padding: 14px 5%;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-logo {
      font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
      color: #fff; text-decoration: none; letter-spacing: -0.5px;
    }
    .nav-logo span { color: var(--amber); }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }
    .nav-cta {
      background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
      color: #fff !important; padding: 9px 20px; border-radius: 12px;
      font-weight: 700 !important; font-size: 13px !important;
    }
    @media(max-width:600px) { .nav-links { gap: 16px; } .nav-links a:not(.nav-cta) { display: none; } }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      text-align: left; padding: 120px 5% 80px; overflow: hidden;
      background: #08011a;
    }

    /* Photo collage — more visible */
    .hero-collage {
      position: absolute; inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 3px;
      opacity: 0.55;
      filter: saturate(1.3) brightness(0.9);
    }
    .hero-collage-img { width: 100%; height: 100%; object-fit: cover; }
    .hero-collage-tall { grid-row: 1 / 3; }

    /* Lighter overlay so photos show through on right side */
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(8,1,26,0.92) 0%,
        rgba(8,1,26,0.75) 40%,
        rgba(8,1,26,0.30) 100%
      );
    }
    .hero-bottom-fade {
      position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
      background: linear-gradient(to bottom, transparent, #0a0820);
      pointer-events: none; z-index: 1;
    }

    /* Floating cards — right side only */
    .hero-float { position: absolute; z-index: 3; }
    .hero-float-1 { top: 20%; right: 5%; animation: floatA 6s ease-in-out infinite; }
    .hero-float-2 { top: 48%; right: 3%; animation: floatB 7s ease-in-out infinite; }
    .hero-float-3 { bottom: 16%; right: 6%; animation: floatA 8s ease-in-out infinite 1s; }

    .float-card {
      background: rgba(12,8,32,0.72);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 11px 14px;
      display: flex; align-items: center; gap: 11px;
      min-width: 190px; max-width: 220px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .float-card-ai {
      background: rgba(12,8,32,0.72);
      display: block; min-width: 0; max-width: 190px;
    }
    .float-thumb { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
    .float-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800; color: #fff; }
    .float-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
    .float-tag { font-size: 10px; font-weight: 700; margin-top: 4px; }
    .float-tag-amber { color: #FAB321; }
    .float-tag-teal { color: #1ABCB0; }
    .float-ai-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 5px; letter-spacing: 0.5px; text-transform: uppercase; }
    .float-ai-text { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.5; }

    @keyframes floatA {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes floatB {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    /* Hero stats left-aligned */
    .hero-stats {
      position: relative; z-index: 2;
      display: flex; gap: 32px; flex-wrap: wrap;
      justify-content: flex-start;
    }

    /* Hero actions left-aligned */
    .hero-actions { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 48px; }

    /* Sub left-aligned */
    .hero-sub {
      font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.7);
      line-height: 1.6; max-width: 480px; margin: 0 0 36px; font-weight: 400;
    }

    @media(max-width: 900px) {
      .hero-float { display: none; }
      .hero-collage { opacity: 0.35; }
      .hero { text-align: center; align-items: center; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-sub { margin: 0 auto 36px; }
    }

    .hero-content { position: relative; z-index: 2; max-width: 520px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px); border-radius: 20px;
      padding: 7px 16px; font-size: 12px; font-weight: 700;
      color: rgba(255,255,255,0.85); margin-bottom: 24px; letter-spacing: 0.4px;
    }
    .hero-badge::before { content: '✦'; color: var(--amber); }
    .hero-title {
      font-family: 'Syne', sans-serif; font-size: clamp(42px, 7vw, 80px);
      font-weight: 800; line-height: 1.05; margin-bottom: 20px; letter-spacing: -1.5px;
    }
    .grad {
      background: linear-gradient(135deg, var(--amber), var(--coral), #F25E80);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    /* hero-sub defined in hero block above */
    /* hero-actions defined in hero block above */
    .btn-primary {
      background: linear-gradient(135deg, var(--coral), #F25E80);
      color: #fff; padding: 15px 32px; border-radius: 16px;
      font-weight: 800; font-size: 15px; text-decoration: none;
      box-shadow: 0 8px 32px rgba(249,116,22,0.4); transition: all 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(249,116,22,0.5); }
    .btn-secondary {
      background: rgba(255,255,255,0.1); color: #fff;
      border: 1px solid rgba(255,255,255,0.25); padding: 15px 28px;
      border-radius: 16px; font-weight: 700; font-size: 15px;
      text-decoration: none; backdrop-filter: blur(8px); transition: all 0.2s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.18); }

    /* hero-stats defined in hero block above */
    .stat { text-align: center; }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
    .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 2px; }

    /* ── TRUST ── */
    .trust {
      background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 20px 5%; display: flex; align-items: center; gap: 24px;
      overflow: hidden; flex-wrap: wrap; justify-content: center;
    }
    .trust-label { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
    .trust-logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
    .trust-logo {
      font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4);
      padding: 5px 14px; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; white-space: nowrap;
    }

    /* ── SECTIONS ── */
    section { padding: 80px 5%; }
    .section-label { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
    .section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
    .section-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 560px; }

    /* ── FEATURES ── */
    .features { background: rgba(255,255,255,0.02); }
    .features-inner { max-width: 1100px; margin: 0 auto; }
    .features-header { text-align: center; margin-bottom: 56px; max-width: 100%; }
    .features-header .section-title { text-align: center; }
    .features-header .section-sub { margin: 0 auto; text-align: center; max-width: 560px; }
    .features-header .section-label { text-align: center; display: block; }
    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
    }
    .feature-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px; padding: 28px; transition: all 0.3s;
    }
    .feature-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); border-color: rgba(255,255,255,0.15); }
    .feature-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(43,90,251,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .feature-icon img { width: 28px; height: 28px; object-fit: contain; }
    .feature-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 8px; }
    .feature-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* ── HOW IT WORKS ── */
    .how-inner { max-width: 860px; margin: 0 auto; }
    .how-header { text-align: center; margin-bottom: 56px; }
    .how-header .section-sub { margin: 0 auto; }
    .steps { display: flex; flex-direction: column; gap: 0; position: relative; }
    .steps::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent); }
    .step { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .step:last-child { border-bottom: none; }
    .step-num {
      font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800;
      width: 56px; height: 56px; border-radius: 16px; flexShrink: 0;
      background: linear-gradient(135deg, rgba(43,90,251,0.2), rgba(147,23,250,0.2));
      border: 1px solid rgba(43,90,251,0.3);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      color: var(--blue);
    }
    .step-body { padding-top: 8px; }
    .step-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
    .step-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* ── DESTINATIONS ── */
    .destinations { background: rgba(255,255,255,0.02); }
    .dest-inner { max-width: 1100px; margin: 0 auto; }
    .dest-header { text-align: center; margin-bottom: 40px; }
    .dest-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px; height: 520px;
    }
    .dest-card { position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; }
    .dest-card:first-child { grid-row: 1 / 3; }
    .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .dest-card:hover img { transform: scale(1.04); }
    .dest-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
      display: flex; align-items: flex-end; padding: 18px;
    }
    .dest-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: #fff; }
    .dest-sub { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 2px; font-weight: 500; }
    @media(max-width:700px) { .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; height: auto; } .dest-card:first-child { grid-row: auto; } .dest-card { height: 180px; } }

    /* ── PRICING ── */
    #pricing { background: rgba(255,255,255,0.02); }
    .pricing-inner { max-width: 760px; margin: 0 auto; }
    .pricing-header { text-align: center; margin-bottom: 36px; }
    .pricing-header .section-sub { margin: 0 auto; }

    .billing-toggle {
      display: flex; background: rgba(255,255,255,0.07);
      border-radius: 14px; padding: 4px; margin-bottom: 32px;
      max-width: 380px; margin-left: auto; margin-right: auto;
    }
    .billing-btn {
      flex: 1; border: none; border-radius: 10px; padding: 10px 8px;
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
      cursor: pointer; transition: all 0.18s;
      background: transparent; color: rgba(255,255,255,0.45);
    }
    .billing-btn.active { background: var(--blue); color: #fff; }
    .save-badge { background: rgba(250,179,33,0.2); color: var(--amber); padding: 2px 8px; border-radius: 10px; font-size: 11px; margin-left: 6px; }

    .pricing-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 16px; }
    @media(max-width:580px) { .pricing-grid { grid-template-columns: 1fr; } }

    .price-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px; padding: 28px; position: relative;
    }
    .price-card.featured {
      background: linear-gradient(135deg, rgba(43,90,251,0.15), rgba(147,23,250,0.1));
      border-color: rgba(43,90,251,0.4);
      box-shadow: 0 0 40px rgba(43,90,251,0.15);
    }
    .price-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--amber), var(--coral));
      color: #fff; font-size: 11px; font-weight: 800;
      padding: 4px 16px; border-radius: 20px; white-space: nowrap;
    }
    .price-tier { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
    .price-amount { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
    .price-amount span { font-size: 22px; vertical-align: top; margin-top: 6px; display: inline-block; }
    .price-cadence { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
    .price-trial { font-size: 12px; font-weight: 700; color: var(--amber); margin-bottom: 20px; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
    .price-features li { font-size: 13px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 9px; }
    .price-features li::before { content: '✓'; color: var(--blue); font-weight: 900; font-size: 11px; flex-shrink: 0; }
    .price-features li.dim { color: rgba(255,255,255,0.3); }
    .price-features li.dim::before { content: '✕'; color: rgba(255,255,255,0.2); }
    .price-btn {
      display: block; width: 100%; padding: 13px;
      border-radius: 14px; font-weight: 800; font-size: 14px;
      text-align: center; text-decoration: none; transition: all 0.2s;
    }
    .price-btn-outline {
      border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
      background: transparent;
    }
    .price-btn-outline:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
    .price-btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--purple));
      color: #fff; box-shadow: 0 8px 24px rgba(43,90,251,0.35);
    }
    .price-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(43,90,251,0.45); }
    .pricing-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 20px; }

    /* ── EMAIL CAPTURE ── */
    .capture { text-align: center; }
    .capture-inner { max-width: 560px; margin: 0 auto; }
    .capture-inner .section-sub { margin: 0 auto 32px; }
    .email-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto 12px; }
    .email-input {
      flex: 1; padding: 13px 16px; border-radius: 14px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      color: #fff; font-size: 14px; font-family: 'DM Sans', sans-serif;
      outline: none; transition: border-color 0.2s;
    }
    .email-input:focus { border-color: var(--blue); }
    .email-input::placeholder { color: rgba(255,255,255,0.3); }
    .email-submit {
      padding: 13px 22px; border-radius: 14px; border: none;
      background: linear-gradient(135deg, var(--coral), #F25E80);
      color: #fff; font-weight: 800; font-size: 14px; cursor: pointer;
      font-family: 'DM Sans', sans-serif; white-space: nowrap;
      transition: all 0.2s;
    }
    .email-submit:hover { transform: translateY(-1px); }
    .email-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 32px; }
    .badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .badge {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px; padding: 10px 18px; text-decoration: none;
      color: #fff; transition: all 0.2s;
    }
    .badge:hover { background: rgba(255,255,255,0.12); }
    .badge-icon { font-size: 22px; }
    .badge-text small { display: block; font-size: 10px; color: rgba(255,255,255,0.5); }
    .badge-text strong { font-size: 14px; font-weight: 700; }

    /* ── FOOTER ── */
    footer { padding: 60px 5% 32px; border-top: 1px solid rgba(255,255,255,0.07); }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-top { display: flex; gap: 60px; margin-bottom: 48px; flex-wrap: wrap; }
    .footer-brand { flex: 1; min-width: 200px; }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 12px; max-width: 280px; }
    .footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
    .footer-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
    .footer-col a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
    .footer-legal a:hover { color: rgba(255,255,255,0.5); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media(max-width:480px) { .email-form { flex-direction: column; } section { padding: 60px 5%; } }
