/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.05) 0%, 
    transparent 30%, 
    rgba(139, 92, 246, 0.05) 100%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.5rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero__title {
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__greeting {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
}

.hero__name {
  display: block;
  font-size: var(--font-size-6xl);
  font-weight: 900;
  line-height: 1.1;
}

.hero__description {
  font-size: var(--font-size-xl);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__description .highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.stat {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat__number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.stat__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Hero Image */
.hero__image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Code Editor Frame */
.hero__code-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 480px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 0;
  overflow: hidden;
}

/* Terminal Header */
.hero__code-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 0 0;
}

/* Terminal Dots */
.hero__terminal-dots {
  position: absolute;
  top: 12px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero__terminal-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
}

.hero__terminal-dot--red {
  background: linear-gradient(145deg, #ff6b6b, #ee5a5a);
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.hero__terminal-dot--yellow {
  background: linear-gradient(145deg, #ffd93d, #f5c800);
  box-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.hero__terminal-dot--green {
  background: linear-gradient(145deg, #6bcb77, #4ade80);
  box-shadow: 0 0 10px rgba(107, 203, 119, 0.5);
}

/* Code Lines Background */
.hero__code-lines {
  position: absolute;
  top: 50px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.6;
}

.hero__code-line {
  height: 10px;
  border-radius: 4px;
  animation: codePulse 3s ease-in-out infinite;
}

.hero__code-line:nth-child(1) {
  width: 60%;
  background: linear-gradient(90deg, #c792ea, transparent);
  animation-delay: 0s;
}

.hero__code-line:nth-child(2) {
  width: 80%;
  background: linear-gradient(90deg, #82aaff, transparent);
  animation-delay: 0.2s;
  margin-left: 20px;
}

.hero__code-line:nth-child(3) {
  width: 45%;
  background: linear-gradient(90deg, #c3e88d, transparent);
  animation-delay: 0.4s;
  margin-left: 20px;
}

.hero__code-line:nth-child(4) {
  width: 70%;
  background: linear-gradient(90deg, #ffcb6b, transparent);
  animation-delay: 0.6s;
  margin-left: 40px;
}

.hero__code-line:nth-child(5) {
  width: 55%;
  background: linear-gradient(90deg, #89ddff, transparent);
  animation-delay: 0.8s;
  margin-left: 40px;
}

.hero__code-line:nth-child(6) {
  width: 30%;
  background: linear-gradient(90deg, #f07178, transparent);
  animation-delay: 1s;
  margin-left: 20px;
}

.hero__code-line:nth-child(7) {
  width: 65%;
  background: linear-gradient(90deg, #c792ea, transparent);
  animation-delay: 1.2s;
}

.hero__code-line:nth-child(8) {
  width: 40%;
  background: linear-gradient(90deg, #82aaff, transparent);
  animation-delay: 1.4s;
  margin-left: 20px;
}

/* Profile Image */
.hero__img {
  width: 70%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 50px rgba(99, 102, 241, 0.5));
  animation: heroImageFloat 6s ease-in-out infinite;
  border: 3px solid rgba(99, 102, 241, 0.5);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

/* Syntax Highlight Floating Elements */
.hero__syntax {
  position: absolute;
  font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(30, 30, 46, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 5;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.hero__syntax--1 {
  top: 15%;
  right: -5%;
  animation: syntaxFloat 4s ease-in-out infinite;
}

.hero__syntax--1 .keyword { color: #c792ea; }
.hero__syntax--1 .function { color: #82aaff; }
.hero__syntax--1 .string { color: #c3e88d; }

.hero__syntax--2 {
  bottom: 25%;
  left: -8%;
  animation: syntaxFloat 4s ease-in-out infinite;
  animation-delay: -2s;
}

.hero__syntax--2 .tag { color: #f07178; }
.hero__syntax--2 .attr { color: #ffcb6b; }
.hero__syntax--2 .value { color: #c3e88d; }

.hero__syntax--3 {
  top: 55%;
  right: -10%;
  animation: syntaxFloat 5s ease-in-out infinite;
  animation-delay: -1s;
}

.hero__syntax--3 .comment { color: #676e95; font-style: italic; }

/* Cursor Blink */
.hero__cursor {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 3px;
  height: 24px;
  background: #82aaff;
  border-radius: 2px;
  z-index: 5;
  animation: cursorBlink 1s step-end infinite;
  box-shadow: 0 0 10px rgba(130, 170, 255, 0.8);
}

/* Tech Stack Badges */
.hero__tech-badge {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #1e1e2e, #2a2a3e);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 5;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: techBadgeFloat 5s ease-in-out infinite;
}

.hero__tech-badge--js {
  top: 8%;
  left: 5%;
  color: #f7df1e;
  animation-delay: 0s;
}

.hero__tech-badge--react {
  top: 25%;
  right: 2%;
  color: #61dafb;
  animation-delay: -1s;
}

.hero__tech-badge--php {
  bottom: 30%;
  left: 0%;
  color: #777bb4;
  animation-delay: -2s;
}

.hero__tech-badge--node {
  bottom: 10%;
  right: 8%;
  color: #68a063;
  animation-delay: -3s;
}

/* Glow Effect */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  max-width: 550px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.3) 0%,
    rgba(139, 92, 246, 0.2) 30%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
  filter: blur(60px);
}

/* ==================== HOLOGRAPHIC HAND EFFECT ==================== */
.hero__hand-hologram {
  position: absolute;
  bottom: 18%;
  left: -5%;
  width: 120px;
  height: 120px;
  z-index: 10;
  animation: hologramFloat 3s ease-in-out infinite;
}

.hologram__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.6) 50%, transparent 70%);
  border-radius: 50%;
  animation: corePulse 2s ease-in-out infinite;
  box-shadow: 
    0 0 30px rgba(99, 102, 241, 0.8),
    0 0 60px rgba(139, 92, 246, 0.5),
    0 0 100px rgba(168, 85, 247, 0.3);
}

.hologram__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  animation: ringExpand 3s ease-out infinite;
}

.hologram__ring--1 {
  width: 50px;
  height: 50px;
  border-color: rgba(99, 102, 241, 0.8);
  animation-delay: 0s;
}

.hologram__ring--2 {
  width: 70px;
  height: 70px;
  border-color: rgba(139, 92, 246, 0.6);
  animation-delay: 0.5s;
}

.hologram__ring--3 {
  width: 90px;
  height: 90px;
  border-color: rgba(168, 85, 247, 0.4);
  animation-delay: 1s;
}

.hologram__particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.hologram__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
  animation: particleOrbit 4s linear infinite;
}

.hologram__particles span:nth-child(1) { animation-delay: 0s; }
.hologram__particles span:nth-child(2) { animation-delay: 0.5s; }
.hologram__particles span:nth-child(3) { animation-delay: 1s; }
.hologram__particles span:nth-child(4) { animation-delay: 1.5s; }
.hologram__particles span:nth-child(5) { animation-delay: 2s; }
.hologram__particles span:nth-child(6) { animation-delay: 2.5s; }
.hologram__particles span:nth-child(7) { animation-delay: 3s; }
.hologram__particles span:nth-child(8) { animation-delay: 3.5s; }

.hologram__code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fira Code', monospace;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-shadow: 
    0 0 10px rgba(99, 102, 241, 1),
    0 0 20px rgba(139, 92, 246, 0.8),
    0 0 30px rgba(168, 85, 247, 0.6);
  animation: codeGlow 2s ease-in-out infinite;
  z-index: 5;
}

/* Floating Code from Hand */
.hero__hand-code {
  position: absolute;
  font-family: 'Fira Code', 'Monaco', monospace;
  font-size: 12px;
  padding: 8px 14px;
  background: linear-gradient(145deg, rgba(30, 30, 46, 0.95), rgba(20, 20, 30, 0.95));
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 8px;
  color: #c3e88d;
  z-index: 8;
  white-space: nowrap;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(10px);
}

.hero__hand-code i {
  margin-right: 6px;
}

.hero__hand-code--1 {
  bottom: 32%;
  left: -12%;
  animation: handCodeFloat 4s ease-in-out infinite;
  animation-delay: 0s;
}

.hero__hand-code--1 i {
  color: #82aaff;
}

.hero__hand-code--2 {
  bottom: 22%;
  left: -18%;
  animation: handCodeFloat 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

.hero__hand-code--2 i {
  color: #c3e88d;
}

.hero__hand-code--3 {
  bottom: 12%;
  left: -8%;
  animation: handCodeFloat 4s ease-in-out infinite;
  animation-delay: 1.6s;
}

.hero__hand-code--3 i {
  color: #f07178;
}

/* Remove orbit - using code editor style instead */
.hero__orbit {
  display: none;
}

/* Animations */
@keyframes heroImageFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-18px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

@keyframes codePulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.02);
  }
}

@keyframes syntaxFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 1;
  }
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes techBadgeFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes rotateBorderGradient {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Holographic Hand Animations */
@keyframes hologramFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes corePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

@keyframes ringExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes particleOrbit {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateX(30px);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg) translateX(50px);
    opacity: 0;
  }
}

@keyframes codeGlow {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes handCodeFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.9;
  }
  25% {
    transform: translateY(-8px) translateX(3px);
    opacity: 1;
  }
  50% {
    transform: translateY(-12px) translateX(0);
    opacity: 1;
  }
  75% {
    transform: translateY(-8px) translateX(-3px);
    opacity: 1;
  }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
}

.card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1.5s;
}

.card-3 {
  top: 60%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-3xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  animation: fadeIn 1s ease-out 1.5s both;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
  }
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }

  .hero__content {
    order: 2;
  }

  .hero__image {
    order: 1;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }
  
  .hero__code-frame {
    width: 85%;
    max-width: 380px;
  }
  
  .hero__img {
    width: 65%;
    max-width: 320px;
  }
  
  .hero__syntax {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .hero__tech-badge {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  
  .hero__hand-hologram {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 0%;
  }
  
  .hero__hand-code {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .hero__hand-code--1 {
    bottom: 28%;
    left: -5%;
  }
  
  .hero__hand-code--2 {
    bottom: 18%;
    left: -10%;
  }
  
  .hero__hand-code--3 {
    bottom: 8%;
    left: 0%;
  }
}

@media screen and (max-width: 768px) {
  .hero__name {
    font-size: var(--font-size-5xl);
  }

  .hero__description {
    font-size: var(--font-size-base);
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .scroll-indicator {
    display: none;
  }
  
  .hero__code-frame {
    width: 80%;
    max-width: 320px;
  }
  
  .hero__terminal-dots {
    top: 10px;
    gap: 6px;
  }
  
  .hero__terminal-dot {
    width: 10px;
    height: 10px;
  }
  
  .hero__img {
    width: 60%;
    max-width: 260px;
  }
  
  .hero__glow {
    filter: blur(30px);
  }
  
  .hero__syntax {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .hero__syntax--1 {
    right: 0%;
  }
  
  .hero__syntax--2 {
    left: 0%;
  }
  
  .hero__syntax--3 {
    right: -5%;
  }
  
  .hero__tech-badge {
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 10px;
  }
  
  .hero__cursor {
    display: none;
  }
  
  .hero__code-lines {
    display: none;
  }
  
  .hero__hand-hologram {
    width: 80px;
    height: 80px;
    bottom: 12%;
    left: 5%;
  }
  
  .hologram__core {
    width: 30px;
    height: 30px;
  }
  
  .hologram__code {
    font-size: 14px;
  }
  
  .hero__hand-code {
    font-size: 10px;
    padding: 5px 8px;
  }
  
  .hero__hand-code--1 {
    bottom: 25%;
    left: 2%;
  }
  
  .hero__hand-code--2 {
    bottom: 15%;
    left: -3%;
  }
  
  .hero__hand-code--3 {
    bottom: 5%;
    left: 8%;
  }
}

@media screen and (max-width: 576px) {
  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .stat {
    padding: var(--spacing-md);
  }

  .stat__number {
    font-size: var(--font-size-3xl);
  }
  
  .hero__code-frame {
    width: 78%;
    max-width: 260px;
  }
  
  .hero__terminal-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero__img {
    width: 58%;
    max-width: 220px;
    border-radius: 16px;
  }
  
  .hero__glow {
    max-width: 300px;
    filter: blur(25px);
    opacity: 0.6;
  }
  
  .hero__syntax {
    display: none;
  }
  
  .hero__tech-badge {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }
  
  .hero__tech-badge--js {
    top: 5%;
    left: 10%;
  }
  
  .hero__tech-badge--react {
    top: 20%;
    right: 8%;
  }
  
  .hero__tech-badge--php {
    bottom: 35%;
    left: 5%;
  }
  
  .hero__tech-badge--node {
    bottom: 15%;
    right: 12%;
  }
  
  .hero__hand-hologram {
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: 10%;
  }
  
  .hologram__core {
    width: 20px;
    height: 20px;
  }
  
  .hologram__ring--1 {
    width: 30px;
    height: 30px;
  }
  
  .hologram__ring--2 {
    width: 45px;
    height: 45px;
  }
  
  .hologram__ring--3 {
    width: 60px;
    height: 60px;
  }
  
  .hologram__code {
    font-size: 12px;
  }
  
  .hologram__particles span {
    width: 3px;
    height: 3px;
  }
  
  .hero__hand-code {
    display: none;
  }
}