﻿

/* ===== HERO CONNECTOR ===== */
#hero-connector { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: visible; }

/* ===== HEX CANVAS ===== */
#hex-canvas { width: 100%; aspect-ratio: 1; max-width: 560px; display: block; margin: 0 auto; }

/* ===== PARTICLE CANVAS ===== */
#particle-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 4rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-tag { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1rem; animation: fadeInDown 0.5s ease both; }
.tag-bracket { color: var(--purple-l); }
.hero-name { font-family: var(--font-ui); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; animation: fadeInDown 0.6s ease 0.1s both; }
.hero-role { font-family: var(--font-mono); font-size: 1rem; color: var(--cyan); margin: 1.2rem 0; min-height: 1.6rem; animation: fadeInDown 0.6s ease 0.2s both; }
.prompt { color: var(--purple-l); margin-right: 4px; }
.cursor { color: var(--cyan); animation: blink 1s step-end infinite; }
.hero-bio { color: var(--text-mid); max-width: 480px; margin-bottom: 2rem; font-size: 0.97rem; animation: fadeInDown 0.6s ease 0.3s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; animation: fadeInDown 0.6s ease 0.4s both; }
.hero-socials { display: flex; gap: 0.75rem; animation: fadeInDown 0.6s ease 0.5s both; }

.social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-dim); font-size: 1rem; text-decoration: none; transition: var(--tr); background: var(--surface); }
.social-link:hover { color: var(--purple-l); border-color: var(--border-h); box-shadow: 0 0 14px var(--glow); transform: translateY(-2px); }

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; animation: fadeInUp 0.7s ease 0.3s both; }

.hero-stats { display: flex; gap: 1rem; width: 100%; justify-content: center; }
.stat { flex: 1; text-align: center; padding: 0.5rem 0.8rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); transition: var(--tr); }
.stat:hover { border-color: var(--border-h); box-shadow: 0 0 14px var(--glow); }
.stat-num { display: block; font-family: var(--font-mono); font-size: 1.4rem; font-weight: 600; background: linear-gradient(135deg, #fb923c, #fdba74); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

.scroll-hint { position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; animation: fadeIn 1s ease 1s both; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--purple-l), transparent); animation: scrollPulse 2s ease-in-out infinite; }
