@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Sora:wght@400;600;700;800&display=swap');

/* GLOBAL CSS RESET & VARIABLES */
:root {
  --bg-pure: #000000;
  --bg-dark: #060606;
  --bg-card: #111111;
  --primary: #FF1E27;
  --primary-glow: rgba(255, 30, 39, 0.15);
  --primary-glow-strong: rgba(255, 30, 39, 0.4);
  --primary-gradient: linear-gradient(135deg, #FF1E27 0%, #FF6A1A 100%);
  --secondary: #FF6A1A;
  --text-main: #F5F5F5;
  --text-muted: #A0A0A0;
  --border-glass: rgba(255, 30, 39, 0.15);
  --border-glass-hover: rgba(255, 30, 39, 0.4);
  --font-title: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-pure);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* SCROLLBAR STYLE */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pure);
}
::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* UTILITIES & COMMON ELEMENTS */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

.text-orange {
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-orange-gradient {
  background: var(--primary-gradient);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

section {
  padding: 42px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-pure);
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 30, 39, 0.1) 50%, transparent);
}

/* APPLE STYLE WORD REVEAL TEXTS */
.word-reveal span {
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.2s ease, text-shadow 0.2s ease;
  display: inline-block;
  margin-right: 0.22em;
}

.word-reveal span.active {
  color: #F5F5F5;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.word-reveal span.highlight {
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* SUBPAGE BANNER HERO */
.subpage-hero {
  padding: 150px 0 70px 0;
  background: radial-gradient(circle at center, rgba(255, 30, 39, 0.05) 0%, #000 90%);
  border-bottom: 1px solid rgba(255, 30, 39, 0.15);
  text-align: center;
  position: relative;
}

.subpage-hero h1 {
  font-size: 3.4rem;
  margin-bottom: 12px;
  line-height: 1.1;
}

.breadcrumbs {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: var(--secondary);
}

.breadcrumbs span {
  margin: 0 8px;
  color: rgba(255,255,255,0.15);
}

/* CARD / GLASS SYSTEM */
.glass-panel {
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.glass-panel:hover {
  border-color: var(--border-glass-hover);
  box-shadow: inset 0 0 20px rgba(255, 30, 39, 0.08), 0 16px 45px rgba(0, 0, 0, 0.75);
  transform: translateY(-4px) scale(1.01);
}

/* TEASER CARD UPGRADES */
.teaser-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 20px;
  transition: all 0.25s ease;
}

.teaser-link:hover {
  gap: 12px;
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(255, 30, 39, 0.4);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  gap: 8px;
  letter-spacing: 0.02em;
}

.btn-solid {
  background: var(--primary-gradient);
  color: #000;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 30, 39, 0.3);
}

.btn-solid:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(255, 30, 39, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 30, 39, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 30, 39, 0.08);
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255, 30, 39, 0.15);
}

/* HEADER / STICKY NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 70px;
  border-bottom: 1px solid rgba(255, 30, 39, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.logo img {
  width: auto !important;
  height: 58px !important;
  max-width: 150px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px !important;
  box-shadow: 0 0 22px rgba(255, 30, 39, 0.14);
}

.logo svg {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  margin-left: auto;
  margin-right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

nav a {
  position: relative;
  text-decoration: none;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  padding: 10px 13px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

nav a:hover, nav a.active {
  color: #fff;
  background: rgba(255, 30, 39, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 30, 39, 0.18);
}

.header-cta {
  display: flex;
}

.header-cta .btn-outline {
  background: rgba(255, 30, 39, 0.1);
  border-color: rgba(255, 30, 39, 0.36);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* HERO SECTION (S1) */
#hero {
  min-height: 88vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--bg-pure);
  position: relative;
  overflow: hidden;
}

#hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 30, 39, 0.08);
  border: 1px solid rgba(255, 30, 39, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.status-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00FF66;
  box-shadow: 0 0 10px #00FF66;
  animation: dot-pulse 1.8s infinite;
}

@keyframes dot-pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #00FF66; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

/* Hero Typography */
.hero-title {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--primary);
  border: none;
  padding: 0;
  position: relative;
  display: inline-block;
}

.hero-tagline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-gradient);
  box-shadow: 0 0 8px var(--primary);
  animation: underline-draw 2s cubic-bezier(0.25, 1, 0.5, 1) forwards 1s;
}

@keyframes underline-draw {
  to { width: 100%; }
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* Hero Canvas & Scan line overlays */
.hero-visual {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-safety-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  border-radius: 24px;
  filter: saturate(0.92) contrast(1.06);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 94%, transparent 100%);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.scan-line-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 30, 39, 0) 0%,
    rgba(255, 30, 39, 0.05) 50%,
    rgba(255, 30, 39, 0) 100%
  );
  background-size: 100% 30px;
  z-index: 3;
  pointer-events: none;
  animation: scan-move 8s linear infinite;
}

@keyframes scan-move {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.radar-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 15px var(--primary);
  z-index: 4;
  pointer-events: none;
  opacity: 0.6;
  animation: radar-sweep 4s ease-in-out infinite;
}

@keyframes radar-sweep {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

/* SECTION 2: MISSION */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 38px auto;
}

.section-label {
  font-family: var(--font-title);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 30, 39, 0.12);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-gradient);
  box-shadow: 0 0 18px rgba(255, 30, 39, 0.45);
  transform: translateX(-50%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.mission-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-image-link,
.problem-image-link,
.solve-image-link,
.analytics-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 30, 39, 0.24);
  border-radius: 18px;
  background: #080808;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 30, 39, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mission-image-link:hover,
.mission-image-link:focus-visible,
.problem-image-link:hover,
.problem-image-link:focus-visible,
.solve-image-link:hover,
.solve-image-link:focus-visible,
.analytics-image-link:hover,
.analytics-image-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 30, 39, 0.55);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5), 0 0 34px rgba(255, 30, 39, 0.14);
}

.mission-image,
.problem-image,
.solve-image,
.analytics-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mission-svg-container {
  width: 100%;
  max-width: 500px;
  height: 350px;
}

.mountain-path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10, 8;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.1s linear;
}

.mountain-grid-line {
  stroke: rgba(255, 30, 39, 0.1);
  stroke-width: 1;
}

.mountain-summit-flag {
  transform-origin: 395px 125px;
  animation: flag-wave 3s ease-in-out infinite;
}

@keyframes flag-wave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

.mountain-pulse {
  transform-origin: center;
  animation: target-ring-pulse 2s infinite;
}

@keyframes target-ring-pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* SECTION 3: PROBLEM STATEMENT */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 30, 39, 0.02);
  border: 1px solid rgba(255, 30, 39, 0.05);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.problem-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.problem-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 30, 39, 0.1);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.problem-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.problem-info p {
  font-size: 0.95rem;
}

.problem-callout {
  margin-top: 30px;
  padding: 24px;
  border-left: 3px solid var(--primary);
  background: linear-gradient(90deg, rgba(255, 30, 39, 0.08) 0%, transparent 100%);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main);
}

.problem-visual {
  position: relative;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 18px;
  overflow: visible;
}

.problem-visual .problem-image-link,
.problem-visual .analytics-image-link {
  width: 100%;
  height: auto;
  margin: 0;
}

/* Simulated Warehouse BG Graphic */
.simulated-warehouse {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(17, 17, 17, 0.3) 0%, #000 100%),
              repeating-linear-gradient(0deg, rgba(255,106,26,0.02) 0px, rgba(255,106,26,0.02) 1px, transparent 1px, transparent 21px),
              repeating-linear-gradient(90deg, rgba(255,106,26,0.02) 0px, rgba(255,106,26,0.02) 1px, transparent 1px, transparent 21px);
  position: relative;
  overflow: hidden;
}

/* Mock Forklift SVG Drawing */
.warehouse-drawing {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  opacity: 0.25;
}

/* Floating Warning Tags */
.warning-tag {
  position: absolute;
  padding: 10px 16px;
  background: rgba(255, 0, 50, 0.15);
  border: 1px solid rgba(255, 0, 50, 0.5);
  border-radius: 6px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF3344;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 0, 50, 0.2);
  opacity: 0;
  transform: scale(0.3) translateY(15px);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.warning-tag.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.warning-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3344;
  box-shadow: 0 0 8px #FF3344;
}

#tag-1 { top: 20%; left: 15%; }
#tag-2 { top: 42%; left: 55%; }
#tag-3 { top: 68%; left: 20%; }
#tag-4 { top: 78%; left: 62%; }

/* SECTION 4: WHAT WE SOLVE */
.solve-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.solve-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.solve-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.solve-card {
  padding: 24px;
}

.solve-card-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.solve-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.solve-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.solve-visual {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solve-visual .solve-image-link {
  width: 100%;
  height: auto;
  margin: 0;
}

.node-system-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.node-svg-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.node-path {
  fill: none;
  stroke: rgba(255, 30, 39, 0.2);
  stroke-width: 2;
  stroke-dasharray: 8, 6;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.1s linear;
}

.node-path.active {
  stroke: var(--primary);
  animation: stroke-flow 15s linear infinite;
}

@keyframes stroke-flow {
  to { stroke-dashoffset: -200; }
}

.node-elements {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.central-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 30, 39, 0.2) 0%, rgba(0, 0, 0, 0.9) 80%);
  border: 2px solid var(--primary);
  box-shadow: 0 0 35px rgba(255, 30, 39, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-transform: uppercase;
}

.central-node i {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--primary);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.satellite-node {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.satellite-node i {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.satellite-node span {
  font-family: var(--font-title);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.satellite-node:hover span {
  color: var(--primary);
}

/* Satellite Positions (Clock coordinates approx) */
#sat-1 { top: 10%; left: 50%; transform: translateX(-50%); } /* 12 o'clock */
#sat-2 { top: 25%; left: 82%; } /* 2 o'clock */
#sat-3 { top: 68%; left: 82%; } /* 4 o'clock */
#sat-4 { top: 82%; left: 50%; transform: translateX(-50%); } /* 6 o'clock */
#sat-5 { top: 68%; left: 8%; }  /* 8 o'clock */
#sat-6 { top: 25%; left: 8%; }  /* 10 o'clock */

/* SECTION 5: HOW IT WORKS */
.pipeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  padding: 20px 0;
}

.home-pipeline {
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.home-pipeline .pipeline-step {
  width: 25%;
}

.subpage-pipeline .pipeline-step {
  width: 14%;
}

.pipeline-svg-bg {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}

.pipeline-flow-path {
  fill: none;
  stroke: rgba(255, 30, 39, 0.15);
  stroke-width: 3;
  transition: stroke-dashoffset 0.1s linear;
}

.pipeline-flow-path.active {
  stroke: var(--primary);
}

/* Data packet circle animation along the pipeline */
.data-packet {
  fill: var(--primary);
  filter: drop-shadow(0 0 5px var(--primary));
}

.pipeline-step {
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--text-main);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 30, 39, 0);
  transition: all 0.4s ease;
}

.pipeline-step:hover .step-card {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 30, 39, 0.25);
  transform: translateY(-5px);
}

.pipeline-step:hover .step-card::after {
  border-color: var(--primary);
  transform: rotate(30deg);
}

.step-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.step-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Outcome Badges Bar */
.outcome-badges-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 30, 39, 0.15);
  padding-top: 40px;
}

.outcome-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(255, 30, 39, 0.1);
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.outcome-badge i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* SECTION 6: CORE FEATURES SHOWCASE */
.showcase-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.showcase-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.showcase-tab-btn {
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--border-glass);
  padding: 18px 24px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.showcase-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.showcase-tab-btn i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.showcase-tab-btn span {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.showcase-tab-btn:hover {
  background: rgba(255, 30, 39, 0.03);
  color: var(--text-main);
  border-color: rgba(255, 30, 39, 0.3);
}

.showcase-tab-btn.active {
  background: rgba(255, 30, 39, 0.06);
  color: var(--primary);
  border-color: rgba(255, 30, 39, 0.4);
  box-shadow: inset 0 0 10px rgba(255, 30, 39, 0.05);
}

.showcase-tab-btn.active::before {
  transform: scaleY(1);
  transform-origin: top;
}

.showcase-tab-btn.active i {
  color: var(--primary);
}

/* Feature Viewport panels */
.showcase-display {
  min-height: 560px;
}

.feature-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 30px;
  animation: tab-fade-in 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.feature-panel.active {
  display: grid;
}

@keyframes tab-fade-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mock Dashboard Component Structure */
.mock-dashboard {
  background: #0b0b0b;
  border: 1px solid rgba(255, 30, 39, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.1s linear, box-shadow 0.3s ease;
}

/* Header bar */
.dashboard-header-bar {
  background: #121212;
  border-bottom: 1px solid rgba(255, 30, 39, 0.15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.camera-info-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.camera-rec-dot {
  width: 8px;
  height: 8px;
  background-color: #FF3344;
  border-radius: 50%;
  animation: rec-pulse 1s infinite alternate;
}

@keyframes rec-pulse {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.camera-timestamp {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Main Grid: video feed left, metrics panel right */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
}

.dashboard-feed-wrapper {
  background: #000;
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Camera feed mock placeholder styles */
.dashboard-feed-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.1) saturate(0.8);
}

.feed-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  z-index: 2;
}

.camera-hud-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hud-top-crosshairs {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 30, 39, 0.4);
  font-size: 0.7rem;
}

/* Sidebar Info Panel */
.dashboard-sidebar-panel {
  background: #0f0f0f;
  border-left: 1px solid rgba(255, 30, 39, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  height: 380px;
}

.console-alert-card {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.console-alert-card.critical {
  background: rgba(255, 0, 50, 0.08);
  border: 1px solid rgba(255, 0, 50, 0.4);
  animation: alert-flash-glow-critical 2s infinite alternate;
}

.console-alert-card.warning {
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid rgba(255, 165, 0, 0.4);
  animation: alert-flash-glow-warning 2s infinite alternate;
}

@keyframes alert-flash-glow-critical {
  from { box-shadow: 0 0 5px rgba(255, 0, 50, 0.1); }
  to { box-shadow: 0 0 15px rgba(255, 0, 50, 0.35); }
}

@keyframes alert-flash-glow-warning {
  from { box-shadow: 0 0 5px rgba(255, 165, 0, 0.1); }
  to { box-shadow: 0 0 15px rgba(255, 165, 0, 0.35); }
}

.alert-card-icon {
  font-size: 1.4rem;
  color: #FF3344;
}

.console-alert-card.warning .alert-card-icon {
  color: #FF6A1A;
}

.alert-card-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: #FF3344;
}

.console-alert-card.warning .alert-card-details h4 {
  color: #FF6A1A;
}

.alert-card-details p {
  font-size: 0.75rem;
  color: var(--text-main);
  font-weight: 500;
}

/* Telemetry list */
.telemetry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.telemetry-row .label {
  color: var(--text-muted);
}

.telemetry-row .val {
  font-weight: 600;
  font-family: monospace;
}

.val.alert-active {
  color: #FF3344;
  text-shadow: 0 0 5px #FF3344;
}

.val.status-safe {
  color: #00FF66;
  text-shadow: 0 0 5px #00FF66;
}

/* Dashboard Bottom statistics bar */
.dashboard-bottom-bar {
  background: #121212;
  border-top: 1px solid rgba(255, 30, 39, 0.15);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.db-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.db-stat-num {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.db-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* FEATURE SPECIFIC MOCKS */
/* S6.1 Proximity circle */
.proximity-zone-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 100px;
  border: 2px dashed #FF3344;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 51, 68, 0.3);
  animation: ring-ripple 1.8s infinite ease-out;
}

@keyframes ring-ripple {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.forklift-mock-svg {
  position: absolute;
  width: 320px;
  height: auto;
  opacity: 0.95;
}

/* S6.2 PPE Compliance widget */
.compliance-circle-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.compliance-gauge-svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.compliance-gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.compliance-gauge-fill {
  fill: none;
  stroke: #FF3344; /* Defaults to red violation */
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 0.8s ease;
}

.compliance-gauge-text {
  position: absolute;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.ppe-bar-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppe-bar-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ppe-bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ppe-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.ppe-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  width: 0;
  transition: width 1s ease-out;
}

/* S6.3 Restricted Zone Polygon */
.intrusion-polygon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.danger-polygon-line {
  fill: rgba(255, 0, 50, 0.08);
  stroke: #FF3344;
  stroke-width: 2.5;
  stroke-dasharray: 6;
  animation: polygon-border-flow 1s linear infinite;
}

@keyframes polygon-border-flow {
  to { stroke-dashoffset: -12; }
}

.worker-bounding-box {
  position: absolute;
  border: 2px solid #FF3344;
  box-shadow: 0 0 10px rgba(255, 51, 68, 0.4);
  background: rgba(255, 51, 68, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px;
  z-index: 4;
}

.bb-label {
  background: #FF3344;
  color: #000;
  font-family: var(--font-title);
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 2px;
  align-self: flex-start;
  text-transform: uppercase;
}

/* Checklist elements */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checklist-item i.fa-check-circle {
  color: #00FF66;
}

.checklist-item i.fa-circle {
  color: rgba(255,255,255,0.1);
}

/* S6.4 Speedometer Sparkline */
.sparkline-container {
  height: 80px;
  width: 100%;
  position: relative;
}

.sparkline-svg {
  width: 100%;
  height: 100%;
}

.sparkline-path {
  fill: none;
  stroke: #FF3344;
  stroke-width: 2;
}

.sparkline-area {
  fill: url(#sparkline-grad);
}

/* S6.8 Siren Alarm waves */
.siren-pole-container {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.siren-graphic {
  font-size: 4rem;
  color: #FF3344;
  filter: drop-shadow(0 0 15px #FF3344);
  z-index: 5;
  animation: siren-wiggle 0.5s infinite alternate;
}

@keyframes siren-wiggle {
  0% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

.siren-sound-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.siren-wave-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 51, 68, 0.4);
  border-radius: 50%;
  animation: wave-expand 1.5s infinite linear;
}

.siren-wave-circle:nth-child(2) {
  animation-delay: 0.5s;
}
.siren-wave-circle:nth-child(3) {
  animation-delay: 1s;
}

@keyframes wave-expand {
  0% { width: 60px; height: 60px; opacity: 1; }
  100% { width: 220px; height: 220px; opacity: 0; }
}

/* Text descriptions below features list */
.feature-info-block {
  padding: 30px;
  margin-top: 15px;
}

.feature-info-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin-top: 24px;
}

.feature-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.feature-bullet i {
  color: var(--primary);
  font-size: 1rem;
}

/* SECTION 7: ANALYTICS, REPORTING & CLOSE */
.analytics-section-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* Dashboard Mock S7 */
.analytics-dashboard-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #090909;
  border: 1px solid rgba(255, 30, 39, 0.2);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.analytics-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.analytics-stat-card {
  padding: 16px;
  background: #111;
  border: 1px solid rgba(255, 30, 39, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.analytics-stat-card .num {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}

.analytics-stat-card .lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.analytics-stat-card .trend {
  font-size: 0.65rem;
  font-weight: 600;
  color: #00FF66;
}

.analytics-stat-card .trend.down {
  color: #00FF66;
}

/* Charts Grid */
.charts-grid-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.chart-box {
  background: #111;
  border: 1px solid rgba(255,106,26,0.1);
  border-radius: 8px;
  padding: 20px;
  height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chart-box h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.chart-canvas-wrapper {
  position: relative;
  flex: 1;
  min-height: 0;
}

/* Risk Zones and Heatmap Row */
.risk-heatmap-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.risk-zones-box {
  background: #111;
  border: 1px solid rgba(255,106,26,0.1);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.risk-zones-box h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.risk-bar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.risk-bar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.risk-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-main);
  font-weight: 500;
}

.risk-bar-label span:last-child {
  font-family: monospace;
  color: var(--primary);
}

.risk-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  overflow: hidden;
}

.risk-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Heatmap Grid */
.heatmap-box {
  background: #111;
  border: 1px solid rgba(255,106,26,0.1);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heatmap-box h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  flex: 1;
}

.heatmap-days-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
  padding: 15px 0;
  text-transform: uppercase;
}

.heatmap-cells-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}

.heatmap-row-cells {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  height: 100%;
}

.heatmap-cell {
  flex: 1;
  aspect-ratio: 1;
  background: rgba(255, 30, 39, 0.05);
  border-radius: 2px;
  transition: background 0.5s ease;
}

.heatmap-cell:hover {
  border: 1px solid var(--primary);
}

/* Heatmap Opacities */
.hm-level-0 { background: rgba(255, 30, 39, 0.03); }
.hm-level-1 { background: rgba(255, 30, 39, 0.15); }
.hm-level-2 { background: rgba(255, 30, 39, 0.35); }
.hm-level-3 { background: rgba(255, 30, 39, 0.6); }
.hm-level-4 { background: rgba(255, 30, 39, 0.95); box-shadow: 0 0 5px rgba(255, 30, 39, 0.3); }

.heatmap-legend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.heatmap-legend-cell {
  width: 10px;
  height: 10px;
  border-radius: 1px;
}

/* S7 Closing Right Side Content */
.closing-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.val-prop-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.val-prop-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.val-prop-card h4 {
  font-size: 1rem;
  color: var(--text-main);
}

.val-prop-card p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* physical hardware container */
.device-showcase-box {
  display: flex;
  gap: 24px;
  padding: 24px;
  align-items: center;
}

.device-mock-image {
  flex-shrink: 0;
  width: 130px;
  height: 90px;
  position: relative;
}

/* physical hardware mock style */
.hardware-box-drawing {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  border: 1px solid rgba(255,106,26,0.3);
  box-shadow: 0 5px 20px rgba(0,0,0,0.8);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
}

.hardware-fins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: repeating-linear-gradient(90deg, #111 0px, #111 2px, #333 2px, #333 4px);
  border-bottom: 2px solid #000;
}

.hardware-ports {
  display: flex;
  gap: 4px;
}

.hardware-port {
  width: 12px;
  height: 6px;
  background: #444;
  border-radius: 1px;
}

.hardware-logo {
  position: absolute;
  right: 8px;
  bottom: 16px;
  color: var(--primary);
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
}

.hardware-indicator-led {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 6px var(--primary);
  animation: dot-pulse 1.5s infinite;
}

.device-info h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.device-info p {
  font-size: 0.85rem;
  line-height: 1.4;
}

.device-capabilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.device-cap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.device-cap-item i {
  color: #00FF66;
}

.contact-info-block {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 30, 39, 0.16);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 30, 39, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 30, 39, 0.07));
  border-color: rgba(255, 30, 39, 0.28);
  transform: translateY(-2px);
}

.contact-item i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  background: var(--primary-gradient);
  box-shadow: 0 0 20px rgba(255, 30, 39, 0.26);
}

.contact-item span,
.contact-item a {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--primary);
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.success {
  color: #08140c;
  background: rgba(0, 255, 102, 0.85);
}

.form-status.error {
  color: #fff;
  background: rgba(255, 51, 68, 0.18);
  border: 1px solid rgba(255, 51, 68, 0.45);
}

button:disabled,
.btn:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none !important;
}

/* FOOTER */
footer {
  padding: 60px 0;
  background-color: #030303;
  border-top: 1px solid rgba(255, 30, 39, 0.15);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.footer-logo img {
  width: auto !important;
  height: 58px !important;
  max-width: 150px;
  object-fit: contain;
  border-radius: 6px !important;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* MOBILE CTA - hidden on desktop, only shown inside mobile nav overlay */
.header-cta-mobile {
  display: none;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
  transition: color 0.3s ease, transform 0.2s ease;
  outline: none;
}

.mobile-menu-toggle:hover {
  color: var(--primary);
}

.mobile-menu-toggle:active {
  transform: scale(0.9);
}

/* =============================================
   RESPONSIVE DESIGN — ALL BREAKPOINTS
   ============================================= */

/* --- 1200px: Large Tablet / Small Laptop --- */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.2rem; }
  .container { padding: 0 28px; }
  nav { margin-right: 10px; }
  nav a { font-size: 0.78rem; padding: 9px 9px; }
  .header-cta .btn { padding: 9px 14px !important; font-size: 0.78rem !important; }
  .showcase-container { grid-template-columns: 260px 1fr; }
  .analytics-section-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- 1024px: Tablet Landscape --- */
@media (max-width: 1024px) {
  /* Mission core values: 5 cols -> 3 cols */
  .core-values-grid { grid-template-columns: repeat(3, 1fr) !important; }
  /* Subpage hero typography */
  .subpage-hero h1 { font-size: 2.6rem; }
  .subpage-hero p { font-size: 1rem; }
}

/* --- 992px: Tablet Portrait --- */
@media (max-width: 992px) {
  section { padding: 46px 0; }
  .container { padding: 0 30px; }

  /* Hero */
  #hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  #hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 34px;
  }
  .hero-visual { height: 300px; margin-top: 18px; }
  .section-header { margin-bottom: 30px; }

  /* Grids — all become single col on tablet */
  .mission-grid  { grid-template-columns: 1fr; gap: 28px; }
  .problem-grid  { grid-template-columns: 1fr; gap: 28px; }
  .solve-grid    { grid-template-columns: 1fr; gap: 28px; }
  .home-page .mission-visual,
  .home-page .problem-visual,
  .home-page .solve-visual {
    height: auto;
    min-height: 0;
  }
  .home-page .teaser-card {
    min-height: 0;
  }

  /* Features showcase */
  .showcase-container { grid-template-columns: 1fr; }
  .showcase-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .showcase-nav::-webkit-scrollbar { display: none; }
  .showcase-tab-btn { flex-shrink: 0; padding: 12px 20px; }

  /* Pipeline: stack vertically */
  .pipeline-container { flex-direction: column; align-items: center; gap: 30px; }
  .home-pipeline {
    margin-bottom: 28px;
    padding: 8px 0;
  }
  .pipeline-step,
  .home-pipeline .pipeline-step,
  .subpage-pipeline .pipeline-step { width: 80%; }
  .pipeline-svg-bg { display: none; }

  /* Outcome badges: wrap */
  .outcome-badges-bar { flex-wrap: wrap; justify-content: center; }
}

/* --- 768px: Mobile Landscape / Small Tablet --- */
@media (max-width: 768px) {
  section { padding: 36px 0; }
  .container { padding: 0 24px; }

  /* Subpage hero */
  .subpage-hero { padding: 110px 0 50px; }
  .subpage-hero h1 { font-size: 2rem; }
  .subpage-hero p { font-size: 0.95rem; }

  /* ── Header / Nav ── */
  header { height: 70px; }
  header .container { position: relative; }
  .logo img {
    height: 48px !important;
    max-width: 120px;
  }

  /* Show hamburger toggle */
  .mobile-menu-toggle { display: block; }

  /* Hide desktop CTA */
  .header-cta { display: none; }

  /* Mobile nav overlay */
  nav {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 40px 40px 40px;
    margin: 0;
    border: none;
    border-radius: 0;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    gap: 30px;
    overflow-y: auto;
  }

  /* Open state */
  header.nav-open nav { left: 0; }

  /* Nav links styling */
  nav a {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-title);
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  /* Show mobile CTA inside overlay */
  .header-cta-mobile {
    display: inline-flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .header-cta-mobile a {
    width: auto !important;
    min-width: 200px;
  }

  /* ── Hero ── */
  #hero {
    padding-top: 92px;
    padding-bottom: 28px;
  }
  .hero-title   { font-size: 2.45rem; }
  .hero-tagline { font-size: 1.4rem; }
  .hero-visual  { height: 230px; margin-top: 12px; }
  .hero-ctas    { flex-direction: column; width: 100%; gap: 12px; }
  .btn { width: 100%; }

  /* ── Mission ── */
  .mission-grid { grid-template-columns: 1fr; gap: 22px; }
  .mission-visual { min-height: 0; }
  /* Core values: 2 cols on mobile */
  .core-values-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Problem ── */
  .problem-grid { grid-template-columns: 1fr; }
  .home-page .problem-visual { height: auto; }

  /* ── Solve / Node system ── */
  .solve-grid     { grid-template-columns: 1fr; }
  .solve-features { grid-template-columns: 1fr; }
  .home-page .solve-visual   { height: auto; }
  /* Node system: scale down */
  .central-node { width: 90px; height: 90px; font-size: 0.6rem; }
  .central-node i { font-size: 1.4rem; margin-bottom: 4px; }
  .satellite-node { width: 65px; height: 65px; padding: 5px; }
  .satellite-node i { font-size: 0.85rem; margin-bottom: 2px; }
  .satellite-node span { font-size: 0.42rem; }

  /* ── Pipeline ── */
  .pipeline-container { gap: 24px; }
  .home-pipeline { margin-bottom: 24px; }
  .pipeline-step,
  .home-pipeline .pipeline-step,
  .subpage-pipeline .pipeline-step { width: 90%; }
  .outcome-badges-bar { gap: 14px; justify-content: center; }
  .outcome-badge { padding: 10px 16px; font-size: 0.78rem; }

  /* ── Features showcase ── */
  .showcase-container { grid-template-columns: 1fr; }
  .showcase-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .showcase-nav::-webkit-scrollbar { display: none; }
  .showcase-tab-btn { flex-shrink: 0; padding: 10px 16px; font-size: 0.8rem; }

  /* ── Analytics ── */
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-feed-wrapper { height: 260px; }
  .dashboard-sidebar-panel {
    border-left: none;
    border-top: 1px solid rgba(255, 30, 39, 0.15);
    height: auto;
    max-height: 240px;
  }
  .dashboard-bottom-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .analytics-stats-row { grid-template-columns: 1fr 1fr; }
  .charts-grid-row { grid-template-columns: 1fr; }
  .risk-heatmap-row { grid-template-columns: 1fr; }
  /* Contact section */
  .contact-section { padding: 24px 20px !important; margin-top: 40px !important; }
  .contact-form-grid { grid-template-columns: 1fr !important; }
  .contact-info-block { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .footer-nav { flex-direction: column; gap: 16px; align-items: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── Global ── */
  /* btn inside mobile nav should NOT stretch 100% */
  .header-cta-mobile .btn { width: auto !important; }
}

/* --- 480px: Mobile Portrait --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  #hero {
    padding-top: 86px;
    padding-bottom: 22px;
  }
  .hero-title   { font-size: 2rem; }
  .hero-tagline { font-size: 1.15rem; }
  .hero-subtitle { font-size: 1rem !important; }
  .hero-visual { height: 190px; }

  /* Value props: single col */
  .value-props-grid { grid-template-columns: 1fr; }

  /* Mission: single col values */
  .core-values-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Pipeline: full width steps */
  .pipeline-step,
  .home-pipeline .pipeline-step,
  .subpage-pipeline .pipeline-step { width: 100%; }

  /* Analytics */
  .analytics-stats-row { grid-template-columns: 1fr; }
  .dashboard-bottom-bar { grid-template-columns: 1fr; }
  .heatmap-cells-container { gap: 2px; }
  .heatmap-row-cells { gap: 2px; }
  .contact-form-grid { grid-template-columns: 1fr !important; }

  /* Outcome badges */
  .outcome-badges-bar { gap: 10px; }
  .outcome-badge { padding: 8px 14px; font-size: 0.72rem; }

  /* Solve visual */
  .home-page .solve-visual { height: auto; }
  .home-page .problem-visual { height: auto; }

  /* Footer */
  .footer-bottom { font-size: 0.7rem; }
}

/* ACCESSIBILITY / PREFERS-REDUCED-MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .radar-beam, .scan-line-overlay, .proximity-zone-ring, .siren-wave-circle {
    display: none !important;
  }
  #particle-canvas {
    display: none !important;
  }
  .static-eye-fallback {
    display: block !important;
  }
}

.static-eye-fallback {
  display: none;
  width: 280px;
  height: 280px;
  background: url('../images/logo.png?v=202607101111') no-repeat center center;
  background-size: contain;
}

