/* ═══════════════════════════════════════════════════════════════
   MY FLIGHT FRIEND — LANDING PAGE
   Primary: black. Accent: green. Feel: premium, alive, worth $1M.
═══════════════════════════════════════════════════════════════ */

:root {
  --ln-black:   #050505;
  --ln-dark:    #0e0e0e;
  --ln-mid:     #161616;
  --ln-card:    #1a1a1a;
  --ln-border:  rgba(255,255,255,0.08);
  --ln-white:   #ffffff;
  --ln-gray:    rgba(255,255,255,0.55);
  --ln-green:   #22c55e;
  --ln-green-d: #16a34a;
}

.landing-page {
  background: var(--ln-black);
  color: var(--ln-white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.ln-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ln-border);
}
.ln-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ln-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ln-logo { width: 30px; height: 30px; }
.ln-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ln-nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s;
}
.ln-nav-links a:hover { color: var(--ln-white); }
.ln-btn-cta {
  background: var(--ln-white) !important;
  color: var(--ln-black) !important;
  font-weight: 600 !important;
  border-radius: 8px;
  padding: 8px 18px !important;
  font-size: 14px !important;
  transition: opacity 0.15s !important;
}
.ln-btn-cta:hover { opacity: 0.88; }

/* ── HERO ────────────────────────────────────────────────────── */
.ln-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #0f1a2e 0%, var(--ln-black) 70%);
  padding-top: 80px;
}

/* Subtle star field */
.ln-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 85%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
}

/* ── CLOUDS ──────────────────────────────────────────────────── */
.clouds-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cloud {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  filter: blur(20px);
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

/* Individual clouds */
.cloud-1 { width:300px;height:80px;top:18%;left:-10%;animation:driftR 40s linear infinite; }
.cloud-1::before { width:180px;height:100px;top:-40px;left:40px; }
.cloud-1::after  { width:120px;height:80px;top:-30px;right:40px; }

.cloud-2 { width:200px;height:55px;top:35%;left:110%;animation:driftL 55s linear infinite 8s; }
.cloud-2::before { width:130px;height:80px;top:-35px;left:30px; }

.cloud-3 { width:250px;height:70px;top:60%;left:-5%;animation:driftR 48s linear infinite 15s;opacity:0.6; }
.cloud-3::before { width:160px;height:90px;top:-40px;left:50px; }
.cloud-3::after  { width:100px;height:65px;top:-25px;right:30px; }

.cloud-4 { width:180px;height:50px;top:12%;left:110%;animation:driftL 38s linear infinite 5s;opacity:0.5; }
.cloud-4::before { width:110px;height:70px;top:-30px;left:25px; }

.cloud-5 { width:220px;height:60px;top:75%;left:-8%;animation:driftR 52s linear infinite 22s;opacity:0.4; }
.cloud-5::before { width:140px;height:80px;top:-35px;left:40px; }

/* Bottom clouds for CTA section */
.clouds-bottom .cloud-b1 { width:350px;height:90px;bottom:5%;left:-5%;animation:driftR 45s linear infinite; }
.clouds-bottom .cloud-b1::before { width:200px;height:110px;top:-45px;left:50px; }
.clouds-bottom .cloud-b2 { width:250px;height:70px;bottom:15%;right:-5%;animation:driftL 38s linear infinite 10s; }
.clouds-bottom .cloud-b2::before { width:150px;height:90px;top:-40px;left:40px; }
.clouds-bottom .cloud-b3 { width:180px;height:50px;bottom:30%;left:40%;animation:driftR 50s linear infinite 5s;opacity:0.5; }

@keyframes driftR { from{transform:translateX(0)} to{transform:translateX(120vw)} }
@keyframes driftL { from{transform:translateX(0)} to{transform:translateX(-120vw)} }

/* ── AIRPLANE ────────────────────────────────────────────────── */
.plane-wrap {
  position: absolute;
  top: 22%;
  left: -200px;
  animation: flyAcross 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.plane-svg {
  width: 160px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}

@keyframes flyAcross {
  0%   { transform: translateX(0) translateY(0) rotate(-3deg); opacity: 0; }
  5%   { opacity: 1; }
  50%  { transform: translateX(55vw) translateY(-30px) rotate(-1deg); }
  90%  { opacity: 1; }
  100% { transform: translateX(115vw) translateY(10px) rotate(2deg); opacity: 0; }
}

/* ── HERO INNER ──────────────────────────────────────────────── */
.ln-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  text-align: center;
  padding: 60px 24px 120px;
}
.ln-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.ln-h1 {
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 22px;
}
.ln-h1-accent {
  background: linear-gradient(135deg, #22c55e 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ln-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 36px;
}
.ln-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.ln-btn-primary {
  background: var(--ln-white);
  color: var(--ln-black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
  letter-spacing: -0.01em;
}
.ln-btn-primary:hover { transform: translateY(-1px); opacity: 0.92; }
.ln-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s;
}
.ln-btn-ghost:hover { background: rgba(255,255,255,0.1); }
.ln-btn-xl { font-size: 17px; padding: 16px 34px; }

/* ── HERO CARD ───────────────────────────────────────────────── */
.ln-hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  backdrop-filter: blur(8px);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.ln-hero-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ef4444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ln-hero-card-route {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.ln-hero-card-route span { color: rgba(255,255,255,0.4); margin: 0 4px; }
.ln-hero-card-details { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.ln-hero-card-prices {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.ln-price-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.ln-price-was { font-size: 20px; font-weight: 700; text-decoration: line-through; opacity: 0.5; }
.ln-price-arrow { color: rgba(255,255,255,0.3); font-size: 18px; }
.ln-price-now { font-size: 20px; font-weight: 700; color: var(--ln-green); }
.ln-price-saved { margin-left: auto; text-align: right; }
.ln-price-drop {
  font-size: 18px;
  font-weight: 800;
  color: var(--ln-green);
  background: rgba(34,197,94,0.12);
  padding: 4px 10px;
  border-radius: 6px;
}
.ln-hero-card-action {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  cursor: default;
}

/* ── PROOF BAR ───────────────────────────────────────────────── */
.ln-proof-bar {
  background: var(--ln-dark);
  border-top: 1px solid var(--ln-border);
  border-bottom: 1px solid var(--ln-border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 40px;
}
.ln-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.ln-proof-num { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; color: var(--ln-white); }
.ln-proof-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; text-align: center; }
.ln-proof-divider { width: 1px; height: 40px; background: var(--ln-border); }

/* ── SECTIONS ────────────────────────────────────────────────── */
.ln-section { padding: 100px 24px; }
.ln-section-dark  { background: var(--ln-dark); }
.ln-section-black { background: var(--ln-black); }
.ln-section-inner { max-width: 1040px; margin: 0 auto; }
.ln-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ln-green);
  margin-bottom: 12px;
}
.ln-section-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ln-section-sub { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.65; margin-bottom: 56px; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.ln-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
}
.ln-step {
  flex: 1;
  padding: 32px;
  background: var(--ln-card);
  border-radius: 16px;
  border: 1px solid var(--ln-border);
}
.ln-step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--ln-border), var(--ln-green), var(--ln-border));
  align-self: center;
  flex-shrink: 0;
}
.ln-step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.ln-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.ln-step p  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.ln-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ln-testimonial {
  background: var(--ln-card);
  border: 1px solid var(--ln-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.ln-testimonial:hover { border-color: rgba(34,197,94,0.3); transform: translateY(-3px); }

.ln-testimonial-savings {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ln-green);
}
.ln-testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  flex: 1;
  font-style: italic;
}
.ln-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ln-testimonial-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.ln-testimonial-name { font-size: 14px; font-weight: 700; }
.ln-testimonial-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* ── TESTIMONIAL MINI CARD ───────────────────────────────────── */
.ln-t-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}
.ln-t-card-route { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.ln-t-arrow { color: rgba(255,255,255,0.35); margin: 0 4px; }
.ln-t-card-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 3px 0; }
.ln-t-label { color: rgba(255,255,255,0.35); }
.ln-t-was { color: rgba(255,255,255,0.4); text-decoration: line-through; }
.ln-t-drop { color: var(--ln-green); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.ln-t-badge { background: rgba(34,197,94,0.15); color: var(--ln-green); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }

/* ── DROPS GRID ──────────────────────────────────────────────── */
.ln-drops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ln-drop-card {
  background: var(--ln-card);
  border: 1px solid var(--ln-border);
  border-radius: 14px;
  padding: 24px 26px;
  transition: border-color 0.2s;
}
.ln-drop-card:hover { border-color: rgba(34,197,94,0.25); }
.ln-drop-route { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.ln-drop-flag { font-size: 20px; }
.ln-drop-sub { font-size: 12px; color: rgba(255,255,255,0.35); margin: 4px 0 16px; }
.ln-drop-prices { display: flex; align-items: center; gap: 20px; margin-bottom: 14px; }
.ln-drop-label { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.ln-drop-paid { font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.ln-drop-vs { font-size: 16px; color: rgba(255,255,255,0.2); }
.ln-drop-new { font-size: 22px; font-weight: 700; color: var(--ln-white); }
.ln-drop-badge {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: var(--ln-green);
  font-size: 14px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: -0.01em;
}

/* ── PRICING ─────────────────────────────────────────────────── */
.ln-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.ln-plan {
  background: var(--ln-card);
  border: 1px solid var(--ln-border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: border-color 0.2s;
}
.ln-plan:hover { border-color: rgba(255,255,255,0.15); }
.ln-plan-featured {
  background: var(--ln-white);
  color: var(--ln-black);
  border-color: var(--ln-white);
  transform: scale(1.03);
}
.ln-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--ln-green);
  color: var(--ln-black);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.ln-plan-name {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 8px;
}
.ln-plan-featured .ln-plan-name { color: var(--ln-black); opacity: 0.45; }
.ln-plan-price { font-size: 44px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; }
.ln-plan-price span { font-size: 16px; font-weight: 400; opacity: 0.5; }
.ln-plan-desc { font-size: 13px; opacity: 0.45; margin-bottom: 24px; }
.ln-plan-features { list-style: none; margin-bottom: 28px; }
.ln-plan-features li { font-size: 13px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ln-plan-featured .ln-plan-features li { border-bottom-color: rgba(0,0,0,0.06); }
.ln-plan-features li.off { opacity: 0.3; }
.ln-plan-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.ln-plan-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.ln-plan-btn-white { background: var(--ln-black); color: var(--ln-white); }
.ln-plan-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--ln-white);
  border: 1px solid rgba(255,255,255,0.1);
}
.ln-pricing-fine { text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.ln-final-cta {
  position: relative;
  background: var(--ln-dark);
  border-top: 1px solid var(--ln-border);
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
}
.ln-final-inner {
  position: relative;
  z-index: 2;
}
.ln-final-cta h2 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.ln-final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.ln-footer {
  background: var(--ln-black);
  border-top: 1px solid var(--ln-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.ln-footer-links {
  display: flex;
  gap: 20px;
}
.ln-footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.ln-footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ln-testimonials { grid-template-columns: 1fr; }
  .ln-drops-grid { grid-template-columns: 1fr; }
  .ln-pricing-grid { grid-template-columns: 1fr; }
  .ln-plan-featured { transform: none; }
  .ln-steps { flex-direction: column; }
  .ln-step-connector { width: 2px; height: 30px; background: linear-gradient(180deg, var(--ln-border), var(--ln-green), var(--ln-border)); align-self: center; }
}

@media (max-width: 640px) {
  .ln-nav { padding: 14px 20px; }
  .ln-nav-links a:not(.ln-btn-cta) { display: none; }
  .ln-h1 { font-size: 40px; }
  .ln-hero-sub { font-size: 16px; }
  .ln-hero-inner { padding: 40px 20px 80px; }
  .ln-proof-bar { gap: 20px; padding: 20px; }
  .ln-proof-item { padding: 0 16px; }
  .ln-proof-divider { display: none; }
  .ln-section { padding: 64px 20px; }
  .ln-section-title { font-size: 30px; }
  .ln-final-cta h2 { font-size: 30px; }
  .ln-footer { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
}
