.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(48px,8vw,96px) var(--gutter);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--c1);
}
.hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3rem,8vw,5.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--c1); }
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Chip graphic */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip-graphic {
  position: relative;
  width: 260px; height: 260px;
}
.chip-body {
  position: absolute; inset: 40px;
  background: var(--text);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--bg);
  box-shadow: var(--shadow-lg);
}
.orbit {
  position: absolute; inset: 0;
  border: 1.5px dashed var(--border2);
  border-radius: 50%;
  animation: spin-slow 12s linear infinite;
}
.orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c1);
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}