.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 64px 56px 0;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, var(--glow-color) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform;
}

.hero-inner {
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  position: relative;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(72px, 16vw, 180px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-headline .headline-small {
  display: block;
  font-size: 0.28em;
  font-weight: 400;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  line-height: 2.4;
}

.hero-sub {
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--fg-2);
  max-width: 380px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-scroll-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 2.5s ease-in-out infinite;
}

.hero-scroll-hint::before,
.hero-scroll-hint::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--border-hover);
}

@media (max-width: 860px) {
  .hero { padding: 64px 24px 0; }
}
