:root {
  --bg: #050505;
  --fg: #ffffff;
  --muted: #a1a1aa;
  --line: #27272a;
  --hover: #f4f4f5;
  --accent: #3b82f6;
  /* A nice blue for accents */
  --accent-glow: rgba(59, 130, 246, 0.15);
  --max: 1000px;
  --pad: 32px;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad) 80px;
  position: relative;
  z-index: 10;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 40px;
  /* border-bottom: 1px solid var(--line); Remove border for cleaner look */
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.brand img {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navlinks a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.navlinks a.active {
  color: var(--fg);
}

.navlinks a:hover {
  color: var(--fg);
}

.navlinks a.cta {
  color: var(--bg);
  background: var(--fg);
  padding: 8px 16px;
  border-radius: 99px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}

.navlinks a.cta:hover {
  background: var(--hover);
  transform: translateY(-1px);
  color: var(--bg);
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gradient background glow for hero */
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 99px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.heroTitle {
  max-width: 20ch;
  margin: 0 0 20px;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #bbbbbb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.heroSub {
  max-width: 40ch;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #eeeeee;
  margin: 0 0 48px;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.heroCtas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btnPrimary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  color: var(--bg);
}

.heroLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.heroLink:hover {
  color: var(--fg);
}

/* STORE BUTTONS */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid #333;
  transition: all 0.2s;
  text-align: left;
  text-decoration: none;
  width: fit-content;
}

.store-btn:hover {
  background: #111;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  color: #fff;
}

.store-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-btn .btn-labels {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn-label-small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.btn-label-large {
  font-size: 15px;
  font-weight: 700;
}



/* APP MOCKUP */
/* APP MOCKUP - DASHBOARD */
.appMockup {
  position: relative;
  width: 100%;
  max-width: 960px;
  /* Wider for dashboard */
  perspective: 1200px;
  margin: 60px auto 0;
  animation: fadeUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

.appWindow {
  background: #000;
  /* Deep black as per screenshot */
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 30px 60px -15px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transform: rotateX(2deg);
  transition: transform 0.4s ease;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.appWindow:hover {
  transform: rotateX(0deg) scale(1.005);
}

.windowHeader {
  background: #000;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
}

.winControls {
  display: flex;
  gap: 8px;
}

.winDot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.winDot.red {
  background: #fd5f57;
}

.winDot.yellow {
  background: #febc2e;
}

.winDot.green {
  background: #27c93f;
}

.winTitle {
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.windowBody {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 560px;
  background: #050505;
}

/* Sidebar */
.mockSidebar {
  background: #0a0a0a;
  border-right: 1px solid #222;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockBrand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 24px;
  padding-left: 8px;
}

.mockNavLink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #888;
  font-weight: 500;
  transition: all 0.2s;
}

.mockNavLink.active {
  background: #1a1a1a;
  color: #fff;
  border-left: 3px solid #3b82f6;
}

.mockNavLink:hover {
  color: #fff;
  background: #111;
}

.mockIcon {
  width: 14px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.7;
}

/* Main Content */
.mockMain {
  padding: 32px;
}

.mockHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mockPageTitle {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.mockBtn {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
}

/* ===== Dashboard Grid (Updated to match Desktop) ===== */
.dashboardGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Span Utilities */
.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-6 {
  grid-column: span 6;
}

/* Stat Cards */
.stat-card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 140px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 5px 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 600;
}

.stat-trend {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
}

.stat-trend.positive {
  color: #10b981;
}

.stat-icon-bg {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 4rem;
  opacity: 0.05;
  pointer-events: none;
  filter: grayscale(100%);
}

.widget {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.widget h3 {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.emptyState {
  text-align: center;
  color: #444;
  font-size: 13px;
  padding: 20px;
}

/* Map Placeholder */
.mapPlaceholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background-color: #090909;
  /* World Map SVG Background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1010 650' fill='%231a1a1a'%3E%3Cpath d='M153.6 195.4c4.2-2.1 6.3-5.2 6.3-9.5 0-2.1-.5-4.2-1.6-6.3-2.1-4.2-2.6-9.5-1.6-15.8 4.2-13.7 3.2-25.8-3.2-36.4-5.3-7.4-8.4-15.8-9.5-25.3-.5-4.2-2.6-7.4-6.3-9.5-18.5 2.1-34.8 5.8-49 11.1-16.9 7.4-33.2 16.3-49 26.9 14.8 25.3 22.1 48.5 22.1 69.5 0 16.9-4.7 33.7-14.2 50.6 5.3 14.8 13.2 26.9 23.7 36.4 12.6 11.6 28.5 19 47.4 22.1 6.3-5.3 9.5-11.6 9.5-19 0-7.4 0-14.8 0-22.1 8.4-12.7 13.7-22.1 15.8-28.4 2.1-4.2 5.3-6.3 9.5-6.3 6.3-2.1 9.5 4.2 9.5 19 0 7.4-4.2 11.6-12.6 12.6l-6.3.5v-18.4c-4.2-11-2.1-18.5 6.3-22.1 4.2-4.2 8.4-9.5 12.6-15.8 4.2-7.4 2.1-12.1-6.3-14.2zM212 184.3c0-3.2-1.6-5.8-4.7-7.9-1.6-1.1-2.6-3.7-3.2-7.9-1.1-7.4-4.2-11.6-9.5-12.6-6.3-2.1-11.1 1.6-14.2 11.1-2.1 7.4-1.6 13.2 1.6 17.4 4.2 4.2 8.9 6.3 14.2 6.3 11.6 0 16.9-2.1 15.8-6.4zm-9.5-31.6c4.2 0 7.9-2.6 11.1-7.9 2.1-3.2 2.6-6.8 1.6-11.1-3.2-10.5-7.9-17.4-14.2-20.5-8.4-4.2-13.7-1.1-15.8 9.5-1.1 6.3 2.1 13.2 9.5 20.5 4.2 3.2 6.8 6.3 7.9 9.5h0zm90 67.9c4.2 0 7.4-2.1 9.5-6.3 1.1-2.1 2.6-4.2 4.7-6.3 2.1-1.1 3.2-3.2 3.2-6.3-1.1-3.2-2.1-5.3-3.2-6.3-1.1-3.2-1.6-6.3-1.6-9.5-1.1-5.3-.5-10.5 1.6-15.8 5.3-11.6 14.2-18.4 26.9-20.5 10.5-2.1 19.5 0 26.9 6.3 5.3 4.2 8.4 8.4 9.5 12.6 1.1 2.1 2.1 4.2 3.2 6.3 4.2 5.3 5.3 9.5 3.2 12.6-3.2 5.3-7.4 7.9-12.6 7.9-4.2 1.1-7.9 3.2-11.1 6.3-5.3 7.4-9.5 12.1-12.6 14.2-5.3 4.2-11.6 7.4-18.9 9.5-11.6 2.1-19.5-.5-23.7-7.9-2.1-3.2-3.7-5.3-4.7-6.3 0 0-.1 0 0 0-.1-.1-.1-.1-.1-.1 0 0-.1 0-.1-.1zm151.7-52.1c8.4-3.2 14.2-9 17.4-17.4-1.1-5.3-3.7-9.5-7.9-12.6-6.3-4.2-14.8-1.6-25.3 7.9-7.4 7.4-10.5 14.8-9.5 22.1 2.1 6.3 9.5 6.3 22.1 6.3 1.1-2.1 2.1-4.2 3.2-6.3zm195.9 74.2c2.1-2.1 2.6-4.7 1.6-7.9-2.1-5.3-2.6-9.5-1.6-12.6 2.1-3.2 5.8-3.7 11.1-1.6 8.4 4.2 14.2 4.7 17.4 1.6 4.2-4.2 5.8-10 4.7-17.4-1.1-4.2-1.6-8.4-1.6-12.6 0-9.5 3.2-15.3 9.5-17.4 8.4-2.1 12.6 1.1 12.6 9.5 0 6.3 0 11.6 0 15.8.5 7.4 2.1 13.2 4.7 17.4 3.2 5.3 7.4 7.9 12.6 7.9 3.2 1.1 6.3 3.2 9.5 6.3 3.2 2.1 6.8 1.1 11.1-3.2 4.2-3.2 6.8-5.3 7.9-6.3 2.1-2.1 3.2-5.3 3.2-9.5 0-9.5-4.7-15.3-14.2-17.4-5.3-2.1-8.9-5.3-11.1-9.5-4.2-6.3-7.4-13.7-9.5-22.1 0-7.4 3.2-13.7 9.5-18.9 10.5-8.4 21.6-8.4 33.2 0 7.4 5.3 10 11.6 7.9 18.9-1.1 5.3-3.7 11.6-7.9 18.9-7.4 12.6-12.6 23.1-15.8 31.6-2.1 4.2-2.1 9.5 0 15.8 4.2 8.4 8.9 13.2 14.2 14.2 3.2 1.1 6.3 3.7 9.5 7.9 13.7 16.9 22.1 35.8 25.3 56.9 0 4.2 1.6 6.8 4.7 7.9 2.1 1.1 4.7 1.1 7.9 0 7.4-2.1 12.1-4.2 14.2-6.3 4.2-3.2 6.3-6.8 6.3-11.1 1.1-8.4.5-15.8-1.6-22.1-4.2-10.5-5.3-19.5-3.2-26.9 3.2-9.5 8.9-15.3 17.4-17.4 10.5-2.1 18.4-.5 23.7 4.7 4.2 4.2 6.3 8.9 6.3 14.2.5 7.4 0 13.2-1.6 17.4-3.2 7.4-6.8 13.2-11.1 17.4-2.1 3.2-3.2 6.8-3.2 11.1 1.1 5.3 2.6 9.5 4.7 12.6 3.2 4.2 5.8 6.3 7.9 6.3 9.5-1.1 17.4-7.4 23.7-18.9 4.2-6.3 6.3-12.6 6.3-18.9 1.1-13.7 5.8-21.6 14.2-23.7 4.2-1.1 8.4 0 12.6 3.2 5.3 3.2 7.4 7.4 6.3 12.6-.5 3.2-1.6 5.8-3.2 7.9-6.3 7.4-9.5 13.7-9.5 18.9 1.1 6.3 4.2 10.5 9.5 12.6 5.3 2.1 9.5 1.6 12.6-1.6 2.1-2.1 3.2-4.2 3.2-6.3 1.1-3.2 2.6-5.8 4.7-7.9 5.3-5.3 10.5-8.4 15.8-9.5 5.3 0 9.5 1.6 12.6 4.7 3.2 4.2 4.2 8.9 3.2 14.2-1.1 5.3-3.2 9.5-6.3 12.6-5.3 5.3-7.9 10-7.9 14.2-.5 5.3 1.1 9.5 4.7 12.6 1.1 1.1 2.6 1.6 4.7 1.6 10.5 0 18.4-5.3 23.7-15.8 4.2-8.4 6.3-16.3 6.3-23.7.5-11.6 3.2-20 7.9-25.3 2.1-2.1 4.7-3.7 7.9-4.7 10.5-3.2 18.9 0 25.3 9.5 9.5 8.4 14.2 5.8 14.2-7.9 1.1-4.2 4.2-6.3 9.5-6.3 6.3 0 10 2.1 11.1 6.3 2.1 6.3 4.7 10 7.9 11.1 5.3 2.1 8.9.5 11.1-4.7 4.2-8.4 6.8-15.3 7.9-20.5 3.2-12.6 8.4-20 15.8-22.1 5.3-1.1 10.5.5 15.8 4.7 4.2 3.2 6.8 7.4 7.9 12.6 1.1 6.3 3.2 10.5 6.3 12.6 5.3 3.2 9.5 2.6 12.6-1.6 3.2-4.2 7.4-7.4 12.6-9.5 5.3-2.1 10-1.6 14.2 1.6 6.3 5.3 10 12.1 11.1 20.5 2.1 16.9 12.6 25.3 31.6 25.3 8.4 0 15.8-2.6 22.1-7.9 1.1-3.2 2.6-5.8 4.7-7.9 5.3-4.2 9.5-5.3 12.6-3.2 3.2 1.1 5.3 3.2 6.3 6.3 4.2 13.7 11.1 22.1 20.5 25.3 5.3 2.1 10 2.1 14.2 0 7.4-4.2 11.1-8.4 11.1-12.6 0-3.2 2.1-4.7 6.3-4.7 7.4 0 12.6 3.2 15.8 9.5 3.2 5.3 4.7 10.5 4.7 15.8.5 7.4 2.1 13.2 4.7 17.4 2.1 4.2 4.7 6.3 7.9 6.3 6.3 1.1 11.1-.5 14.2-4.7 1.1-1.1 2.1-3.2 3.2-6.3 3.2-10.5 9.5-16.3 18.9-17.4 5.3-.5 10 1.1 14.2 4.7 5.3 5.3 7.9 10.5 7.9 15.8-.5 8.4 2.1 14.8 7.9 18.9 4.2 3.2 6.8 5.8 7.9 7.9 2.1 4.2 2.1 8.4 0 12.6-3.2 6.3-5.3 11.1-6.3 14.2-1.1 3.2-1.6 6.3-1.6 9.5.5 3.2 1.6 5.8 3.2 7.9 4.2 5.3 7.4 9.5 9.5 12.6 1.1 2.1 2.1 4.2 3.2 6.3 1.1 1.1 2.1 1.6 3.2 1.6 5.3-.5 8.9-2.6 11.1-6.3 2.1-4.2 3.7-7.9 4.7-11.1 2.1-5.3 3.7-10 4.7-14.2 2.1-6.3 6.3-9.5 12.6-9.5 4.2 0 8.4 2.1 12.6 6.3 4.2 5.3 6.3 10 6.3 14.2 0 4.2-1.6 7.4-4.7 9.5-4.2 3.2-7.4 4.7-9.5 4.7-2.1.5-6.8 1.6-14.2 3.2-8.4 2.1-14.8 5.3-18.9 9.5-5.3 5.3-8.9 10-11.1 14.2-2.1 6.3-4.2 11.1-6.3 14.2-2.1 4.2-3.7 7.9-4.7 11.1-3.2 8.4-5.3 14.8-6.3 18.9-1.1 6.3 0 11.6 3.2 15.8 2.1 3.2 5.3 5.3 9.5 6.3 3.2.5 5.8.5 7.9 0 7.4-2.1 14.8-1.6 22.1 1.6 5.3 2.1 7.9 5.3 7.9 9.5 0 2.1-.5 4.2-1.6 6.3-2.1 3.2-4.2 5.3-6.3 6.3-2.1 1.1-3.7 1.6-4.7 1.6-4.2.5-8.9.5-14.2 0-8.4-.5-14.8-.5-18.9 0-6.3.5-11.1 2.6-14.2 6.3-5.3 7.4-7.4 14.2-6.3 20.5 1.1 4.2 3.2 7.4 6.3 9.5 3.2 2.1 6.3 3.2 9.5 3.2 5.3-.5 9.5-2.1 12.6-4.7 4.2-3.2 7.4-6.3 9.5-9.5 2.1-3.2 3.7-5.3 4.7-6.3 4.2-3.2 8.4-4.7 12.6-4.7s7.9 1.6 11.1 4.7c4.2 4.2 5.3 9.5 3.2 15.8-2.1 7.4-6.3 14.2-12.6 20.5-8.4 8.4-15.3 13.2-20.5 14.2-7.4 1.1-13.7 0-18.9-3.2-6.3-4.2-11.1-9.5-14.2-15.8-3.2-8.4-5.3-14.2-6.3-17.4-2.1-5.3-3.2-9.5-3.2-12.6.5-6.3-.5-11.6-3.2-15.8-3.2-5.3-7.9-7.9-14.2-7.9-4.2 1.1-7.9 3.2-11.1 6.3-5.3 5.3-8.9 10-11.1 14.2-1.1 3.2-2.6 6.3-4.7 9.5-4.2 6.3-7.4 11.1-9.5 14.2-5.3 7.4-7.9 13.2-7.9 17.4.5 4.2 2.6 7.9 6.3 11.1 2.1 2.1 3.7 3.2 4.7 3.2 2.1 0 4.7-1.1 7.9-3.2 3.2-2.1 6.8-4.2 11.1-6.3 6.3-4.2 11.6-4.2 15.8 0 4.2 3.2 5.3 8.4 3.2 15.8-1.1 3.2-3.2 6.3-6.3 9.5-5.3 5.3-11.1 8.4-17.4 9.5-7.4 2.1-14.2.5-20.5-4.7-7.4-6.3-12.6-13.2-15.8-20.5-4.2-9.5-7.4-17.4-9.5-23.7-2.1-6.3-3.2-11.1-3.2-14.2 1.1-7.4.5-13.2-1.6-17.4-4.2-6.3-9.5-9.5-15.8-9.5-3.2 0-6.8 1.1-11.1 3.2-8.4 3.2-15.3 6.3-20.5 9.5-5.3 3.2-8.4 5.3-9.5 6.3-3.2 2.1-6.3 3.2-9.5 3.2-4.2 0-7.9-1.6-11.1-4.7-3.2-4.2-4.7-8.9-4.7-14.2 1.1-6.3 3.2-11.6 6.3-15.8 4.2-4.2 9.5-7.4 15.8-9.5 5.3-1.1 9.5-2.1 12.6-3.2s5.8-2.6 7.9-4.7c3.2-3.2 4.7-6.8 4.7-11.1 0-7.4-4.2-11.6-12.6-12.6-4.2-.5-7.9.5-11.1 3.2-3.2 3.2-6.8 6.8-11.1 11.1-6.3 7.4-10.5 12.6-12.6 15.8-3.2 5.3-5.3 9.5-6.3 12.6-2.1 5.3-1.6 10 1.6 14.2 2.1 3.2 5.3 5.3 9.5 6.3 4.2.5 8.4 0 12.6-1.6 3.2-.5 5.8-2.1 7.9-4.7 1.1-1.1 1.6-2.1 1.6-3.2 1.1-3.2 0-5.8-3.2-7.9-2.1-2.1-5.3-3.7-9.5-4.7-3.2-.5-5.8-1.6-7.9-3.2-1.1-1.1-1.6-2.6-1.6-4.7 0-4.2 2.1-7.4 6.3-9.5 5.3-2.1 10.5-2.1 15.8 0 4.2 2.1 6.3 5.3 6.3 9.5 0 2.1-.5 4.2-1.6 6.3-2.1 2.1-4.2 3.2-6.3 3.2-2.1 0-4.2-.5-6.3-1.6-5.3-3.2-9.5-6.8-12.6-11.1-4.2-6.3-5.8-10.5-4.7-12.6 2.1-4.2 5.3-6.3 9.5-6.3 3.2.5 5.8 2.1 7.9 4.7 1.1 2.1 2.1 4.7 3.2 7.9 2.1 4.2 4.2 6.8 6.3 7.9 3.2 2.1 6.3 2.1 9.5 0 3.2-2.1 4.7-5.3 4.7-9.5-.5-5.3-2.1-10-4.7-14.2-4.2-6.3-8.9-10.5-14.2-12.6-7.4-2.1-13.7-2.1-18.9 0-4.2 2.1-7.4 3.2-9.5 3.2-5.3-.5-9.5-4.2-12.6-11.1-2.1-5.3-3.2-8.9-3.2-11.1 0-3.2 2.1-4.7 6.3-4.7 5.3 0 10 1.6 14.2 4.7.5.5 1.1 1.1 1.6 1.6 2.1 2.1 4.2 2.6 6.3 1.6 3.2-2.1 4.7-4.7 4.7-7.9 0-2.1-1.6-4.7-4.7-7.9-6.3-5.3-11.6-8.9-15.8-11.1-12.6-6.3-21.6-4.7-26.9 4.7-3.2 5.3-4.7 10-4.7 14.2.5 3.2 1.6 6.3 3.2 9.5 1.1 3.2 1.6 6.3 1.6 9.5 0 4.2-1.1 7.4-3.2 9.5-3.2 3.2-6.3 4.7-9.5 4.7-2.1 0-4.7-1.1-7.9-3.2-6.3-4.2-11.1-6.8-14.2-7.9-6.3-2.1-12.1-1.6-17.4 1.6-4.2 2.1-7.9 5.3-11.1 9.5-5.3 6.3-7.9 12.1-7.9 17.4 0 3.2 2.1 6.3 6.3 9.5 2.1 2.1 4.7 3.2 7.9 3.2 2.1 0 4.2-.5 6.3-1.6 2.1-.5 4.7-1 7.9-1 4.2 0 7.9 2.1 11.1 6.3 2.1 2.1 3.2 4.7 3.2 7.9 0 4.2-1.6 7.4-4.7 9.5-5.3 2.1-9.5 2.1-12.6 0-3.2-2.1-4.7-4.7-4.7-7.9-.5-1.1-1.6-2.6-3.2-4.7-4.2-4.2-8.4-5.3-12.6-3.2-5.3 2.1-8.4 5.3-9.5 9.5-.5 3.2 1.1 6.8 4.7 11.1 3.2 4.2 6.8 6.3 11.1 6.3 2.1 0 5.3-.5 9.5-1.6 1.1-.5 2.6-.5 4.7-.5 4.2 0 7.4 2.1 9.5 6.3 1.1 2.1 1.6 3.7 1.6 4.7 0 2.1-1.1 4.2-3.2 6.3-4.2 4.2-7.4 5.3-9.5 3.2-4.2-2.1-7.9-2.1-11.1 0-4.2 2.1-6.3 5.3-6.3 9.5 1.1 4.2 4.2 8.4 9.5 12.6 5.3 4.2 10.5 6.3 15.8 6.3 6.3 0 12.1-2.1 17.4-6.3 4.2-3.2 7.9-5.3 11.1-6.3 5.3-1.1 10 0 14.2 3.2 7.4 4.2 11.1 10.5 11.1 18.9 0 5.3-2.6 10-7.9 14.2-3.2 3.2-6.3 4.7-9.5 4.7-2.1.5-4.2 1.6-6.3 3.2-3.2 3.2-4.7 6.8-4.7 11.1 0 5.3 2.6 9.5 7.9 12.6 4.2 2.1 7.9 2.1 11.1 0 6.3-3.2 11.6-4.7 15.8-4.7 3.2 0 6.3 1.1 9.5 3.2 7.4 5.3 11.1 12.1 11.1 20.5 1.1 13.7 6.3 21.6 15.8 23.7 8.4 2.1 15.3 1.1 20.5-3.2 4.2-3.2 6.3-5.3 6.3-6.3 1.1-1.1 2.1-1.6 3.2-1.6 2.1 0 5.3 1.6 9.5 4.7 3.2 2.1 6.8 3.2 11.1 3.2 3.2 0 5.8-1.6 7.9-4.7 3.2-4.2 5.8-8.9 7.9-14.2 2.1-6.3 4.7-10.5 7.9-12.6 1.1-.5 2.6-1.1 4.7-1.6 5.3-.5 9.5-3.7 12.6-9.5 1.1-2.1 2.1-3.7 3.2-4.7 2.1-1.1 4.2-1.6 6.3-1.6 5.3 1.1 8.9 4.2 11.1 9.5 2.1 5.3 4.2 10 6.3 14.2 1.1 2.1 2.6 3.7 4.7 4.7 3.2 1.1 6.8 1.1 11.1 0 5.3-1.1 9.5-4.2 12.6-9.5 2.1-2.1 1.6-4.7-1.6-7.9-1.1-1.1-1.6-2.1-1.6-3.2 0-2.1 1.6-4.7 4.7-7.9 2.1-3.2 3.2-5.3 3.2-6.3 1.1-3.2 3.7-4.7 7.9-4.7 5.3 0 9.5 2.1 12.6 6.3 5.3 5.3 9.5 8.9 12.6 11.1 5.3 2.1 8.9 2.6 11.1 1.6 4.2-2.1 6.3-5.8 6.3-11.1-1.1-8.4-3.7-15.3-7.9-20.5-2.1-2.1-3.2-3.7-3.2-4.7-1.1-2.1-1.1-3.7 0-4.7 2.1-2.1 5.8-3.7 11.1-4.7 2.1-.5 4.7.5 7.9 3.2 5.3 5.3 8.9 8.9 11.1 11.1 3.2 2.1 6.8 2.6 11.1 1.6 5.3-1.1 8.4-4.2 9.5-9.5 1.1-4.2 1.6-8.4 1.6-12.6 0-3.2.5-6.3 1.6-9.5.5-2.1 1.6-3.2 3.2-3.2 2.1 0 4.7.5 7.9 1.6 6.3 1.1 10.5 4.7 12.6 11.1 4.2 11.6 7.4 20.5 9.5 26.9 3.2 9.5 6.3 14.2 9.5 14.2 4.2 0 6.3-3.2 6.3-9.5 0-2.1-1.1-4.2-3.2-6.3-4.2-5.3-8.4-8.9-12.6-11.1-5.3-2.1-8.9-4.2-11.1-6.3-4.2-4.2-6.3-8.9-6.3-14.2.5-4.2 2.1-7.4 4.7-9.5 4.2-4.2 8.4-5.3 12.6-3.2 3.2 2.1 5.3 5.3 6.3 9.5.5 3.2 1.6 6.3 3.2 9.5 1.1 2.1 2.6 3.7 4.7 4.7 2.1 1.1 4.2 1.1 6.3 0 5.3-3.2 7.9-7.9 7.9-14.2 1.1-6.3 4.2-11.1 9.5-14.2 3.2-2.1 6.8-3.2 11.1-3.2 3.2.5 5.8 2.1 7.9 4.7 2.1 4.2 3.2 8.4 3.2 12.6 1.1 5.3 3.2 8.9 6.3 11.1 4.2 2.1 7.4 1.6 9.5-1.6 1.1-1.1 2.1-2.1 3.2-3.2 6.3-5.3 10-10 11.1-14.2 1.1-3.2 2.1-5.3 3.2-6.3 3.2-2.1 6.3-3.2 9.5-3.2 2.1 0 4.2.5 6.3 1.6 6.3 3.2 9.5 6.3 9.5 9.5 1.1 4.2 1.6 8.4 1.6 12.6 0 11.6 5.3 18.9 15.8 22.1 4.2 2.1 6.3 4.7 6.3 7.9 0 3.2 2.1 5.3 6.3 6.3 6.3 2.1 10.5 5.3 12.6 9.5 2.1 4.2 3.7 7.9 4.7 11.1 2.1 6.3 3.2 11.6 3.2 15.8.5 7.4 3.2 12.1 7.9 14.2 3.2 1.1 6.8 1.6 11.1 1.6 4.2-.5 8.4-.5 12.6 0 5.3 1.1 9.5 3.7 12.6 7.9 4.2 5.3 6.8 10 7.9 14.2 2.1 8.4-1.1 14.8-9.5 18.9-8.4 5.3-15.3 6.3-20.5 3.2-3.2-2.1-5.8-3.2-7.9-3.2-1.1 0-2.1.5-3.2 1.6-4.2 5.3-6.3 10.5-6.3 15.8 0 3.2-1.1 6.3-3.2 9.5-3.2 3.2-6.3 5.3-9.5 6.3-4.2 1.1-8.4.5-12.6-1.6-5.3-2.1-8.9-3.2-11.1-3.2-3.2 0-6.3 1.1-9.5 3.2-6.3 4.2-9.5 8.4-9.5 12.6 0 3.2 1.1 5.8 3.2 7.9 3.2 4.2 6.3 6.8 9.5 7.9 8.4 2.1 16.3 0 23.7-6.3 4.2-3.2 7.9-4.7 11.1-4.7 5.3 0 9.5 2.1 12.6 6.3 6.3 6.3 9.5 11.6 9.5 15.8 0 4.2.5 8.4 1.6 12.6 2.1 5.3 6.3 8.9 12.6 11.1 5.3 1.1 9.5 3.2 12.6 6.3 4.2 5.3 7.4 12.1 9.5 20.5 2.1 8.4 3.2 15.3 3.2 20.5 0 2.1 1.6 3.7 4.7 4.7 2.1 1.1 4.7 1.6 7.9 1.6 8.4-.5 14.8-3.2 18.9-7.9 4.2-4.2 6.3-8.9 6.3-14.2 1.1-9.5 4.7-16.3 11.1-20.5 3.2-2.1 5.8-2.6 7.9-1.6 2.1 0 4.2.5 6.3 1.6 5.3 2.1 9.5 3.7 12.6 4.7 4.2 1.1 8.4 2.1 12.6 3.2 3.2 0 6.3 0 9.5 0 8.4-1.1 14.8-1.1 18.9 0 5.3 1.1 9.5 3.7 12.6 7.9 3.2 5.3 4.7 11.1 4.7 17.4 1.1 14.8-2.1 27.4-9.5 37.9-5.3 7.4-10.5 12.6-15.8 15.8-6.3 4.2-12.6 7.4-18.9 9.5-6.3 2.1-13.7 2.6-22.1 1.6-32.7-3.2-53.7-16.3-63.2-39.5-1.1-3.2-3.2-4.7-6.3-4.7-2.1 0-3.7 1.1-4.7 3.2-1.1 1.1-1.6 3.2-1.6 6.3 1.1 4.2.5 9.5-1.6 15.8-3.2 7.4-8.4 13.2-15.8 17.4-5.3 3.2-11.1 4.7-17.4 4.7-8.4-.5-15.8-2.6-22.1-6.3-4.2-3.2-7.9-5.8-11.1-7.9-1.1-.5-2.1-.5-3.2 0-1.1.5-1.6 2.1-1.6 4.7 1.1 5.3 4.2 9.5 9.5 12.6 4.2 3.2 9.5 5.8 15.8 7.9 7.4 2.1 12.6 5.8 15.8 11.1 2.1 4.2 5.8 7.9 11.1 11.1 5.3 2.1 10.5 3.2 15.8 3.2 4.2 0 8.4-1.1 12.6-3.2 5.3-2.1 8.9-2.6 11.1-1.6 3.2.5 5.8 2.1 7.9 4.7 3.2 3.2 4.7 6.8 4.7 11.1 0 7.4 1.6 13.7 4.7 18.9 4.2 7.4 10 12.1 17.4 14.2 6.3 2.1 11.6 2.1 15.8 0 4.2-1.1 8.4-1.6 12.6-1.6 8.4 1.1 14.8 5.3 18.9 12.6 3.2 5.3 4.7 11.1 4.7 17.4-.5 10.5-5.8 18.4-15.8 23.7-6.3 3.2-12.6 4.7-18.9 4.7-6.3 0-11.1-1.1-14.2-3.2-7.4-4.2-14.8-10.5-22.1-18.9-5.3-5.3-10-9.5-14.2-12.6-3.2-2.1-6.8-4.2-11.1-6.3-5.3-2.1-10.5-3.2-15.8-3.2-8.4 0-13.7 3.2-15.8 9.5-2.1 4.2-2.1 8.4 0 12.6 1.1 4.2 3.2 8.4 6.3 12.6 2.1 3.2 4.7 6.3 7.9 9.5 2.1 2.1 3.2 4.2 3.2 6.3.5 1.1.5 2.1 0 3.2-.5 2.1-1.6 3.7-3.2 4.7-4.2 2.1-8.4 2.1-12.6 0z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.mapPin {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 14px;
  height: 14px;
  background: #3b82f6;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
  z-index: 10;
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* Map App Contact Card */
.mapCard {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-110%, -100%);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: floatUp 0.6s ease-out backwards;
  animation-delay: 0.5s;
}

.mapAvatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
}

.mapInfo {
  display: flex;
  flex-direction: column;
}

.mapName {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.mapLoc {
  font-size: 10px;
  color: #888;
}

/* Graph Placeholder */
.graphPlaceholder {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100%;
  min-height: 140px;
  padding-top: 20px;
}

.bar {
  flex: 1;
  background: #222;
  border-radius: 2px 2px 0 0;
  animation: growBar 1.5s ease-out forwards;
}

@keyframes growBar {
  from {
    height: 0;
  }
}

/* CURSOR ANIMATION */
/* CURSOR ANIMATION */
.cursor {
  position: absolute;
  top: 110%;
  left: 110%;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z' fill='black'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  animation: moveCursor 8s ease-in-out infinite;
}

@keyframes moveCursor {
  0% {
    top: 100%;
    left: 100%;
    opacity: 0;
  }

  /* Enter Scene */
  5% {
    top: 80%;
    left: 80%;
    opacity: 1;
  }

  /* 1. Go to "Contacts" Link */
  25% {
    top: 160px;
    left: 80px;
    transform: scale(1);
  }

  28% {
    transform: scale(0.85);
    /* Click down */
  }

  31% {
    transform: scale(1);
    /* Release */
  }

  /* 2. Go to "Add Contact" Button */
  50% {
    top: 60px;
    left: 780px;
    transform: scale(1);
  }

  53% {
    transform: scale(0.85);
    /* Click down */
  }

  56% {
    transform: scale(1);
    /* Release */
  }

  /* Exit */
  90% {
    top: 100%;
    left: 100%;
    opacity: 1;
  }

  100% {
    top: 100%;
    left: 100%;
    opacity: 0;
  }
}


/* REACTIVE ANIMATIONS */

/* Contacts Link Click Reaction - synced to 8s */
#mock-nav-contacts {
  animation: navClick 8s infinite;
}

@keyframes navClick {

  0%,
  25% {
    background: transparent;
    color: #888;
    border-left: 0px solid transparent;
  }

  28%,
  35% {
    background: #1a1a1a;
    color: #fff;
    border-left: 3px solid #3b82f6;
  }

  /* Active flash */
  37%,
  100% {
    background: transparent;
    color: #888;
    border-left: 0px solid transparent;
  }
}

/* Add Button Press Reaction - synced to 8s */
#mock-btn-add {
  animation: btnPress 8s infinite;
}

@keyframes btnPress {

  0%,
  52% {
    transform: scale(1);
    background: transparent;
  }

  53% {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.1);
  }

  56%,
  100% {
    transform: scale(1);
    background: transparent;
  }
}

/* Map Pin Removed - Animation Removed */

/* Map Pin Hover Reaction */
#mock-map-pin {
  animation: pinPulseHover 12s infinite;
}

@keyframes pinPulseHover {

  0%,
  70% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
  }

  72%,
  78% {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(59, 130, 246, 1);
  }

  /* Hover effect */
  80%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
  }
}

/* GRID / CARDS */
/* FEATURES STACK SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.feature-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.feature-card.featured:hover {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

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

.feature-icon-box {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.featured .feature-icon-box {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin-bottom: 0;
}

.featured .feature-icon-box svg {
  width: 40px;
  height: 40px;
}

.feature-icon-box svg {
  width: 32px;
  height: 32px;
}

/* Feature specific accent colors on hover? Optional. Keep neutral for now. */

/* TITLE & DESC */
.f-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.f-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
}

/* FEATURE LIST */
.f-list {
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.f-list li {
  color: var(--fg);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--fg);
  /* or accent color */
  border-radius: 50%;
  opacity: 0.5;
}


/* FOOTER CTA SECTION */
.footer-cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.cta-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-col:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.1);
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 32px;
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cta-link:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  text-decoration: none;
}

.cta-link svg {
  opacity: 0.7;
}

.cta-link:hover svg {
  opacity: 1;
}

.cta-sublink {
  font-size: 13px;
  color: var(--muted);
  margin-left: 16px;
  /* align with text */
  margin-top: -8px;
  opacity: 0.6;
}

.cta-sublink:hover {
  opacity: 1;
  text-decoration: underline;
}

.cta-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}


/* FOOTER */
.footer {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root {
    --pad: 24px;
  }

  .footer-cta-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .heroTitle {
    font-size: 60px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 60px;
  }

  .navlinks {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    justify-content: flex-start;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  }

  .navlinks a {
    font-size: 13px;
    white-space: nowrap;
  }

  .heroTitle {
    font-size: 40px;
    max-width: 100%;
  }

  .heroSub {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .heroCtas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btnPrimary,
  .heroLink {
    width: 100%;
    padding: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .appMockup {
    transform: scale(0.9) rotateX(2deg);
    width: 110%;
    left: -5%;
    margin-top: 40px;
  }

  .mockSidebar {
    display: none;
    /* Hide sidebar on mobile mockup to save space */
  }

  .windowBody {
    grid-template-columns: 1fr;
  }

  .dashboardGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .span-2,
  .span-3,
  .span-6 {
    grid-column: span 1;
  }

  .stat-card {
    min-height: 100px;
    padding: 16px;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.featured {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .featured .feature-icon-box {
    margin: 0 auto;
  }

  .cursor {
    display: none;
  }
}

@media (max-width: 768px) {
  .iphone-bezel {
    margin: 0 auto;
  }
}

/* PAGE / SECONDARY VARIATIONS */
.page {
  padding: 40px 0 0;
  animation: fadeUp 0.6s ease-out forwards;
}

.pageTitle {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--fg);
}

.pageSub {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 40px;
  max-width: 60ch;
}

.panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
}

.panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.1);
}

/* FORMS */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--fg);
  font-size: 16px;
  transition: all 0.2s;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.panelTitle {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* PRICING */
.pricingGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 60px;
}

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

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

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 32px;
}

.price-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  flex-grow: 1;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card.recommended {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  position: relative;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btnrow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btnGhost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--fg);
  font-weight: 500;
  transition: all 0.2s;
}

.btnGhost:hover {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
}

.kv {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kvRow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.kvRow:last-child {
  border-bottom: none;
}

.kvKey {
  color: var(--muted);
  font-size: 14px;
}

.kvVal {
  color: var(--fg);
  font-size: 14px;
  text-align: right;
  font-weight: 500;
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 16px;
}

.small {
  font-size: 13px;
}

/* MOBILE SCROLLYTELLING LAYOUT */
.mobile-showcase {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 120px auto;
  position: relative;
}

.phone-sticky-container {
  flex: 1;
  position: sticky;
  top: 100px;
  height: 600px;
  /* Space for phone */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.scroll-steps {
  flex: 1;
  padding-top: 100px;
  /* Offset start */
}

.step {
  height: 80vh;
  /* Each step takes full viewport height roughly */
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.3s;
  padding: 0 40px;
}

.step:hover,
/* Or active via JS if we want */
.step:nth-child(1) {
  /* Default first one active visually for simple css? No, just keep simple */
  /* opacity: 1; handled by intersection observer maybe? or just simple hover text */
  opacity: 1;
}

/* PHONE BEZEL */
.iphone-bezel {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 40px;
  border: 4px solid #333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 20;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* APP SCREENS */
.app-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  /* Below notch */
  padding-bottom: 60px;
  /* Above nav */
  background: #111;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
  /* Let clicks pass? No, just visual */
}

.app-screen.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 10;
}

/* APP COMPONENTS */
.app-header {
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-stat-row {
  display: flex;
  gap: 15px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.app-stat {
  flex: 1;
  background: #222;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.app-stat span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}

.app-stat small {
  color: #888;
  font-size: 12px;
}

.app-section-title {
  padding: 0 20px;
  margin-bottom: 15px;
  color: #888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-list {
  padding: 0 20px;
}

.app-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.app-avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.app-name {
  font-weight: 500;
  font-size: 15px;
}

.app-meta {
  font-size: 12px;
  color: #888;
}

/* SYNC SCREEN */
.sync-status-icon {
  font-size: 64px;
  margin-bottom: 32px;
  animation: syncFlash 2s infinite;
}

@keyframes syncFlash {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
    color: #f59e0b;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
  }
}

.sync-bar-container {
  width: 100%;
  height: 8px;
  background: #222;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.sync-bar-fill {
  width: 0%;
  height: 100%;
  background: #3b82f6;
  border-radius: 4px;
}

.screen-sync.active .sync-bar-fill {
  animation: syncProgress 3s forwards ease-in-out;
}

@keyframes syncProgress {
  to {
    width: 100%;
  }
}

.sync-status-text {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.sync-success-note {
  font-size: 16px;
  font-weight: 600;
  color: #10b981;
  opacity: 0;
  transform: translateY(10px);
}

.screen-sync.active .sync-success-note {
  animation: fadeUp 0.5s 3.2s forwards;
}

.app-meta {
  color: #888;
  font-size: 13px;
}

.app-search-bar {
  margin: 0 20px 20px;
  background: #222;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #888;
}

.app-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #222;
  z-index: 20;
}

.nav-item {
  font-size: 20px;
  opacity: 0.5;
}

.nav-item.active {
  opacity: 1;
  color: #3b82f6;
}

/* MAP SPECIFICS */
.app-map-bg {
  width: 100%;
  height: 100%;
  background: #222 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="none" stroke="%23333"><path d="M0 0l100 100M100 0L0 100"/></svg>');
  /* Fake map pattern */
  position: relative;
}

.app-map-pin {
  width: 16px;
  height: 16px;
  background: #ef4444;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.app-map-card {
  position: absolute;
  bottom: 80px;
  left: 20px;
  right: 20px;
  background: #1e1e1e;
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
}

/* SCAN SPECIFICS */
.app-camera-view {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.scan-frame {
  width: 250px;
  height: 150px;
  border: 2px solid #3b82f6;
  border-radius: 12px;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.8);
  /* Darken surroundings */
}

.scan-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid white;
  margin-top: 40px;
}

.app-header-overlay {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* MOBILE RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .mobile-showcase {
    flex-direction: column-reverse;
  }

  .phone-sticky-container {
    position: relative;
    top: 0;
    height: auto;
    margin-bottom: 40px;
  }

  .step {
    height: auto;
    min-height: 200px;
    padding: 20px;
    opacity: 1;
    margin-bottom: 40px;
  }
}

/* Legal Pages */
.text-page {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.content p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content strong {
  color: #ddd;
}

/* DESKTOP PAGE SPECIFIC */
.desktop-window {
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 18px 36px -18px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.desktop-window.small {
  max-width: 700px;
}

.window-header {
  height: 32px;
  background: #2a2a2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #27c93f;
}

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #888;
}

.desktop-img {
  display: block;
  width: 100%;
}

.desktop-walkthrough .walk-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.desktop-walkthrough .walk-row.reverse {
  flex-direction: row-reverse;
}

.walk-text {
  flex: 1;
}

.walk-viz {
  flex: 1.4;
}

@media (max-width: 900px) {
  .desktop-walkthrough .walk-row {
    flex-direction: column !important;
    gap: 40px;
    margin-bottom: 80px;
  }
}

.play-btn {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  transition: transform 0.2s;
}

.play-btn::after {
  content: "";
  border-left: 20px solid black;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.video-preview-section:hover .play-btn {
  transform: scale(1.1);
}

/* CONTACT LOADING ANIMATION - Full Width */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.loading-status {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  white-space: nowrap;
}

#contact-count {
  color: var(--accent);
  font-family: 'Courier New', Courier, monospace;
}

.loading-bar-bg {
  flex: 1;
  max-width: 600px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loading-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.loading-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  animation: shimmer-load 2s infinite;
}

@keyframes shimmer-load {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 640px) {
  .loading-container {
    padding: 8px 16px;
    gap: 12px;
  }

  .loading-status {
    font-size: 10px;
  }
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  padding: 120px var(--pad) 100px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section-pill {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 32px;
}

.hiw-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  max-width: 18ch;
  margin: 0 auto 60px;
}

.hiw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hiw-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px 36px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.hiw-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.hiw-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.hiw-step {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hiw-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.hiw-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.hiw-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .hiw-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-it-works-section {
    padding: 80px var(--pad) 60px;
  }
}