.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
  padding: 100px 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 30%, transparent 70%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 30%, transparent 70%, black 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(var(--atlas-glow-warm-rgb), 0.3) 0%, rgba(var(--atlas-glow-cool-rgb), 0.1) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
  z-index: 1;
}

.hero-text {
  max-width: 680px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-illustration {
  max-width: 480px;
  flex: 0 0 auto;
  width: 480px;
}

.hero-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--atlas-c-start);
  box-shadow: 0 0 8px var(--atlas-c-start);
}

.hero-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  text-wrap: balance;
}

.hero-title .highlight {
  background-image: var(--atlas-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.hero-desc.text-shine {
  color: rgba(255, 255, 255, 0.8);
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-core {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: visible;
  background: transparent;
}

.hero-photo {
  max-width: 230px;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(30, 77, 140, 0.4);
  box-shadow: 0 20px 60px rgba(var(--atlas-glow-cool-rgb), 0.3);
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(30, 77, 140, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring:nth-child(1) {
  width: 240px;
  height: 240px;
}

.hero-ring:nth-child(2) {
  width: 320px;
  height: 320px;
  animation-delay: -2s;
  border-color: rgba(30, 77, 140, 0.1);
}

.hero-ring:nth-child(3) {
  width: 400px;
  height: 400px;
  animation-delay: -4s;
  border-color: rgba(30, 77, 140, 0.06);
}

.hero-chip {
  position: absolute;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-chip--1 {
  top: 5%;
  right: 5%;
  background-image: var(--atlas-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-color: rgba(30, 77, 140, 0.3);
  animation-delay: -0.5s;
}

.hero-chip--2 {
  top: 55%;
  left: -10%;
  animation-delay: -1.2s;
}

.hero-chip--3 {
  bottom: 8%;
  right: -5%;
  animation-delay: -2s;
}

.hero-chip--4 {
  top: -5%;
  left: 15%;
  animation-delay: -1.5s;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero-inner {
    flex-direction: column-reverse;
    gap: 48px;
    text-align: center;
    padding: 0 48px;
  }
  .hero-text {
    align-items: center;
    max-width: 600px;
  }
  .hero-illustration {
    max-width: 320px;
    width: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual {
    max-width: 300px;
  }
  .hero-core {
    max-width: 190px;
  }
  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 0 32px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-inner {
    padding: 0 16px;
    gap: 32px;
  }
  .hero-text {
    gap: 20px;
  }
  .hero-illustration {
    max-width: 260px;
  }
  .hero-photo {
    max-width: 150px;
  }
  .hero-chip {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 16px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-ring:nth-child(1) { width: 180px; height: 180px; }
  .hero-ring:nth-child(2) { width: 240px; height: 240px; }
  .hero-ring:nth-child(3) { width: 300px; height: 300px; }
  .hero-visual { max-width: 280px; }
}