/* ================================
   ABOUT HERO
   ================================ */
.about-hero {
  position: relative;
  background-color: #1a1a2e;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* ================================
   BACKGROUND
   ================================ */
.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Gradient mesh */
.about-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(206, 255, 6, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 10%, rgba(6, 182, 212, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(206, 255, 6, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Noise tekstura */
.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Blob 1 — lime glow */
.about-hero__bg-blob--1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(206, 255, 6, 0.07), transparent 70%);
  top: -250px;
  left: -200px;
  border-radius: 50%;
  filter: blur(80px);
  animation: hero-blob-drift-1 12s ease-in-out infinite alternate;
}

/* Blob 2 — indigo */
.about-hero__bg-blob--2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
  filter: blur(100px);
  animation: hero-blob-drift-2 15s ease-in-out infinite alternate;
}

@keyframes hero-blob-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.05); }
}

@keyframes hero-blob-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -40px) scale(1.08); }
}

/* ================================
   SEPARATOR
   ================================ */
.about-hero__separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #1a1a2e);
  pointer-events: none;
}

/* ================================
   CONTAINER
   ================================ */
.about-hero__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ================================
   INNER — 50/50 LAYOUT
   ================================ */
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================================
   CONTENT — LEVO — GLASSMORPHISM
   ================================ */
.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(206, 255, 6, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

/* Glass shimmer — gornji levi ugao */
.about-hero__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(206, 255, 6, 0.4),
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

/* Glass inner glow */
.about-hero__content::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(206, 255, 6, 0.06), transparent 70%);
  pointer-events: none;
}

/* ================================
   BADGE
   ================================ */
.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ceff06;
  border: none;
  color: #0f0f0f;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.04em;
  box-shadow: 0 0 24px rgba(206, 255, 6, 0.35),
              0 4px 12px rgba(206, 255, 6, 0.2);
  position: relative;
  z-index: 1;
}

.about-hero__badge svg {
  stroke: #0f0f0f;
}

/* ================================
   NASLOV
   ================================ */
.about-hero__title {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-hero__title span {
  background: linear-gradient(90deg, #ceff06, #a8d400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================
   DIVIDER
   ================================ */
.about-hero__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ceff06, #a8d400);
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

/* ================================
   SUBTITLE
   ================================ */
.about-hero__subtitle {
  color: #a0aec0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ================================
   STATS
   ================================ */
.about-hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 8px;
}

.about-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-hero__stat-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ceff06;
  line-height: 1;
  text-shadow: 0 0 20px rgba(206, 255, 6, 0.4);
}

.about-hero__stat-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(206, 255, 6, 0.15);
}

/* ================================
   SLIKA — DESNO
   ================================ */
.about-hero__image-wrap {
  position: relative;
}

.about-hero__image-inner {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Rotating gradient border */
.about-hero__image-border {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(
    var(--angle, 0deg),
    #ceff06,
    rgba(99, 102, 241, 0.6),
    rgba(6, 182, 212, 0.4),
    #ceff06
  );
  z-index: 0;
  animation: border-rotate 6s linear infinite;
  padding: 2px;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-rotate {
  0%   { --angle: 0deg; }
  100% { --angle: 360deg; }
}

/* Mask da se vidi samo border */
.about-hero__image-border::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #1a1a2e;
  border-radius: 20px;
  z-index: 1;
}

/* Dot grid — lime */
.about-hero__image-dots {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(206, 255, 6, 0.3) 1px, transparent 1px);
  background-size: 12px 12px;
  z-index: 0;
  border-radius: 4px;
}

/* Glow ispod slike */
.about-hero__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: rgba(206, 255, 6, 0.12);
  filter: blur(30px);
  border-radius: 50%;
  z-index: 0;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .about-hero__inner {
    gap: 50px;
  }

  .about-hero__content {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 80px;
  }

  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero__image-wrap {
    order: 2;
  }

  .about-hero__content {
    order: 1;
    padding: 28px 22px;
  }

  .about-hero__title {
    font-size: 2rem;
  }

  .about-hero__stats {
    gap: 16px;
  }
}