/* ========== GLOBAL RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Exo 2', system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: #0b1020;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
}

main {
  position: relative;
}

/* ========== BRAND LINK ========== */
.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}

.brand:hover {
  opacity: 0.85;
}


/* ========== VIDEO BACKGROUND (INDEX) ========== */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 30%, transparent 30%);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
}

.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #ffffff;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

/* ========== NAV ========== */
.nav-shell {
  position: fixed;
  top: 24px;
  left: 50%;
  gap: 18px;
  transform: translateX(-50%);
  z-index: 10;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.nav-shell.fade-in {
  opacity: 1;
}

.nav-shell > * {
  position: relative;
  z-index: 1;
}

.brand-icon-wrapper {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  padding: 6px;
}

.brand-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #444;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.login-btn {
  margin-left: 16px;
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE MENU TOGGLE (HIDDEN ON DESKTOP) */
.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

/* Optional: X animation when open */
.nav-shell.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-shell.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-shell.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========== HERO (INDEX) ========== */
.hero {
  min-height: 100vh;
  padding: 140px 6vw 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

h1 {
  font-family: 'Bebas Neue', system-ui, -apple-system, sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.9;
  margin-bottom: 24px;
  color: white;
  max-width: 600px;
  letter-spacing: 0.02em;
  text-align: left;
  width: 100%;
}

/* Typing animation */
.typing-text {
  display: block;
  text-align: left;
}

.typing-text .cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: white;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.typing-text .char {
  display: inline;
}

.hero-sub {
  font-size: 16px;
  max-width: 600px;
  color: #dbdbdb;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  text-align: center;
}

.hero-sub.fade-in {
  opacity: 1;
}

/* ========== NEW SPLIT CARD LAYOUT ========== */
.section {
  min-height: auto;
  padding: 12px 6vw 12px;
  display: flex;
  align-items: center;
}

.split-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4px;
  min-height: 520px;
}

.split-card.reverse {
  grid-template-columns: 1fr 1.4fr;
}

.split-card.reverse .split-card-hero {
  order: 2;
}

.split-card.reverse .split-card-metrics {
  order: 1;
}

/* Left: White hero tile with robot */
.split-card-hero {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.split-card-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.split-card-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-title {
  font-family: 'Bebas Neue', system-ui, -apple-system, sans-serif;
  font-size: 62px;
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-title strong {
  font-weight: 400;
}

.hero-title strong.thin {
  font-weight: 400;
}

.hero-subtitle {
  font-size: 24px;
  color: #303843;
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-cta-btn {
  padding: 12px 32px;
  border-radius: 999px;
  border: 2px solid #0f172a;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.hero-cta-btn:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.hero-robot {
  position: absolute;
  bottom: 0;
  right: 0;
  /* max-width: 80%; */
  /* max-height: 90%; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1.0) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  z-index: 1;
  opacity: 0.4;
}

/* Right: Stacked metric cards */
.split-card-metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Feature grid: 2x2 layout */
.split-card-metrics.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

/* Feature stack: vertical column layout */
.split-card-metrics.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.split-card-metrics.feature-stack .feature-box {
  min-height: 120px;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.split-card-metrics.feature-stack .feature-icon {
  align-self: center;
  flex-shrink: 0;
}

.split-card-metrics.feature-stack .feature-content {
  flex: 1;
}

.metric-card {
  border-radius: 28px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.metric-card-yellow {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
  color: #854d0e;
}

.metric-card-blue {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  color: #1e3a8a;
}

.metric-card-green {
  background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
  color: #14532d;
}

.metric-card-purple {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
  color: #4c1d95;
}

.metric-card-light {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #0f172a;
}

/* NEW: Individual feature box styling */
.feature-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  padding: 28px;
  min-height: 160px;
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

.feature-icon {
  font-size: 48px;
  line-height: 1;
  opacity: 0.9;
  align-self: flex-start;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0;
}

.feature-title {
  font-family: 'Bebas Neue', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #0f172a;
}

.feature-description {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.6;
  line-height: 1.5;
  color: #0f172a;
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-bottom: 4px;
}

.metric-subtitle {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 12px;
  font-weight: 500;
}

.metric-value {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-denom {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.7;
}

.metric-value-large {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.metric-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  opacity: 0.4;
}

.metric-cta {
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid #0f172a;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.metric-cta:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

[data-parallax-card] {
  will-change: transform;
  transition: transform 0.08s linear;
}

/* ========== TESTIMONIAL STRIP (INDEX) ========== */
.testimonials-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-shell {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 68px 0;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  padding: 0 6vw;
}

.testimonial-card {
  flex: 0 0 320px;
  border-radius: 20px;
  padding: 18px 20px 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* demo solid colors as avatar placeholders */
.avatar-1 { background: linear-gradient(135deg, #ffb77a, #f9664f); }
.avatar-2 { background: linear-gradient(135deg, #6fd4ff, #2563eb); }
.avatar-3 { background: linear-gradient(135deg, #f9a8ff, #e11d48); }
.avatar-4 { background: linear-gradient(135deg, #fde68a, #b45309); }
.avatar-5 { background: linear-gradient(135deg, #bbf7d0, #16a34a); }

.handle {
  font-weight: 600;
}

/* ========== FOOTER (INDEX) ========== */
/* ========== FOOTER (REDESIGNED - LIGHT THEME) ========== */
.footer {
  color: #475569;
  padding: 80px 6vw 40px;
  margin-top: 80px;
  border-top: 1px solid #e2e8f0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 60px;
}

.footer-newsletter-section {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.footer-headline {
  font-size: 28px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.footer-subheadline {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Newsletter Pill Form (mimics nav) */
.newsletter-form-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(32px);
  margin-bottom: 28px;
  border: 1px solid #e2e8f0;
}

.newsletter-form-pill .brand-icon-wrapper {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  padding: 6px;
}

.newsletter-form-pill .brand-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.newsletter-input-pill {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.newsletter-input-pill::placeholder {
  color: #94a3b8;
}

.newsletter-btn-pill {
  padding: 9px 28px;
  border-radius: 999px;
  border: none;
  background: #000000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.newsletter-btn-pill:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.footer-socials-top {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #0f172a;
}

/* Bottom Bar */
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 960px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 60px 24px 32px;
  }

  .footer-headline {
    font-size: 22px;
  }

  .footer-subheadline {
    font-size: 14px;
  }

  .newsletter-form-pill {
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
  }

  .newsletter-input-pill {
    width: 100%;
    order: 2;
    padding: 10px 12px;
  }

  .newsletter-btn-pill {
    order: 3;
    width: 100%;
    padding: 12px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-column h4 {
    font-size: 13px;
  }

  .footer-column a {
    font-size: 13px;
  }
}

/* ========== PRODUCTS PAGE LAYOUT ========== */
.page {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 32px 40px;
}

.page-header {
  margin: 120px 0 32px; /* push content below fixed nav */
}

.page-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.product-header {
  width: 100%;
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-header span.highlight {
  color: #2563eb;
}

.product-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.product-image {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-name {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  color: #4b5563;
}

/* ACCESSORIES HEADING */
.section-divider {
  border-top: 1px solid #e5e7eb;
  margin: 56px 0 24px;
}

.section-title-products {
  font-size: 24px;
  font-weight: 500;
}

.accessories {
  margin-top: 32px;
}

.accessories-grid .product-image {
  max-width: 320px;
}

/* ========== LOGO STRIP (PARTNERS) ========== */
.logos-section {
  display: flex;
  justify-content: center;
  padding: 40px 6vw 56px;
}

.logos-shell {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.logos-shell img {
  height: 96px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logos-shell img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Make product cards clickable as a whole tile */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link .product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.product-card-link:hover .product-card {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .split-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .split-card.reverse {
    grid-template-columns: 1fr;
  }

  .split-card.reverse .split-card-hero,
  .split-card.reverse .split-card-metrics {
    order: unset;
  }

  .hero-robot {
    /* max-width: 60%; */
    /* max-height: 70%; */
  }

  .split-card-metrics {
    flex-direction: row;
    gap: 12px;
  }
  
  .split-card-metrics.feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split-card-metrics.feature-stack {
    flex-direction: column;
  }

  .metric-card {
    min-height: 280px;
  }
  
  .feature-box {
    min-height: 180px;
  }
}

@media (max-width: 960px) {
  /* NAV: pill full-width-ish with dropdown */
  .nav-shell {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    padding: 12px 18px 16px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none; /* hidden until menu open */
  }

  .nav-shell.nav-open .nav-links {
    display: flex;
  }

  .login-btn {
    display: none; /* hide pill login on very small screens */
  }

  .menu-toggle {
    display: flex; /* show hamburger */
  }

  .hero {
    padding-top: 150px;
  }

  .testimonials-track {
    padding: 0 24px;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }

  .page {
    padding: 0 20px 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
}

@media (max-width: 768px) {
  .split-card-metrics {
    flex-direction: column;
  }
  
  .split-card-metrics.feature-grid {
    grid-template-columns: 1fr;
  }
  
  .split-card-metrics.feature-stack {
    flex-direction: column;
  }

  .hero-title {
    font-size: 40px;
  }

  .metric-value {
    font-size: 52px;
  }

  .metric-value-large {
    font-size: 60px;
  }

  .hero-robot {
    /* max-width: 70%; */
    /* max-height: 75%; */
  }

  .logos-shell {
    justify-content: center;
    gap: 14px;
  }

  .logos-shell img {
    height: 72px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    max-width: 220px;
  }

  .split-card-hero {
    padding: 32px;
  }

  .hero-robot {
    /* max-width: 75%; */
    /* max-height: 80%; */
  }

  .metric-card {
    padding: 28px;
  }
  
  .feature-box {
    padding: 24px;
    min-height: 140px;
  }
  
  .feature-icon {
    font-size: 40px;
  }
  
  .feature-title {
    font-size: 15px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}

/* ========== UTILITY PATTERNS ========== */
/* Add these classes to any element for retro/technical effects */

.pattern-halftone-sm {
  position: relative;
}

.pattern-halftone-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.1) 40%, transparent 40%);
  background-size: 6px 6px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.pattern-halftone-md {
  position: relative;
}

.pattern-halftone-md::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.12) 45%, transparent 45%);
  background-size: 10px 10px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.pattern-halftone-lg {
  position: relative;
}

.pattern-halftone-lg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.15) 45%, transparent 45%);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

.pattern-halftone-hero {
  position: relative;
}

.pattern-halftone-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 40%, transparent 40%);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.pattern-dots {
  position: relative;
}

.pattern-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

.pattern-diagonal-lines {
  position: relative;
}

.pattern-diagonal-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.03) 10px,
      rgba(0, 0, 0, 0.03) 20px
    );
  pointer-events: none;
  z-index: 1;
}

.pattern-grid {
  position: relative;
}

.pattern-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

.pattern-noise {
  position: relative;
}

.pattern-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.015) 2px,
      rgba(0, 0, 0, 0.015) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.015) 2px,
      rgba(0, 0, 0, 0.015) 4px
    );
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.tbd-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e0e0e0;
  color: #666;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
}

.product-card {
  position: relative;
}
.split-card-metrics.feature-grid .metric-card-light {
  grid-column: 1 / -1;
}
.metric-card-black {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
}

.metric-card-black .metric-label {
  opacity: 0.7;
}

.metric-card-black .metric-icon {
  opacity: 0.6;
}
.hero-cta-btn-right {
  align-self: flex-end;
}