/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--linen);
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Ruled lines background */
#hero .rules {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 63px,
    rgba(0,0,0,.032) 63px, rgba(0,0,0,.032) 64px
  );
}

/* Vertical rule line */
#hero .vrule {
  position: absolute;
  top: 0; bottom: 0; left: 190px;
  width: 1px;
  background: linear-gradient(to bottom, transparent 4%, var(--rule) 18%, var(--rule) 82%, transparent 96%);
  pointer-events: none;
}

/* Arc glow corner */
#hero .arc-corner {
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.065) 0%, transparent 65%);
  pointer-events: none;
}

/* Right dot field */
#hero .dot-r {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.065) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 50% 100% at 90% 50%, black 0%, transparent 100%);
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 32px;
  position: relative;
  z-index: 2;
}

/* Tag line */
.hero-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  animation: fdIn .8s both;
}
.hero-tag .tick {
  width: 6px; height: 6px;
  border-top: 1px solid var(--arc);
  border-left: 1px solid var(--arc);
}
.hero-tag .hi  { color: var(--arc-txt); }
.hero-tag .loc { color: var(--ink-4); margin-left: 6px; }

/* Big name */
.hero-name {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.90;
  color: var(--ink);
  margin-bottom: 6px;
  animation: fdUp .95s .07s both;
}
.hero-name .it { font-style: italic; color: var(--ink-2); }

/* Rule below name */
.hero-rule {
  display: block;
  height: 1.5px;
  margin-bottom: 26px;
  background: linear-gradient(to right, var(--arc) 0%, rgba(0,229,255,.12) 50%, transparent 100%);
  box-shadow: 0 0 10px rgba(0,229,255,.25);
  animation: widen .9s .2s both;
}

/* Meta strip */
.hero-meta {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--rule);
  width: fit-content;
  margin-bottom: 36px;
  animation: fdUp .9s .17s both;
}
.hm-cell {
  padding: 9px 18px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hm-cell:last-child { border-right: none; }
.hm-k {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.hm-v {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
.hm-v .blink {
  display: inline-block;
  width: 1px; height: .82em;
  background: var(--arc);
  vertical-align: middle;
  margin-left: 1px;
  animation: blk 1s step-end infinite;
}
.hm-v.avail { color: var(--arc-txt); }

/* Lower two-col layout */
.hero-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  animation: fdUp .9s .26s both;
}
.hero-bio {
  font-size: .96rem;
  color: var(--ink-3);
  line-height: 1.78;
  font-weight: 300;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hbtns { display: flex; gap: 9px; flex-wrap: wrap; }

/* Social icons */
.socials { display: flex; gap: 5px; }
.sq {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--ink-3);
  font-size: .78rem;
  transition: all .2s var(--ease);
}
.sq:hover {
  border-color: var(--arc);
  color: var(--arc);
  box-shadow: 0 0 10px var(--arc-dim);
}

/* Stats strip */
.hero-strip {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
  animation: fdIn .8s .38s both;
}
.sc {
  padding: 17px 22px;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.sc:last-child { border-right: none; }
.sc-xy {
  position: absolute;
  top: 6px; right: 9px;
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: .08em;
  color: var(--ink-4);
  opacity: .5;
}
.sc-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.sc-num sup {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--arc);
  vertical-align: super;
  letter-spacing: 0;
}
.sc-lbl {
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.55;
}
