/* ==========================================================================
   PerunPath Landing Page V2 Preview (Swiss Alpine-Tech)
   Namespace: .lp- (Completely isolated from legacy stylesheets)
   ========================================================================== */

:root {
  --lp-bg-dark: #090d12;
  --lp-bg-card: #121820;
  --lp-bg-card-hover: #17202c;
  --lp-bg-elevated: #1b2432;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-glow: rgba(16, 185, 129, 0.35);
  --lp-text-primary: #f8fafc;
  --lp-text-secondary: #94a3b8;
  --lp-text-muted: #64748b;
  --lp-accent-green: #10b981;
  --lp-accent-green-glow: rgba(16, 185, 129, 0.2);
  --lp-accent-amber: #ff6b35;
  --lp-accent-amber-glow: rgba(255, 107, 53, 0.25);
  --lp-accent-blue: #38bdf8;
  --lp-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lp-radius-sm: 8px;
  --lp-radius-md: 14px;
  --lp-radius-lg: 22px;
  --lp-radius-xl: 32px;
  --lp-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --lp-shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  --lp-shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
}

/* Base Wrapper */
.lp-page {
  font-family: var(--lp-font-sans);
  background-color: var(--lp-bg-dark);
  color: var(--lp-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  margin-top: -64px; /* Flow seamlessly under unified glass capsule header */
  padding-top: 64px;
}

.lp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography & Tags ── */
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--lp-accent-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-tag-amber {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.35);
  color: var(--lp-accent-amber);
}

.lp-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--lp-accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lp-accent-green);
  animation: lp-pulse 2s infinite ease-in-out;
}

@keyframes lp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ── Section Headers ── */
.lp-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.lp-section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.lp-section-header p {
  color: var(--lp-text-secondary);
  font-size: clamp(16px, 1.8vw, 19px);
  margin: 0;
}

/* ── Hero Section with "The Bridge" Motif ── */
.lp-hero {
  position: relative;
  padding: 48px 0 36px;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(16, 185, 129, 0.18), transparent 70%),
    radial-gradient(circle at 85% 30%, rgba(255, 107, 53, 0.08), transparent 45%),
    radial-gradient(circle at 15% 70%, rgba(56, 189, 248, 0.08), transparent 40%),
    var(--lp-bg-dark);
  border-bottom: 1px solid var(--lp-border);
}

/* Bridge Geometric Lines */
.lp-hero-bridge-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
  background-image: 
    radial-gradient(ellipse 1200px 600px at 50% 100%, transparent 40%, rgba(16, 185, 129, 0.15) 70%, transparent 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 64px 64px, 64px 64px;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.lp-hero-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
  color: #ffffff;
}

.lp-hero-title .lp-highlight-green {
  color: var(--lp-accent-green);
  text-shadow: 0 0 35px rgba(16, 185, 129, 0.4);
}

.lp-hero-title .lp-highlight-amber {
  color: var(--lp-accent-amber);
}

.lp-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--lp-text-secondary);
  max-width: 720px;
  margin: 0 auto 22px;
  font-weight: 400;
}

/* ── Interactive Perun AI Prompt Bar ── */
.lp-ai-prompt-box {
  background: rgba(18, 24, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lp-radius-lg);
  padding: 8px 10px 8px 20px;
  box-shadow: var(--lp-shadow-lg), 0 0 30px rgba(0, 0, 0, 0.4);
  max-width: 780px;
  margin: 0 auto 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-ai-prompt-box:focus-within {
  border-color: var(--lp-accent-green);
  box-shadow: var(--lp-shadow-lg), var(--lp-shadow-glow);
}

.lp-ai-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-ai-input-icon {
  font-size: 24px;
  color: var(--lp-accent-green);
  flex-shrink: 0;
}

.lp-ai-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  padding: 8px 0;
}

.lp-ai-input::placeholder {
  color: var(--lp-text-muted);
}

.lp-ai-submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--lp-radius-md);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-ai-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  filter: brightness(1.08);
}

/* Prompt Quick Suggestion Chips */
.lp-ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 24px;
}

.lp-ai-chips-label {
  font-size: 12px;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.lp-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--lp-text-secondary);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-chip:hover {
  background: rgba(16, 185, 129, 0.12);
  color: #ffffff;
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
}

/* Quick Metrics Bar */
.lp-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--lp-border);
}

.lp-metric-item {
  text-align: center;
}

.lp-metric-num {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.lp-metric-label {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-top: 4px;
}

/* Section scroll margins for smooth anchor navigation under fixed navbar */
#features, #mission-simulator, #layers, #pwa, #popular-routes, #regions, #compare {
  scroll-margin-top: 80px;
}

/* Hero Quicknav Bar & Scroll Cue */
.lp-hero-quicknav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px auto 0;
  padding: 8px 16px;
  background: rgba(18, 20, 23, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  max-width: fit-content;
}

.lp-quicknav-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text-muted);
  margin-right: 4px;
}

.lp-quicknav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-quicknav-pill:hover {
  color: #ffffff;
  background: rgba(0, 220, 130, 0.18);
  border-color: rgba(0, 220, 130, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 220, 130, 0.2);
}

.lp-hero-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lp-hero-scroll-cue:hover {
  color: var(--lp-accent-green);
}

.lp-scroll-arrow {
  display: inline-block;
  font-size: 16px;
  color: var(--lp-accent-green);
  animation: lpBounce 2s infinite;
}

@keyframes lpBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* ── Section: Bento Grid (The 4 Pillars) ── */
.lp-bento-section {
  padding: 100px 0;
  background: var(--lp-bg-dark);
  position: relative;
}

.lp-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.lp-bento-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--lp-shadow-lg);
}

.lp-bento-card-highlight {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(180deg, rgba(18, 24, 32, 1) 0%, rgba(16, 26, 30, 0.95) 100%);
}

.lp-bento-card-highlight:hover {
  border-color: var(--lp-accent-green);
  box-shadow: var(--lp-shadow-lg), var(--lp-shadow-glow);
}

/* Bento Card Sizes */
.lp-bento-col-8 { grid-column: span 8; }
.lp-bento-col-4 { grid-column: span 4; }
.lp-bento-col-6 { grid-column: span 6; }
.lp-bento-col-12 { grid-column: span 12; }

.lp-card-header {
  margin-bottom: 20px;
}

.lp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--lp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-border);
}

.lp-card-icon-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--lp-accent-green);
  border-color: rgba(16, 185, 129, 0.3);
}

.lp-card-icon-amber {
  background: rgba(255, 107, 53, 0.15);
  color: var(--lp-accent-amber);
  border-color: rgba(255, 107, 53, 0.3);
}

.lp-card-icon-blue {
  background: rgba(56, 189, 248, 0.15);
  color: var(--lp-accent-blue);
  border-color: rgba(56, 189, 248, 0.3);
}

.lp-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.lp-card-desc {
  font-size: 15px;
  color: var(--lp-text-secondary);
  margin: 0 0 20px;
  line-height: 1.6;
}

/* Visual Mockups inside Bento */
.lp-bento-visual {
  background: var(--lp-bg-dark);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 18px;
  margin-top: 16px;
  position: relative;
}

/* Mock Map Layers Visual */
.lp-layer-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.lp-layer-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lp-text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-layer-pill.active {
  background: var(--lp-accent-green);
  color: #090d12;
  border-color: var(--lp-accent-green);
}

/* Mock Terrain Profile */
.lp-elevation-chart {
  height: 90px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding-top: 10px;
}

.lp-elevation-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.7));
  border-radius: 2px 2px 0 0;
  transition: height 0.4s ease, background 0.2s;
}

.lp-elevation-bar:hover {
  background: var(--lp-accent-amber);
}

/* ── "I coś jeszcze": Interactive Mission & Survival Simulator ── */
.lp-simulator-section {
  padding: 100px 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.08), transparent 60%),
    linear-gradient(180deg, var(--lp-bg-dark) 0%, #0d1218 100%);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-simulator-box {
  background: var(--lp-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lp-sim-controls {
  padding: 44px;
  border-right: 1px solid var(--lp-border);
}

.lp-sim-outputs {
  padding: 44px;
  background: rgba(9, 13, 18, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-sim-group {
  margin-bottom: 28px;
}

.lp-sim-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.lp-sim-badge-val {
  color: var(--lp-accent-green);
  font-family: monospace;
  font-size: 15px;
}

/* Mode Select Segmented Buttons */
.lp-segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px;
  border-radius: var(--lp-radius-md);
  border: 1px solid var(--lp-border);
}

.lp-segment-btn {
  background: transparent;
  border: none;
  color: var(--lp-text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: var(--lp-radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.lp-segment-btn.active {
  background: var(--lp-bg-elevated);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Range Slider */
.lp-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  margin: 10px 0;
}

.lp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-accent-green);
  cursor: pointer;
  box-shadow: 0 0 12px var(--lp-accent-green);
  transition: transform 0.15s;
}

.lp-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Checkbox Toggles */
.lp-check-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-check-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.lp-check-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.lp-check-card input {
  accent-color: var(--lp-accent-green);
  width: 16px;
  height: 16px;
}

.lp-check-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

/* Simulator Output Cockpit */
.lp-sim-readouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.lp-readout-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 16px;
  text-align: center;
}

.lp-readout-val {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  font-family: monospace;
}

.lp-readout-label {
  font-size: 12px;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Survival Kit Checklist */
.lp-kit-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 18px;
  margin-bottom: 28px;
}

.lp-kit-header {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-kit-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-kit-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #ffffff;
}

/* ── Interactive Map Layer Switcher Showcase ── */
.lp-map-showcase {
  padding: 100px 0;
  background: var(--lp-bg-dark);
}

.lp-map-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lp-map-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-secondary);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-map-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lp-map-tab-btn.active {
  background: var(--lp-accent-green);
  color: #090d12;
  border-color: var(--lp-accent-green);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.lp-map-canvas-frame {
  background: #0d141c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-map-preview-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.lp-map-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lp-hud-badge {
  background: rgba(18, 24, 32, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--lp-radius-md);
  padding: 8px 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--lp-shadow-sm);
}

.lp-map-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* ── PWA Instant Install Section ── */
.lp-pwa-banner {
  margin: 60px 0 100px;
  background: linear-gradient(135deg, rgba(18, 24, 32, 0.95) 0%, rgba(16, 26, 32, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--lp-radius-xl);
  padding: 48px;
  box-shadow: var(--lp-shadow-lg), var(--lp-shadow-glow);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
}

.lp-pwa-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.lp-pwa-desc {
  font-size: 16px;
  color: var(--lp-text-secondary);
  margin: 0 0 28px;
  line-height: 1.6;
}

.lp-pwa-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--lp-radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
}

.lp-btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--lp-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Live Route Cards Grid (Context-driven) ── */
.lp-routes-section {
  padding: 100px 0;
  background: #090d12;
  border-top: 1px solid var(--lp-border);
}

.lp-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-route-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.lp-route-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--lp-shadow-lg);
}

.lp-route-img-box {
  position: relative;
  height: 190px;
  background: #1b2432;
  overflow: hidden;
}

.lp-route-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lp-route-card:hover .lp-route-img {
  transform: scale(1.05);
}

.lp-route-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 13, 18, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-accent-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-route-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.lp-route-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.35;
}

.lp-route-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--lp-border);
  padding-top: 14px;
  font-size: 13px;
  color: var(--lp-text-secondary);
}

.lp-route-stat-item strong {
  color: #ffffff;
  display: block;
  font-size: 15px;
}

/* ── Comparison Banner (PerunPath vs AllTrails/Komoot) ── */
.lp-compare-section {
  padding: 100px 0;
  background: var(--lp-bg-dark);
}

.lp-compare-table-box {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.lp-compare-table th,
.lp-compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-compare-table th {
  background: rgba(255, 255, 255, 0.02);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.lp-compare-highlight {
  background: rgba(16, 185, 129, 0.06);
  color: var(--lp-accent-green);
  font-weight: 700;
}

/* Legal Disclaimers & Footnotes */
.lp-compare-disclaimer {
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid var(--lp-border);
  font-size: 12px;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

.lp-compare-disclaimer p {
  margin: 0 0 6px;
}

.lp-compare-disclaimer p:last-child {
  margin-bottom: 0;
}

.lp-safety-card {
  margin-top: 24px;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: var(--lp-radius-md);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--lp-text-secondary);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-safety-icon {
  font-size: 20px;
  color: var(--lp-accent-amber);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ Section ── */
.lp-faq-section {
  padding: 80px 0 120px;
  background: var(--lp-bg-dark);
}

.lp-faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-faq-item {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.lp-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.lp-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.lp-faq-arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
  color: var(--lp-accent-green);
}

.lp-faq-item.open .lp-faq-arrow {
  transform: rotate(180deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--lp-text-secondary);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 24px;
}

.lp-faq-item.open .lp-faq-answer {
  max-height: 250px;
  padding: 0 24px 20px;
}

/* ── Final Launch Cockpit Banner ── */
.lp-launch-banner {
  padding: 90px 24px;
  text-align: center;
  background: 
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.16), transparent 70%),
    linear-gradient(180deg, #090d12 0%, #06090d 100%);
  border-top: 1px solid var(--lp-border);
}

.lp-launch-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Responsive Adaptations ── */
@media (max-width: 1024px) {
  .lp-bento-col-8,
  .lp-bento-col-4,
  .lp-bento-col-6 {
    grid-column: span 12;
  }
  
  .lp-simulator-box {
    grid-template-columns: 1fr;
  }
  
  .lp-sim-controls {
    border-right: none;
    border-bottom: 1px solid var(--lp-border);
    padding: 30px 20px;
  }
  
  .lp-sim-outputs {
    padding: 30px 20px;
  }
  
  .lp-pwa-banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  
  .lp-routes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lp-page {
    margin-top: 0;
    padding-top: 20px;
  }
  
  .lp-hero {
    min-height: auto;
    padding: 60px 0 50px;
  }
  
  .lp-hero-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .lp-ai-prompt-box {
    padding: 8px 12px;
  }
  
  .lp-ai-input-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .lp-ai-submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .lp-check-row {
    grid-template-columns: 1fr;
  }
  
  .lp-sim-readouts {
    grid-template-columns: 1fr;
  }
}

/* ── Regional Content Hub (SEO PageRank Network) ── */
.lp-regions-section {
  padding: 80px 0 100px;
  background: var(--lp-bg-dark);
  border-top: 1px solid var(--lp-border);
}

.lp-regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-region-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-region-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-accent-green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lp-region-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.lp-region-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.lp-region-tag {
  font-size: 12px;
  color: var(--lp-text-muted);
}

@media (max-width: 1024px) {
  .lp-regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-regions-grid {
    grid-template-columns: 1fr;
  }
}

