/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 90% at 92% 35%, rgba(244,114,182,.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 80% 85%, rgba(192,132,252,.13) 0%, transparent 60%),
    #ffffff;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
/* Gradient fade into the next section */
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--light) 65%);
  pointer-events: none; z-index: 3;
}

/* Dot grid — visible on light background */
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(244,114,182,.25) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

/* Grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

/* Glow orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 1;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,114,182,.22) 0%, rgba(244,114,182,.06) 50%, transparent 70%);
  top: -160px; right: -60px;
  animation: orb-drift 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(192,132,252,.18) 0%, transparent 65%);
  bottom: 5%; left: -20px;
  animation: orb-drift2 10s ease-in-out infinite;
}


@keyframes orb-drift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-30px, 20px); }
}
@keyframes orb-drift2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px, -30px); }
}

/* Layout */
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 9rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
  box-sizing: border-box;
}
.hero-left { max-width: 600px; }

/* Available badge */
.hero-available {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet-2);
  background: rgba(244,114,182,.08);
  border: 1.5px solid rgba(244,114,182,.35);
  padding: .45rem 1rem; border-radius: 4px;
  margin-bottom: 2rem;
  box-shadow: 2px 2px 0 0 rgba(244,114,182,.15);
}
.available-dot {
  width: 7px; height: 7px; border-radius: 0;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,.8);
  animation: dot-pulse 2s step-end infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

/* Name — professional strong gradient */
.hero-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: .92;
  margin-bottom: 1.5rem;
  background: linear-gradient(140deg, #0f0520 0%, #3b0764 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Role typed text */
.hero-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.82rem, 1.6vw, 1rem);
  color: var(--text-muted); margin-bottom: 1.5rem;
  min-height: 1.6rem;
}
.typed-text { color: var(--text); }
.cursor {
  display: inline-block;
  width: 9px; height: .85em;
  background: var(--violet);
  border-radius: 0;
  vertical-align: text-bottom;
  font-size: 0;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Bio — readable */
.hero-bio {
  font-size: 1rem; color: #4a3860;
  max-width: 500px; margin-bottom: 2.5rem;
  line-height: 1.85;
}

/* CTA */
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Right column */
.hero-right {
  display: flex; flex-direction: column;
  align-items: center; gap: 2rem;
}

/* Avatar — static pixel frame */
.hero-avatar-wrap {
  width: 170px; height: 170px;
  border-radius: 4px; flex-shrink: 0;
  padding: 3px;
  background: rgba(244,114,182,.08);
  border: 2px solid rgba(244,114,182,.55);
  box-shadow:
    0 0 28px rgba(244,114,182,.18),
    4px 4px 0 0 rgba(244,114,182,.38);
  position: relative;
}
/* Pink corner accent */
.hero-avatar-wrap::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  border-top: 3px solid var(--violet-glow);
  border-right: 3px solid var(--violet-glow);
  border-radius: 0 4px 0 0;
}
.hero-avatar-wrap::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -2px;
  width: 18px; height: 18px;
  border-bottom: 3px solid var(--violet);
  border-left: 3px solid var(--violet);
  border-radius: 0 0 0 4px;
}

.hero-avatar {
  width: 100%; height: 100%; border-radius: 2px;
  object-fit: cover; object-position: center top;
  display: block;
  box-shadow: inset 0 0 40px rgba(244,114,182,.12);
}

/* Stats */
.hero-stats {
  display: flex; flex-direction: column;
  gap: .55rem; width: 100%;
}
.stat {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.1rem;
  border: 1.5px solid rgba(244,114,182,.2);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 3px 3px 0 0 rgba(244,114,182,.12);
  transition: all .15s;
}
.stat:hover {
  border-color: rgba(244,114,182,.5);
  box-shadow: 4px 4px 0 0 rgba(244,114,182,.22);
  transform: translate(-1px,-1px);
}
.stat-num {
  font-family: 'Press Start 2P', monospace;
  font-size: .95rem; color: #1a0a2e;
}
.stat-infinity {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--violet-glow), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  font-size: .68rem; font-weight: 700;
  color: #7c5c9a;
  text-transform: uppercase; letter-spacing: .14em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 2.5rem;
  display: flex; align-items: center; gap: .75rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 48px; height: 2px;
  background: linear-gradient(to right, rgba(244,114,182,.7), transparent);
  animation: scroll-grow 2s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scroll-grow {
  0%,100% { transform: scaleX(.3); opacity: .4; }
  50% { transform: scaleX(1); opacity: 1; }
}
