	
.hero {
  background: #000;
  color: #f5f5f7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86868b;
  margin: 0 0 16px;
}

.hero-copy h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #f5f5f7;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.47;
  color: #a1a1a6;
  max-width: 380px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: #f5f5f7;
  color: #000;
  padding: 12px 22px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #fff;
}

.btn-secondary {
  color: #2997ff;
  font-size: 14px;
  text-decoration: none;
}

.btn-secondary:hover {
  text-decoration: underline;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.hero-visual-right img,
.catalyst-cell,
.product-card-luxury {
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}


/* Mobile */
@media (max-width: 1068px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-copy h1 {
    font-size: 44px;
  }
  
  .hero-sub {
    margin: 0 auto 36px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 24px 80px;
  }
}