/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 3rem 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 40%, rgba(79, 209, 197, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(246, 173, 85, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

/* LABEL */
.hero-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(79,209,197,0.4); }
  50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(79,209,197,0); }
}

/* HERO NAME */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-name em {
  font-style: italic;
  color: var(--accent);
}

/* TAGLINE */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #81e6d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 209, 197, 0.25);
}

.btn-primary i { transition: transform 0.2s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* SOCIAL */
.hero-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.hero-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.hero-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* IMAGE */
.hero-image { position: relative; }

.img-frame {
  position: relative;
  width: 340px;
}

.img-frame img {
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s;
}

.img-frame:hover img { filter: grayscale(0%) contrast(1); }

.img-glow {
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, var(--accent2) 100%);
  opacity: 0.3;
  z-index: -1;
  filter: blur(20px);
}

/* Corner decorations */
.img-frame::before,
.img-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--accent);
  border-style: solid;
  z-index: 2;
}
.img-frame::before { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.img-frame::after  { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }

.img-badge {
  position: absolute;
  bottom: 1.5rem; left: -1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--text);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.img-badge i {
  color: var(--accent);
  font-size: 1rem;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 3rem;
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.strip-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== BIO SECTION ===== */
.bio-section {
  position: relative;
  z-index: 1;
  padding: 6rem 3rem;
}

.bio-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bio-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.label-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
}

.bio-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.bio-col p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .img-frame { width: 240px; }
  .img-badge { left: 50%; transform: translateX(-50%); bottom: -4rem; }
  .hero { padding-bottom: 6rem; }

  .hero-label, .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-social { justify-content: center; }

  .bio-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .strip-inner { flex-wrap: wrap; gap: 2rem; }
  .strip-divider { display: none; }
  .stat { min-width: 120px; }
}

@media (max-width: 640px) {
  .hero { padding: 6rem 1.5rem 3rem; }
  .about-strip, .bio-section { padding: 3rem 1.5rem; }
  .img-frame { width: 200px; }
  .img-badge { font-size: 0.65rem; }
}
