/* ════════════════════════════════════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; z-index: 1;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  width: 100%; max-width: 1140px; margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 2rem 60px;
}
.hero-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-accent); margin-bottom: 1rem;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 300; line-height: 0.92;
  color: var(--text-1); margin-bottom: 1.5rem;
}
.hero-name span { display: block; font-style: italic; color: var(--gold); }
.hero-role {
  font-family: var(--font-mono); font-size: 0.95rem;
  color: var(--blue-accent); margin-bottom: 1.5rem; min-height: 1.5rem;
}
.hero-role-prefix { color: var(--text-3); margin-right: 0.4rem; }
#typed-role::after {
  content: '|';
  animation: blink 1s step-end infinite;
  margin-left: 2px; color: var(--gold);
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0} }

.hero-bio {
  font-size: 1rem; color: var(--text-2); line-height: 1.78;
  max-width: 430px; margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-meta { margin-top: 2.75rem; display: flex; gap: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stat-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--text-1); line-height: 1;
}
.hero-stat-value span { color: var(--gold); font-size: 1.2rem; }
.hero-stat-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3);
}

/* Hero image */
.hero-image-wrap { position: relative; height: 620px; }
.hero-image-container {
  position: absolute; inset: 0;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.hero-image-container img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: saturate(0.65) brightness(0.58);
  transition: filter 0.6s var(--ease);
}
.hero-image-container:hover img { filter: saturate(0.85) brightness(0.72); }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,14,27,0.97) 0%,
    rgba(5,14,27,0.45) 38%,
    rgba(0,77,120,0.18) 100%
  );
}
.hero-image-badge {
  position: absolute; bottom: 2rem; right: 2rem;
  padding: 0.7rem 1.2rem;
  background: rgba(5,14,27,0.88); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-2);
}
.hero-image-badge em { display: block; color: var(--gold); font-style: normal; font-size: 0.78rem; margin-bottom: 0.12rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-3); font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBob 2.2s ease-in-out infinite;
}
.scroll-indicator-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, var(--blue-accent), transparent);
}
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.highlight-card { padding: 1.5rem; border-left: 2px solid var(--blue-accent); }
.highlight-card.gold { border-left-color: var(--gold); }
.highlight-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-1); margin-bottom: 0.35rem; }
.highlight-card p  { font-size: 0.87rem; color: var(--text-2); line-height: 1.62; }

/* Interests marquee */
.interests-strip {
  position: relative; z-index: 1;
  background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 0; overflow: hidden;
}
.interests-inner {
  display: flex; gap: 2.5rem; align-items: center;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-3);
  white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
}
.interests-inner span { color: var(--gold); margin-right: 0.5rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem; min-height: 100vh; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-bio  { font-size: 0.95rem; }
  .hero-label { font-size: 0.65rem; }
}
@media (max-width: 600px) {
  .hero-meta { gap: 1.5rem; }
  .hero-cta  { flex-direction: column; }
  .about-highlights { grid-template-columns: 1fr; }
}
