:root {
  --bg: #050508;
  --surface: #0E0E14;
  --surface-light: #16161F;
  --border: #1E1E2A;
  --text: #F0EDE8;
  --muted: #6B6B78;
  --violet: #7C6BFF;
  --cyan: #00E5CC;
  --success: #3ECF8E;
  --amber: #FFB020;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--violet); color: #fff; }

@media (hover: hover) and (pointer: fine) {
  body,
  body * {
    cursor: none;
  }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s, background 0.15s;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(124, 107, 255, 0.5);
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease-out;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body,
  body * {
    cursor: auto !important;
  }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  transition: all 0.4s;
  background: transparent;
  min-height: 80px;
}

nav.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 30, 42, 0.6);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: none;
  border: none;
  flex-shrink: 0;
}

.brand-mark {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}

.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--violet);
  line-height: 1;
  text-align: center;
  flex-direction: column;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background: none !important;
  border: none !important;
}

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

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--violet); }

.nav-links .cta {
  color: var(--bg);
  background: var(--violet);
  padding: 8px 20px;
  font-weight: 600;
}

.nav-links .cta:hover { background: var(--cyan); color: var(--bg); }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
}

#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

nav.nav-open #hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

nav.nav-open #hamburger span:nth-child(2) {
  opacity: 0;
}

nav.nav-open #hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== RAINBOW BUTTONS ===== */
button.btn-rainbow,
button.btn-rainbow-sm {
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}

button.btn-rainbow {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #050508 !important;
  background: linear-gradient(90deg, #7C6BFF, #00E5CC, #7C6BFF, #00E5CC) !important;
  background-size: 300% 100% !important;
  padding: 14px 32px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s !important;
  animation: rainbow-shift 4s ease-in-out infinite !important;
  width: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.btn-rainbow {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #050508 !important;
  background: linear-gradient(90deg, #7C6BFF, #00E5CC, #7C6BFF, #00E5CC) !important;
  background-size: 300% 100% !important;
  padding: 14px 32px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s !important;
  animation: rainbow-shift 4s ease-in-out infinite !important;
}

.btn-rainbow:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(124, 107, 255, 0.3) !important;
  animation-play-state: paused !important;
  filter: brightness(1.1) !important;
}

.btn-rainbow-outline {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #F0EDE8 !important;
  background: transparent !important;
  padding: 14px 32px !important;
  text-decoration: none !important;
  border: 2px solid transparent !important;
  border-image: linear-gradient(90deg, #7C6BFF, #00E5CC) 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s !important;
}

.btn-rainbow-outline:hover {
  background: linear-gradient(90deg, rgba(124,107,255,0.1), rgba(0,229,204,0.1));
  transform: translateY(-2px);
}

.btn-rainbow-sm {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #050508 !important;
  background: linear-gradient(90deg, #7C6BFF, #00E5CC, #7C6BFF) !important;
  background-size: 200% 100% !important;
  padding: 8px 20px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  animation: rainbow-shift 3s ease-in-out infinite !important;
}

.btn-rainbow-sm:hover {
  filter: brightness(1.1) !important;
  box-shadow: 0 0 20px rgba(124, 107, 255, 0.3) !important;
}

@keyframes rainbow-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== HERO ===== */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#nodeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.hero-split {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  width: 100%;
  padding: 0 60px;
  align-items: center;
  min-height: 100vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(124, 107, 255, 0.3);
  background: rgba(124, 107, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-line-accent {
  background: linear-gradient(90deg, #7c6bff 0%, #00e5cc 40%, #a08fff 70%, #00e5cc 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradientShift 8s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-sub-accent {
  color: var(--text);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-stat {
  text-align: left;
}

.stat-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-ghost {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--muted);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-product-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(124, 107, 255, 0.1);
  position: relative;
  z-index: 0;
}

.hero-product-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--violet));
  background-size: 200% 100%;
  animation: rainbow-shift 4s linear infinite;
  z-index: -1;
  opacity: 0.6;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(14, 14, 20, 0.9);
  border-bottom: 1px solid var(--border);
}

.frame-dots {
  display: flex;
  gap: 6px;
}

.fdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.fdot.red {
  background: #ff5f57;
}

.fdot.yellow {
  background: #ffbd2e;
}

.fdot.green {
  background: #28c840;
}

.frame-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  flex: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

.frame-live {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 1.5s infinite;
}

.frame-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-kanban {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.kanban-col {
  background: rgba(22, 22, 31, 0.8);
  padding: 10px;
}

.col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.kanban-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  padding: 8px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s;
}

.kanban-card.kc-active {
  border-left-color: var(--violet);
  color: var(--text);
}

.kc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.kc-dot.active {
  background: var(--violet);
  box-shadow: 0 0 6px var(--violet);
}

.kc-dot.done {
  background: var(--success);
}

.kc-progress {
  width: 100%;
  height: 2px;
  background: var(--border);
  margin-top: 4px;
}

.kc-bar {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.kanban-card.kc-done {
  border-left-color: var(--success);
}

.frame-metrics {
  display: flex;
  justify-content: space-around;
  background: rgba(22, 22, 31, 0.5);
  border: 1px solid var(--border);
  padding: 10px;
}

.fm-item {
  text-align: center;
}

.fm-val {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.fm-val.cyan {
  color: var(--cyan);
}

.fm-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.frame-feed {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(14, 14, 20, 0.6);
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  animation: feedSlide 0.5s ease-out both;
}

.feed-item.fi-1 {
  animation-delay: 0.5s;
}

.feed-item.fi-2 {
  animation-delay: 0.8s;
}

.feed-item.fi-3 {
  animation-delay: 1.1s;
}

@keyframes feedSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

.feed-time {
  margin-left: auto;
  color: var(--muted);
  opacity: 0.6;
}

.hero-float-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-float-badge svg {
  flex-shrink: 0;
  stroke: var(--muted);
}

.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}

.trust-inner span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.3s;
}

.trust-inner span:hover {
  color: var(--cyan);
}

.trust-inner span svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
    gap: 60px;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-title .cursor {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  background: var(--violet);
  margin-left: 4px;
  animation: blink 0.8s infinite;
  vertical-align: baseline;
}

.btn-primary {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--violet);
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-primary:hover { background: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,204,0.25); }

.btn-secondary {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-secondary:hover { border-color: var(--violet); color: var(--violet); }

/* ===== SECTIONS ===== */
.section { padding: 120px 40px; background: var(--bg); }
.section.dark { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

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

.section-header { margin-bottom: 80px; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  max-width: 700px;
}

.muted { color: var(--muted); }

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

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover {
  border-color: rgba(124, 107, 255, 0.3);
  transform: translateY(-2px);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-wide {
  grid-column: span 2;
}

.bento-dark {
  background: rgba(124, 107, 255, 0.05);
  border-color: rgba(124, 107, 255, 0.2);
}

.bento-wide-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

.bento-icon {
  margin-bottom: 8px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.bento-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.bento-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}

.bflow-node {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface-light);
  white-space: nowrap;
}

.bflow-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: visible;
}

.bflow-particle {
  position: absolute;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: flowMove 2s linear infinite;
}

@keyframes flowMove {
  from {
    left: 0%;
  }

  to {
    left: 100%;
  }
}

.bento-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-top: auto;
  padding-top: 16px;
}

.bbar {
  flex: 1;
  background: linear-gradient(180deg, var(--violet), rgba(124, 107, 255, 0.3));
  transform-origin: bottom;
  animation: barGrow 1s ease-out both;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.bento-terminal {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  background: rgba(0, 229, 204, 0.05);
  border: 1px solid rgba(0, 229, 204, 0.1);
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.bt-prompt {
  color: var(--violet);
}

.bt-cursor {
  animation: blink 0.8s infinite;
}

.bento-tenants {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.bt-tenant {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(14, 14, 20, 0.5);
  border: 1px solid var(--border);
}

.btt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.next-product-section {
  background: var(--bg);
}

.next-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.np-card {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.np-card.np-active {
  border-color: rgba(124, 107, 255, 0.4);
}

.np-card.np-locked {
  opacity: 0.6;
}

.np-card.np-future {
  opacity: 0.3;
}

.np-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.np-dot.active {
  background: var(--success);
  animation: pulseDot 2s infinite;
}

.np-dot.locked {
  background: var(--muted);
}

.np-name {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
}

.np-locked .np-name {
  filter: blur(6px);
  user-select: none;
}

.np-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.np-lock {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ===== CARZ ===== */
.carz-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.carz-desc { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; }

.carz-list { list-style: none; margin-bottom: 40px; }

.carz-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.link-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.link-arrow:hover { gap: 16px; }

/* ===== DASHBOARD ===== */
.dashboard {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.dash-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.dash-badges { display: flex; gap: 12px; }

.dash-badges span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.dash-badges .badge-live {
  background: rgba(124, 107, 255, 0.15);
  color: var(--violet);
}

.dash-body { padding: 20px; }

.dash-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.kpi { padding: 16px; background: var(--surface); border: 1px solid var(--border); }

.kpi-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.kpi-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
}

.chart-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 2.5s ease-out;
}

.chart-line.animate { stroke-dashoffset: 0; }

.dash-notifications { margin-top: 16px; }

.notif-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(14, 14, 20, 0.9);
  border: 1px solid var(--border);
  border-left: 3px solid var(--violet);
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); flex-shrink: 0; }

.notif-time { color: var(--muted); margin-left: auto; }

.dash-stack {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.15em;
}

/* ===== PIPELINE ===== */
.pipeline { position: relative; margin-bottom: 60px; }

.pipeline-line-bg {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 2s ease-out;
}

.pipeline-line-bg.visible { transform: scaleX(1); }

.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
}

.pipeline-step { text-align: center; padding: 0 16px; opacity: 0; transform: translateY(50px); transition: all 0.7s ease-out; }

.pipeline-step.visible { opacity: 1; transform: translateY(0); }

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  background: var(--surface);
  transition: all 0.4s;
}

.step-circle:hover {
  border-color: var(--violet);
  box-shadow: 0 0 30px rgba(124,107,255,0.2);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}

.pipeline-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

.step-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.pipeline-step p { font-size: 13px; line-height: 1.6; color: var(--muted); }

.live-pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--violet);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(124,107,255,0.4); }
  50% { opacity: 0.6; transform: scale(1.2); box-shadow: 0 0 0 8px rgba(124,107,255,0); }
}

.live-pulse span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ===== CONTACT ===== */
.contact-wrap { max-width: 700px; }

.console-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-bottom: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.console-dots { display: flex; gap: 6px; }

.console-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.console-dots span:nth-child(1) { background: var(--violet); }
.console-dots span:nth-child(2) { background: var(--muted); }
.console-dots span:nth-child(3) { background: var(--muted); }

.console-body {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--violet);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--violet); }

.form-field textarea { resize: vertical; }

.status-bar {
  padding: 10px 16px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}

.status-bar.processing { color: var(--violet); }
.status-bar.success { color: var(--cyan); }

/* ===== FOOTER ===== */
footer {
  padding: 0 40px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  text-align: center;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 320px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--violet);
}

.footer-link-muted {
  opacity: 0.4;
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-live-dot {
  vertical-align: middle;
}

/* ===== AURORA TEXT EFFECT ===== */
.aurora-text {
  background: linear-gradient(
    90deg,
    #7C6BFF 0%,
    #00E5CC 25%,
    #A08FFF 50%,
    #00E5CC 75%,
    #7C6BFF 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: auroraFlow 4s ease-in-out infinite;
  font-weight: 700;
}

@keyframes auroraFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }

  .nav-logo-img {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }

  .brand-mark {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }

  #hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    padding: 40px;
    gap: 24px;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 72px);
  }

  .section {
    padding: 80px 20px;
  }

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

  .pipeline-steps {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
  }

  footer {
    padding: 0 20px 32px;
  }

  .footer-logo-img {
    height: 40px;
  }

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

  .bento-wide {
    grid-column: span 1;
  }

  .bento-tenants {
    display: none;
  }

  .next-product-grid {
    grid-template-columns: 1fr;
  }

  .np-card.np-future {
    display: none;
  }

  .bento-wide-inner {
    flex-direction: column;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
