/* =========================================
   SECTIONS
   Section-specific overrides — mostly the hero,
   which has its own decorative shapes.
   ========================================= */

/* ---------- HERO ---------- */
.hero-block {
  padding: 60px 48px 80px;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-block::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  z-index: 0;
}
.hero-block::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 80px;
  width: 80px;
  height: 80px;
  background: var(--rose);
  border: 2px solid var(--ink);
  z-index: 0;
  transform: rotate(15deg);
}
.hero-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.hero-name {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -3px;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}
.hero-name .squiggle {
  color: var(--rose);
  display: inline-block;
  transform: rotate(-8deg);
}
.hero-name .dot {
  color: var(--acid);
  -webkit-text-stroke: 2px var(--ink);
}
.hero-sub {
  font-size: 16px;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  background: var(--paper);
  padding: 12px 16px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: inline-block;
}
.hero-sub .marker {
  background: var(--acid);
  padding: 0 4px;
  font-weight: 500;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ---------- TERMINAL SECTION INTRO ---------- */
.terminal-intro {
  font-size: 13px;
  margin-bottom: 20px;
  color: #666;
}

/* ---------- CONTACT SECTION INTRO ---------- */
.contact-intro {
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 520px;
}

/* ---------- PROJECT META LINE ---------- */
.pcard-meta {
  font-size: 11px;
  color: #666;
}
