/* ==========================================================================
   LSC Demo — Brand Tokens & Global Styles
   Brand: dark surfaces + neon green (#44D62C) accent
   ========================================================================== */

:root {
  --lsc-green: #44D62C;
  --lsc-green-dark: #4BB848;
  --lsc-green-glow: rgba(68, 214, 44, 0.35);
  --lsc-black: #000000;
  --lsc-dark: #0E0E0D;
  --lsc-dark-2: #1A1A1A;
  --lsc-dark-3: #242424;
  --lsc-gray: #6E6E6E;
  --lsc-gray-light: #B6B6B6;
  --lsc-light: #F2F2F2;
  --lsc-white: #FFFFFF;

  --lsc-red: #E63946;
  --lsc-amber: #F4A261;

  --font-display: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--lsc-dark);
  color: var(--lsc-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-grad {
  background: linear-gradient(120deg, var(--lsc-green) 0%, #8AFF6B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glow {
  box-shadow: 0 0 0 1px var(--lsc-green), 0 0 24px var(--lsc-green-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1.1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
/* Compact buttons inside the top navbar */
.navbar .btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-primary { background: var(--lsc-green); color: var(--lsc-black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--lsc-green-glow); }
.btn-ghost { background: transparent; color: var(--lsc-white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--lsc-green); color: var(--lsc-green); }
.btn-dark { background: var(--lsc-dark-2); color: var(--lsc-white); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: var(--lsc-gray-light);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover, .chip.active {
  background: var(--lsc-green);
  color: var(--lsc-black);
  border-color: var(--lsc-green);
}

.card {
  background: var(--lsc-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(68,214,44,0.35); }

.section { padding: 5rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lsc-green);
  margin-bottom: 0.85rem;
}

.divider {
  width: 48px; height: 3px;
  background: var(--lsc-green);
  margin: 1rem 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(14,14,13,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: white; }
.navbar-logo img { height: 38px; width: auto; }
.navbar-logo .wordmark {
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem;
  letter-spacing: 0.04em; line-height: 1;
}
.navbar-logo .wordmark span { color: var(--lsc-green); }
.navbar-links { display: flex; gap: 2rem; align-items: center; }
.navbar-links a {
  color: var(--lsc-gray-light); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.15s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--lsc-green); }
.navbar-actions { display: flex; gap: 0.6rem; align-items: center; }

/* Hero */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  background: var(--lsc-dark);
  overflow: hidden;
  isolation: isolate;
}
/* Full-bleed photo backdrop fills the entire hero. Subtle vignette + dark gradient keeps text legible. */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,13,0.95) 0%, rgba(14,14,13,0.75) 35%, rgba(14,14,13,0.45) 65%, rgba(14,14,13,0.65) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 70% 60%, rgba(68,214,44,0.15), transparent 55%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at left, transparent 20%, black 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  width: 100%;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin: 0 0 1rem;
}
.hero p.lead {
  font-size: 1.15rem; color: var(--lsc-gray-light); line-height: 1.6; max-width: 540px;
}

/* Stats strip */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.stat .num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--lsc-green); line-height: 1;
}
.stat .label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lsc-gray); margin-top: 0.4rem; }

/* News ticker */
.ticker {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--lsc-green); color: var(--lsc-black);
  font-weight: 600; font-size: 0.9rem;
  overflow: hidden; white-space: nowrap;
}
.ticker .ticker-track {
  display: flex; gap: 3rem;
  animation: ticker 35s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* WhatsApp widget */
.wa-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; cursor: pointer;
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-widget:hover { transform: scale(1.08); }

/* Capacity badges */
.cap { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px; }
.cap-ok  { background: rgba(68,214,44,0.15); color: var(--lsc-green); }
.cap-low { background: rgba(244,162,97,0.15); color: var(--lsc-amber); }
.cap-full { background: rgba(230,57,70,0.18); color: var(--lsc-red); }

/* Sport card */
.sport-card { padding: 1.5rem; cursor: pointer; }
.sport-card .icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(68,214,44,0.12); color: var(--lsc-green);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  margin-bottom: 1rem;
}
.sport-card h3 { font-size: 1.4rem; margin: 0 0 0.4rem; }
.sport-card p { color: var(--lsc-gray-light); font-size: 0.9rem; margin: 0 0 1rem; line-height: 1.5; }
.sport-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--lsc-gray); }

/* STEM event banner */
.event-banner {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #0e0e0d 0%, #1a1a1a 100%);
  border: 1px solid rgba(68,214,44,0.4);
  overflow: hidden;
}
.event-banner::before {
  content: ''; position: absolute; right: -10%; top: -50%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--lsc-green-glow), transparent 70%);
  pointer-events: none;
}
.event-banner h3 { font-size: 2.2rem; margin: 0 0 0.5rem; }
.event-banner p { color: var(--lsc-gray-light); margin: 0 0 1rem; }

/* Footer */
.footer {
  background: var(--lsc-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2rem;
  color: var(--lsc-gray-light);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto; }
.footer h4 { font-size: 0.8rem; letter-spacing: 0.2em; color: var(--lsc-white); text-transform: uppercase; margin: 0 0 1rem; }
.footer a { color: var(--lsc-gray-light); text-decoration: none; display: block; padding: 0.3rem 0; font-size: 0.9rem; }
.footer a:hover { color: var(--lsc-green); }
.footer-bottom { max-width: 1280px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--lsc-gray); }

/* RTL support */
html[dir="rtl"] .hero-inner { direction: rtl; }
html[dir="rtl"] .navbar-links, html[dir="rtl"] .navbar-actions { flex-direction: row-reverse; }

/* Mobile responsive */
@media (max-width: 1100px) {
  .navbar { padding: 1rem 1.25rem; }
  .navbar-links { gap: 1.25rem; }
  .navbar-links a { font-size: 0.85rem; }
  .navbar-actions { gap: 0.4rem; }
}
@media (max-width: 980px) {
  .navbar-actions .btn-ghost { display: none; } /* Hide Member Login — logo + Become-a-member is enough */
}
@media (max-width: 900px) {
  .hero { padding: 6rem 1.25rem 3rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .navbar-links { display: none; } /* Replaced by mobile drawer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .event-banner { grid-template-columns: 1fr; padding: 1.5rem; }
  .section { padding: 3rem 1rem; }
  .navbar { padding: 0.85rem 1rem; }
  .navbar-logo .wordmark { font-size: 0.95rem; }
  .navbar-logo img { height: 32px; }
}
@media (max-width: 560px) {
  .navbar { padding: 0.75rem 0.85rem; }
  .navbar .btn { padding: 0.5rem 0.85rem; font-size: 0.78rem; }
  .navbar-actions .lang-toggle { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: start; }
  .ticker { font-size: 0.78rem; padding: 0.7rem 1rem; }
  .hero-mini-stats { gap: 0.6rem; }
  .hero-mini-stats .ms { padding: 0.6rem 0.85rem; }
  .stat .num { font-size: 2.2rem; }
  .container { padding: 0 0.25rem; }
}

/* ===== Mobile menu (hamburger + slide-in drawer) ===== */
.menu-btn {
  display: none; /* hidden on desktop */
  background: transparent; border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 0; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s;
}
.menu-btn:hover { border-color: var(--lsc-green); }
.menu-btn span { display: block; width: 18px; height: 2px; background: white; border-radius: 1px; transition: all 0.2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; visibility: hidden;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.mobile-drawer .drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.25s ease;
}
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer .drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--lsc-dark-2);
  border-left: 1px solid rgba(68,214,44,0.18);
  padding: 1.25rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px rgba(0,0,0,0.5);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.drawer-head .navbar-logo img { height: 32px; }
.drawer-head .navbar-logo .wordmark { font-size: 0.95rem; }
.drawer-close {
  background: none; border: none; color: white;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  padding: 0.5rem 0.85rem; border-radius: 10px;
  transition: background 0.15s;
}
.drawer-close:hover { background: rgba(255,255,255,0.06); }
.drawer-links { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer-links a {
  display: block; padding: 0.85rem 1rem;
  color: var(--lsc-gray-light); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
  border-radius: 10px;
  transition: all 0.15s;
}
.drawer-links a:hover { background: rgba(255,255,255,0.04); color: var(--lsc-white); }
.drawer-links a.active { background: rgba(68,214,44,0.12); color: var(--lsc-green); font-weight: 700; }
.drawer-actions {
  margin-top: auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.drawer-actions .btn { width: 100%; justify-content: center; padding: 0.85rem 1rem; font-size: 0.95rem; }
.drawer-meta { margin-top: 1.25rem; font-size: 0.78rem; color: var(--lsc-gray); text-align: center; line-height: 1.5; }

@media (max-width: 900px) {
  .menu-btn { display: flex; }
}

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 2rem;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--lsc-dark-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 480px; width: 100%;
  border: 1px solid rgba(68,214,44,0.3);
}
.modal h3 { font-size: 1.8rem; margin: 0 0 1rem; }
.modal label { display: block; font-size: 0.8rem; color: var(--lsc-gray); text-transform: uppercase; letter-spacing: 0.1em; margin: 1rem 0 0.4rem; }
.modal input, .modal select {
  width: 100%; padding: 0.85rem 1rem; background: var(--lsc-dark);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  color: white; font-family: inherit; font-size: 1rem;
}
.modal input:focus, .modal select:focus { outline: none; border-color: var(--lsc-green); }

/* ===== Guided product tour (cross-page) — v2 ===== */
.tour-overlay {
  position: fixed; inset: 0; z-index: 300;
  visibility: hidden; pointer-events: none;
}
.tour-overlay.active { visibility: visible; }

/* Single dim layer that catches click-to-dismiss. Sits behind the spotlight + tooltip. */
.tour-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}
.tour-overlay.active .tour-backdrop { opacity: 1; }

/* Spotlight is a "punched hole" — its huge box-shadow paints the dim,
   but the inner area stays clear so the user can see the highlighted region.
   pointer-events:none lets clicks pass through to the page. */
.tour-spotlight {
  position: absolute;
  border: 2px solid var(--lsc-green);
  border-radius: 14px;
  box-shadow:
    0 0 0 9999px rgba(0,0,0,0.65),
    0 0 24px rgba(68,214,44,0.45);
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: none; /* shown by JS */
}
/* When spotlight is shown, the backdrop's dim would double up with the spotlight's
   box-shadow dim, so we make it transparent. JS toggles .has-spotlight on the overlay. */
.tour-overlay.has-spotlight .tour-backdrop {
  background: transparent;
  pointer-events: none; /* clicks pass through to the spotlit element */
}

.tour-tooltip {
  position: absolute;
  background: var(--lsc-dark-2);
  border: 1px solid rgba(68,214,44,0.4);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  pointer-events: auto;
  /* Default sizing only when no inline width set */
  max-width: calc(100vw - 32px);
}
.tour-tooltip .step-counter { font-size: 0.7rem; color: var(--lsc-green); letter-spacing: 0.2em; font-weight: 800; }
.tour-tooltip h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0.5rem 0 0.6rem; line-height: 1.15; color: var(--lsc-white); text-transform: uppercase; }
.tour-tooltip p { color: var(--lsc-gray-light); font-size: 0.92rem; line-height: 1.55; margin: 0 0 1.1rem; }
.tour-progress { display: flex; gap: 4px; margin: 0 0 0.85rem; }
.tour-progress .pip { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.tour-progress .pip.done { background: var(--lsc-green); }
.tour-actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.tour-actions .btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.tour-actions .skip {
  margin-left: auto; background: none; border: none;
  color: var(--lsc-gray); font-size: 0.82rem; cursor: pointer;
  padding: 0.5rem; font-family: inherit;
}
.tour-actions .skip:hover { color: var(--lsc-white); }

/* Bottom-sheet mode for mobile (and as fallback when target is hidden) */
.tour-tooltip.bottom-sheet {
  top: auto !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 16px !important;
  width: auto !important;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  animation: sheetUp 0.3s ease;
}
@keyframes sheetUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Centered-card mode for welcome / closing / cross-page nav steps */
.tour-overlay.centered .tour-spotlight { display: none; }
.tour-tooltip.centered-card {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 32px));
  max-width: 440px;
  text-align: center;
  padding: 2rem 2rem 1.6rem;
  animation: centerPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tour-tooltip.centered-card .tour-progress { justify-content: center; }
.tour-tooltip.centered-card h3 { font-size: 1.8rem; margin-top: 0.6rem; }
.tour-tooltip.centered-card .tour-actions { justify-content: center; flex-wrap: wrap; }
.tour-tooltip.centered-card .tour-actions .skip { margin-left: 0; }
@keyframes centerPop {
  from { transform: translate(-50%, -50%) scale(0.9); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}

/* Cross-page navigation card — brief "Going to [Page]…" sheet */
.tour-tooltip.nav-card {
  background: linear-gradient(135deg, var(--lsc-dark-2), #0a1a0a);
  border-color: var(--lsc-green);
  width: min(380px, calc(100vw - 32px));
}
.tour-tooltip.nav-card h3 {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--lsc-green);
  margin: 0.5rem 0 0.5rem;
}
.tour-tooltip.nav-card .step-counter { color: var(--lsc-gray); }
.tour-tooltip.nav-card p { color: var(--lsc-gray-light); font-size: 0.85rem; }
.tour-tooltip.nav-card::after {
  content: ''; display: block; margin: 1rem auto 0;
  width: 32px; height: 32px;
  border: 3px solid rgba(68,214,44,0.2);
  border-top-color: var(--lsc-green);
  border-radius: 50%;
  animation: navspin 0.7s linear infinite;
}
@keyframes navspin {
  to { transform: rotate(360deg); }
}

/* On small viewports, slightly tighten paddings */
@media (max-width: 640px) {
  .tour-tooltip { padding: 1.2rem 1.2rem 1rem; }
  .tour-tooltip h3 { font-size: 1.2rem; }
  .tour-tooltip p { font-size: 0.88rem; }
  .tour-actions .btn { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}

/* Floating "Take the tour" launcher pill */
.tour-launcher {
  position: fixed; bottom: 6.5rem; right: 1.5rem; z-index: 60;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--lsc-green); color: var(--lsc-black);
  border-radius: 999px; border: none;
  font-family: inherit; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--lsc-green-glow);
  animation: tourPulse 2.5s ease-in-out infinite;
  transition: transform 0.18s;
}
.tour-launcher.subtle {
  background: rgba(20,20,20,0.85); color: var(--lsc-green);
  border: 1px solid rgba(68,214,44,0.4);
  animation: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.tour-launcher:hover { transform: scale(1.06); }
.tour-launcher .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lsc-black); animation: pulse 1.4s infinite; }
.tour-launcher.subtle .dot { background: var(--lsc-green); }
@keyframes tourPulse {
  0%, 100% { box-shadow: 0 10px 30px var(--lsc-green-glow); }
  50% { box-shadow: 0 10px 50px var(--lsc-green-glow), 0 0 0 8px rgba(68,214,44,0.15); }
}
@media (max-width: 640px) {
  .tour-launcher { bottom: 5.5rem; right: 1rem; padding: 0.6rem 0.9rem; font-size: 0.78rem; }
}

/* Phone frame for mobile demo */
.phone-frame {
  width: 390px; height: 844px; max-width: 92vw;
  background: var(--lsc-black);
  border-radius: 54px;
  padding: 14px;
  box-shadow: 0 0 0 12px #1a1a1a, 0 30px 80px rgba(0,0,0,0.6), 0 0 60px var(--lsc-green-glow);
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 460px) {
  .phone-frame { width: 320px; height: 692px; border-radius: 44px; box-shadow: 0 0 0 9px #1a1a1a, 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--lsc-green-glow); }
  .phone-frame .phone-screen { border-radius: 36px; }
}
.phone-frame::before {
  content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 32px; background: black; border-radius: 999px; z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 42px; overflow: hidden;
  background: var(--lsc-dark); position: relative;
}

/* ==========================================================================
   Minimal inline SVG icon system — use sparingly
   Usage: <span class="icon icon-calendar"></span>
   ========================================================================== */
.icon {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.icon-calendar  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><path d='M16 2v4M8 2v4M3 10h18'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><path d='M16 2v4M8 2v4M3 10h18'/></svg>"); }
.icon-clock     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>"); }
.icon-pin       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>"); }
.icon-user      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>"); }
.icon-home      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12L12 3l9 9M5 10v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V10'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12L12 3l9 9M5 10v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V10'/></svg>"); }
.icon-grid      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='7' height='7'/><rect x='14' y='3' width='7' height='7'/><rect x='3' y='14' width='7' height='7'/><rect x='14' y='14' width='7' height='7'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='7' height='7'/><rect x='14' y='3' width='7' height='7'/><rect x='3' y='14' width='7' height='7'/><rect x='14' y='14' width='7' height='7'/></svg>"); }
.icon-bolt      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/></svg>"); }
.icon-card      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='2'/><path d='M2 10h20'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='2'/><path d='M2 10h20'/></svg>"); }
.icon-bell      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9'/><path d='M13.7 21a2 2 0 0 1-3.4 0'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9'/><path d='M13.7 21a2 2 0 0 1-3.4 0'/></svg>"); }
.icon-chat      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>"); }
.icon-cog       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 1 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 1 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/></svg>"); }
.icon-arrow     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>"); }
.icon-check     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); }
.icon-trophy    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6M18 9h1.5a2.5 2.5 0 0 0 0-5H18M4 22h16M10 14.66V17a2 2 0 0 1-2 2v0c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v0a2 2 0 0 1-2-2v-2.34M18 2v8a6 6 0 0 1-12 0V2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6M18 9h1.5a2.5 2.5 0 0 0 0-5H18M4 22h16M10 14.66V17a2 2 0 0 1-2 2v0c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v0a2 2 0 0 1-2-2v-2.34M18 2v8a6 6 0 0 1-12 0V2z'/></svg>"); }
.icon-spark     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2v6M12 16v6M2 12h6M16 12h6M5 5l4 4M15 15l4 4M5 19l4-4M15 9l4-4'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2v6M12 16v6M2 12h6M16 12h6M5 5l4 4M15 15l4 4M5 19l4-4M15 9l4-4'/></svg>"); }
.icon-cpu       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='16' height='16' rx='2'/><rect x='9' y='9' width='6' height='6'/><path d='M9 1v3M15 1v3M9 20v3M15 20v3M20 9h3M20 14h3M1 9h3M1 14h3'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='16' height='16' rx='2'/><rect x='9' y='9' width='6' height='6'/><path d='M9 1v3M15 1v3M9 20v3M15 20v3M20 9h3M20 14h3M1 9h3M1 14h3'/></svg>"); }
.icon-flame     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2c1 5-3 5-3 9a3 3 0 1 0 6 0c1 1 1 3 1 4a4 4 0 0 1-8 0c0-3 4-6 4-13z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2c1 5-3 5-3 9a3 3 0 1 0 6 0c1 1 1 3 1 4a4 4 0 0 1-8 0c0-3 4-6 4-13z'/></svg>"); }

/* Sport letter badge — replaces emoji icons */
.sport-badge {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.sport-badge.sm { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 10px; }
.sport-badge.lg { width: 72px; height: 72px; font-size: 2rem; border-radius: 18px; }
