/* ================================================================
   wehumanoid — World-Class Light Industrial Design System
   Inspired by: Linear, Stripe, Figure.ai, Boston Dynamics
   ================================================================ */

/* Fonts */
@font-face { font-family:'Satoshi'; src:url('../69d145301d19cda39fe6ded2/69d145311d19cda39fe6df82_Satoshi-Regular.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../69d145301d19cda39fe6ded2/69d145311d19cda39fe6df7a_Satoshi-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../69d145301d19cda39fe6ded2/69d145311d19cda39fe6df7d_Satoshi-Bold.woff2') format('woff2'); font-weight:700; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../69d145301d19cda39fe6ded2/69d145311d19cda39fe6df7b_Satoshi-Black.woff2') format('woff2'); font-weight:900; font-display:swap; }

/* Variables */
:root {
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-50: #f4f5f7;
  --gray-100: #ebedf0;
  --gray-200: #d6d8db;
  --gray-400: #9da3ae;
  --gray-600: #525a68;
  --gray-800: #1d2330;
  --black: #0d0f12;
  --accent: #0a66c2;
  --accent-hover: #0856a8;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Utility */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ──────────────────────────────────────────────
   NAV
────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

#nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.nav-logo img {
  height: 24px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 7px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--black); background: var(--gray-50); }
.nav-links a.active { color: var(--black); }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
  transition: transform 0.2s var(--ease-out), background 0.15s;
}

.nav-cta-btn:hover {
  background: var(--gray-800) !important;
  transform: translateY(-1px);
}

/* Mobile Hamburger Button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer — Light, Full-height, Frosted */
.nav-mobile-drawer {
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 998;
}

.nav-mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  padding: 0 32px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.nav-mobile-item {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gray-600);
  padding: 10px 0;
  text-align: center;
  transition: color 0.2s ease;
  width: 100%;
}

.nav-mobile-item:hover,
.nav-mobile-item.active {
  color: var(--black);
}

.nav-mobile-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease, transform 0.2s var(--ease-out);
}

.nav-mobile-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-mobile-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  text-align: center;
}

/* Hide unused old dark-drawer elements */
.nav-mobile-num,
.nav-mobile-text,
.nav-mobile-status,
.status-dot,
.nav-mobile-contact { display: none; }

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ──────────────────────────────────────────────
   HERO — Full-screen robot with text overlay
────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--white);
}

/* Full-bleed Spline — positioned via inline style block */




.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
}
.btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 26px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  background: transparent;
  transition: all 0.2s var(--ease-out);
}
.btn-secondary:hover {
  border-color: var(--gray-800);
  background: var(--gray-50);
}



.hero-stat-val {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 2px;
  font-weight: 500;
}

/* Right — robot image full bleed */
.hero-right {
  position: relative;
  background: var(--white);
  overflow: visible;
}

.hero-robot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.04);
  transition: transform 12s ease;
}

.hero-right:hover .hero-robot-img {
  transform: scale(1.0);
}

/* ──────────────────────────────────────────────
   MARQUEE STRIP
────────────────────────────────────────────── */
.marquee-strip {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 40px;
  color: rgba(255,255,255,0.6);
}

.marquee-sep {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  padding: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────
   SECTIONS — Common
────────────────────────────────────────────── */
.section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}

.section-p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 600px;
}

/* ──────────────────────────────────────────────
   SERVICES — Numbered list style
────────────────────────────────────────────── */
.services-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--gray-50);
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────
   ROBOT SHOWCASE — Full bleed cinematic
────────────────────────────────────────────── */
.showcase-section {
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.showcase-visual {
  position: relative;
  overflow: hidden;
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  color: var(--white);
}

.showcase-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.showcase-h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.showcase-p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 40px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.showcase-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ──────────────────────────────────────────────
   USE CASES — Bento style 3-column grid
────────────────────────────────────────────── */
.usecases-section {
  background: var(--white);
  padding: 72px 0;
}

.usecases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .usecases-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.usecase-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .usecase-bento-grid {
    grid-template-columns: 1fr;
  }
}

.usecase-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.usecase-card:hover .usecase-link {
  color: var(--white);
}


/* ──────────────────────────────────────────────
   CTA BAND — Compact & High-contrast
────────────────────────────────────────────── */
.cta-band {
  background: radial-gradient(circle at 50% 40%, rgba(29, 35, 48, 0.7) 0%, rgba(13, 15, 18, 1) 80%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.cta-band p {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  will-change: opacity, transform;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.2s;
}
.btn-primary-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255,255,255,0.18);
}

/* ──────────────────────────────────────────────
   FOOTER — Refined Light Theme (Matches top logo 1:1)
────────────────────────────────────────────── */
.site-footer {
  background: var(--off-white);
  color: var(--black);
  padding: 56px 0 32px;
  position: relative;
  border-top: 1px solid var(--gray-100);
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 24px;
}

.footer-logo {
  height: 20px;
  width: auto;
  /* Original black logo — matches top nav 1:1 */
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 300px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  width: fit-content;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-600);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--black);
  transform: translateX(3px);
}

.footer-email-wrap {
  margin-top: 16px;
}

.footer-email-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s;
}

.footer-email-link:hover {
  color: var(--black);
}

.footer-watermark {
  display: none;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-400);
}

.footer-legal .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.back-top-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.back-top-btn:hover {
  color: var(--black);
  border-color: var(--gray-400);
  background: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ──────────────────────────────────────────────
   GSAP ANIMATIONS — Initial states
────────────────────────────────────────────── */
/* Animation initial states — GSAP animates FROM these values */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.anim-fade-in {
  opacity: 0;
  will-change: opacity;
}

/* ──────────────────────────────────────────────
   FEATURE BENTO GRID
────────────────────────────────────────────── */
.features-section {
  background: var(--white);
}

.features-header {
  margin-bottom: 52px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Card base */
.bento-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter, box-shadow;
}

/* Variants */
.bento-card--large {
  grid-row: span 2;   /* tall left card */
  min-height: 580px;
}

.bento-card--dark,
.bento-card--image {
  background-color: var(--gray-800);
}

.bento-card--light {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}

.bento-card--accent {
  grid-column: span 2;  /* full-width bottom card */
  background: var(--black);
}

/* Gradient overlay for image cards */
.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,15,18,0.1) 0%, rgba(13,15,18,0.75) 100%);
  z-index: 1;
}

/* Body */
.bento-card-body {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.bento-card-body--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 52px;
}

.bento-accent-left  { flex: 1; }
.bento-accent-right {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

/* Number */
.bento-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.bento-num--dark { color: var(--gray-400); }

/* Titles */
.bento-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}
.bento-title--dark { color: var(--black); }

/* Description */
.bento-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
}
.bento-desc--dark { color: var(--gray-600); }

/* Tag badge */
.bento-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: fit-content;
}

/* Stats inside card 4 */
.bento-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.bento-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--white);
}
.bento-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Hover lift */
.bento-card:not(.bento-card--accent):hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  filter: brightness(1.06);
}

/* Initial animation state */
.bento-anim {
  opacity: 0;
  transform: translateY(48px);
}

@media (max-width: 860px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--large { grid-row: span 1; min-height: 400px; }
  .bento-card--accent { grid-column: span 1; }
  .bento-card-body--row { flex-direction: column; gap: 24px; }
  .bento-accent-right { gap: 24px; }
}

@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { height: 55vw; min-height: 400px; }
  .hero-left { padding: 60px 24px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .services-header, .showcase-inner, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .usecases-track { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .showcase-content { padding: 60px 24px; }
}

/* ══════════════════════════════════════════════════════
   SUBPAGE HERO — Clean light hero for all secondary pages
   ══════════════════════════════════════════════════════ */

.subpage-hero {
  background: var(--white);
  padding-top: 68px; /* nav height */
  border-bottom: 1px solid var(--gray-100);
}

.subpage-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 5% 88px;
}

.subpage-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--black);
  margin-bottom: 24px;
  max-width: 800px;
}

.subpage-hero-sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
}

@media (max-width: 768px) {
  .subpage-hero-inner { padding: 72px 24px 64px; }
  .subpage-hero h1 { font-size: 2.1rem; }
  .subpage-hero-sub { font-size: 1rem; }
}
