:root {
  --cr-black-100: #14191f;
  --cr-black-200: #101419;
  --cr-white: #ffffff;
  --cr-blue-500: #3b5bdb;
  --cr-blue-600: #2b4bc6;
  --cr-gray-400: #9ba1ab;
  --cr-gray-500: #6b7280;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--cr-black-200);
  color: var(--cr-white);
  overflow-x: hidden;
}
.landing-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  background: rgba(16, 20, 25, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0; width: 100%; z-index: 100;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cr-white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.navbar-brand img {
  height: 32px;
}
.navbar-nav {
  display: flex;
  align-items: center;
}
.btn-primary {
  background: var(--cr-blue-500);
  color: var(--cr-white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
  box-shadow: 0 4px 14px 0 rgba(59,91,219,0.39);
}
.btn-primary:hover {
  background: var(--cr-blue-600);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cr-white);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,91,219,0.15) 0%, transparent 70%);
  z-index: -1;
}
.hero-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero-title span {
  color: var(--cr-blue-500);
}
.hero-subtitle {
  font-size: 20px;
  color: var(--cr-gray-400);
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}
.hero-mockup {
  width: 100%;
  max-width: 1000px;
  height: 480px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.mockup-header {
  height: 32px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #444;
}
.mockup-body {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mockup-card {
  height: 140px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
}
.grid-span-2 {
  grid-column: span 2;
}
.grid-tall {
  grid-row: span 2;
  height: auto;
}
.landing-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--cr-gray-500);
  font-size: 14px;
  position: relative;
  background: var(--cr-black-200);
  z-index: 10;
}

/* Dashboard Mockup Details */
.dash-header { font-size: 14px; font-weight: 600; text-align: left; margin-bottom: 16px; color: var(--cr-white); }
.dash-stat-row { display: flex; gap: 16px; margin-bottom: 16px; }
.dash-stat { flex: 1; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03); border-radius: 8px; padding: 16px; text-align: left; }
.dash-stat-label { font-size: 12px; color: var(--cr-gray-400); margin-bottom: 8px; }
.dash-stat-value { font-size: 24px; font-weight: 700; color: var(--cr-white); }
.dash-list { display: flex; flex-direction: column; gap: 16px; }
.dash-list-item { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.03); border-radius: 8px; }
.dash-item-info { display: flex; flex-direction: column; text-align: left; gap: 4px; }
.dash-item-title { font-size: 13px; font-weight: 500; color: var(--cr-white); }
.dash-item-sub { font-size: 11px; color: var(--cr-gray-500); }
.dash-badge { font-size: 10px; font-weight: 600; padding: 4px 8px; border-radius: 12px; }
.badge-blue { background: rgba(59,91,219,0.1); color: var(--cr-blue-500); }
.badge-green { background: rgba(34,197,94,0.1); color: #4ade80; }
.badge-orange { background: rgba(249,115,22,0.1); color: #fb923c; }
.dash-progress-wrapper { margin-top: 16px; text-align: left; }
.dash-progress-bg { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; margin-top: 8px; }
.dash-progress-fill { height: 100%; background: var(--cr-blue-500); border-radius: 3px; }

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .landing-navbar { padding: 24px; }
    .mockup-body { grid-template-columns: 1fr; }
    .grid-span-2 { grid-column: span 1; }
    .hero-mockup { height: auto; }
}
