/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg2: #111318;
  --bg3: #1a1d24;
  --border: rgba(255,255,255,0.08);
  --text: #e8eaf0;
  --muted: #7a7f8e;
  --accent: #4f8ef7;
  --accent2: #3a6fd4;
  --pill-bg: rgba(79,142,247,0.12);
  --radius: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout helpers ───────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Nav ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-links .external::after {
  content: ' ↗';
  font-size: 11px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79,142,247,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(79,142,247,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* animated dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  animation: grid-fade 8s ease-in-out infinite alternate;
}

@keyframes grid-fade {
  from { opacity: 0.4; }
  to   { opacity: 0.7; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--pill-bg);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  color: #fff;
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg { opacity: 0.5; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── Section Labels ───────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Products Grid ────────────────────────────────── */
#products { background: var(--bg); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: rgba(79,142,247,0.4);
  transform: translateY(-2px);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--pill-bg);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.product-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #fff;
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
}

.pill svg { color: var(--accent); flex-shrink: 0; }

.product-mockup {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.mockup-placeholder svg { opacity: 0.3; }

/* ── Deep-Dive Rows ───────────────────────────────── */
.deep-dive { background: var(--bg2); }

.deep-dive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.deep-dive-row:last-child { border-bottom: none; }
.deep-dive-row.flip { direction: rtl; }
.deep-dive-row.flip > * { direction: ltr; }

.deep-dive-visual {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deep-dive-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  padding: 40px;
  text-align: center;
}

.visual-placeholder svg { opacity: 0.25; }

.deep-dive-text .section-title { font-size: 1.7rem; margin-bottom: 14px; }

.deep-dive-text p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── About ────────────────────────────────────────── */
#about { background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: gap 0.2s;
}

.about-link:hover { gap: 10px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { font-size: 18px; margin-bottom: 12px; }

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* ── Products Intro ───────────────────────────────── */
.products-intro { padding-bottom: 0; }

/* ── Product Split Sections ───────────────────────── */
.product-split-section { padding: 80px 0; overflow: hidden; }
.product-split-section--alt { background: var(--bg2); }

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-content { display: flex; flex-direction: column; }

.split-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--pill-bg);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 22px;
  width: fit-content;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.split-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.split-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.split-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.split-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pill-bg);
  border: 1px solid rgba(79,142,247,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
}

/* ── Browser Frame ─────────────────────────────────── */
.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-frame {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
  background: #1e2128;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 100px rgba(0,0,0,0.65),
    0 8px 24px rgba(0,0,0,0.4);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.product-split--flip .browser-frame {
  transform: perspective(1400px) rotateY(7deg) rotateX(2deg);
}

.browser-frame:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0.5deg) !important; }
.product-split--flip .browser-frame:hover { transform: perspective(1400px) rotateY(2deg) rotateX(0.5deg) !important; }

.browser-chrome {
  background: #16181d;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bc-dots { display: flex; gap: 5px; flex-shrink: 0; }
.bc-dot { width: 10px; height: 10px; border-radius: 50%; }
.bc-dot--red    { background: #ff5f56; }
.bc-dot--yellow { background: #ffbd2e; }
.bc-dot--green  { background: #27c93f; }

.bc-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── App Shell ─────────────────────────────────────── */
.app-shell { background: #F7F8FB; display: flex; flex-direction: column; }

.app-topbar {
  height: 40px;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 16px;
  flex-shrink: 0;
}

.app-brand { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.app-brand-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, #00C8FF, #8A2BE2);
}

.app-brand-name { font-size: 11px; font-weight: 700; color: #0A0A0A; letter-spacing: -0.3px; font-family: var(--font); }
.app-brand-name b { font-weight: 800; }

.app-topnav { display: flex; gap: 2px; }
.app-topnav-item { font-size: 9.5px; font-weight: 500; color: #6B7280; padding: 4px 8px; border-radius: 5px; font-family: var(--font); }
.app-topnav-item--active { background: #EEF0FB; color: #0A0A0A; font-weight: 600; }
.app-topnav-item--live { color: #22C55E; font-weight: 700; }

.app-body { display: flex; flex: 1; min-height: 300px; }

.app-sidebar {
  width: 44px;
  background: #fff;
  border-right: 1px solid #F0F1F5;
  flex-shrink: 0;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.app-sidebar-item {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
}

.app-sidebar-item--active {
  background: linear-gradient(135deg, rgba(0,200,255,0.15), rgba(138,43,226,0.15));
  color: #8A2BE2;
}

.app-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }

/* Stat strip */
.app-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }

.app-stat {
  background: #fff;
  border-radius: 9px;
  padding: 9px 8px;
  box-shadow: 0 1px 3px rgba(17,24,39,0.06);
  position: relative;
  overflow: hidden;
}

.app-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00C8FF, #8A2BE2);
}

.app-stat-val { font-size: 15px; font-weight: 800; color: #0A0A0A; line-height: 1; margin-bottom: 3px; font-family: var(--font); }
.app-stat-lbl { font-size: 7.5px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font); }
.app-stat-sub { font-size: 7px; color: #9CA3AF; margin-top: 2px; font-family: var(--font); }
.app-stat--alert .app-stat-val { color: #DC2626; }
.app-stat--online .app-stat-val { color: #10B981; }

/* Map area */
.app-map {
  flex: 1;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background-color: #e8e4db;
  background-image:
    linear-gradient(rgba(255,255,255,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.45) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px, 9px 9px, 9px 9px;
  min-height: 130px;
}

.map-road-h { position: absolute; height: 5px; background: rgba(255,255,255,0.75); border-radius: 3px; }
.map-road-v { position: absolute; width: 5px; background: rgba(255,255,255,0.75); border-radius: 3px; }

.map-vehicle {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #00C8FF;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(0,200,255,0.25), 0 2px 4px rgba(0,0,0,0.2);
  transform: translate(-50%,-50%);
}

.map-vehicle--amber { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.25), 0 2px 4px rgba(0,0,0,0.2); }
.map-vehicle--offline { background: #9CA3AF; box-shadow: 0 0 0 3px rgba(156,163,175,0.25), 0 2px 4px rgba(0,0,0,0.2); }

.map-geofence {
  position: absolute;
  border: 2px dashed rgba(138,43,226,0.5);
  background: rgba(138,43,226,0.07);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.map-overlay-card {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 7px 9px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-width: 96px;
}

.moc-row { display: flex; align-items: center; gap: 5px; padding: 2px 0; }
.moc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.moc-label { font-size: 8px; font-weight: 600; color: #0A0A0A; font-family: var(--font); flex: 1; }
.moc-badge { font-size: 7px; font-weight: 700; color: #6B7280; background: #F3F4F6; border-radius: 3px; padding: 1px 4px; font-family: var(--font); }

/* ── myRoutes Gantt Dispatch View ──────────────────── */
.gantt-planbar {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.gantt-breadcrumb { display: flex; align-items: center; gap: 4px; }
.gantt-bc-dim { font-size: 7.5px; font-weight: 600; color: #9CA3AF; font-family: var(--font); text-transform: uppercase; letter-spacing: 0.05em; }
.gantt-bc-sep { font-size: 7.5px; color: #D1D5DB; }
.gantt-bc-title { font-size: 9px; font-weight: 800; color: #0A0A0A; font-family: var(--font); }

.gantt-actions { display: flex; gap: 4px; }
.gantt-btn { font-size: 7px; font-weight: 700; border-radius: 100px; padding: 3px 7px; font-family: var(--font); white-space: nowrap; }
.gantt-btn--blue   { background: linear-gradient(135deg,#00C8FF,#8A2BE2); color: #fff; }
.gantt-btn--green  { background: #10B981; color: #fff; }
.gantt-btn--yellow { background: #F59E0B; color: #fff; }

.gantt-body { display: flex; flex: 1; overflow: hidden; min-height: 260px; }

/* Fleet sidebar */
.gantt-fleet {
  width: 130px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #F0F1F5;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.gantt-fleet-label { font-size: 7.5px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.07em; font-family: var(--font); }
.gantt-fleet-count { font-weight: 400; }

.gantt-fleet-tabs { display: flex; gap: 3px; }
.gftab { font-size: 7.5px; font-weight: 600; padding: 2px 7px; border-radius: 4px; color: #6B7280; font-family: var(--font); background: #F3F4F6; }
.gftab--active { background: linear-gradient(135deg,rgba(0,200,255,0.15),rgba(138,43,226,0.15)); color: #8A2BE2; }

.gantt-vehicle {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 6px 5px;
  border-radius: 6px;
  background: #F9FAFB;
  border: 1px solid #F0F1F5;
}

.gantt-vehicle--dim { opacity: 0.45; }
.gv-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.gv-text { flex: 1; min-width: 0; }
.gv-reg { font-size: 8.5px; font-weight: 700; color: #0A0A0A; font-family: var(--font); }
.gv-sub { font-size: 7px; color: #6B7280; font-family: var(--font); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gv-badge { font-size: 6.5px; font-weight: 700; background: linear-gradient(135deg,rgba(0,200,255,0.12),rgba(138,43,226,0.12)); color: #8A2BE2; border-radius: 3px; padding: 1px 4px; white-space: nowrap; flex-shrink: 0; font-family: var(--font); }

/* Timeline */
.gantt-timeline {
  flex: 1;
  background: #F7F8FB;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid #F0F1F5;
}

.gantt-time-header {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  background: #fff;
  padding: 5px 0;
  flex-shrink: 0;
}

.gantt-time-header span {
  flex: 1;
  text-align: center;
  font-size: 7px;
  font-weight: 600;
  color: #9CA3AF;
  font-family: var(--font);
}

.gantt-track-area {
  flex: 1;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

/* subtle hour grid lines */
.gantt-track-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(20% - 1px),
    #E5E7EB calc(20% - 1px),
    #E5E7EB 20%
  );
  pointer-events: none;
  opacity: 0.5;
}

.gantt-track { padding: 0 6px; position: relative; z-index: 1; }
.gantt-track--empty { opacity: 0.3; }

.gantt-bar {
  background: #16a34a;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 7.5px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 68%;
  box-shadow: 0 1px 3px rgba(22,163,74,0.3);
}

/* Trip details panel */
.gantt-detail {
  width: 185px;
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid #F0F1F5;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.gd-header {
  padding: 8px 10px 6px;
  border-bottom: 1px solid #F0F1F5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.gd-trip-id { font-size: 8.5px; font-weight: 800; color: #0A0A0A; font-family: var(--font); }
.gd-trip-meta { font-size: 7px; color: #6B7280; margin-top: 1px; font-family: var(--font); }
.gd-close { font-size: 8px; color: #9CA3AF; cursor: pointer; flex-shrink: 0; }

.gd-weight-bar {
  margin: 6px 10px 4px;
  background: linear-gradient(135deg,rgba(0,200,255,0.08),rgba(138,43,226,0.08));
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 7px;
  font-weight: 600;
  color: #6B7280;
  font-family: var(--font);
  flex-shrink: 0;
}

.gd-stops-label {
  padding: 4px 10px 3px;
  font-size: 7px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font);
  flex-shrink: 0;
}

.gd-stop {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 5px 10px;
  border-bottom: 1px solid #F9FAFB;
}

.gd-num {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8A2BE2;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--font);
}

.gd-num--depot { background: #0A0A0A; font-size: 8px; }

.gd-stop-body { flex: 1; min-width: 0; }
.gd-stop-name { font-size: 8px; font-weight: 700; color: #0A0A0A; font-family: var(--font); }
.gd-stop-ref  { font-size: 7px; font-weight: 600; color: #8A2BE2; font-family: var(--font); }
.gd-stop-addr { font-size: 6.5px; color: #9CA3AF; font-family: var(--font); line-height: 1.3; margin-top: 1px; }
.gd-stop-kg   { font-size: 7px; color: #6B7280; font-family: var(--font); margin-top: 2px; }
.gd-time { font-size: 8px; font-weight: 700; color: #6B7280; font-family: var(--font); flex-shrink: 0; margin-top: 1px; }

/* ── About section with photo bg ───────────────────── */
#about {
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.94) 0%, rgba(13,13,13,0.88) 100%);
  pointer-events: none;
  z-index: 0;
}

#about > .container { position: relative; z-index: 1; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .product-split,
  .about-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .product-split--flip .split-visual { order: -1; }

  .browser-frame,
  .product-split--flip .browser-frame {
    transform: none !important;
    max-width: 100%;
  }

  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .nav-links { gap: 20px; }
  .hero { padding: 80px 0 64px; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-inner { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
