/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 204, 113, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 204, 113, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(48px); }
}

/* Glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.18) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.05); }
}

/* Content grid */
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--green-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--green);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
}

/* Subtitle */
.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Buttons row */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-stat-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* =====================
   RESUME PREVIEW CARD
===================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.resume-card {
  width: 300px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: rotate(2deg);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%       { transform: rotate(2deg) translateY(-12px); }
}

.resume-card-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.resume-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.resume-name {
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 2px;
}

.resume-title-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.resume-ats-badge {
  margin-left: auto;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.2;
}

.resume-card-body {
  padding: 16px 20px;
}

.resume-section-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
  margin-top: 12px;
}

.resume-section-label:first-child {
  margin-top: 0;
}

.resume-line {
  height: 7px;
  border-radius: 4px;
  background: var(--bg-2);
  margin-bottom: 5px;
}

.resume-line.w-full  { width: 100%; }
.resume-line.w-3q    { width: 75%; }
.resume-line.w-half  { width: 50%; }
.resume-line.w-4q    { width: 40%; }
.resume-line.w-2q    { width: 60%; }
.resume-line.accent  { background: var(--green-muted); }

.resume-skills-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.resume-skill-chip {
  background: var(--green-pale);
  border: 1px solid var(--green-muted);
  border-radius: 4px;
  height: 14px;
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  animation: cardFloat 5s ease-in-out infinite;
}

.hero-float-badge.top-left {
  top: 30px; left: -20px;
  animation-delay: -2s;
}

.hero-float-badge.bottom-right {
  bottom: 30px; right: -20px;
  animation-delay: -1s;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }
}
