/* Hero specific styles */
.hero {
  min-height: auto;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}

.hero-sub {
  color: var(--text-2);
  font-size: 1.2rem;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .hero-cta { justify-content: center; }
}

.hero-stats {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
}
@media (max-width: 960px) {
  .hero-stats { margin-left: auto; margin-right: auto; }
}

.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.hero-stat .label {
  color: var(--text-3);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Mascot stage */
.mascot-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.mascot-orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.2);
  animation: spin-slow 60s linear infinite;
}
.mascot-orbit.outer {
  inset: 0;
  border: 1px dashed rgba(96, 165, 250, 0.15);
  animation-duration: 90s;
  animation-direction: reverse;
}
.mascot-orbit::before, .mascot-orbit::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 16px var(--purple-400);
  top: -4px;
  left: 50%;
}
.mascot-orbit::after {
  background: var(--blue-400);
  box-shadow: 0 0 16px var(--blue-400);
  top: auto;
  bottom: -4px;
  left: 30%;
}

.mascot-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.5), rgba(59,130,246,0.2) 40%, transparent 70%);
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.mascot-img {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.5));
  z-index: 2;
}

/* Floating chips around mascot */
.float-chip {
  position: absolute;
  background: rgba(8, 6, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
  white-space: nowrap;
  z-index: 3;
}
.float-chip .ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: var(--accent-grad-2);
  color: white;
  font-size: 12px;
}
.float-chip.c1 { top: 12%; left: -8%; animation: float-slow 5s ease-in-out infinite; }
.float-chip.c2 { top: 30%; right: -10%; animation: float-slow 6s ease-in-out infinite 1s; }
.float-chip.c3 { bottom: 22%; left: -4%; animation: float-slow 5.5s ease-in-out infinite 0.5s; }
.float-chip.c4 { bottom: 8%; right: 0%; animation: float-slow 6.5s ease-in-out infinite 1.5s; }

@media (max-width: 960px) {
  .mascot-stage { max-width: 380px; margin: 0 auto; }
  .float-chip.c1 { left: 0%; }
  .float-chip.c2 { right: 0%; }
}

/* Trusted bar */
.trusted-bar {
  margin-top: 100px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.trusted-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.trusted-label {
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trusted-logos {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.55;
}
.trusted-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-2);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trusted-logo .lm {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple-500), var(--blue-500));
}
