/*
 * EvoPulse Robotics — Main Stylesheet
 * styles.css
 *
 * Sections:
 *   1. CSS Variables & Reset
 *   2. Base Typography & Body
 *   3. Navigation
 *   4. Hero (Home)
 *   5. Ticker & Shared Sections
 *   6. Cards, Grids & Components
 *   7. Industries Page
 *   8. Solutions Page
 *   9. Why Us Page
 *  10. Contact / Form
 *  11. Robot Detail Pages
 *  12. Footer
 *  13. Animations & Utilities
 *  14. Responsive
 */

:root {
  /* Base */
  --black:      #06060a;
  --deep:       #0d0d14;
  --surface:    #12121c;
  --card:       #16161f;
  --border:     #252535;
  --border-l:   #353550;

  /* Silver/Chrome */
  --silver-dim: #4a4a65;
  --silver:     #7a7a9a;
  --silver-l:   #aaaac0;
  --chrome:     #d0d0e0;
  --white:      #f0f0f8;

  /* Accent 1 — Cyan (tech/robotics) */
  --cyan:       #00e5ff;
  --cyan-dim:   #00a8bb;
  --cyan-glow:  rgba(0,229,255,0.12);
  --cyan-b:     rgba(0,229,255,0.25);

  /* Accent 2 — Amber/Gold (premium/Caribbean) */
  --amber:      #ffb400;
  --amber-dim:  #cc8c00;
  --amber-glow: rgba(255,180,0,0.12);
  --amber-b:    rgba(255,180,0,0.25);

  /* Accent 3 — Crimson (CTA/urgency) */
  --crimson:    #ff2d55;
  --crimson-dim:#cc1a3a;
  --crimson-glow: rgba(255,45,85,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver-l);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor { display: none; }
.cursor-ring { display: none; }
.cursor.hover { width: 20px; height: 20px; background: var(--amber); box-shadow: 0 0 16px var(--amber); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: rgba(255,180,0,0.4); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--amber)); }

/* ── CANVAS PARTICLES ── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
@media (max-width: 768px) {
  #particles-canvas { display: none; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 130px;
  transition: height 0.3s, background 0.3s;
}
nav.scrolled {
  height: 80px;
  background: rgba(6,6,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  overflow: visible;
}
.nav-logo img {
  height: 162px; width: auto;
  margin-top: 24px;
  transition: height 0.3s, margin-top 0.3s;
  filter: drop-shadow(0 0 12px rgba(0,229,255,0.2));
}
nav.scrolled .nav-logo img { height: 88px; margin-top: 0; }

.nav-links {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  text-decoration: none;
  color: var(--silver);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 10px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--amber);
  transform: translateX(-100%);
  transition: transform 0.25s;
  z-index: -1;
}
.nav-cta:hover { color: var(--black); }
.nav-cta:hover::before { transform: translateX(0); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 160px 5% 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Diagonal accent line */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: 15%;
  width: 1px; height: 130%;
  background: linear-gradient(transparent, var(--cyan-b), var(--amber-b), transparent);
  transform: rotate(12deg);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: 18%;
  width: 1px; height: 130%;
  background: linear-gradient(transparent, rgba(255,180,0,0.08), transparent);
  transform: rotate(12deg);
  pointer-events: none;
}

.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-l);
  padding: 8px 16px;
  margin-bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s 0.15s ease both;
}
.hero h1 .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--amber) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .line-outline {
  display: block;
  color: var(--white);
  text-shadow: 0 0 40px rgba(0,229,255,0.3);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.75;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.45s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--crimson), #ff6b35);
  color: var(--white);
  border: none;
  padding: 15px 38px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(255,45,85,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(255,45,85,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--chrome);
  border: 1px solid var(--border-l);
  padding: 15px 38px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

/* Hero right — floating robot visual */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 1s 0.2s ease both;
}

.hero-robot-frame {
  position: relative;
  width: 420px; height: 520px;
}

.hero-robot-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--cyan-b), transparent 40%, var(--amber-b));
  border-radius: 4px;
}

.hero-robot-inner {
  position: absolute; inset: 1px;
  background: var(--card);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-robot-inner img {
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0,229,255,0.35)) drop-shadow(0 0 80px rgba(255,180,0,0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

.hero-robot-label {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border-l);
  padding: 8px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--amber);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

/* Decorative scan line on hero robot */
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 3s linear infinite;
  opacity: 0.6;
}
@keyframes scan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Corner decorations */
.corner { position: absolute; width: 16px; height: 16px; }
.corner-tl { top: 12px; left: 12px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.corner-tr { top: 12px; right: 12px; border-top: 2px solid var(--amber); border-right: 2px solid var(--amber); }
.corner-bl { bottom: 12px; left: 12px; border-bottom: 2px solid var(--amber); border-left: 2px solid var(--amber); }
.corner-br { bottom: 12px; right: 12px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

/* ── TICKER ── */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative; z-index: 1;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--silver-dim);
  white-space: nowrap;
  text-transform: uppercase;
}
.ticker-item span { color: var(--amber); }
.ticker-sep { color: var(--border-l); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STATS ── */
.stats {
  position: relative; z-index: 1;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--deep);
}

.stat-card {
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--border-l); }

.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.stat-card:nth-child(1)::before { background: var(--cyan); }
.stat-card:nth-child(2)::before { background: var(--amber); }
.stat-card:nth-child(3)::before { background: var(--crimson); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, var(--cyan), var(--amber)); }

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-card:nth-child(1) .stat-num { color: var(--cyan); }
.stat-card:nth-child(2) .stat-num { color: var(--amber); }
.stat-card:nth-child(3) .stat-num { color: var(--crimson); }
.stat-card:nth-child(4) .stat-num {
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--silver-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-bg-num {
  position: absolute;
  bottom: -10px; right: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  aria-hidden: true;
  overflow: hidden;
}

/* ── SECTION COMMONS ── */
section { position: relative; z-index: 1; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--cyan);
}

h2.sec-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.sec-sub {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
}

/* ── INDUSTRIES ── */
#industries {
  padding: 120px 5%;
  background: var(--black);
}

.industries-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.ind-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.ind-card:hover {
  background: var(--card);
  border-color: var(--border-l);
  transform: translateY(-4px);
}

.ind-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  transition: height 0.3s;
}
.ind-card:nth-child(1):hover::after { height: 2px; background: var(--cyan); }
.ind-card:nth-child(2):hover::after { height: 2px; background: var(--amber); }
.ind-card:nth-child(3):hover::after { height: 2px; background: var(--crimson); }
.ind-card:nth-child(4):hover::after { height: 2px; background: var(--cyan); }
.ind-card:nth-child(5):hover::after { height: 2px; background: var(--amber); }

.ind-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.ind-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chrome);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ind-card p {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

.ind-card.wide {
  grid-column: span 2;
}

/* ── PRODUCTS ── */
#products {
  padding: 120px 5%;
  background: var(--deep);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap; gap: 24px;
}

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

/* ── CARD BASE ── */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--cyan), 0 16px 48px rgba(0,229,255,0.12);
  z-index: 2;
}

/* ── IMAGE AREA ── */
.product-img-wrap {
  height: 300px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}

.product-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.product-img-wrap img {
  max-height: 260px;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.5s, filter 0.5s;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* Action photos */
.product-img-wrap.action-fill {
  height: 280px;
  padding: 0;
  background: #000;
}
.product-img-wrap.action-fill img {
  width: 100%; height: 100%;
  max-height: none; max-width: none;
  object-fit: cover;
  filter: none;
  opacity: 0.92;
  transition: opacity 0.4s, transform 0.5s;
}
.product-card:hover .action-fill img { opacity: 1; transform: scale(1.03); }

/* BellaBot dual-image */
.product-img-wrap.bella-dual {
  height: 340px;
  padding: 0;
  background: #000;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
}
.bella-product-img {
  width: 100% !important; height: 100% !important;
  max-height: none !important; max-width: none !important;
  object-fit: contain !important;
  background: var(--card);
  padding: 24px 16px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)) !important;
}
.bella-action-img {
  width: 100% !important; height: 100% !important;
  max-height: none !important; max-width: none !important;
  object-fit: cover !important;
  filter: none !important;
  opacity: 0.9;
  transition: opacity 0.4s, transform 0.5s;
}
.product-card:hover .bella-action-img { opacity: 1; transform: scale(1.03); }

/* T300 modes */
.product-img-wrap.t300-modes-wrap {
  height: 260px;
  background: #f8f8f8;
  padding: 16px 8px 28px;
  flex-direction: column;
}
.t300-modes-img {
  max-height: 200px !important; max-width: 100% !important;
  width: 100% !important;
  object-fit: contain !important;
  filter: none !important;
}
.t300-modes-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: #444;
  text-transform: uppercase;
  margin-top: 6px;
  text-align: center;
}

/* Image hover effects */
.product-card:hover .product-img-wrap img {
  transform: scale(1.08) translateY(-8px);
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.3)) drop-shadow(0 0 60px rgba(255,180,0,0.1));
}

/* Scan line on hover */
.product-img-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,229,255,0.05), transparent);
  top: -60px;
}
.product-card:hover .product-img-wrap::after {
  animation: scanProduct 1.5s ease-in-out;
}
@keyframes scanProduct {
  0%   { top: -60px; }
  100% { top: 100%; }
}

/* ── CARD BODY ── */
.product-body {
  padding: 28px;
  flex: 1;
}

.product-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.ptag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
}
.ptag.cyan   { color: var(--cyan);    border-color: var(--cyan-b);           background: var(--cyan-glow); }
.ptag.amber  { color: var(--amber);   border-color: var(--amber-b);          background: var(--amber-glow); }
.ptag.red    { color: var(--crimson); border-color: rgba(255,45,85,0.25);    background: var(--crimson-glow); }

.product-body h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.product-body p {
  font-size: 0.87rem;
  color: var(--silver-dim);
  line-height: 1.65;
  margin-bottom: 22px;
}
.product-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap 0.2s, color 0.2s;
}
.product-link::after { content: '→'; }
.product-card:hover .product-link { color: var(--cyan); }

/* ── LARGE CARD (BellaBot) ── */
.product-card.large {
  grid-column: span 3;
  flex-direction: row;
}
.product-card.large .product-img-wrap {
  width: 360px;
  min-width: 360px;
  height: auto;
  min-height: 340px;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.product-card.large .product-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.product-card.large .product-body > div:first-child {
  padding-right: 28px;
  border-right: 1px solid var(--border);
}
.product-card.large .product-body > div:last-child {
  padding-left: 28px;
}
.product-card.large .product-body h3 { grid-column: span 2; margin-bottom: 20px; }

/* ── WHY ── */
#why {
  padding: 120px 5%;
  background: var(--black);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 64px;
}

.feature-list { display: flex; flex-direction: column; }

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.feature-item:first-child { border-top: 1px solid var(--border); }

.feature-item::before {
  content: '';
  position: absolute;
  left: -5%; right: -5%;
  top: 0; bottom: 0;
  background: var(--surface);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 0;
}
.feature-item:hover::before { opacity: 1; }

.feature-num-wrap {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; padding-top: 4px;
}
.feature-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}
.feature-item:nth-child(1) .feature-num { color: var(--cyan); }
.feature-item:nth-child(2) .feature-num { color: var(--amber); }
.feature-item:nth-child(3) .feature-num { color: var(--crimson); }
.feature-item:nth-child(4) .feature-num { color: var(--cyan); }

.feature-content { position: relative; z-index: 1; }
.feature-content h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--chrome);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.feature-content p {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.7;
}

/* Coverage panel */
.coverage-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.coverage-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  display: flex; justify-content: space-between; align-items: center;
}
.coverage-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--chrome);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.coverage-status {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
}
.status-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 6px var(--cyan);
}

.territory-list {
  padding: 24px 32px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  column-gap: 48px;
}
.territory-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.territory-item:last-child { border-bottom: none; }
.territory-name {
  display: flex; align-items: center; gap: 12px;
  color: var(--silver-l);
  font-weight: 500;
}
.territory-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.territory-dot.active { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }


.territory-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.territory-badge.active { background: var(--cyan-glow); color: var(--cyan); border: 1px solid var(--cyan-b); }



/* ── CONTACT ── */
#contact {
  padding: 120px 5%;
  background: var(--deep);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,229,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,180,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.contact-left h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.contact-left p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-text { display: flex; flex-direction: column; gap: 4px; }
.info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--silver-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.info-value {
  font-size: 0.9rem;
  color: var(--silver-l);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-header-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  color: var(--chrome);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-header-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--amber);
  letter-spacing: 0.12em;
}

.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--silver-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--silver-l);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.06);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select option { background: var(--card); }

.form-submit { margin-top: 8px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--crimson) 0%, #ff6b35 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(255,45,85,0.25);
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 5% 32px;
  position: relative; z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 108px; width: auto;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.1));
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex; gap: 12px; margin-top: 28px;
}
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--silver-dim);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--amber); color: var(--amber); }

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--silver-dim);
  letter-spacing: 0.1em;
}
.footer-bottom .tagline { color: var(--amber); }

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(40px);
}
.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-right { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.large {
    grid-column: span 2;
    flex-direction: column;
  }
  .product-card.large .product-img-wrap {
    width: 100%;
    min-width: 0;
    height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-l);
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--chrome);
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Animated X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(6,6,10,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 150;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.nav-mobile-drawer.open {
  transform: translateY(0);
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-links > li {
  border-bottom: 1px solid var(--border);
}
.nav-mobile-links > li:first-child {
  border-top: 1px solid var(--border);
}
.nav-mobile-links > li > a {
  display: block;
  padding: 16px 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-links > li > a:hover,
.nav-mobile-links > li > a.nav-active { color: var(--cyan); padding-left: 8px; }

/* Mobile dropdown sub-items */
.nav-mobile-sub {
  list-style: none;
  padding: 0 0 12px 16px;
  display: none;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-sub.open { display: flex; }
.nav-mobile-sub li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: padding-left 0.2s;
}
.nav-mobile-sub li:last-child a { border-bottom: none; }
.nav-mobile-sub li a:hover { padding-left: 6px; }
.nav-mobile-sub .dd-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-l);
}
.nav-mobile-sub .dd-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.nav-mobile-sub li a:hover .dd-label { color: var(--cyan); }

/* Solutions toggle arrow */
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-toggle a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-toggle a:hover,
.nav-mobile-toggle a.nav-active { color: var(--cyan); }
.nav-mobile-arrow {
  font-size: 0.6rem;
  color: var(--silver-dim);
  transition: transform 0.25s;
}
.nav-mobile-arrow.open { transform: rotate(180deg); color: var(--cyan); }

/* Mobile CTA */
.nav-mobile-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-cta:hover { background: var(--amber); color: var(--black); }

@media (max-width: 768px) {
  /* Hide desktop nav elements */
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* Show mobile drawer */
  .nav-mobile-drawer { display: block; }

  /* Shrink nav height on mobile */
  nav { height: 80px; }
  nav.scrolled { height: 70px; }
  .nav-logo img { height: 90px !important; margin-top: 8px !important; }
  nav.scrolled .nav-logo img { height: 70px !important; margin-top: 0 !important; }

  /* Other layout fixes */
  .stats { grid-template-columns: 1fr 1fr; }
  .industries-layout { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.large {
    grid-column: span 1;
    flex-direction: column;
  }
  .product-card.large .product-img-wrap {
    width: 100%;
    min-width: 0;
    height: 260px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .product-card.large .product-body { grid-template-columns: 1fr; padding: 20px; }
  .product-card.large .product-body > div:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
  .product-card.large .product-body > div:last-child { padding-left: 0; }
  .product-card.large .product-body h3 { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

  .outcome-stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 18px;
    padding: 12px 16px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--cyan);
    border-radius: 0 4px 4px 0;
  }
  .outcome-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .outcome-label {
    font-size: 0.8rem;
    color: var(--silver-dim);
    line-height: 1.5;
    padding-top: 3px;
  }
  .solutions-footnote {
    text-align: center;
    font-size: 0.72rem;
    color: var(--silver-dim);
    opacity: 0.6;
    margin-top: 48px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
  }


/* ── SOLUTIONS DROPDOWN ── */
.nav-has-dropdown { position: relative; }

/* Invisible bridge covers the gap so hover doesn't break */
.nav-has-dropdown > a::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 20px;
  background: transparent;
  display: block !important;
  transform: none !important;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,6,10,0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  min-width: 240px;
  padding: 8px 0;
  z-index: 500;
  box-shadow: 0 24px 48px rgba(0,0,0,0.7);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  display: block;
  animation: ddFade 0.18s ease;
}
@keyframes ddFade {
  from { opacity:0; transform:translateX(-50%) translateY(-4px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.nav-dropdown li a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown li a:hover { background: rgba(0,229,255,0.07); }
.dd-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chrome);
  letter-spacing: 0.01em;
  text-transform: none;
}
.dd-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.nav-dropdown li a:hover .dd-label { color: var(--cyan); }

.nav-active { color: var(--cyan) !important; }
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--silver-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── ROBOT DETAIL LAYOUT ── */
.robot-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}

.robot-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.robot-back:hover { color: var(--cyan); }
.robot-back::before { content: '←'; }

/* Image gallery */
.robot-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 64px;
  background: var(--border);
}
.robot-gallery.single {
  grid-template-columns: 1fr;
}
.robot-img-primary {
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
  overflow: hidden;
  position: relative;
}
.robot-img-primary img {
  max-height: 400px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6));
  transition: transform 0.5s;
}
.robot-img-primary:hover img { transform: scale(1.03); }

.robot-img-action {
  background: #000;
  overflow: hidden;
  height: 460px;
  position: relative;
}
.robot-img-action img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.4s, transform 0.5s;
}
.robot-img-action:hover img { opacity: 1; transform: scale(1.03); }

/* T300 modes image — white bg, wide */
.robot-img-modes {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
  overflow: hidden;
}
.robot-img-modes img {
  width: 95%;
  max-height: 380px;
  object-fit: contain;
}

/* Image label badges */
.img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border-l);
  color: var(--silver-dim);
}

/* Content grid */
.robot-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.robot-main h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.robot-main .robot-tagline {
  font-size: 1rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}
.robot-main p {
  color: var(--silver-dim);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.robot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.rtag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.rtag.cyan { background: rgba(0,229,255,0.1); color: var(--cyan); border: 1px solid rgba(0,229,255,0.3); }
.rtag.amber { background: rgba(255,180,0,0.1); color: var(--amber); border: 1px solid rgba(255,180,0,0.3); }
.rtag.red { background: rgba(255,45,85,0.1); color: var(--crimson); border: 1px solid rgba(255,45,85,0.3); }

/* Spec table */
.spec-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.spec-panel h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 24px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-size: 0.78rem;
  color: var(--silver-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.spec-value {
  font-size: 0.85rem;
  color: var(--chrome);
  font-weight: 600;
  text-align: right;
}

/* Outcome stat */
.robot-outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(0,212,255,0.05);
  border-left: 3px solid var(--cyan);
  margin: 32px 0;
}
.robot-outcome-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}
.robot-outcome-label {
  font-size: 0.85rem;
  color: var(--silver-dim);
  line-height: 1.6;
  padding-top: 6px;
}

/* Use cases */
.use-cases {
  margin-top: 40px;
}
.use-cases h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 20px;
}
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.use-case-item {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--silver-l);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}
.use-case-item:hover { border-color: var(--border-l); }
.use-case-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan);
}

/* CTA block */
.robot-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.robot-cta p {
  color: var(--silver-dim);
  font-size: 0.9rem;
  margin: 0;
}
.robot-cta strong {
  display: block;
  color: var(--chrome);
  font-size: 1rem;
  margin-bottom: 4px;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.85; }

.footnote {
  font-size: 0.7rem;
  color: var(--silver-dim);
  opacity: 0.5;
  margin-top: 48px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

/* Modes grid for T300 */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.mode-card {
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.mode-card .mode-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mode-card p {
  font-size: 0.78rem;
  color: var(--silver-dim);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .robot-gallery { grid-template-columns: 1fr; }
  .robot-content { grid-template-columns: 1fr; }
  .spec-panel { position: static; }
  .use-case-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr 1fr; }
  .robot-cta { flex-direction: column; align-items: flex-start; }
  .robot-detail { padding: 0 20px 80px; }
}
