/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; font-family: 'Inter', sans-serif; background: #000; }
body {
  color: #a1a1aa;
  background-color: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  line-height: 1.6;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
}

/* Ambient Subtle Glow instead of huge colored blobs */
body::before {
  content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.05), transparent 60%);
  z-index: -1; pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, .nav-brand {
  font-family: 'Outfit', sans-serif;
  color: #fafafa;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; font-weight: 500; line-height: 1.3; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
p { font-size: 1.05rem; color: #a1a1aa; }

.gradient-text {
  background: linear-gradient(135deg, #e4e4e7 0%, #71717a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: #38bdf8; }

/* ── Layout ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 840px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 500;
  border-radius: 8px;
  background: #fafafa;
  color: #000;
  border: 1px solid #fafafa; cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: #d4d4d8; border-color: #d4d4d8; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,0.15); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fafafa;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; border-radius: 6px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.3s ease;
}
.nav-scrolled {
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.nav-logo { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: #a1a1aa; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; z-index: 101; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: #e2e8f0; border-radius: 2px; position: absolute; left: 0; transition: 0.3s; }
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 11px; transform: rotate(45deg); background: #fff; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); background: #fff; }

.nav-mobile {
  position: fixed; inset: 0; background: rgba(0,0,0, 0.98); backdrop-filter: blur(24px); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 500; color: #fff; transform: translateY(20px); opacity: 0; transition: 0.4s ease; }
.nav-mobile.open a { transform: translateY(0); opacity: 1; }
@media (max-width: 840px) {
  .nav-links, .nav-inner .btn { display: none; }
  .nav-toggle { display: block; }
}

/* ── Hero ── */
.hero { padding: 180px 0 80px; text-align: center; position: relative; }
.hero-content { display: flex; flex-direction: column; align-items: center; max-width: 900px; margin: 0 auto; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; font-family: 'Outfit', sans-serif; font-size: 0.85rem; color: #d4d4d8; }
.badge-pulse { width: 6px; height: 6px; border-radius: 50%; background: #38bdf8; box-shadow: 0 0 8px #38bdf8; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); } 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); } }
.hero h1 { margin: 24px 0; }
.hero p.lead { font-size: 1.25rem; color: #a1a1aa; max-width: 680px; line-height: 1.6; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; padding: 32px 64px;
  background: rgba(20, 20, 20, 0.4); border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px); border-radius: 16px; box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat strong { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat span { font-size: 0.85rem; color: #71717a; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Trust Marquee ── */
.trust { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.5); }
.trust-inner { display: flex; align-items: center; gap: 40px; overflow: hidden; white-space: nowrap; }
.trust-label { font-size: 0.8rem; color: #52525b; text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; }
.trust-marquee { display: flex; gap: 64px; animation: marquee 30s linear infinite; }
.trust-item { font-family: 'Outfit', sans-serif; font-size: 1rem; color: #52525b; letter-spacing: -0.01em; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Sections ── */
.section { padding: 140px 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500; color: #38bdf8; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.section-header p { font-size: 1.15rem; max-width: 600px; margin: 16px auto 0; color: #a1a1aa; }

/* ── Glass Cards & Spotlight ── */
.glass-card {
  position: relative;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  /* Allow overflow so popular-badge isn't cut off */
  overflow: visible;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0; transition: opacity 0.3s;
  border-radius: inherit;
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }

/* Ensure internal clipping for background blurs if needed */
.glass-card-inner {
  position: absolute; inset: 0; z-index: -2; border-radius: inherit; overflow: hidden;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 40px 32px; }
.feature-icon-wrapper { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; margin-bottom: 24px; }
.feature-card h4 { font-size: 1.25rem; font-family: 'Outfit'; font-weight: 500; color: #fff; margin-bottom: 12px; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.feature-pills span { padding: 4px 12px; font-size: 0.8rem; color: #a1a1aa; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; }

.feature-large { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px; background: linear-gradient(135deg, rgba(20,20,20,0.8), rgba(0,0,0,0.4)); }
.feature-large .feature-icon-wrapper { width: 64px; height: 64px; }
.feature-large h3 { font-size: 2.2rem; letter-spacing: -0.02em; }
.feature-large p { font-size: 1.1rem; line-height: 1.7; }

/* ── Privacy ── */
.privacy-banner { background: rgba(10, 10, 10, 0.6); border: 1px solid rgba(255,255,255,0.05); padding: 64px 48px; border-radius: 24px; text-align: left; }
.privacy-inner { display: flex; align-items: flex-start; gap: 32px; max-width: 900px; margin: 0 auto; }
.privacy-icon { width: 64px; height: 64px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; }
.privacy-content h2 { margin-bottom: 12px; font-size: 1.8rem; color: #fff; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-bottom: 48px; }
.price-card { padding: 48px 32px; display: flex; flex-direction: column; }
.price-card.popular {
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 64px rgba(56, 189, 248, 0.1);
  transform: scale(1.02); z-index: 10;
}
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: #38bdf8; color: #000; padding: 6px 16px; font-family: 'Outfit'; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 100px;
}
.price-tier { font-family: 'Outfit'; font-size: 1.25rem; font-weight: 500; color: #e4e4e7; margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.price-amount span.currency { font-size: 1.5rem; font-weight: 500; color: #a1a1aa; }
.price-amount span.value { font-family: 'Outfit'; font-size: 3.5rem; font-weight: 700; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.price-amount span.period { font-size: 1rem; color: #71717a; }
.price-desc { font-size: 1rem; margin-bottom: 32px; color: #a1a1aa; line-height: 1.6; }
.price-features { margin-bottom: 40px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; color: #d4d4d8; }
.price-features li svg { color: #38bdf8; width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.price-card .btn, .price-card .btn-outline { width: 100%; justify-content: center; }
.savings-text { text-align: center; margin-top: 16px; font-size: 0.85rem; color: #71717a; display: flex; align-items: center; justify-content: center; gap: 8px; }
.savings-pill { background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2); padding: 2px 8px; border-radius: 100px; font-size: 0.75rem; color: #38bdf8; }

.daypass-banner { background: rgba(20,20,20, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.daypass-text h4 { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }

/* ── Compare ── */
.compare-table-wrapper { overflow-x: auto; background: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; margin-bottom: 64px; }
.compare-table { width: 100%; min-width: 800px; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; position: sticky; left: 0; background: #0a0a0a; z-index: 10; }
.compare-table th { font-family: 'Outfit'; font-size: 1.05rem; font-weight: 500; color: #fafafa; }
.compare-table th.our-app { color: #38bdf8; background: rgba(56, 189, 248, 0.05); border-radius: 12px 12px 0 0; }
.compare-table td.our-app { background: rgba(56, 189, 248, 0.05); color: #fff; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:last-child td.our-app { border-radius: 0 0 12px 12px; }
.compare-check { color: #fafafa; display: inline-flex; }
.compare-cross { color: #52525b; display: inline-flex; }

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 16px; max-width: 840px; margin: 0 auto; }
.faq-item { background: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-item[open] { border-color: rgba(255,255,255,0.2); background: rgba(30, 30, 30, 0.6); }
.faq-item summary { padding: 24px 32px; font-family: 'Outfit'; font-size: 1.1rem; font-weight: 500; color: #fafafa; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: #a1a1aa; transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-item p { padding: 0 32px 32px; font-size: 1rem; color: #a1a1aa; }

/* ── CTA Bottom ── */
.cta { padding: 120px 0; }
.cta-box { border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 80px 48px; text-align: center; background: rgba(20,20,20,0.8); backdrop-filter: blur(20px); }
.cta-box h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; color: #fff; }
.cta-box p { font-size: 1.15rem; margin-bottom: 48px; color: #a1a1aa; }

/* ── Footer ── */
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 40px; background: #000; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; color: #71717a; }
.footer-col h4 { color: #e4e4e7; margin-bottom: 24px; font-size: 0.95rem; font-weight: 500; }
.footer-col a { display: block; margin-bottom: 12px; color: #71717a; transition: color 0.2s; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 80px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: #52525b; font-size: 0.85rem; }

/* ── Animations (JS triggered) ── */
.animate { opacity: 0; transition: all 0.8s ease; will-change: opacity, transform; }
.animate.visible { opacity: 1; transform: translate(0, 0) scale(1); }
.fade-up { transform: translateY(30px); }
.fade-in { transform: scale(0.98); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .popular-badge { top: -14px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .feature-large { grid-template-columns: 1fr; padding: 32px; }
  .hero-stats { padding: 24px; flex-direction: column; text-align: center; }
  .daypass-banner { flex-direction: column; text-align: center; }
}

/* ── Legal Pages ── */
.legal-page { padding: 180px 0 120px; }
.legal-page h1 { font-family: 'Outfit'; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 8px; color: #fff; line-height: 1.1; letter-spacing: -0.02em; }
.legal-page .legal-date { font-family: 'Outfit'; color: #38bdf8; margin-bottom: 48px; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; }
.legal-page h2 { font-family: 'Outfit'; font-size: 1.8rem; font-weight: 600; margin: 56px 0 24px; color: #fafafa; letter-spacing: -0.01em; }
.legal-page p { font-size: 1.1rem; line-height: 1.75; color: #a1a1aa; margin-bottom: 24px; }
.legal-page ul { margin-bottom: 32px; padding-left: 24px; list-style: disc; color: #a1a1aa; }
.legal-page li { font-size: 1.1rem; line-height: 1.7; margin-bottom: 12px; }
.legal-page a { color: #38bdf8; text-decoration: none; transition: color 0.2s; border-bottom: 1px solid rgba(56,189,248,0.3); }
.legal-page a:hover { color: #fff; border-bottom-color: #fff; }
