.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Dot-grid background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74, 143, 232, 0.13) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(74, 143, 232, .07) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating secondary eye — top-left corner */
.hero-deco-2 {
  position: absolute;
  top: 60px; left: -80px;
  width: 280px; height: 280px;
  opacity: .035;
  pointer-events: none;
  animation: eDrift 18s ease-in-out infinite reverse;
}

.hero-deco {
  position: absolute;
  bottom: -80px; right: -60px;
  width: 420px; height: 420px;
  opacity: .05;
  pointer-events: none;
  animation: eDrift 14s ease-in-out infinite;
}

@keyframes eDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(12px, -18px) rotate(2deg); }
  66%       { transform: translate(-8px, 10px) rotate(-1.5deg); }
}

/* ── Entrance animations ── */
@keyframes up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  opacity: 0;
  animation: up .6s ease forwards .05s;
}
.hero-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  opacity: .5;
}
.hero-tag::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  opacity: .5;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.2px;
  color: var(--bright);
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0;
  animation: up .6s ease forwards .15s;
}
.hero h1 em { font-style: italic; color: var(--text); }

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: up .6s ease forwards .27s;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 60px;
  opacity: 0;
  animation: up .6s ease forwards .38s;
}

.btn-ghost {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.btn-ghost:hover { color: var(--text); }

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up .6s ease forwards .48s;
}

.pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  padding: 4px 11px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero { padding: 90px 18px 60px; }
}
