

:root {
  --bg-0: #050505;
  --bg-1: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1f1f1f;
  --fg-0: #ffffff;
  --fg-1: rgba(255, 255, 255, 0.85);
  --fg-2: rgba(255, 255, 255, 0.55);
  --fg-3: rgba(255, 255, 255, 0.35);
  
  --neon-cyan: #00E5FF;
  --neon-cyan-soft: rgba(0, 229, 255, 0.15);
  --neon-cyan-glow: rgba(0, 229, 255, 0.45);
  --neon-pink: #FF2D92;
  --neon-pink-soft: rgba(255, 45, 146, 0.15);
  --neon-pink-glow: rgba(255, 45, 146, 0.45);
  --accent: #FF6B35;
  --accent-soft: rgba(255, 107, 53, 0.15);
  --accent-glow: rgba(255, 107, 53, 0.45);
  --gold: #FFC107;
  --border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max-width: 1200px;
  --t-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --t-mid: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; color: inherit; font: inherit; }

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(5, 5, 5, 0.6);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 15px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.logo-icon { font-size: 18px; filter: drop-shadow(0 0 8px var(--accent-glow)); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 500;
}
.nav-links a:hover { color: var(--fg-0); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  
  top: -15%; left: 0; right: 0; bottom: -15%;
  
  background: url('/landing/hero.jpg?v=2') center 42% / cover no-repeat;
  filter: saturate(1.15) contrast(1.05) brightness(0.85);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,5,5,0.35) 0%,
      rgba(5,5,5,0.15) 30%,
      rgba(5,5,5,0.55) 78%,
      rgba(5,5,5,0.95) 100%),
    linear-gradient(90deg,
      rgba(5,5,5,0.78) 0%,
      rgba(5,5,5,0.35) 42%,
      transparent 75%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 35% 50%,
      transparent 55%,
      rgba(5,5,5,0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.4s; }
.hero-title .word:nth-child(4) { animation-delay: 0.55s; }
.hero-title .word:nth-child(5) { animation-delay: 0.7s; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all var(--t-fast);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--fg-0);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--fg-3);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--fg-3);
  border-radius: 12px;
  position: relative;
}
.wheel {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--fg-2);
  border-radius: 2px;
  animation: wheelMove 1.8s infinite;
}
@keyframes wheelMove {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

.phone-mockup {
  width: 280px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #1f1f1f, #0a0a0a);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 40px 120px rgba(255, 107, 53, 0.15);
  position: relative;
  margin: 0 auto;
}
.phone-mockup::before {
  
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-2);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.screen-content {
  width: 100%; height: 100%;
  position: relative;
  padding: 50px 12px 12px;
}

.phone-hero {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  transition: transform var(--t-slow);
  z-index: 1;
}
.phone-hero:hover { transform: translateY(-50%) rotate(0deg); }

@media (max-width: 900px) {
  .phone-hero { display: none; }
}

.screen-map {
  background: linear-gradient(180deg, #1a2540 0%, #0a1530 100%);
}
.dark-map {
  background: radial-gradient(ellipse at center, #1a2540 0%, #050a18 100%);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 130, 200, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 130, 200, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute;
  width: 32px; height: 32px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border: 2px solid var(--fg-0);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.map-pin-1 { top: 30%; left: 20%; animation: pinFloat 3s infinite; }
.map-pin-2 { top: 50%; right: 25%; animation: pinFloat 3s 0.5s infinite; }
.map-pin-3 { top: 65%; left: 35%; animation: pinFloat 3s 1s infinite; }
.map-pin-4.me {
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
@keyframes pinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.driver-marker {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--fg-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.driver-marker.me, .driver-marker.me-marker {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  z-index: 2;
}
.driver-1 { top: 25%; left: 25%; }
.driver-2 { top: 60%; left: 65%; }
.driver-3 { top: 45%; left: 45%; }
.driver-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--fg-2);
  animation: ring 2s infinite;
}
.driver-glow-accent {
  border-color: var(--accent);
}
@keyframes ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.driver-marker.convoy {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.3);
}
.convoy-pos {
  transform: translate(-50%, -50%);
}
.convoy-pos.me-marker {
  z-index: 3;
}
.convoy-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cv-line {
  animation: cvFlow 1.4s linear infinite;
}
@keyframes cvFlow {
  to { stroke-dashoffset: -6; }
}

.cv-drift1 { animation: cvDrift1 5s ease-in-out infinite; }
.cv-drift2 { animation: cvDrift2 6s ease-in-out infinite; }
.cv-drift3 { animation: cvDrift3 5.5s ease-in-out infinite; }
@keyframes cvDrift1 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(calc(-50% + 6px), calc(-50% - 5px)); }
}
@keyframes cvDrift2 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(calc(-50% - 7px), calc(-50% + 4px)); }
}
@keyframes cvDrift3 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(calc(-50% + 5px), calc(-50% + 7px)); }
}

.cv-mepulse {
  animation: cvMePulse 2.5s ease-in-out infinite;
}
@keyframes cvMePulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 107, 53, 0.85);
  }
}

.speedometer {
  position: absolute;
  left: 14px; bottom: 18px;
  width: 58px; height: 58px;
  background: rgba(26, 26, 26, 0.95);
  border: 1.5px solid var(--accent-glow);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.2);
}
.speed-value { font-size: 20px; font-weight: 700; color: #fff; line-height: 1; }
.speed-unit { font-size: 8px; color: var(--fg-3); letter-spacing: 0.5px; margin-top: 2px; }

.spot-marker {
  position: absolute;
  top: 32%; left: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.spot-2 { top: 14%; left: 24%; transform: translate(-50%, -50%); z-index: 2; }
.spot-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ring 2.5s infinite;
}
.spot-ring-2 {
  inset: -16px;
  animation: ring 2.5s 1.25s infinite;
}
.spot-pill {
  background: rgba(26, 26, 26, 0.95);
  border: 1.5px solid var(--accent-glow);
  border-radius: 14px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.spot-pill.scheduled {
  border-color: #9C6BFF;
  box-shadow: 0 0 12px rgba(156, 107, 255, 0.4);
}

.spot-driver {
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--fg-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  z-index: 1;
}
.sd-1 { top: 18%; left: 28%; animation: driftToSpot1 4s ease-in-out infinite; }
.sd-2 { top: 44%; left: 78%; animation: driftToSpot2 4s ease-in-out infinite; }
.sd-3 { top: 52%; left: 34%; animation: driftToSpot3 4s ease-in-out infinite; }
@keyframes driftToSpot1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, 10px); }
}
@keyframes driftToSpot2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -6px); }
}
@keyframes driftToSpot3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -12px); }
}

.spot-sheet {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: rgba(20, 20, 20, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(12px);
  z-index: 3;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.spot-sheet-header {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 10px;
}
.spot-sheet-title {
  font-size: 13px; font-weight: 700; color: #fff;
}
.spot-sheet-meta {
  font-size: 10px; color: var(--accent); font-weight: 600;
}
.spot-sheet-avatars {
  display: flex; margin-bottom: 10px;
}
.spot-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 2px solid var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-left: -8px;
}
.spot-av:first-child { margin-left: 0; }
.spot-sheet-photos {
  display: flex; gap: 6px;
}
.spot-photo {
  flex: 1;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--bg-3);
  background-size: cover;
  background-position: center;
}
.spot-photo-1 {
  background-image: url('/landing/spot-1.jpg?v=1');
}
.spot-photo-2 {
  background-image: url('/landing/spot-2.jpg?v=1');
}
.spot-photo-add {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border: 1px dashed var(--accent-glow);
  color: var(--accent);
  font-size: 18px; font-weight: 300;
}

.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 107, 53, 0.35) 0deg,
    rgba(255, 107, 53, 0.12) 30deg,
    transparent 70deg,
    transparent 360deg
  );
  animation: radarSpin 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes radarSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.alert-marker {
  position: absolute;
  font-size: 28px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.alert-radar {
  top: 30%; left: 25%;
  animation: alertAppear1 8s infinite;
}
.alert-police {
  top: 55%; right: 25%;
  animation: alertAppear2 8s infinite;
}
@keyframes alertAppear1 {
  0%, 12% { opacity: 0; transform: scale(0.3); }
  18%, 88% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(0.3); }
}
@keyframes alertAppear2 {
  0%, 32% { opacity: 0; transform: scale(0.3); }
  38%, 88% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(0.3); }
}

.proximity-bar {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: rgba(255, 107, 53, 0.95);
  border-radius: 12px;
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  z-index: 3;
  animation: proxBarLoop 8s infinite;
}
@keyframes proxBarLoop {
  0%, 45% { opacity: 0; transform: translateY(12px); }
  52%, 88% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; transform: translateY(12px); }
}

.prox-dist {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 1.1em;
  vertical-align: top;
}
.prox-dist .d {
  position: absolute;
  left: 0; right: 0; top: 0;
  text-align: center;
  opacity: 0;
}
.prox-dist .d1 { animation: dStep 8s infinite; }
.prox-dist .d2 { animation: dStep 8s infinite; animation-delay: -7.1s; }
.prox-dist .d3 { animation: dStep 8s infinite; animation-delay: -6.2s; }
.prox-dist .d4 { animation: dStep 8s infinite; animation-delay: -5.3s; }
@keyframes dStep {
  
  0%, 0.01% { opacity: 1; }
  11%, 100% { opacity: 0; }
}
.prox-actions { display: flex; gap: 3px; flex-shrink: 0; }
.prox-btn {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 9px;
}
.prox-btn.yes { background: rgba(0, 200, 80, 0.8); }
.prox-btn.no { background: rgba(0, 0, 0, 0.4); }

.convoy-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.screen-profile {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.profile-hero {
  position: relative;
  width: 100%;
  height: 132px;
  overflow: hidden;
  flex-shrink: 0;
}
.profile-hero-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.phi-1 {
  background: url('/landing/car-1.jpg') center 60% / cover no-repeat;
  animation: heroSwap 9s infinite;
}
.phi-2 {
  background: url('/landing/car-2.jpg') center 58% / cover no-repeat;
  animation: heroSwap 9s 3s infinite;
}
.phi-3 {
  background: url('/landing/car-3.jpg') center 62% / cover no-repeat;
  animation: heroSwap 9s 6s infinite;
}
@keyframes heroSwap {
  0%, 1% { opacity: 1; }
  30%, 100% { opacity: 0; }
}

.profile-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.profile-name {
  font-size: 16px; font-weight: 700; color: #fff;
}
.profile-sub {
  font-size: 11px; color: var(--fg-2); margin-top: 2px;
}
.profile-ig {
  font-size: 11px; color: var(--neon-pink); font-weight: 600; margin-top: 5px;
  display: flex; align-items: center; gap: 5px;
}
.ig-icon {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

.profile-gallery {
  display: flex; gap: 6px;
  margin-top: 12px;
}
.profile-thumb {
  flex: 1;
  height: 46px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  box-sizing: border-box;
}
.pt-1 {
  background: url('/landing/car-1.jpg') center 60% / cover no-repeat;
  animation: thumbActive 9s infinite;
}
.pt-2 {
  background: url('/landing/car-2.jpg') center 58% / cover no-repeat;
  animation: thumbActive 9s 3s infinite;
}
.pt-3 {
  background: url('/landing/car-3.jpg') center 62% / cover no-repeat;
  animation: thumbActive 9s 6s infinite;
}
@keyframes thumbActive {
  0%, 1% { border-color: var(--accent); }
  30%, 100% { border-color: transparent; }
}

.profile-spec {
  display: flex; gap: 6px;
  margin: 12px 0;
}
.spec-item {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 2px;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  overflow: hidden;
}
.spec-item b {
  font-size: 9px; color: #fff; font-weight: 700;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spec-item span {
  font-size: 7px; color: var(--fg-3);
  text-transform: uppercase; letter-spacing: 0.3px;
  white-space: nowrap;
}
.profile-actions {
  display: flex; gap: 8px;
}
.profile-btn {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 6px;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
}
.profile-btn-wave {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
  animation: waveGlow 2.4s ease-in-out infinite;
}
@keyframes waveGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35); }
  50% { box-shadow: 0 4px 22px rgba(255, 107, 53, 0.65); }
}
.profile-btn-dm {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg-1);
  border: 1px solid var(--border);
}

.feature {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.feature:nth-child(even) {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}

.feature-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-content.reverse {
  direction: rtl;
}
.feature-content.reverse > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .feature { padding: 80px 24px; }
  .feature-content,
  .feature-content.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }
}

.feature-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-text h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg-0);
}
.feature-text h2 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, #FFA070 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-1 .feature-eyebrow, .feature-3 .feature-eyebrow,
.feature-poi .feature-eyebrow {
  color: var(--neon-cyan);
}
.feature-1 .feature-text h2 .accent,
.feature-3 .feature-text h2 .accent,
.feature-poi .feature-text h2 .accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #80F0FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-1 .check, .feature-3 .check, .feature-poi .check {
  background: var(--neon-cyan-soft);
  border-color: var(--neon-cyan-glow);
  color: var(--neon-cyan);
}

.feature-5 .feature-eyebrow {
  color: var(--neon-pink);
}
.feature-5 .feature-text h2 .accent {
  background: linear-gradient(135deg, var(--neon-pink) 0%, #FF80B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-5 .check {
  background: var(--neon-pink-soft);
  border-color: var(--neon-pink-glow);
  color: var(--neon-pink);
}

.feature-text p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--fg-2);
  margin-bottom: 16px;
  max-width: 500px;
}
.feature-list {
  list-style: none;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--fg-1);
}
.check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-visual {
  display: flex; justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.japfest {
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.japfest-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 60%);
}
.japfest-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.japfest-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 28px;
}
.star { font-size: 14px; }

.japfest-title {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.japfest-text {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 auto 48px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 28px;
  min-width: 180px;
  cursor: default;
}
.store-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}
.store-small {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.3px;
}
.store-big {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.store-badge-live {
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 107, 53, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.store-badge-live:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 107, 53, 0.4);
}

.community {
  padding: 120px 24px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.community-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.community-inner .feature-eyebrow {
  margin-bottom: 16px;
}
.community-bulb {
  position: relative;
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.community-bulb::before {
  content: '';
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(10px);
  animation: bulbGlow 3s ease-in-out infinite;
}
.community-bulb span {
  position: relative;
  filter: drop-shadow(0 0 18px var(--gold));
  animation: bulbFloat 3s ease-in-out infinite;
}
@keyframes bulbGlow {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
@keyframes bulbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.community-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg-0);
}
.community-inner h2 .accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.community-inner p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--fg-2);
  margin-bottom: 32px;
}

.closer {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  position: relative;
  overflow: hidden;
}
.closer::before, .closer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
}
.closer::before {
  width: 400px; height: 400px;
  background: var(--neon-cyan);
  top: -100px; left: -80px;
}
.closer::after {
  width: 400px; height: 400px;
  background: var(--neon-pink);
  bottom: -100px; right: -80px;
}
.closer-inner {
  position: relative;
  max-width: 900px; margin: 0 auto;
}
.closer-line {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg-1);
}
.closer-line.accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-inner {
  max-width: 640px;
  margin: 0 auto;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-tagline {
  color: var(--fg-2);
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13px;
}
.footer-links a { color: var(--fg-2); }
.footer-links a:hover { color: var(--fg-0); }
.dot { color: var(--fg-3); }
.footer-copy {
  font-size: 12px;
  color: var(--fg-3);
}

.poi-marker {
  position: absolute;
  width: 30px; height: 30px;
  background: rgba(26, 26, 26, 0.9);
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}
@keyframes poiPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 229, 255, 0.2); }
  50% { box-shadow: 0 0 24px rgba(0, 229, 255, 0.45); }
}

.poi-fuel {
  animation: poiPulse 3s infinite, poiFuelLayer 8s infinite;
}
.poi-ev {
  animation: poiPulse 3s infinite, poiEvLayer 8s infinite;
}
.poi-wash {
  animation: poiPulse 3s infinite, poiWashLayer 8s infinite;
}
.poi-track {
  animation: poiPulse 3s infinite;
}
@keyframes poiFuelLayer {
  
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  3% { transform: translate(-50%, -50%) scale(0.7); }
  6% { transform: translate(-50%, -50%) scale(1); }
}
@keyframes poiEvLayer {
  
  0%, 47% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  52%, 95% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes poiWashLayer {
  
  0%, 47% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  52%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.sct-zone {
  position: absolute;
  top: 8%; right: -10%;
  width: 60%; height: 45%;
  background:
    radial-gradient(ellipse at center,
      rgba(0, 200, 80, 0.18) 0%,
      rgba(0, 200, 80, 0.06) 70%,
      transparent 100%);
  border: 1.5px dashed rgba(0, 200, 80, 0.4);
  border-radius: 40% 30% 35% 45%;
  animation: sctPulse 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes sctPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.sct-badge {
  position: absolute;
  top: 14px; left: 12px;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(0, 200, 80, 0.6);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 200, 80, 0.25);
  z-index: 3;
  white-space: nowrap;
}

.sct-dist {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 1.1em;
  vertical-align: top;
}
.sct-dist .sd {
  position: absolute;
  left: 0; right: 0; top: 0;
  text-align: center;
  opacity: 0;
}
.sct-dist .sd1 { animation: sdStep 6s infinite; }
.sct-dist .sd2 { animation: sdStep 6s infinite; animation-delay: -4s; }
.sct-dist .sd3 { animation: sdStep 6s infinite; animation-delay: -2s; }
@keyframes sdStep {
  0%, 0.01% { opacity: 1; }
  33%, 100% { opacity: 0; }
}

.poi-toggle {
  position: absolute;
  bottom: 14px; left: 12px; right: 12px;
  display: flex; gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
}
.toggle-pill {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 9px;
  border-radius: 100px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: all 0.3s ease;
}
.toggle-pill.active {
  background: rgba(0, 229, 255, 0.18);
  border-color: rgba(0, 229, 255, 0.5);
  color: #fff;
}

.tp-fuel { animation: tpFuel 8s infinite; }
.tp-ev { animation: tpEv 8s infinite; }
.tp-wash { animation: tpWash 8s infinite; }
@keyframes tpFuel {
  0%, 100% {
    background: rgba(0, 229, 255, 0.18);
    border-color: rgba(0, 229, 255, 0.5);
    color: #fff;
  }
}
@keyframes tpEv {
  0%, 47% {
    background: rgba(0, 229, 255, 0.18);
    border-color: rgba(0, 229, 255, 0.5);
    color: #fff;
  }
  52%, 100% {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
  }
}
@keyframes tpWash {
  0%, 47% {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
  }
  52%, 100% {
    background: rgba(0, 229, 255, 0.18);
    border-color: rgba(0, 229, 255, 0.5);
    color: #fff;
  }
}

.speedometer-mini {
  position: absolute;
  
  left: 12px; bottom: 60px;
  width: 52px; height: 52px;
  background: rgba(26, 26, 26, 0.95);
  border: 1.5px solid rgba(255, 107, 53, 0.5);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(255, 107, 53, 0.25);
}
.speedometer-mini .speed-value {
  font-size: 18px; font-weight: 700; color: #fff; line-height: 1;
}
.speedometer-mini .speed-unit {
  font-size: 8px; color: var(--fg-3);
  letter-spacing: 0.5px; margin-top: 2px;
}

.phone-bottombar {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
}
.phone-globe {
  width: 38px; height: 38px;
  background: rgba(26, 26, 26, 0.95);
  border: 1.5px solid rgba(0, 200, 80, 0.7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 12px rgba(0, 200, 80, 0.3);
  flex-shrink: 0;
  position: relative;
  animation: globeFrame 10s infinite;
}
.globe-icon {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.globe-public { animation: globeIconPub 10s infinite; }
.globe-private { animation: globeIconPriv 10s infinite; }

@keyframes globeFrame {
  0%, 49%, 96%, 100% {
    border-color: rgba(0, 200, 80, 0.7);
    box-shadow: 0 0 12px rgba(0, 200, 80, 0.3);
  }
  52%, 93% {
    border-color: rgba(255, 193, 7, 0.7);
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.4);
  }
  
  50% { transform: scale(0.88); }
  53% { transform: scale(1); }
}
@keyframes globeIconPub {
  0%, 49%, 96%, 100% { opacity: 1; }
  52%, 93% { opacity: 0; }
}
@keyframes globeIconPriv {
  0%, 49%, 96%, 100% { opacity: 0; }
  52%, 93% { opacity: 1; }
}

.phone-golive {
  flex: 1;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 11px 12px;
  border-radius: 100px;
  text-align: center;
  box-shadow:
    0 4px 16px rgba(255, 107, 53, 0.4),
    0 0 32px rgba(255, 107, 53, 0.25);
  animation: goliveLoop 10s infinite;
}
@keyframes goliveLoop {
  
  0%, 4%, 12%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4), 0 0 32px rgba(255, 107, 53, 0.25);
  }
  7% {
    transform: scale(0.92);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.6), 0 0 48px rgba(255, 107, 53, 0.5);
  }
}

.phone-toast {
  position: absolute;
  top: 60px; left: 16px; right: 16px;
  background: rgba(26, 26, 26, 0.96);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 11px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid;
  backdrop-filter: blur(8px);
  opacity: 0;
  z-index: 4;
}
.toast-public {
  border-color: rgba(0, 200, 80, 0.6);
  box-shadow: 0 4px 16px rgba(0, 200, 80, 0.25);
  animation: toastPub 10s infinite;
}
@keyframes toastPub {
  0%, 8%, 40%, 100% { opacity: 0; transform: translateY(-8px); }
  12%, 35% { opacity: 1; transform: translateY(0); }
}
.toast-private {
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.25);
  animation: toastPriv 10s infinite;
}
@keyframes toastPriv {
  0%, 55%, 90%, 100% { opacity: 0; transform: translateY(-8px); }
  60%, 85% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .feature { padding: 60px 20px; }
  .phone-mockup { width: 240px; }
}
