/* Hero Section */
.hero {
  padding: 3rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  width: 100%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* display: flex;
  justify-content: center; */
}

.gradient-text {
  background: hsl(var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: hsl(var(--text-muted));
  max-width: 72ch;
  display: flex;
  text-align:left; /* justify-content: center; */
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: flex-start;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-card {
  padding: var(--spacing-lg);
  position: relative;
}

/* Default: Desktop & Tablet */
.hero-logo-display {
  width: 100%;
  aspect-ratio: 2.7; /* 1728 / 639 = 2.7 */
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image fills container */
.hero-logo-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .hero-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-card {
    padding: clamp(1.25rem, 2vw, 2rem);
  }

  .hero-logo-display {
    aspect-ratio: 2.35;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .hero-logo-display {
    display: flex;
    align-self: center;
    justify-items: center;
    justify-content: center;
    aspect-ratio: 1; /* Slightly taller on mobile for better visibility */
  }
}

@media (max-width: 400px) {
  .hero-logo-display {
    display: flex;
    justify-items: center;
    justify-content: center;
    aspect-ratio: 1; /* Even taller for very small screens */
  }
}


