/* ═══════════════════════════════════════════════════════════════════════
   KINETIQ ANALYTICS ECOSYSTEM — VISION DEMO
   Modern Industrial Glassmorphism Theme
   ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --navy:        #111827;
  --navy-mid:    #1a2535;
  --navy-light:  #1f2d40;
  --orange:      #ea580c;
  --orange-glow: rgba(234, 88, 12, 0.35);
  --green:       #059669;
  --green-glow:  rgba(5, 150, 105, 0.3);
  --purple:      #7c3aed;
  --cyan:        #0891b2;
  --glass-bg:    rgba(255, 255, 255, 0.05);
  --glass-border:rgba(255, 255, 255, 0.10);
  --glass-blur:  12px;
  --text-primary:#f9fafb;
  --text-muted:  #9ca3af;
  --text-dim:    #4b5563;
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Utility ──────────────────────────────────────────────────────────── */
.mono        { font-family: 'Roboto Mono', monospace; }
.dim         { color: var(--text-muted); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius);
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 rgba(234, 88, 12, 0);
}
.btn--primary:hover {
  background: #c2410c;
  box-shadow: 0 0 28px var(--orange-glow), 0 0 60px rgba(234, 88, 12, 0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--orange);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}
.btn--nav:hover {
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-1px);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ── Navigation ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #fff;
  box-shadow: 0 0 16px var(--orange-glow);
}
.nav__logo-text {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.nav__logo-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  display: block;
  margin-top: -2px;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text-primary); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(234,88,12,0.15) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  top: 100px; right: -100px;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5,150,105,0.10) 0%, transparent 70%);
  bottom: 0; left: 40%;
  animation-delay: -8s;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.hero__telemetry {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.hero__telemetry--tl { top: 6rem; left: 2rem; text-align: left; }
.hero__telemetry--tr { top: 6rem; right: 2rem; text-align: right; }

.hero__content { position: relative; z-index: 2; max-width: 800px; }

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero__headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.metric-card {
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 140px;
  transition: var(--transition);
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.metric-card__value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.metric-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.4; }
}

.status-green { color: var(--green); }

/* ── Section Header ───────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  display: block;
}
.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-header__sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Pillars ──────────────────────────────────────────────────────────── */
.pillars {
  padding: 7rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pillar-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.pillar-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.pillar-card__code {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.pillar-card__tag {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.pillar-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.pillar-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.pillar-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.pillar-card__features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar-card__footer {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--glass-border);
  padding-top: 0.75rem;
}

/* ── Spotlight ────────────────────────────────────────────────────────── */
.spotlight {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.spotlight--alt { background: rgba(255,255,255,0.015); }

.spotlight__bg-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  pointer-events: none;
}

.spotlight__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spotlight__inner--rev { direction: rtl; }
.spotlight__inner--rev > * { direction: ltr; }

.spotlight__copy .section-header__tag { text-align: left; }

.spotlight__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.spotlight__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.spotlight__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.spotlight__bullets li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.spotlight__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ── AI Demo ──────────────────────────────────────────────────────────── */
.spotlight__demo {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 380px;
}
.ai-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.status-dot--green { background: var(--green); box-shadow: 0 0 8px var(--green-glow); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.ai-demo__chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.ai-msg {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 90%;
}
.ai-msg--user {
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.25);
  align-self: flex-end;
  color: var(--text-primary);
}
.ai-msg--engine {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  align-self: flex-start;
  color: var(--text-muted);
  min-height: 60px;
}

.ai-msg__thinking {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}
.thinking-dots {
  display: flex;
  gap: 4px;
}
.thinking-dots span {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.thinking-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1); opacity: 1; }
}

.ai-demo__input-row {
  display: flex;
  gap: 0.5rem;
}
.ai-demo__input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.6rem 1rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: var(--transition);
}
.ai-demo__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.ai-demo__input::placeholder { color: var(--text-dim); }

/* ── Field Flow ───────────────────────────────────────────────────────── */
.spotlight__flow {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  opacity: 0.35;
}
.flow-step--active {
  opacity: 1;
  background: rgba(255,255,255,0.04);
}
.flow-step__icon { font-size: 1.5rem; flex-shrink: 0; }
.flow-step__body { flex: 1; }
.flow-step__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.flow-step__desc { font-size: 0.82rem; color: var(--text-primary); line-height: 1.5; }
.flow-step__time { font-size: 0.65rem; color: var(--text-dim); flex-shrink: 0; padding-top: 0.2rem; }

.flow-connector {
  width: 2px;
  height: 24px;
  background: var(--glass-border);
  margin: 0 0 0 2.25rem;
  position: relative;
  overflow: hidden;
}
.flow-connector::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--green);
  transition: top 0.5s ease;
}
.flow-connector.active::after { top: 0; }

.flow-replay {
  margin-top: 1rem;
  align-self: flex-start;
}

/* ── Kiosk Section ────────────────────────────────────────────────────── */
.kiosk-section {
  padding: 7rem 2rem;
  background: rgba(255,255,255,0.015);
}

.kiosk-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.kiosk-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.kiosk-device__bezel {
  width: 340px;
  background: #0d1520;
  border-radius: 24px;
  padding: 16px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(234,88,12,0.08);
}

.kiosk-device__screen {
  background: #0a1018;
  border-radius: 14px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}

.kiosk-device__label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

/* Kiosk Screens */
.kscreen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.kscreen--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
}

.kscreen__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}

.kscreen__metric-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.kscreen__metric {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}
.kscreen__metric-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.kscreen__metric-lbl {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.kscreen__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.kbtn {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: left;
}
.kbtn--primary {
  background: var(--orange);
  color: #fff;
}
.kbtn--primary:hover {
  background: #c2410c;
  box-shadow: 0 0 16px var(--orange-glow);
}
.kbtn--secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}
.kbtn--secondary:hover {
  background: rgba(255,255,255,0.10);
}
.kbtn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
}
.kbtn--ghost:hover { color: var(--text-primary); }

.kbtn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.kbtn-back:hover { color: var(--text-primary); }

.kscreen__footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Kiosk Form */
.kscreen__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
}
.kform__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.kform__select,
.kform__input,
.kform__textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  outline: none;
  transition: var(--transition);
}
.kform__select:focus,
.kform__input:focus,
.kform__textarea:focus {
  border-color: var(--orange);
}
.kform__textarea { resize: none; }
.kform__select option { background: #1a2535; }

/* Kiosk Scan */
.kscreen__scan-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.scan-ring {
  width: 120px; height: 120px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  position: absolute;
  animation: scan-pulse 2s ease-out infinite;
  opacity: 0.7;
}
.scan-ring--2 { animation-delay: 1s; }
@keyframes scan-pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Kiosk Stats */
.kscreen__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.kstat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.kstat__val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.kstat__lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

/* Kiosk Success */
.kscreen__success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 0 30px var(--green-glow);
  animation: success-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes success-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ── Stats Bar ────────────────────────────────────────────────────────── */
.stats-bar {
  padding: 4rem 2rem;
  background: rgba(234, 88, 12, 0.04);
  border-top: 1px solid rgba(234, 88, 12, 0.15);
  border-bottom: 1px solid rgba(234, 88, 12, 0.15);
}
.stats-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-item__val {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item__lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--glass-border);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__copy {
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}
.footer__telemetry {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .spotlight__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .spotlight__inner--rev { direction: ltr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero__telemetry { display: none; }
  .hero__headline { font-size: 2.5rem; }
  .hero__metrics { gap: 0.75rem; }
  .metric-card { min-width: 120px; padding: 1rem; }
  .metric-card__value { font-size: 1.5rem; }
  .pillars__grid { grid-template-columns: 1fr; }
  .spotlight__inner { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 1.5rem; }
  .stat-item__val { font-size: 2rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__telemetry { align-items: center; }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .pillars, .spotlight, .kiosk-section { padding: 4rem 1.25rem; }
  .kiosk-device__bezel { width: 300px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   BRANDING UPDATE — Logo Images, Synthesis Spotlight, Watermarks
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Nav Logo Images ──────────────────────────────────────────────────── */
.nav__logo-img-shield {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.4));
}
.nav__logo-img-wordmark {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

/* ── Hero Logo ────────────────────────────────────────────────────────── */
.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero__logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(234, 88, 12, 0.35)) drop-shadow(0 0 60px rgba(234, 88, 12, 0.15));
  animation: logo-glow-pulse 4s ease-in-out infinite alternate;
}
@keyframes logo-glow-pulse {
  from { filter: drop-shadow(0 0 20px rgba(234, 88, 12, 0.30)) drop-shadow(0 0 50px rgba(234, 88, 12, 0.12)); }
  to   { filter: drop-shadow(0 0 32px rgba(234, 88, 12, 0.50)) drop-shadow(0 0 80px rgba(234, 88, 12, 0.22)); }
}

/* ── Footer Logo ──────────────────────────────────────────────────────── */
.footer__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

/* ── Geometric Watermark Patterns ─────────────────────────────────────── */
/* Applied as ::before pseudo-elements on section backgrounds */
.pillars {
  position: relative;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(234, 88, 12, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.012) 40px,
      rgba(255, 255, 255, 0.012) 41px
    );
  pointer-events: none;
  z-index: 0;
}
.pillars > * { position: relative; z-index: 1; }

.spotlight {
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.008) 60px,
      rgba(255, 255, 255, 0.008) 61px
    );
  pointer-events: none;
  z-index: 0;
}
.spotlight > * { position: relative; z-index: 1; }

/* Shield watermark behind glass panels */
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: url('assets/logo-shield-white.png') no-repeat center / contain;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ── Synthesis Spotlight Card ─────────────────────────────────────────── */
.synthesis-spotlight {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.synthesis-spotlight__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.synthesis-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.synthesis-card__query {
  background: rgba(234, 88, 12, 0.07);
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.synthesis-card__query p {
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-top: 0.3rem;
  font-style: italic;
  line-height: 1.5;
}
.synthesis-card__response {
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.synthesis-card__response p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.6;
}
.synthesis-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0.25rem 0;
}
.synthesis-spotlight__footer {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding-top: 0.75rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
}

/* ── Responsive logo adjustments ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__logo-img-wordmark { display: none; }
  .nav__logo-img-shield   { height: 30px; }
  .hero__logo-img         { height: 80px; }
  .footer__logo-img       { height: 56px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT FORM & NAV EMAIL LINK
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Nav email link ───────────────────────────────────────────────────── */
.nav__email-link {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__email-link:hover {
  color: var(--orange);
}

/* ── Contact Section Layout ───────────────────────────────────────────── */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.008) 40px,
      rgba(255, 255, 255, 0.008) 41px
    );
  pointer-events: none;
}
.contact-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Copy side ────────────────────────────────────────────────────────── */
.contact-section__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-section__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
}
.contact-section__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.contact-section__email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.contact-section__email-link:hover {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.6);
  box-shadow: 0 0 16px rgba(234, 88, 12, 0.2);
}
.contact-section__email-icon {
  font-size: 1rem;
}

/* ── Form card ────────────────────────────────────────────────────────── */
.contact-form-wrap {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

/* ── Form fields ──────────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .cform__row { grid-template-columns: 1fr; }
}
.cform__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cform__group--full {
  grid-column: 1 / -1;
}
.cform__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cform__input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  padding: 0.6rem 0.85rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.cform__input::placeholder {
  color: rgba(156, 163, 175, 0.5);
}
.cform__input:focus {
  border-color: var(--orange);
  background: rgba(234, 88, 12, 0.06);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.cform__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}
.cform__select option {
  background: #1e293b;
  color: var(--text-primary);
}
.cform__textarea {
  resize: vertical;
  min-height: 80px;
}
.cform__submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
}

/* ── Success state ────────────────────────────────────────────────────── */
.contact-form__success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.contact-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.15);
  border: 2px solid rgba(5, 150, 105, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #10b981;
}
.contact-form__success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.contact-form__success p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
