.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(227, 22, 18, 0.22), transparent 19rem),
    radial-gradient(circle at 84% 90%, rgba(255, 255, 255, 0.04), transparent 28rem),
    linear-gradient(135deg, var(--ink-850), var(--ink-950));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 310px;
  padding: 64px 0 54px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.hero-copy { max-width: 730px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-400);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
}

h1 {
  margin: 14px 0 0;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-300);
  font-size: 15px;
}

.hero-orbit {
  position: relative;
  width: 170px;
  height: 170px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 22px;
  border: 1px solid rgba(227, 22, 18, 0.38);
}

.hero-orbit::after {
  inset: 52px;
  background: var(--red-500);
  box-shadow: 0 0 50px rgba(227, 22, 18, 0.5);
}

.orbit-dot {
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  transform-origin: 5px 90px;
  animation: orbit 8s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

