.hero {
  padding: 90px 24px 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease) forwards;
  font-family: "Press Start 2P", monospace;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

.hero h1 {
  font-size: clamp(22px, 6vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease) 0.1s forwards;
  word-break: keep-all;
  text-transform: uppercase;
  font-family: "Press Start 2P", monospace;
  color: var(--text-primary);
  text-shadow: 3px 3px 0 #000;
}

.hero h1 .accent-line {
  display: block;
  font-size: 0.42em;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 14px;
  color: var(--text-secondary);
  text-shadow: 2px 2px 0 #000;
}

.hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease) 0.2s forwards;
  font-family: "VT323", monospace;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease) 0.3s forwards;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease) 0.4s forwards;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 3px solid var(--bg);
  background: var(--accent);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.avatar-stack .avatar svg {
  width: 16px;
  height: 16px;
  stroke: #1a1600;
}

.trust-count {
  font-size: 16px;
  font-weight: 400;
  font-family: "Press Start 2P", monospace;
  color: var(--accent);
}

.trust-count span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: "Press Start 2P", monospace;
}

.hero-visual {
  position: relative;
  height: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.orbit-wrap {
  position: absolute;
  width: 380px;
  height: 380px;
  max-width: 92vw;
  max-height: 92vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  border: 3px dashed var(--accent);
  border-radius: 0;
  opacity: 0.5;
}

.orbit-ring-1 {
  width: 100%;
  height: 100%;
  animation: ring-spin-flat 6s steps(8) infinite;
}

.orbit-ring-2 {
  width: 74%;
  height: 74%;
  top: 13%;
  left: 13%;
  animation: ring-spin-flat 8s steps(8) infinite reverse;
  opacity: 0.35;
}

.orbit-ring-3 {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  animation: ring-spin-flat 10s steps(8) infinite;
  opacity: 0.25;
}

@keyframes ring-spin-flat {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 0;
  background: var(--accent);
  box-shadow: 0 0 0 2px #000;
}

.orbit-dot-2 {
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background: var(--text-primary);
}

.orbit-dot-3 {
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  background: var(--accent-dark);
}

.lumina-3d {
  position: relative;
  z-index: 3;
  width: 74%;
  max-width: 320px;
  animation: lumina-float 1.2s steps(6) infinite;
}

.tilt-inner {
  position: relative;
  transition: none;
}

.lumina-depth-shadow {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 60%;
  height: 16px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.lumina-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(6px 6px 0 #000);
  pointer-events: none;
  user-select: none;
}

@keyframes lumina-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (hover: none), (pointer: coarse) {
  .tilt-inner {
    transition: none;
    transform: none !important;
  }
}

body.tab-hidden .orbit-ring-1,
body.tab-hidden .orbit-ring-2,
body.tab-hidden .orbit-ring-3,
body.tab-hidden .lumina-3d,
body.tab-hidden .lumina-depth-shadow {
  animation-play-state: paused;
}