/* ============================================================
   SILBERBERG CAPITAL — Hero Section
   Full-width hero with gradient, text, CTAs
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 40%, var(--color-primary) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.06) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Subtle grid pattern */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Upward arrow shapes inspired by logo */
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shapes .shape {
  position: absolute;
  border: 1px solid rgba(var(--color-accent-rgb), 0.08);
  border-radius: var(--radius-sm);
}

.hero__shapes .shape-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 15%;
  transform: rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

.hero__shapes .shape-2 {
  width: 50px;
  height: 50px;
  bottom: 25%;
  right: 25%;
  transform: rotate(-10deg);
  animation: float 8s ease-in-out infinite;
}

.hero__shapes .shape-3 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 5%;
  transform: rotate(25deg);
  border-radius: var(--radius-xl);
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

/* ── Hero Content ── */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  background: rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--color-accent-rgb), 0.15);
}

.hero__label svg {
  width: 14px;
  height: 14px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero__title .accent {
  color: var(--color-accent-bright);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding-top: var(--space-8);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__shapes {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-2xl);
  }

  .hero__label {
    font-size: 0.625rem;
  }
}
