:root {
  --landing-shadow-soft: 0 18px 45px rgba(24, 51, 81, 0.08);
  --landing-shadow-strong: 0 24px 70px rgba(24, 51, 81, 0.14);
  --landing-border: rgba(92, 122, 159, 0.16);
  --landing-border-strong: rgba(23, 96, 166, 0.18);
  --landing-panel: rgba(255, 255, 255, 0.72);
  --landing-panel-strong: rgba(255, 255, 255, 0.88);
  --landing-hero-glow: rgba(91, 150, 224, 0.22);
}

body.landing-page.theme-cafes {
  --landing-accent-a: rgba(255, 193, 119, 0.24);
  --landing-accent-b: rgba(91, 150, 224, 0.16);
  --landing-accent-c: rgba(214, 232, 255, 0.78);
}

body.landing-page.theme-chargers {
  --landing-accent-a: rgba(125, 211, 252, 0.2);
  --landing-accent-b: rgba(111, 178, 253, 0.16);
  --landing-accent-c: rgba(232, 246, 255, 0.8);
}

body.landing-page.theme-nearme {
  --landing-accent-a: rgba(134, 239, 172, 0.18);
  --landing-accent-b: rgba(91, 150, 224, 0.18);
  --landing-accent-c: rgba(238, 250, 247, 0.82);
}

body.landing-page {
  background:
    radial-gradient(circle at top left, var(--landing-accent-a), transparent 32%),
    radial-gradient(circle at top right, var(--landing-accent-b), transparent 34%),
    linear-gradient(180deg, var(--landing-accent-c) 0%, #fcf9f8 22%, #fffdfb 52%, #f8fbff 100%);
  overflow-x: hidden;
}

body.landing-page::before,
body.landing-page::after {
  content: "";
  position: fixed;
  border-radius: 9999px;
  filter: blur(44px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

body.landing-page::before {
  top: 6rem;
  left: -7rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, rgba(91, 150, 224, 0.22), rgba(255, 213, 163, 0.28));
}

body.landing-page::after {
  right: -6rem;
  bottom: 5rem;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, rgba(111, 178, 253, 0.2), rgba(255, 255, 255, 0.1));
}

body.landing-page main,
body.landing-page .site-footer {
  position: relative;
  z-index: 1;
}

body.landing-page .site-nav {
  background: rgba(252, 249, 248, 0.68);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.landing-page .site-nav.nav-scrolled {
  background: rgba(255, 253, 250, 0.9);
  border-color: rgba(92, 122, 159, 0.12);
  box-shadow: 0 12px 32px rgba(24, 51, 81, 0.08);
}

body.landing-page .nav-inner,
body.landing-page .container,
body.landing-page .hero-inner {
  max-width: 70rem;
}

body.landing-page .nav-logo,
body.landing-page .section-title,
body.landing-page .hero-title,
body.landing-page .final-cta-title,
body.landing-page .dark-title {
  text-wrap: balance;
}

body.landing-page .hero {
  padding-top: 2.5rem;
}

body.landing-page .hero-wrap {
  isolation: isolate;
  padding-inline: 1.25rem;
}

body.landing-page .hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0.5rem 0 0;
  border-radius: 2.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    linear-gradient(120deg, var(--landing-hero-glow), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--landing-shadow-strong);
  z-index: -2;
}

body.landing-page .hero-wrap::after {
  content: "";
  position: absolute;
  inset: 0.5rem 0 0;
  border-radius: 2.25rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

body.landing-page .hero-inner {
  gap: 1.5rem;
  padding: 1.5rem;
}

body.landing-page .hero-inner > :first-child,
body.landing-page .hero-inner > :last-child {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--landing-shadow-soft);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.landing-page .hero-inner > :first-child {
  background: linear-gradient(155deg, var(--landing-panel-strong), rgba(255, 255, 255, 0.56));
  border-radius: 1.9rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

body.landing-page .hero-inner > :last-child {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.8), rgba(233, 241, 251, 0.7));
  border-radius: 1.9rem;
  padding: 1rem;
}

body.landing-page .hero-tag,
body.landing-page .section-eyebrow,
body.landing-page .pain-label,
body.landing-page .dark-eyebrow,
body.landing-page .decision-scenario {
  letter-spacing: 0.24em;
}

body.landing-page .hero-title {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  margin-bottom: 1.15rem;
}

body.landing-page .hero-sub {
  font-size: 1.06rem;
  line-height: 1.82;
  max-width: 34rem;
}

body.landing-page .hero-blob {
  width: 24rem;
  height: 24rem;
  top: -7rem;
  right: -5rem;
  background: radial-gradient(circle at center, rgba(91, 150, 224, 0.36), transparent 65%);
  filter: blur(28px);
  animation: landing-float 14s ease-in-out infinite;
}

body.landing-page .btn,
body.landing-page .dark-btn {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

body.landing-page .btn::before,
body.landing-page .dark-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.24) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

body.landing-page .btn:hover,
body.landing-page .dark-btn:hover {
  transform: translateY(-2px);
}

body.landing-page .btn:hover::before,
body.landing-page .dark-btn:hover::before {
  transform: translateX(120%);
}

body.landing-page .btn-primary,
body.landing-page .btn-primary-lg,
body.landing-page .dark-btn {
  box-shadow: 0 12px 30px rgba(23, 96, 166, 0.24);
}

body.landing-page .btn-secondary {
  background: rgba(255, 255, 255, 0.84);
}

body.landing-page .section,
body.landing-page .section-sm,
body.landing-page .pain-section,
body.landing-page .final-cta {
  position: relative;
}

body.landing-page .pain-section {
  margin-inline: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 245, 251, 0.74)),
    linear-gradient(135deg, rgba(23, 96, 166, 0.04), transparent 70%);
  box-shadow: var(--landing-shadow-soft);
}

body.landing-page .stat-card,
body.landing-page .pain-card,
body.landing-page .feature-card,
body.landing-page .area-card,
body.landing-page .decision-card,
body.landing-page .faq-item,
body.landing-page .related-link,
body.landing-page .related-box,
body.landing-page .dark-section {
  border: 1px solid var(--landing-border);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  will-change: transform;
}

body.landing-page .stat-card,
body.landing-page .pain-card,
body.landing-page .feature-card,
body.landing-page .area-card,
body.landing-page .decision-card,
body.landing-page .faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 251, 254, 0.78));
  box-shadow: 0 10px 28px rgba(24, 51, 81, 0.06);
}

body.landing-page .stat-card:hover,
body.landing-page .pain-card:hover,
body.landing-page .feature-card:hover,
body.landing-page .area-card:hover,
body.landing-page .decision-card:hover,
body.landing-page .faq-item:hover,
body.landing-page .related-link:hover {
  transform: translateY(-4px);
  border-color: var(--landing-border-strong);
  box-shadow: 0 18px 38px rgba(24, 51, 81, 0.12);
}

body.landing-page .stat-card-blue,
body.landing-page .feature-card-primary,
body.landing-page .area-card-cta {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(223, 237, 255, 0.84)),
    linear-gradient(140deg, rgba(23, 96, 166, 0.06), transparent 65%);
}

body.landing-page .feature-card-secondary,
body.landing-page .stat-card-neutral {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(236, 243, 252, 0.82)),
    linear-gradient(140deg, rgba(111, 178, 253, 0.08), transparent 65%);
}

body.landing-page .feature-grid,
body.landing-page .pain-grid,
body.landing-page .areas-grid,
body.landing-page .related-grid,
body.landing-page .decision-grid {
  gap: 1rem;
}

body.landing-page .dark-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(111, 178, 253, 0.22), transparent 35%),
    linear-gradient(145deg, #13253b, #182f49 55%, #10233a);
  border-color: rgba(184, 212, 248, 0.14);
}

body.landing-page .dark-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 2rem 2rem;
  opacity: 0.24;
  pointer-events: none;
}

body.landing-page .dark-inner,
body.landing-page .dark-copy,
body.landing-page .dark-features {
  position: relative;
  z-index: 1;
}

body.landing-page .dark-features {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

body.landing-page .dark-feature {
  padding: 0.65rem 0;
}

body.landing-page .venue-table th,
body.landing-page .venue-table td {
  white-space: nowrap;
}

body.landing-page .venue-table tbody tr {
  transition: background 0.2s ease;
}

body.landing-page .venue-table tbody tr:hover {
  background: rgba(23, 96, 166, 0.04);
}

body.landing-page .faq-item.is-open {
  border-color: rgba(23, 96, 166, 0.2);
  box-shadow: 0 18px 38px rgba(24, 51, 81, 0.1);
}

body.landing-page .faq-btn {
  transition: background 0.22s ease;
}

body.landing-page .faq-item.is-open .faq-btn {
  background: rgba(23, 96, 166, 0.04);
}

body.landing-page .faq-panel {
  overflow: hidden;
  height: auto;
  opacity: 1;
  transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

body.landing-page .faq-panel[hidden] {
  display: block;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

body.landing-page .related-box {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(239, 245, 252, 0.86)),
    linear-gradient(140deg, rgba(23, 96, 166, 0.04), transparent 65%);
  box-shadow: var(--landing-shadow-soft);
}

body.landing-page .related-link {
  background: rgba(255, 255, 255, 0.88);
}

body.landing-page .final-cta {
  margin: 0 1.25rem 3rem;
  border-radius: 2rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(229, 239, 252, 0.74)),
    linear-gradient(120deg, rgba(23, 96, 166, 0.05), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--landing-shadow-soft);
}

body.landing-page .site-footer {
  margin-top: 1rem;
  background: linear-gradient(180deg, rgba(245, 242, 240, 0.9), rgba(248, 251, 255, 0.96));
  border-top: 1px solid rgba(92, 122, 159, 0.12);
}

body.landing-page .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.landing-page .reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.landing-page .tilt-ready {
  transform-style: preserve-3d;
}

body.landing-page .tilt-ready > * {
  transform: translateZ(0);
}

@keyframes landing-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-0.75rem, 1rem, 0) scale(1.04);
  }
}

@media (max-width: 767px) {
  body.landing-page .hero-wrap {
    padding-inline: 0.5rem;
  }

  body.landing-page .hero-wrap::before,
  body.landing-page .hero-wrap::after {
    border-radius: 1.5rem;
  }

  body.landing-page .hero-inner {
    padding: 1rem;
  }

  body.landing-page .pain-section,
  body.landing-page .final-cta {
    margin-inline: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-page .hero-blob,
  body.landing-page .btn,
  body.landing-page .dark-btn,
  body.landing-page .reveal,
  body.landing-page .stat-card,
  body.landing-page .pain-card,
  body.landing-page .feature-card,
  body.landing-page .area-card,
  body.landing-page .decision-card,
  body.landing-page .faq-item,
  body.landing-page .related-link,
  body.landing-page .faq-panel {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}
