/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; position: relative; overflow: hidden; background: var(--bg-primary); }
.hero-content { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 100px 52px 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-mobile-text { display: none; }
.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.scroll-hint.visible { opacity: 1; }
.scroll-hint svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Hero animated text */
.hero-giant-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; overflow: hidden; }
.hero-anim { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-anim-line { display: flex; overflow: hidden; }
.hero-anim-line span { display: inline-block; opacity: 0; transform: translateY(100%); animation: heroLetterUp .8s cubic-bezier(.16,1,.3,1) forwards; }
.hero-anim-brand { font-family: 'Benzin', 'Inter', sans-serif; font-size: clamp(100px, 22vw, 360px); font-weight: 700; letter-spacing: .06em; color: var(--text-primary); text-transform: uppercase; line-height: 1; }
.hero-anim-brand span:nth-child(1) { animation-delay: .2s; }
.hero-anim-brand span:nth-child(2) { animation-delay: .32s; color: var(--accent-neutral); }
.hero-anim-brand span:nth-child(3) { animation-delay: .44s; color: var(--accent-neutral); }
.hero-anim-brand span:nth-child(4) { animation-delay: .56s; }
.hero-anim-sub { font-size: clamp(13px, 1.6vw, 22px); font-weight: 300; letter-spacing: .18em; color: var(--text-secondary); text-transform: uppercase; }
.hero-anim-sub span:nth-child(1) { animation-delay: .8s; }
.hero-anim-sub span:nth-child(2) { animation-delay: .92s; }
.hero-anim-sub span:nth-child(3) { animation-delay: 1.04s; }
.hero-anim-sub span:nth-child(4) { animation-delay: 1.16s; }
@keyframes heroLetterUp { to { opacity: 1; transform: translateY(0); } }

/* 3D Particles canvas */
#particles-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Product over text — 3D tilt */
.hero-product { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; height: 65vh; min-height: 400px; perspective: 800px; animation: heroScale 1.2s cubic-bezier(.22,.68,0,1) .3s both; }
.hero-product img { height: 92%; max-height: 620px; width: auto; object-fit: contain; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)); transition: transform .4s ease-out; will-change: transform; transform-style: preserve-3d; }

/* Side devices */
.hero-side-left, .hero-side-right { display: none; }

/* Hero left info */
.hero-info-left { position: absolute; left: 52px; bottom: 140px; z-index: 5; animation: heroFadeUp .8s ease .6s both; }
.hero-roles { font-size: 13px; color: rgba(244,244,242,0.55); line-height: 1.8; }
.hero-cta-wrap { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.hero-btn-outline { border: 1px solid var(--border-strong); color: var(--text-primary); padding: 14px 28px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; transition: background .3s, color .3s, gap .3s; border-radius: 30px; display: inline-flex; align-items: center; gap: 10px; background: transparent; font-family: inherit; }
.hero-btn-outline:hover { background: var(--text-primary); color: var(--text-dark); }
.hero-btn-arrow { border: none; background: var(--text-primary); color: var(--text-dark); width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; cursor: none; transition: background .3s; }
.hero-btn-arrow:hover { background: var(--accent-neutral-strong); }
.hero-btn-row { display: flex; align-items: center; gap: 8px; }

/* Hero right info */
.hero-info-right { position: absolute; right: 52px; bottom: 28px; z-index: 5; display: flex; align-items: center; gap: 20px; animation: heroFadeUp .8s ease .7s both; }
.hero-avail { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-secondary); }
.hero-avail-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse-green 2s ease-in-out infinite; }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); } 50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } }
.hero-year { font-size: 11px; color: var(--text-secondary); letter-spacing: .05em; }

/* Hero stat cards */
.hero-stats { position: absolute; right: 52px; top: 38%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; gap: 10px; animation: heroFadeUp .8s ease .8s both; }
.hero-stat-card { background: rgba(244,244,242,0.06); backdrop-filter: blur(16px); border: 1px solid rgba(244,244,242,0.08); border-radius: 20px; padding: 22px 24px; min-width: 180px; transition: background .3s, border-color .3s; }
.hero-stat-card:hover { background: rgba(244,244,242,0.1); border-color: rgba(244,244,242,0.15); }
.hero-stat-num { font-family: 'Benzin', 'Inter', sans-serif; font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 4px; letter-spacing: -.03em; }
.hero-stat-label { font-size: 11px; color: var(--text-secondary); letter-spacing: .05em; }

/* Hero partner logos row */
.hero-partners { position: absolute; right: 52px; bottom: 240px; z-index: 5; display: flex; gap: 24px; align-items: center; }
.hero-partner-logo { font-size: 11px; color: rgba(244,244,242,0.3); letter-spacing: .06em; transition: color .3s; }
.hero-partner-logo:hover { color: var(--text-secondary); }

/* Hero bottom bar */
.hero-bar { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 16px 52px; border-top: 1px solid rgba(244,244,242,0.1); background: rgba(0,0,0,0.15); backdrop-filter: blur(10px); animation: heroFadeUp .6s ease 1s both; }
.hero-bar-item { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-secondary); }
.hero-bar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-neutral); }

/* HORIZONTAL SCROLL */
.hscroll { overflow: hidden; background: var(--bg-primary); position: relative; }
.hscroll-inner { display: flex; align-items: center; gap: 28px; padding: 0 8vw; width: max-content; height: 100vh; will-change: transform; }
.hw { font-family: 'Benzin', 'Inter', sans-serif; font-size: clamp(36px, 5vw, 72px); font-weight: 700; color: rgba(244,244,242,0.4); white-space: nowrap; flex-shrink: 0; }
.hw-accent { color: var(--text-primary); }

/* HERO ANIMATIONS */
@keyframes heroFadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }
@keyframes heroScale { from { opacity:0; transform:scale(.9); } to { opacity:1; transform:none; } }

/* HERO MOBILE */
@media (max-width: 768px) {
  .hero { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,203,209,.055) 0%, var(--bg-primary) 70%); }
  .hero-video { display: none; }
  .hero-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 20px 80px; position: relative; z-index: 2; }
  .hero-mobile-text { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; animation: heroFadeUp .8s ease .3s both; }
  .hero-m-logo { font-family: 'Inter', 'Helvetica Neue', sans-serif; font-size: 48px; font-weight: 200; letter-spacing: .35em; color: var(--text-primary); text-transform: uppercase; }
  .hero-m-logo span { color: var(--accent-neutral); font-weight: 200; }
  .hero-m-tagline { font-family: 'Inter', 'Helvetica Neue', sans-serif; font-size: 16px; font-weight: 300; line-height: 1.5; color: rgba(244,244,242,0.7); letter-spacing: .08em; }
  .hero-m-line { width: 40px; height: 1px; background: var(--accent-neutral); }
  .hero-m-sub { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-secondary); }
  .scroll-hint { display: none; }
  .hero-anim-brand { font-size: clamp(64px, 18vw, 120px); }
  .hero-anim-sub { font-size: clamp(12px, 3.2vw, 18px); letter-spacing: .06em; }
  .hero-anim { gap: 10px; }
  .hero-product img { max-height: 320px; }
  .hero-side-left, .hero-side-right { display: none; }
  .hero-info-left { left: 20px; bottom: 90px; }
  .hero-roles { font-size: 12px; }
  .hero-info-right { right: 20px; bottom: 90px; }
  .hero-stats { display: none; }
  .hero-partners { display: none; }
  .hero-bar { padding: 14px 20px; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .hero-bar-item { font-size: 10px; }
}
