/* ============================================
   ROPE WEB V2 — Fresh Modern Design
   ============================================ */

:root {
  --lime: #C8FF00;
  --lime-bright: #D4FF33;
  --lime-glow: rgba(200, 255, 0, 0.4);
  --lime-soft: rgba(200, 255, 0, 0.08);

  --purple: #A78BFA;
  --purple-glow: rgba(167, 139, 250, 0.3);

  --bg: #000000;
  --bg-2: #0A0A0A;
  --bg-3: #111111;
  --card: #141414;
  --elevated: #1A1A1A;

  --text: #FFFFFF;
  --text-2: #B0B0B0;
  --text-3: #707070;
  --text-4: #4A4A4A;

  --stroke: #1F1F1F;
  --stroke-2: #2A2A2A;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.lime-text {
  color: var(--lime);
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ============================================
   INTRO LOADER
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.intro-orb-1 {
  width: 400px; height: 400px;
  background: var(--lime);
  opacity: 0.2;
  top: -100px; right: -100px;
  animation: orbDrift 8s ease-in-out infinite;
}
.intro-orb-2 {
  width: 350px; height: 350px;
  background: var(--purple);
  opacity: 0.15;
  bottom: -100px; left: -100px;
  animation: orbDrift 10s ease-in-out infinite reverse;
}
.intro-orb-3 {
  width: 250px; height: 250px;
  background: var(--lime);
  opacity: 0.12;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbDrift 6s ease-in-out infinite;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.intro-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.intro-brand {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 12px;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: brandReveal 0.8s var(--ease);
}
@keyframes brandReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.intro-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke-2);
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

/* PHONE MOCKUP */
.intro-phone {
  width: 140px;
  height: 260px;
  background: #1a1a1a;
  border-radius: 32px;
  border: 2px solid #333;
  margin: 0 auto 32px;
  position: relative;
  box-shadow: 0 0 60px rgba(200, 255, 0, 0.2), 0 25px 50px rgba(0,0,0,0.6);
  animation: phoneFloat 3s ease-in-out infinite;
  overflow: hidden;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.intro-phone-notch {
  width: 60px;
  height: 20px;
  background: #000;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* TAP ANIMATION */
.intro-phone {
  cursor: pointer;
  transition: transform 0.1s ease;
}
.intro-phone:active {
  transform: scale(0.97);
}
.intro-phone-tap {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.4);
  transform: translate(-50%, -50%) scale(0);
  animation: tapRipple 0.5s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}
@keyframes tapRipple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.intro-phone-tap-inner {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: tapDot 0.5s ease-out forwards;
}
@keyframes tapDot {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.5); }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* HAPTIC PULSE */
@keyframes hapticPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(200, 255, 0, 0.2), 0 25px 50px rgba(0,0,0,0.6); }
  50% { box-shadow: 0 0 80px rgba(200, 255, 0, 0.5), 0 25px 50px rgba(0,0,0,0.6); }
}
.intro-phone.haptic {
  animation: phoneFloat 3s ease-in-out infinite, hapticPulse 0.3s ease;
}
.intro-phone-screen {
  position: absolute;
  inset: 28px 8px 8px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

/* APP SCREENS */
.app-screen {
  position: absolute;
  inset: 0;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.app-screen.active {
  opacity: 1;
  transform: translateX(0);
}

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--stroke);
}
.app-logo-sm {
  width: 22px;
  height: 22px;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--bg);
}
.app-title-sm {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
}
.app-status {
  margin-left: auto;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--stroke);
  color: var(--text-3);
}
.app-status.on { background: var(--lime); color: var(--bg); }
.app-status.live { background: #EF4444; color: white; animation: livePulse 1s infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* App Card */
.app-card {
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-card.highlight { border-color: var(--lime); }
.app-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-desc {
  font-size: 10px;
  color: var(--text-2);
}
.app-input {
  background: var(--bg);
  border: 1px solid var(--stroke-2);
  border-radius: 8px;
  padding: 8px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--lime);
  text-align: center;
  letter-spacing: 2px;
}
.app-btn-small {
  background: var(--lime);
  color: var(--bg);
  padding: 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
.app-footer-text {
  font-size: 9px;
  color: var(--text-3);
  text-align: center;
}

/* Toggle */
.app-toggle { margin-left: auto; }
.toggle-track {
  width: 36px;
  height: 20px;
  background: var(--stroke-2);
  border-radius: 10px;
  position: relative;
  transition: background 0.3s;
}
.toggle-track:has(~ .toggle-thumb.active) { background: var(--lime); }
.toggle-thumb {
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

/* Stats Row */
.app-stats-row {
  display: flex;
  gap: 8px;
}
.app-stats-row.compact { margin-top: auto; }
.app-stat {
  flex: 1;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
}
.app-stat-n {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}
.app-stat-l {
  font-size: 7px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Bot Card */
.app-bot-card {
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-bot-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-2);
}
.app-val { color: var(--lime); font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.app-val.on { color: var(--lime); }

/* Slider */
.app-slider { padding: 8px 0; }
.slider-track {
  height: 4px;
  background: var(--stroke-2);
  border-radius: 2px;
  position: relative;
}
.slider-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
}
.slider-thumb {
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75%;
  box-shadow: 0 0 8px var(--lime-glow);
}
.app-val-big {
  font-size: 20px;
  font-weight: 800;
  color: var(--lime);
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
}

/* Map */
.app-map {
  flex: 1;
  background: var(--card);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke-2);
}
.map-zone {
  position: absolute;
  inset: 20%;
  border: 2px dashed var(--lime);
  border-radius: 50%;
  opacity: 0.3;
}
.map-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--text-3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.map-pin.active {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
  width: 12px;
  height: 12px;
}

/* Areas */
.app-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.app-area {
  font-size: 8px;
  padding: 4px 8px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 20px;
  color: var(--text-3);
}
.app-area.active {
  background: var(--lime-soft);
  border-color: var(--lime);
  color: var(--lime);
}

/* Tips */
.app-tips {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: var(--elevated);
  border-radius: 8px;
}
.app-tip-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.app-tip-text {
  font-size: 8px;
  color: var(--text-3);
}

/* App List */
.app-apps-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-app-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 10px;
}
.app-app-icon {
  width: 24px;
  height: 24px;
  background: var(--stroke-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
}
.app-app-item.active .app-app-icon { background: var(--lime); color: var(--bg); }
.app-app-name { font-size: 11px; color: var(--text-2); flex: 1; }
.app-app-item.active .app-app-name { color: var(--text); }
.app-check {
  width: 16px;
  height: 16px;
  border: 2px solid var(--stroke-2);
  border-radius: 4px;
}
.app-check.on {
  background: var(--lime);
  border-color: var(--lime);
  position: relative;
}
.app-check.on::after {
  content: '✓';
  font-size: 10px;
  color: var(--bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Live Card */
.app-live-card {
  background: var(--card);
  border: 1px solid var(--lime);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 0 20px rgba(200,255,0,0.15);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: livePulse 0.8s infinite;
}
.live-fare {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}
.live-meta { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.live-bar {
  height: 3px;
  background: var(--stroke-2);
  border-radius: 2px;
  margin: 10px 0;
  overflow: hidden;
}
.live-fill {
  height: 100%;
  background: var(--lime);
  width: 30%;
  animation: liveFillAnim 0.3s ease-out forwards;
}
@keyframes liveFillAnim { to { width: 100%; } }
.live-countdown {
  font-size: 9px;
  color: var(--lime);
  font-family: 'JetBrains Mono', monospace;
}

.intro-loader {
  max-width: 280px;
  margin: 0 auto;
}

.intro-bar {
  width: 100%;
  height: 2px;
  background: var(--stroke-2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.intro-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
  width: 0;
  transition: width 0.3s ease;
  box-shadow: 0 0 12px var(--lime-glow);
}

.intro-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.3s;
}
.intro-text.active { color: var(--lime); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke);
  transition: 0.3s var(--ease);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2.5px;
  color: var(--text);
}
.nav-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 0 10px var(--lime-glow);
}
.nav-logo span {
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 100px;
  transition: 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime);
  color: var(--bg);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  transition: 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--lime-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--lime-glow);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--lime);
  opacity: 0.15;
  top: -150px; right: -100px;
  animation: orbDrift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--purple);
  opacity: 0.1;
  bottom: 100px; left: -100px;
  animation: orbDrift 14s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 540px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
  transition: 0.3s var(--ease);
  cursor: pointer;
}
.hero-pill:hover {
  background: rgba(200, 255, 0, 0.15);
  transform: translateY(-1px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulseAnim 1.5s ease-in-out infinite;
}
@keyframes pulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero-word {
  display: block;
}
.hero-word em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--bg);
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  transition: 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lime);
}
.btn-lime::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-lime:hover::before { transform: translateX(100%); }
.btn-lime:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--lime-glow);
}
.btn-lime svg { transition: transform 0.2s; }
.btn-lime:hover svg { transform: translateY(2px); }

.btn-lime-lg {
  padding: 20px 40px;
  font-size: 17px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 100px;
  transition: 0.2s;
}
.btn-ghost svg { color: var(--lime); }
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -1px;
  line-height: 1;
}
.trust-unit {
  font-size: 16px;
  color: var(--text-2);
  font-weight: 600;
}
.trust-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-line {
  width: 1px;
  height: 32px;
  background: var(--stroke-2);
}

/* Hero Demo */
.hero-demo {
  position: relative;
}

.demo-frame {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--stroke);
}

.demo-dots {
  display: flex;
  gap: 6px;
}
.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stroke-2);
}

.demo-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
}

.demo-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.5px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulseAnim 1.5s ease-in-out infinite;
}

.demo-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-card.demo-fare {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, rgba(200, 255, 0, 0.02) 100%);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.demo-card.demo-fare::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.demo-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.demo-fare-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.demo-fare-amount {
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -2px;
  line-height: 1;
  white-space: nowrap;
}
.demo-fare-pulse {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  background: rgba(200, 255, 0, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}
.demo-fare-meta {
  font-size: 12px;
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 12px;
}
.demo-fare-action {
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.5px;
  animation: pulseAnim 1.5s ease-in-out infinite;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 16px;
}
.demo-stat {
  text-align: center;
  min-width: 0;
}
.demo-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
  white-space: nowrap;
}
.demo-stat-label {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.demo-app-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  color: var(--text-2);
  letter-spacing: 0.3px;
}
.demo-app-tag[data-color="amber"] { color: #FFB300; border-color: rgba(255, 179, 0, 0.3); }
.demo-app-tag[data-color="green"] { color: #22C55E; border-color: rgba(34, 197, 94, 0.3); }
.demo-app-tag[data-color="blue"] { color: #3B82F6; border-color: rgba(59, 130, 246, 0.3); }
.demo-app-tag[data-color="gray"] { color: #9CA3AF; border-color: rgba(156, 163, 175, 0.3); }

.demo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--lime-soft) 0%, transparent 60%);
  z-index: 1;
  filter: blur(20px);
  animation: pulseAnim 4s ease-in-out infinite;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: var(--bg-2);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.3px;
}
.marquee-track .dot {
  color: var(--lime);
  font-size: 8px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: var(--bg-2);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: 0.3s var(--ease);
}
.feature:hover {
  border-color: var(--stroke-2);
  transform: translateY(-4px);
}

.feature-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-2) 100%);
}
.feature-large .feature-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
}

.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.feature-wide .feature-content {
  grid-column: 1;
}
.feature-wide .feature-visual {
  grid-column: 2;
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Speed meter */
.speed-meter {
  position: relative;
  width: 200px;
  height: 200px;
}
.speed-ring {
  position: relative;
  width: 100%;
  height: 100%;
}
.speed-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
}
.speed-ring svg circle:last-child {
  stroke-dasharray: 339;
  stroke-dashoffset: 20;
  animation: ringFill 2s var(--ease) infinite alternate;
}
@keyframes ringFill {
  from { stroke-dashoffset: 60; }
  to { stroke-dashoffset: 10; }
}
.speed-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.speed-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -2px;
  line-height: 1;
}
.speed-unit {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Shield */
.shield-pulse {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  margin-top: 20px;
  position: relative;
}
.shield-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1.5px solid var(--danger);
  opacity: 0.4;
  animation: pulseAnim 2s ease-in-out infinite;
}
.shield-pulse svg {
  width: 32px;
  height: 32px;
}

/* Filter pills */
.filter-pills {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pill {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--stroke-2);
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
}
.pill.active {
  background: rgba(200, 255, 0, 0.1);
  border-color: var(--lime);
  color: var(--lime);
}

/* Dashboard mini */
.dashboard-mini {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 24px;
}
.dash-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}
.dash-bar {
  flex: 1;
  height: var(--h);
  background: var(--stroke-2);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: 0.3s var(--ease);
}
.dash-bar.active {
  background: linear-gradient(180deg, var(--lime), rgba(200, 255, 0, 0.3));
  box-shadow: 0 0 16px var(--lime-glow);
}

/* Lock */
.lock-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warning);
  margin-top: 20px;
}
.lock-icon svg {
  width: 32px;
  height: 32px;
}

/* Support */
.support-pulse {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-top: 20px;
  position: relative;
}
.support-pulse::before {
  content: '';
  position: absolute;
  top: -3px; right: -3px;
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulseAnim 1.5s ease-in-out infinite;
}
.support-pulse svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   APPS SHOWCASE
   ============================================ */
.apps-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.app-tile {
  position: relative;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 32px 24px;
  overflow: hidden;
  transition: 0.3s var(--ease);
  cursor: pointer;
}

.app-tile:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-2);
}

.app-tile-bg {
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--c1, var(--lime)) 0%, transparent 50%);
  opacity: 0.05;
  transition: 0.4s var(--ease);
}
.app-tile:hover .app-tile-bg { opacity: 0.12; }

.app-tile[data-color="amber"] { --c1: #FFB300; }
.app-tile[data-color="green"] { --c1: #22C55E; }
.app-tile[data-color="blue"] { --c1: #3B82F6; }
.app-tile[data-color="gray"] { --c1: #6B7280; }

.app-tile-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.app-tile-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.app-tile-meta {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

.app-tile-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.check-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--lime);
}

/* ============================================
   STEPS
   ============================================ */
.steps-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px 24px;
  width: 220px;
  transition: 0.3s var(--ease);
  position: relative;
}
.step-card:hover {
  border-color: var(--stroke-2);
  transform: translateY(-4px);
}

.step-final {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, var(--card) 100%);
  border-color: var(--lime);
  box-shadow: 0 0 32px rgba(200, 255, 0, 0.15);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.step-final .step-num { color: var(--lime); }

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  margin-bottom: 16px;
}
.step-final .step-icon-wrap {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--bg);
  box-shadow: 0 0 16px var(--lime-glow);
}
.step-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.step-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.step-card p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

.step-arrow {
  color: var(--text-4);
  flex-shrink: 0;
}
.step-arrow svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: 0.3s var(--ease);
}
.review:hover {
  border-color: var(--stroke-2);
  transform: translateY(-4px);
}

.review-quote {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--lime);
  opacity: 0.15;
  font-family: serif;
}

.review-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.review-avatar[data-c="purple"] { background: var(--purple); color: var(--bg); }

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.review-role {
  font-size: 11px;
  color: var(--text-3);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.plan {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: 0.3s var(--ease);
}

.plan-popular {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, var(--card) 100%);
  border-color: var(--lime);
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(200, 255, 0, 0.15);
}

.plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}
.plan-popular .plan-price { color: var(--lime); }
.plan-currency {
  font-size: 24px;
  font-weight: 700;
}

.plan-period {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 28px;
}

.plan-list {
  list-style: none;
  margin-bottom: 28px;
}
.plan-list li {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--stroke);
}
.plan-list li:last-child { border-bottom: none; }
.plan-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(200, 255, 0, 0.1);
  color: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  background: var(--bg-2);
  color: var(--text);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid var(--stroke-2);
  transition: 0.3s var(--ease);
}
.plan-btn:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.plan-btn-primary {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}
.plan-btn-primary:hover {
  background: var(--lime-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--lime-glow);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s var(--ease);
}
.faq-item:hover {
  border-color: var(--stroke-2);
}
.faq-item[open] {
  border-color: var(--lime);
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.04) 0%, var(--card) 100%);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.2px;
  transition: 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 20px;
  color: var(--lime);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: var(--lime);
  opacity: 0.2;
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: var(--purple);
  opacity: 0.12;
  bottom: -200px; right: -100px;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  margin-top: 16px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.5;
}

.cta-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}
.cta-meta i {
  color: var(--lime);
  font-style: normal;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--stroke);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--stroke);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 16px var(--lime-glow);
}
.footer-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tag {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 2px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}
.footer-col a:hover { color: var(--lime); }

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bot p {
  font-size: 12px;
  color: var(--text-3);
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.5px;
}
.footer-socials a:hover {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}

/* ============================================
   TERMS PAGE
   ============================================ */
.terms-content {
  max-width: 720px;
  margin: 0 auto;
}

.terms-disclaimer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 12px;
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 48px;
}
.terms-disclaimer svg {
  flex-shrink: 0;
  color: var(--purple);
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--stroke);
}
.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.terms-section p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section ul {
  list-style: none;
  margin-top: 16px;
}
.terms-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}
.terms-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.terms-section ul li strong {
  color: var(--text);
  font-weight: 600;
}

.terms-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
  flex-shrink: 0;
}

/* ============================================
   INSTALL PAGE
   ============================================ */
.install-header {
  text-align: center;
  padding: 40px 0 60px;
}

.install-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.install-sub {
  font-size: 18px;
  color: var(--text-2);
}

.install-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.install-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  transition: 0.3s var(--ease);
}

.install-step:hover {
  border-color: var(--stroke-2);
  transform: translateY(-2px);
}

.install-step-number {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}

.install-step-number svg {
  width: 24px;
  height: 24px;
}

.install-step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.install-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--bg);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.step-circle-final {
  background: var(--purple);
}

.install-step-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.install-step-content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.install-step-content strong {
  color: var(--text);
  font-weight: 600;
}

.install-note {
  color: var(--text-3) !important;
  font-size: 13px !important;
}

.install-warn {
  display: flex;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
}

.install-warn svg {
  width: 20px;
  height: 20px;
  color: #EF4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.install-warn strong {
  display: block;
  color: #EF4444;
  font-size: 14px;
  margin-bottom: 4px;
}

.install-warn p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
}

.install-warn p strong {
  color: var(--text);
  display: inline;
}

.install-btn {
  align-self: flex-start;
  margin-top: 8px;
}

.install-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: 0.2s;
}

.install-link:hover {
  color: var(--lime);
}

.install-link svg {
  transition: transform 0.2s;
}

.install-link:hover svg {
  transform: translateY(2px);
}

.install-complete {
  text-align: center;
  max-width: 400px;
  margin: 48px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, var(--card) 100%);
  border: 1px solid var(--lime);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.1);
}

.complete-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px var(--lime-glow);
}

.complete-icon svg {
  width: 28px;
  height: 28px;
  color: var(--bg);
}

.install-complete h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.install-complete p {
  font-size: 14px;
  color: var(--text-2);
}

.install-complete a {
  color: var(--lime);
  font-weight: 600;
}

.install-complete a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  /* Mobile dropdown — JS toggles .open, iske bina menu khulta hi nahi tha */
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-2);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 100;
  }
  .nav-links.open a { padding: 12px 16px; font-size: 15px; }
  .nav-burger.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .nav { padding: 16px 24px; position: relative; }

  .hero { padding: 120px 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px 60px;
    gap: 40px;
  }
  .hero-text { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }

  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-large { grid-row: auto; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; }

  .apps-showcase { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .plan-popular { transform: none; }

  .steps-flow { flex-direction: column; }
  .step-arrow svg { transform: rotate(90deg); }
  .step-card { width: 100%; max-width: 300px; }

  .install-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .install-step-number {
    width: 48px;
    height: 48px;
  }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bot { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; letter-spacing: -2px; }
  .demo-body { padding: 16px; }
  .demo-stats { padding: 12px; gap: 4px; }
  .demo-stat-num { font-size: 15px; }
  .demo-stat-label { font-size: 9px; }
  .section-title { font-size: 28px; }
  .feature { padding: 24px; }
  .app-tile { padding: 24px 20px; }
  .review { padding: 24px; }
  .plan { padding: 28px 24px; }
  .intro-brand { font-size: 56px; letter-spacing: 8px; }

  .install-title { font-size: 32px; }
  .install-sub { font-size: 16px; }
  .install-step { padding: 20px; }
  .install-step-header h3 { font-size: 16px; }
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-intro {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.policy-section {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: 0.3s var(--ease);
}
.policy-section:hover {
  border-color: var(--stroke-2);
}

.policy-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.policy-icon {
  width: 24px;
  height: 24px;
  color: var(--lime);
  flex-shrink: 0;
}

.policy-section > p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-list li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.6;
}

.policy-list li strong {
  color: var(--text);
  font-weight: 600;
}

.policy-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .policy-intro,
  .policy-section {
    padding: 20px;
    border-radius: 16px;
  }
  .policy-heading {
    font-size: 16px;
    gap: 10px;
  }
  .policy-icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   DOWNLOAD PAGE
   ============================================ */
.download-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.download-orb-1 {
  width: 400px; height: 400px;
  background: var(--lime);
  opacity: 0.15;
  top: -100px; right: -100px;
}
.download-orb-2 {
  width: 300px; height: 300px;
  background: var(--purple);
  opacity: 0.1;
  bottom: -80px; left: -80px;
}
.download-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}
.download-header {
  margin-bottom: 40px;
}
.download-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 0 40px var(--lime-glow);
  margin: 0 auto 20px;
}
.download-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.download-tagline {
  font-size: 16px;
  color: var(--text-2);
}
.download-card {
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.download-info {
  flex: 1;
}
.download-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.download-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download-meta-label {
  font-size: 13px;
  color: var(--text-3);
}
.download-meta-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}
.download-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  margin-bottom: 12px;
}
.download-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}
.download-update-link {
  color: var(--lime);
  text-decoration: underline;
}
.download-qr {
  flex-shrink: 0;
}
.qr-placeholder {
  width: 100px;
  height: 100px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.qr-icon {
  width: 48px;
  height: 48px;
  color: var(--text-3);
}
.qr-text {
  font-size: 9px;
  color: var(--text-3);
}
.download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.download-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-2);
}
.download-feature svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
  flex-shrink: 0;
}

/* LEAD FORM MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 28px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--stroke-2); }
.modal-icon {
  width: 56px;
  height: 56px;
  background: var(--lime-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--lime);
}
.modal-card h3 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--lime);
}
.form-group input::placeholder { color: var(--text-3); }
.form-group select { cursor: pointer; }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 24px; font-size: 16px; font-weight: 700; border-radius: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: all 0.2s; }
.form-note {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
}

/* SETUP STEPS */
.setup-section {
  margin-top: 60px;
  text-align: center;
}
.setup-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--text), var(--text-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.setup-step {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.setup-step:hover { border-color: var(--lime); }
.setup-num {
  width: 36px;
  height: 36px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.setup-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.setup-content p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .download-card {
    flex-direction: column;
    padding: 24px;
  }
  .download-qr {
    display: none;
  }
  .download-title {
    font-size: 36px;
  }
}

/* ============================================
   VERSION TABS — help.html
   ============================================ */
.version-tabs {
  width: 100%;
}
.version-tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
}
.version-tab-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text-2);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.version-tab-btn:hover {
  background: var(--bg-3);
  color: var(--text);
}
.version-tab-btn.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}
.vt-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.vt-name {
  font-size: 14px;
  font-weight: 600;
}

.version-tab-panel {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}
.version-tab-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.vp-header {
  text-align: center;
  margin-bottom: 40px;
}
.vp-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 16px;
}
.vp-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.vp-desc {
  color: var(--text-2);
  font-size: 16px;
}

.checklist {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.checklist-item:hover {
  border-color: var(--lime);
  background: var(--elevated);
}
.check-num {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--lime);
  padding: 6px 12px;
  background: var(--lime-soft);
  border-radius: 8px;
  height: fit-content;
}
.check-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.check-content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.check-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  font-size: 13px;
}
.path-step {
  padding: 4px 10px;
  background: var(--bg-3);
  border: 1px solid var(--stroke);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}
.path-step.path-on {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
  font-weight: 700;
}
.path-step.path-off {
  background: rgba(255, 80, 80, 0.15);
  color: #FF6B6B;
  border-color: #FF6B6B;
  font-weight: 700;
}

.vp-changes {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 24px;
}
.change-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  border-left: 3px solid var(--lime);
}
.change-card.change-new {
  border-left-color: var(--lime);
}
.change-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--lime);
  color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 12px;
}
.change-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.change-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.vp-same {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: 14px;
}
.same-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.same-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.same-pill {
  padding: 6px 12px;
  background: var(--bg-3);
  border: 1px solid var(--stroke-2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-2);
}

@media (max-width: 640px) {
  .version-tab-btn {
    min-width: calc(50% - 8px);
  }
  .checklist-item {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .version-tab-nav {
    gap: 4px;
    padding: 4px;
  }
  .version-tab-btn {
    min-width: calc(50% - 4px);
    padding: 12px 8px;
  }
  .vt-name {
    font-size: 12px;
  }
  .check-path {
    font-size: 11px;
  }
  .path-step {
    font-size: 11px;
    padding: 3px 7px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 20px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 255, 0, 0.1);
}
.contact-card-popular {
  border-color: var(--lime);
  background: linear-gradient(135deg, var(--card) 0%, rgba(200, 255, 0, 0.04) 100%);
}
.contact-card-popular:hover {
  box-shadow: 0 12px 40px rgba(200, 255, 0, 0.2);
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--lime-soft);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime);
}
.contact-icon svg {
  width: 28px;
  height: 28px;
}
.contact-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 6px;
  word-break: break-all;
}
.contact-desc {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  flex: 1;
}
.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}
.contact-action svg {
  transition: transform 0.3s var(--ease);
}
.contact-card:hover .contact-action svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT FORM */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 24px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'JetBrains Mono', monospace;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B0B0B0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}
.contact-form .btn-lime {
  margin-top: 8px;
}
@media (max-width: 640px) {
  .contact-form {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* OFFICE HOURS */
.hours-card {
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--lime);
  opacity: 0.05;
  filter: blur(80px);
  pointer-events: none;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hours-block .eyebrow {
  margin-bottom: 12px;
}
.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 14px;
}
.hours-day {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  min-width: 100px;
  font-family: 'JetBrains Mono', monospace;
}
.hours-time {
  font-size: 14px;
  color: var(--text-2);
  flex: 1;
}
.hours-status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.hours-status.open {
  background: var(--lime-soft);
  color: var(--lime);
}
.hours-status.online {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}
@media (max-width: 768px) {
  .hours-card {
    padding: 24px;
  }
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hours-day {
    min-width: auto;
  }
  .hours-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
  }
}

/* SOCIAL */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 20px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.social-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}
.social-icon {
  width: 56px;
  height: 56px;
  background: var(--elevated);
  border: 1px solid var(--stroke-2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--lime);
  transition: all 0.3s var(--ease);
}
.social-icon svg {
  width: 28px;
  height: 28px;
}
.social-card:hover .social-icon {
  background: var(--lime-soft);
  border-color: var(--lime);
  transform: scale(1.05);
}
.social-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.social-handle {
  font-size: 13px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}
@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float-label {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9999;
  background: var(--card);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  pointer-events: none;
}
@media (max-width: 640px) {
.wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float-label { bottom: 78px; right: 16px; font-size: 12px; padding: 8px 12px; }
} /* end @media (max-width: 640px) */

/* ============================================
   BLOG SYSTEM (articles + index)
   ============================================ */
.blog-hero { min-height: 35vh; padding: 110px 0 48px; }
.hero-inner-center { text-align: center; }
.hero-inner-center .hero-text { max-width: 860px; margin: 0 auto; }
.hero-inner-center .hero-sub { margin-left: auto; margin-right: auto; }

/* Breadcrumbs (new .breadcrumbs + old .breadcrumb) */
.breadcrumbs, .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumbs a, .breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumbs a:hover, .breadcrumb a:hover { color: #C8FF00; }
.breadcrumbs span, .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* Article grid + sidebar */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 48px; margin-top: 8px; align-items: start; }

/* Article typography */
.article-body {
  max-width: 800px;
  min-width: 0;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
}
.article-body h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 52px 0 16px;
  padding-top: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  scroll-margin-top: 90px;
}
.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin: 32px 0 12px;
  line-height: 1.4;
  scroll-margin-top: 90px;
}
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #C8FF00; font-weight: 600; }
.article-body a { color: #C8FF00; text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { opacity: 0.8; }
.article-body blockquote {
  border-left: 3px solid #C8FF00;
  margin: 24px 0;
  padding: 16px 24px;
  background: rgba(200,255,0,0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.article-body img { max-width: 100%; border-radius: 12px; }

/* Article meta row */
.article-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Language switcher pills */
.lang-switch { font-size: 12px; margin-bottom: 24px; line-height: 2.4; }
.lang-switch a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 6px 6px 0;
  display: inline-block;
  white-space: nowrap;
}
.lang-switch a:hover { color: #C8FF00; border-color: rgba(200,255,0,0.4); }

/* TOC: top box (old pages) vs sticky sidebar (new pages) */
.toc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 0 0 40px;
}
.toc h2, .toc h4 {
  font-size: 14px;
  font-weight: 700;
  color: #C8FF00;
  margin: 0 0 16px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.toc ol { margin: 0; padding-left: 20px; list-style-type: decimal; }
.toc ul { margin: 0; padding: 0; list-style: none; }
.toc li { margin-bottom: 8px; font-size: 14px; line-height: 1.6; }
.toc ul li a {
  display: block;
  padding: 6px 0 6px 12px;
  border-left: 2px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: 0.2s;
}
.toc ul li a:hover { color: #C8FF00; border-left-color: #C8FF00; }
.toc ol a { color: rgba(255,255,255,0.7); text-decoration: none; }
.toc ol a:hover { color: #C8FF00; }
aside.toc { position: sticky; top: 90px; margin: 0; padding: 24px; max-height: calc(100vh - 120px); overflow-y: auto; }

/* Tip + highlight boxes */
.tip-box {
  background: rgba(200,255,0,0.06);
  border: 1px solid rgba(200,255,0,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.tip-box .tip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #C8FF00;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.highlight-box {
  background: linear-gradient(135deg, rgba(200,255,0,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(200,255,0,0.25);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 28px 0;
}
.highlight-box p { margin: 0; }
.highlight-box a { font-weight: 600; }

/* In-article CTA card */
.article-cta {
  text-align: center;
  margin: 40px 0;
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}
.article-cta h3 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.article-cta p { font-size: 15px; color: rgba(255,255,255,0.65); margin: 0 0 22px; }
.article-cta .btn-lime { display: inline-block; font-size: 15px; padding: 12px 32px; }

/* FAQ accordion (button + .open class, driven by main.js) */
.faq-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.faq-list .faq-item { margin: 0; padding: 0; }
.faq-item .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-item .faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--lime);
  transition: transform 0.3s var(--ease);
}
.faq-item.open { border-color: var(--lime); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-item .faq-answer > p { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item .faq-answer p { padding: 0 22px; margin: 0; font-size: 14px; color: var(--text-2); line-height: 1.7; }
.faq-item.open .faq-answer p { padding-bottom: 20px; }
/* Static FAQ (old pages: h3 + p, always visible) */
.faq-section { margin-top: 56px; }
.faq-section > h2 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 20px; }
.faq-item h3 { font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.faq-item > p:last-child { margin-bottom: 0; }

/* Related guides */
.article-body h2 + ul li, .related-list li { margin-bottom: 10px; }

/* Blog index grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.blog-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; transition: all 0.3s ease; }
.blog-card:hover { border-color: rgba(200,255,0,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.blog-card .card-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #C8FF00; letter-spacing: 1px; text-transform: uppercase; }
.blog-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin: 12px 0; line-height: 1.4; }
.blog-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0 0 20px; }
.blog-card .read-more { color: #C8FF00; font-weight: 600; font-size: 14px; text-decoration: none; }
.blog-card .read-more:hover { text-decoration: underline; }

/* Legacy class aliases (older articles) */
.article-container, .blog-article { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.blog-tag, .article-tag, .article-meta-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #C8FF00;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(200,255,0,0.3);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.toc-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 32px; margin: 0 0 40px; }
.toc-title, .tip-box-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.toc-title { color: #C8FF00; font-size: 14px; }
.tip-box-label { color: #C8FF00; }
.cta-meta { display: flex; gap: 12px; justify-content: center; align-items: center; font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 18px; flex-wrap: wrap; }
.cta-meta i { font-style: normal; opacity: 0.4; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  aside.toc { position: static; max-height: none; order: 2; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 22px; margin-top: 40px; }
  .article-body h3 { font-size: 18px; }
  .toc { padding: 20px; }
  .article-cta { padding: 28px 20px; }
  .blog-hero { padding: 90px 0 36px; }
}

/* ============================================
   LIVE DEMO (animated ride accept simulation)
   ============================================ */
.demo-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: center; }
.demo-points { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.demo-points li { font-size: 15px; color: rgba(255,255,255,0.75); }
.demo-tick { color: #C8FF00; font-weight: 800; margin-right: 10px; }
.demo-sound {
  display: inline-block;
  margin: 16px 0 0 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
}
.demo-sound:hover { border-color: rgba(200,255,0,0.4); color: #C8FF00; }
.demo-phone {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  background: #0b0e13;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 8px rgba(255,255,255,0.02);
}
.demo-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; background: #000; border-radius: 999px; z-index: 6; }
.demo-loader {
  position: absolute; inset: 0; z-index: 10;
  background: #0b0e13;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #C8FF00;
  transition: opacity 0.3s;
}
.demo-loader.hide { opacity: 0; pointer-events: none; }
.demo-spin { width: 34px; height: 34px; border-radius: 50%; border: 3px solid rgba(200,255,0,0.2); border-top-color: #C8FF00; animation: demoSpin 0.7s linear infinite; }
.demo-status { display: flex; justify-content: space-between; padding: 14px 22px 6px; font-size: 11px; color: rgba(255,255,255,0.7); font-family: 'JetBrains Mono', monospace; }
.demo-map { position: absolute; inset: 44px 0 56px; background: linear-gradient(160deg, #10151d 0%, #131a24 40%, #0e1420 100%); overflow: hidden; }
.demo-map::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(255,255,255,0.05) 46px 48px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.05) 60px 62px);
}
.demo-road { position: absolute; background: rgba(255,255,255,0.09); border-radius: 4px; }
.demo-road.r1 { width: 200%; height: 8px; top: 38%; left: -30%; transform: rotate(-18deg); }
.demo-road.r2 { width: 8px; height: 150%; top: -20%; left: 30%; transform: rotate(12deg); }
.demo-road.r3 { width: 200%; height: 5px; top: 68%; left: -30%; transform: rotate(8deg); }
.demo-pin { position: absolute; width: 14px; height: 14px; border-radius: 50%; border: 3px solid #fff; }
.demo-pin.pin-a { background: #C8FF00; top: 30%; left: 24%; box-shadow: 0 0 16px rgba(200,255,0,0.8); }
.demo-pin.pin-b { background: #ff5470; top: 62%; left: 66%; box-shadow: 0 0 16px rgba(255,84,112,0.8); }
.demo-armed {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  color: #C8FF00; background: rgba(0,0,0,0.65); border: 1px solid rgba(200,255,0,0.4);
  border-radius: 999px; padding: 6px 14px; white-space: nowrap;
}
.demo-rope-tag {
  position: absolute; top: 52px; left: 50%; transform: translateX(-50%) scale(0.8);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  color: #111; background: #C8FF00; border-radius: 999px; padding: 5px 12px;
  opacity: 0; transition: 0.3s; white-space: nowrap; z-index: 4;
}
.demo-rope-tag.show { opacity: 1; transform: translateX(-50%) scale(1); }
.demo-rope-tag.done { background: #16a34a; color: #fff; }
.demo-rope-tag.denied { background: #dc2626; color: #fff; }
.demo-check.fail { color: #b91c1c; background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.35); }
.demo-card {
  position: absolute; top: 56px; left: 12px; right: 12px;
  background: #fff; color: #111; border-radius: 20px; padding: 16px 16px 14px;
  transform: translateY(-130%); opacity: 0;
  transition: transform 0.25s cubic-bezier(0.2,0.9,0.25,1.1), opacity 0.2s;
  z-index: 5; overflow: hidden;
}
.demo-card.in { transform: translateY(0); opacity: 1; }
.demo-card.out { transform: translateY(-130%); opacity: 0; transition: transform 0.2s ease-in, opacity 0.15s; }
.demo-card-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #444; }
.demo-car { font-size: 18px; }
.demo-fare { font-size: 36px; font-weight: 900; letter-spacing: -1px; color: #111; margin: 2px 0 8px; }
.demo-fare span { color: #0a9b4d; }
.demo-route { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; position: relative; padding-left: 16px; }
.demo-route::before { content: ''; position: absolute; left: 4px; top: 8px; bottom: 8px; width: 2px; background: #ddd; }
.demo-stop { position: relative; }
.demo-stop::before { content: ''; position: absolute; left: -16px; top: 5px; width: 8px; height: 8px; border-radius: 50%; background: #111; }
.demo-stop.pick::before { background: #111; }
.demo-stop b { display: inline; font-size: 15px; color: #111; margin-right: 6px; }
.demo-stop span { font-size: 12px; color: #777; }
.demo-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #C8FF00, transparent);
  box-shadow: 0 0 12px #C8FF00; opacity: 0;
}
.demo-card.scan .demo-scan { opacity: 1; animation: demoScan 0.9s ease-in-out 2; }
@keyframes demoScan { 0% { top: 0; } 50% { top: 100%; } 100% { top: 0; } }
.demo-checks { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 10px; min-height: 0; }
.demo-check {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: #0a7a3d;
  background: rgba(20,180,90,0.12); border: 1px solid rgba(20,180,90,0.35);
  border-radius: 8px; padding: 6px 10px;
  opacity: 0; transform: translateX(-8px); transition: 0.3s;
}
.demo-check.show { opacity: 1; transform: none; }
.demo-accept-row { display: flex; align-items: center; gap: 10px; }
.demo-timer {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 4px solid #e5e5e5; border-top-color: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #111;
  animation: demoSpin 1s linear infinite;
}
@keyframes demoSpin { to { transform: rotate(360deg); } }
.demo-accept {
  flex: 1; border: none; cursor: default;
  background: #FFC400; color: #111; font-size: 17px; font-weight: 800;
  border-radius: 14px; padding: 13px; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.demo-accept.tapped { background: #16a34a; color: #fff; }
.demo-accept.rejected { background: #dc2626; color: #fff; }
.demo-ripple {
  position: absolute; bottom: 34px; left: 50%; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(255,255,255,0.7);
  transform: translate(-50%,-50%) scale(0); opacity: 0; pointer-events: none;
}
.demo-ripple.go { animation: demoRipple 0.6s ease-out; }
@keyframes demoRipple { 0% { transform: translate(-50%,-50%) scale(0); opacity: 0.9; } 100% { transform: translate(-50%,-50%) scale(9); opacity: 0; } }
.demo-toast {
  position: absolute; left: 12px; right: 12px; bottom: 66px; z-index: 6;
  background: rgba(10,14,10,0.92); border: 1px solid rgba(200,255,0,0.5); color: #C8FF00;
  font-size: 13px; font-weight: 700; text-align: center; border-radius: 12px; padding: 10px;
  transform: translateY(16px); opacity: 0; transition: 0.4s;
}
.demo-toast.show { transform: none; opacity: 1; }
.demo-online {
  position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  background: rgba(11,14,19,0.95); border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: #fff;
}
/* Intro loader phone (same ride animation, plays once on site load) */
.intro .intro-brand { font-size: 44px; letter-spacing: 10px; margin-bottom: 12px; }
.intro-phone-demo { width: min(300px, 86vw); height: min(600px, 74vh); }
@media (max-width: 900px) {
  .demo-wrap { grid-template-columns: 1fr; gap: 40px; }
  .demo-copy { text-align: center; }
  .demo-points { align-items: center; }
}
