/* =========================================================
   SENTIENTKRUZE TECHNOLOGIES — Premium Redesign Stylesheet
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg-deep:        #030305;
  --bg-surface:     #0a0a12;
  --bg-card:        rgba(255,255,255,0.035);
  --bg-card-hover:  rgba(255,255,255,0.06);
  --border:         rgba(255,255,255,0.06);
  --border-glow:    rgba(0,82,204,0.45);

  --blue:           #0052cc;
  --blue-light:     #2979ff;
  --blue-bright:    #4d9fff;
  --purple:         #7c3aed;
  --purple-light:   #a855f7;
  --green:          #00d9b8;
  --green-dim:      rgba(0,217,184,0.15);

  --text-primary:   #f0f0f8;
  --text-secondary: rgba(240,240,248,0.6);
  --text-muted:     rgba(240,240,248,0.38);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-glow:    0 0 40px rgba(0,82,204,0.25), 0 8px 32px rgba(0,0,0,0.6);
  --shadow-hover:   0 20px 60px rgba(0,82,204,0.3), 0 8px 32px rgba(0,0,0,0.7);

  --gradient-brand: linear-gradient(135deg, #2979ff 0%, #a855f7 50%, #00d9b8 100%);
  --gradient-blue:  linear-gradient(135deg, #0052cc, #2979ff);
  --gradient-card:  linear-gradient(135deg, rgba(0,82,204,0.08) 0%, rgba(124,58,237,0.06) 100%);

  --nav-h:          72px;
  --section-pad:    120px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Noise Texture Overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Ambient blobs */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(0,82,204,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 80%, rgba(124,58,237,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0,217,184,0.04) 0%, transparent 65%);
}

section, nav, footer, header { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(38px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }
p  { color: var(--text-secondary); }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid rgba(77,159,255,0.25);
  border-radius: 100px;
  background: rgba(77,159,255,0.06);
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(3,3,5,0.72);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(3,3,5,0.88);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-right: auto;
  user-select: none;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 18px rgba(0,82,204,0.4);
  flex-shrink: 0;
}
.nav__logo-text { color: var(--text-primary); }
.nav__logo-text span { color: var(--blue-bright); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav__cta {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--gradient-blue);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 20px rgba(0,82,204,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(0,82,204,0.6);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(3,3,5,0.97);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 4px;
    backdrop-filter: blur(20px);
  }
  .nav.open .nav__links a { width: 100%; padding: 12px 16px; }
  .nav.open .nav__cta {
    display: flex;
    margin: 12px 20px 0;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* Grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  padding-block: 100px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(77,159,255,0.3);
  background: rgba(77,159,255,0.07);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__pill .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,217,184,0.7);
  animation: pulse-ring 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,217,184,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(0,217,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,217,184,0); }
}

.hero__h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.hero__h1 .accent { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero__sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 0 30px rgba(0,82,204,0.45), 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 50px rgba(0,82,204,0.65), 0 8px 30px rgba(0,0,0,0.5);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 100px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), border-color 0.25s, color 0.25s, background 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(77,159,255,0.5);
  color: var(--blue-bright);
  background: rgba(77,159,255,0.07);
}

/* Trust badges */
.hero__badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-ring 2.5s ease-out infinite;
  flex-shrink: 0;
}
.badge .dot-blue {
  background: var(--blue-bright);
  box-shadow: 0 0 6px var(--blue-bright);
  animation: none;
}
.badge .dot-purple {
  background: var(--purple-light);
  box-shadow: 0 0 6px var(--purple-light);
  animation: none;
}

/* ---------- Telemetry Dashboard Mockup ---------- */
.dashboard-mockup {
  position: relative;
  width: 440px;
  background: rgba(10, 10, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: status-pulse 2s infinite alternate;
}

@keyframes status-pulse {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.dashboard-title-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.dashboard-map {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
  height: 180px;
}

.map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-secondary);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 16px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.color-blue { color: var(--blue-bright); }
.color-green { color: var(--green); }
.color-gold { color: #f5a623; }

.dashboard-log {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 14px;
}

.log-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.log-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-row {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.4;
}

.log-row.text-green { color: var(--green); opacity: 0.85; }
.log-row.text-blue { color: var(--blue-bright); opacity: 0.85; }
.log-row.text-muted { color: var(--text-muted); }

/* SVG Animations for Map */
.route-line-anim {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: run-route 6s linear infinite;
}

@keyframes run-route {
  0% { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: 0; }
}

.dot-pulse-1 {
  animation: map-dot-pulse 2s infinite alternate;
}

@keyframes map-dot-pulse {
  0% { r: 5; fill-opacity: 0.7; }
  100% { r: 9; fill-opacity: 0.2; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { display: none; }
  .hero__content { padding-block: 80px 60px; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__badges  { justify-content: center; }
  .hero__sub     { margin-inline: auto; }
}

/* =========================================================
   SECTIONS — SHARED
   ========================================================= */
.section {
  padding-block: var(--section-pad);
}
.section--alt {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 72px;
}
.section__header p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 16px;
}

/* =========================================================
   WHY SENTIENTKRUZE TECHNOLOGIES
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s, border-color 0.35s, background 0.35s;
  box-shadow: var(--shadow-card);
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.35s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,82,204,0.3);
  background: var(--bg-card-hover);
}

.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.why-card__icon--blue   { background: rgba(0,82,204,0.15); box-shadow: 0 0 20px rgba(0,82,204,0.25); }
.why-card__icon--purple { background: rgba(124,58,237,0.15); box-shadow: 0 0 20px rgba(124,58,237,0.25); }
.why-card__icon--green  { background: rgba(0,217,184,0.12); box-shadow: 0 0 20px rgba(0,217,184,0.2); }

.why-card__metric {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.why-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.why-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* =========================================================
   VISION & MISSION
   ========================================================= */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 720px) { .vm-grid { grid-template-columns: 1fr; } }

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s;
  box-shadow: var(--shadow-card);
}
.vm-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.vm-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  display: block;
}
.vm-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.vm-card p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-secondary);
}

/* =========================================================
   KRUZE PLATFORM
   ========================================================= */
.kruze-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 16px;
}

.kruze-tagline {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 560px;
  margin: 16px auto 72px;
  line-height: 1.8;
}

.kruze-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 760px) { .kruze-cards { grid-template-columns: 1fr; } }

.kruze-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.kruze-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,82,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.kruze-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,82,204,0.3);
}

.kruze-card__role {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.kruze-card__role-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kruze-card__role-icon--org  { background: rgba(0,82,204,0.18); box-shadow: 0 0 18px rgba(0,82,204,0.3); }
.kruze-card__role-icon--ride { background: rgba(0,217,184,0.12); box-shadow: 0 0 18px rgba(0,217,184,0.25); }
.kruze-card__role h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.feature-list li:hover {
  background: rgba(0,82,204,0.08);
  border-color: rgba(0,82,204,0.2);
  transform: translateX(4px);
}
.feature-list li .fi {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature item stagger on scroll */
.feature-list li { opacity: 0; transform: translateX(-16px); transition: opacity 0.5s, transform 0.5s, background 0.2s, border-color 0.2s; }
.feature-list.visible li { opacity: 1; transform: translateX(0); }
.feature-list.visible li:nth-child(1) { transition-delay: 0.05s; }
.feature-list.visible li:nth-child(2) { transition-delay: 0.12s; }
.feature-list.visible li:nth-child(3) { transition-delay: 0.19s; }
.feature-list.visible li:nth-child(4) { transition-delay: 0.26s; }
.feature-list.visible li:nth-child(5) { transition-delay: 0.33s; }

/* =========================================================
   INTELLIGENT TRANSPORTATION
   ========================================================= */
.intel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 860px) {
  .intel-inner { grid-template-columns: 1fr; gap: 48px; }
}

.intel-content .section__header {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 36px;
}

.intel-stat-row {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.intel-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.intel-stat__val {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.intel-stat__label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

.telemetry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  margin-top: 28px;
}
.telemetry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,217,184,0.6), transparent);
}
.telemetry-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.telemetry-card p {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

/* AI visual panel */
.intel-visual {
  position: relative;
}
.ai-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.ai-panel::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.ai-panel__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-panel__title::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-ring 2s infinite;
  flex-shrink: 0;
}

.ai-bar-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.ai-bar-label span:last-child { color: var(--text-muted); font-size: 12px; }
.ai-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.ai-bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.5s cubic-bezier(.22,1,.36,1);
}
.ai-bar-fill--blue   { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.ai-bar-fill--purple { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.ai-bar-fill--green  { background: linear-gradient(90deg, #00b99e, var(--green)); }
.ai-bar-fill--amber  { background: linear-gradient(90deg, #d97706, #fbbf24); }

.ai-panel.visible .ai-bar-fill { }
.ai-bar-fill.animated { width: var(--bar-w); }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding-block: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(0,82,204,0.12) 0%, rgba(124,58,237,0.06) 40%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
}
.cta-section .sub {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.8;
}
.cta-section .email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.cta-section .email a { color: var(--blue-bright); transition: color 0.2s; }
.cta-section .email a:hover { color: #fff; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 40px 32px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-secondary);
}
.footer__brand .logo-icon {
  width: 28px; height: 28px;
  background: var(--gradient-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.footer__link a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__link a:hover { color: var(--blue-bright); }

/* =========================================================
   SCROLLBAR
   ========================================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,82,204,0.5); }

/* =========================================================
   SELECTION
   ========================================================= */
::selection { background: rgba(0,82,204,0.4); color: #fff; }
