.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.2) saturate(.6);
  transform: scale(1.04);
  transition: transform 9s ease;
}
.hero-img.rdy { transform: scale(1); }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.1) 0%,
    rgba(0,0,0,.0) 40%,
    rgba(0,0,0,.55) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 22px;
  animation: fadeUp .55s .1s both;
}
.hero-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-g 2s infinite;
}
@keyframes pulse-g {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  image-rendering: pixelated;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.6));
  animation: fadeUp .55s .15s both;
}

.hero-h1 {
  font-size: clamp(52px, 10vw, 116px);
  font-weight: 900;
  color: #fff;
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 12px;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
  animation: fadeUp .55s .2s both;
}
.hero-h1 span { color: var(--blue-xl); }

.hero-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
  animation: fadeUp .55s .25s both;
}

.hero-ip {
  display: inline-flex;
  align-items: stretch;
  margin-bottom: 28px;
  animation: fadeUp .55s .3s both;
  position: relative;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.ip-label {
  padding: 13px 10px 13px 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
}
.ip-addr {
  padding: 13px 14px 13px 4px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  display: flex;
  align-items: center;
}
.ip-copy {
  padding: 13px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
  border-left: 1px solid rgba(255,255,255,.12);
  transition: filter .15s;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.ip-copy::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.22) 50%, transparent 75%);
  background-size: 300% 100%;
  background-position: 200% 0;
  animation: btn-shine 2.8s ease infinite;
}
.ip-copy:hover { filter: brightness(1.12); }
.ip-ok {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--t);
}
.ip-ok.show { opacity: 1; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .55s .35s both;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fadeUp .55s .6s both;
}
.scroll-line {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), rgba(255,255,255,0));
  margin: 0 auto;
  animation: scroll-anim 1.9s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes btn-shine {
  0% { background-position: 200% 0; }
  50% { background-position: -50% 0; }
  100% { background-position: 200% 0; }
}