/* Homepage — light, airy layout */

.ga-home {
  color: var(--ga-text);
  overflow: hidden;
}

.ga-hero {
  position: relative;
  padding: 36px 0 28px;
}

.ga-hero::before,
.ga-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.5;
  pointer-events: none;
}
.ga-hero::before {
  background: radial-gradient(circle, rgba(255, 131, 7, 0.16), transparent 65%);
  top: -120px;
  right: -80px;
}
.ga-hero::after {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 65%);
  bottom: -140px;
  left: -100px;
}

.ga-title {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--ga-text);
}

.ga-title > span:first-child {
  color: var(--ga-text);
}

.ga-title .accent {
  background: linear-gradient(135deg, var(--ga-accent) 0%, #ff9b3a 45%, var(--ga-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ga-subtitle {
  color: var(--ga-muted);
  max-width: 54ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.ga-home .ga-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Dashboard mock */
.ga-mock {
  border-radius: var(--ga-radius);
  background: var(--ga-bg-2);
  border: 1px solid var(--ga-border);
  box-shadow: var(--ga-shadow);
  overflow: hidden;
  position: relative;
}

.ga-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 70% 15%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(400px 180px at 10% 80%, rgba(255, 131, 7, 0.08), transparent 55%);
  pointer-events: none;
}

.ga-mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ga-border);
  background: var(--ga-surface-muted);
}
.ga-mock-topbar small {
  color: var(--ga-muted);
  font-weight: 600;
  font-size: 12px;
}
.ga-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ga-border-strong);
}
.ga-dot:nth-child(1) { background: #f87171; }
.ga-dot:nth-child(2) { background: #fbbf24; }
.ga-dot:nth-child(3) { background: #4ade80; }

.ga-mock-body {
  padding: 16px;
  position: relative;
  z-index: 1;
}

.ga-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.ga-kpi {
  padding: 12px;
  border-radius: 12px;
  background: var(--ga-surface-muted);
  border: 1px solid var(--ga-border);
}
.ga-kpi b {
  display: block;
  font-size: 16px;
  color: var(--ga-text);
}
.ga-kpi span {
  color: var(--ga-muted);
  font-size: 12px;
}

.ga-list {
  display: grid;
  gap: 8px;
}
.ga-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--ga-bg-2);
  border: 1px solid var(--ga-border);
}
.ga-row > div:nth-child(2) > div:first-child {
  font-weight: 800;
  color: var(--ga-text);
  font-size: 14px;
}
.ga-ico {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(255, 131, 7, 0.85));
}
.ga-row small {
  color: var(--ga-muted);
  font-size: 12px;
}

.ga-section {
  padding: 28px 0 36px;
}

.ga-home .ga-section-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.ga-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ga-card {
  border-radius: var(--ga-radius);
  background: var(--ga-bg-2);
  border: 1px solid var(--ga-border);
  padding: 16px;
  box-shadow: var(--ga-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ga-card:hover {
  transform: translateY(-3px);
  border-color: var(--ga-border-strong);
  box-shadow: var(--ga-shadow);
}
.ga-card h3 {
  color: var(--ga-text);
  font-size: 17px;
  font-weight: 800;
  margin: 10px 0 6px;
}
.ga-card p {
  color: var(--ga-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.ga-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ga-surface-muted);
  border: 1px solid var(--ga-border);
  display: grid;
  place-items: center;
  color: var(--ga-text-soft);
}
.ga-icon svg {
  width: 20px;
  height: 20px;
}

.ga-cta {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: var(--ga-radius);
  background: linear-gradient(135deg, rgba(255, 131, 7, 0.1), rgba(37, 99, 235, 0.06));
  border: 1px solid var(--ga-border);
  box-shadow: var(--ga-shadow-sm);
}

.ga-anim[data-delay="1"] { transition-delay: 80ms; }
.ga-anim[data-delay="2"] { transition-delay: 160ms; }
.ga-anim[data-delay="3"] { transition-delay: 240ms; }

@media (max-width: 992px) {
  .ga-hero {
    padding-top: 24px;
  }
  .ga-cards {
    grid-template-columns: 1fr;
  }
}
