.home-page {
  --home-accent: #38bdf8;
  --home-accent-2: #1d4ed8;
  --home-accent-dim: rgba(56, 189, 248, 0.14);
  --home-border: #2a2d3a;
  --home-card: #1a1c24;
  --home-muted: #a3a3a3;
  font-family: Inter, system-ui, sans-serif;
}

.home-hero {
  position: relative;
  overflow: hidden;
  max-width: 72rem;
  margin: 0 auto 1.75rem;
  padding: 2rem 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--home-border);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(56, 189, 248, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 100%,
      rgba(29, 78, 216, 0.1),
      transparent 50%
    ),
    var(--home-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .home-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.home-hero-copy h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.55rem;
  background: linear-gradient(
    90deg,
    #e0f2fe,
    var(--home-accent),
    var(--home-accent-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero-copy h2 {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.75rem;
}

.home-hero-lead {
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    background 0.15s ease;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn--primary {
  color: #0f172a;
  background: linear-gradient(135deg, #38bdf8, #1d4ed8);
}

.home-btn--ghost {
  color: #f5f5f5;
  border: 1px solid var(--home-border);
  background: rgba(0, 0, 0, 0.28);
}

.home-btn--ghost:hover {
  background: var(--home-accent-dim);
}

.home-btn-icon {
  width: 1rem;
  height: 1rem;
}

.home-hero-visual {
  display: flex;
  justify-content: center;
}

.home-hero-glow {
  position: relative;
  padding: 1rem;
}

.home-hero-glow::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.35),
    transparent 70%
  );
  filter: blur(18px);
}

.home-hero-glow img {
  position: relative;
  width: min(100%, 18rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.home-stat-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.home-stat-card {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 191, 255, 0.18);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.04));
  text-align: center;
}

.home-stat-card strong {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, #38bdf8, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-stat-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--home-muted);
}

.home-quick {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 0 0.25rem;
}

.home-section-head {
  margin-bottom: 1rem;
  text-align: center;
}

.home-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 0.35rem;
}

.home-section-head p {
  color: var(--home-muted);
  font-size: 0.88rem;
}

.home-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .home-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .home-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.home-quick-card--alertas {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.16), rgba(8, 145, 178, 0.06));
  border-color: rgba(34, 211, 238, 0.22);
}

.home-quick-card--comandos {
  background: linear-gradient(145deg, rgba(129, 140, 248, 0.16), rgba(67, 56, 202, 0.06));
  border-color: rgba(129, 140, 248, 0.22);
}

.home-quick-card--taxibots {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.16), rgba(5, 150, 105, 0.06));
  border-color: rgba(52, 211, 153, 0.22);
}

.home-quick-card--api {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.16), rgba(217, 119, 6, 0.06));
  border-color: rgba(251, 191, 36, 0.22);
}

.home-quick-card--checker {
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.16), rgba(30, 144, 255, 0.06));
  border-color: rgba(0, 191, 255, 0.22);
}

.home-quick-card--launcher {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.14), rgba(251, 191, 36, 0.08));
  border-color: rgba(251, 191, 36, 0.22);
}

.home-quick-card--premium {
  background: linear-gradient(145deg, rgba(252, 211, 77, 0.16), rgba(202, 138, 4, 0.06));
  border-color: rgba(252, 211, 77, 0.22);
}

.home-quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.home-quick-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5f5f5;
}

.home-quick-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--home-muted);
}

.home-quick-card--alertas:hover {
  border-color: rgba(34, 211, 238, 0.45);
}

.home-quick-card--comandos:hover {
  border-color: rgba(129, 140, 248, 0.45);
}

.home-quick-card--taxibots:hover {
  border-color: rgba(52, 211, 153, 0.45);
}

.home-quick-card--api:hover {
  border-color: rgba(251, 191, 36, 0.45);
}

.home-quick-card--checker h3 {
  background: linear-gradient(90deg, #00bfff, #1e90ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-quick-card--launcher h3 {
  background: linear-gradient(90deg, #38bdf8, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-quick-card--checker:hover {
  border-color: rgba(0, 191, 255, 0.45);
}

.home-quick-card--launcher:hover {
  border-color: rgba(251, 191, 36, 0.45);
}

.home-quick-card--premium h3 {
  color: #fbbf24;
}

.home-quick-card--premium:hover {
  border-color: rgba(251, 191, 36, 0.45);
}

.home-carousel-wrap {
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-carousel-section {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 1.35rem 1rem 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(88, 101, 242, 0.1), rgba(0, 191, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.home-carousel-gap {
  height: 0.85rem;
}

.home-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 191, 255, 0.22);
  background: rgba(0, 191, 255, 0.08);
  color: #7dd3fc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-people-carousel {
  position: relative;
}

.home-people-carousel__viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.home-people-carousel__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  padding: 0.25rem 0.5rem;
}

.home-people-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 15.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 191, 255, 0.18);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.04));
}

.home-people-slide--team {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 11.5rem;
  min-height: 10.5rem;
  padding: 1rem 0.85rem 0.9rem;
  gap: 0.35rem;
}

.home-people-slide__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(56, 189, 248, 0.25);
}

.home-people-slide--team .home-people-slide__avatar {
  width: 4rem;
  height: 4rem;
  border: 3px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.home-people-slide__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.home-people-slide--team .home-people-slide__name {
  max-width: 100%;
  text-align: center;
}

.home-people-slide__name {
  color: #e5e5e5;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-people-slide__name:hover {
  color: #fff;
}

.home-people-slide__handle {
  font-size: 0.72rem;
  color: var(--home-muted);
}

.home-people-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.home-people-slide .home-people-badge {
  margin-bottom: 0;
}

.home-people-slide--team .home-people-badge {
  margin-top: 0.1rem;
}

.home-people-carousel__empty,
.home-people-carousel__error {
  width: 100%;
  text-align: center;
  padding: 1rem;
  color: var(--home-muted);
  font-size: 0.88rem;
}

.home-people-carousel__error {
  color: #fca5a5;
}

.credits-board {
  max-width: 72rem;
  margin: 0 auto;
}

.credits-board__loading,
.credits-board__error {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--home-muted);
  font-size: 0.9rem;
}

.credits-board__error {
  color: #fca5a5;
}

.credits-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--mia-border, #1a1a1a);
  background:
    radial-gradient(
      ellipse 75% 50% at 50% -15%,
      rgba(0, 191, 255, 0.07),
      transparent 58%
    ),
    radial-gradient(
      ellipse 40% 35% at 100% 100%,
      rgba(30, 144, 255, 0.05),
      transparent 55%
    ),
    var(--mia-bg, #000000);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.credits-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid var(--mia-border, #1a1a1a);
  background: var(--mia-bg, #000000);
}

.credits-panel__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.credits-panel__stat {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--mia-border, #1a1a1a);
  background: var(--mia-bg-elevated, #0a0a0a);
}

.credits-panel__stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(90deg, #e0f2fe, var(--home-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.credits-panel__stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
}

.credits-panel__sync {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.76rem;
  color: var(--home-muted);
}

.credits-panel__sync i {
  color: var(--home-accent);
  font-size: 0.7rem;
}

.credits-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.35rem;
  background: var(--mia-bg, #000000);
}

.credits-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--mia-border, #1a1a1a);
  background: var(--mia-bg, #000000);
  color: #d4d4d4;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.credits-tab:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(0, 191, 255, 0.45);
  background: var(--mia-bg-elevated, #0a0a0a);
}

.credits-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.28),
    rgba(29, 78, 216, 0.35)
  );
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.12);
}

.credits-tab__label {
  white-space: nowrap;
}

.credits-tab__count {
  min-width: 1.4rem;
  padding: 0.12rem 0.38rem;
  border-radius: 999px;
  background: var(--mia-bg-elevated, #0a0a0a);
  border: 1px solid var(--mia-border, #1a1a1a);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.credits-tab.is-active .credits-tab__count {
  background: rgba(255, 255, 255, 0.14);
}

.credits-tab--dev.is-active {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.28),
    rgba(88, 28, 135, 0.35)
  );
}
.credits-tab--code.is-active {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.28),
    rgba(29, 78, 216, 0.35)
  );
}
.credits-tab--bug.is-active {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.28),
    rgba(153, 27, 27, 0.35)
  );
}
.credits-tab--beta.is-active {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.28),
    rgba(21, 128, 61, 0.35)
  );
}
.credits-tab--trad.is-active {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.28),
    rgba(8, 145, 178, 0.35)
  );
}
.credits-tab--design.is-active {
  background: linear-gradient(
    135deg,
    rgba(192, 132, 252, 0.28),
    rgba(126, 34, 206, 0.35)
  );
}
.credits-tab--thanks.is-active {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.28),
    rgba(180, 83, 9, 0.35)
  );
}
.credits-tab--all.is-active {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.28),
    rgba(29, 78, 216, 0.35)
  );
}

.credits-panel__body {
  padding: 0.75rem 1rem 1.35rem;
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.04), transparent);
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .credits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .credits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .credits-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.credits-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-height: 12.5rem;
  padding: 1.25rem 0.85rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.credits-card--dev {
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.18), rgba(88, 28, 135, 0.08));
  border-color: rgba(168, 85, 247, 0.28);
}

.credits-card--code {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.18), rgba(29, 78, 216, 0.08));
  border-color: rgba(59, 130, 246, 0.28);
}

.credits-card--bug {
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.18), rgba(185, 28, 28, 0.08));
  border-color: rgba(239, 68, 68, 0.28);
}

.credits-card--beta {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.18), rgba(21, 128, 61, 0.08));
  border-color: rgba(34, 197, 94, 0.28);
}

.credits-card--trad {
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.18), rgba(8, 145, 178, 0.08));
  border-color: rgba(34, 211, 238, 0.28);
}

.credits-card--design {
  background: linear-gradient(160deg, rgba(192, 132, 252, 0.18), rgba(126, 34, 206, 0.08));
  border-color: rgba(192, 132, 252, 0.28);
}

.credits-card--thanks {
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.18), rgba(180, 83, 9, 0.08));
  border-color: rgba(251, 191, 36, 0.28);
}

.credits-card--all {
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.18), rgba(29, 78, 216, 0.08));
  border-color: rgba(56, 189, 248, 0.28);
}

.credits-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.credits-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2));
  opacity: 0.85;
}

.credits-card--dev .credits-card__accent {
  background: linear-gradient(90deg, #c084fc, #7e22ce);
}
.credits-card--code .credits-card__accent {
  background: linear-gradient(90deg, #60a5fa, #1d4ed8);
}
.credits-card--bug .credits-card__accent {
  background: linear-gradient(90deg, #f87171, #b91c1c);
}
.credits-card--beta .credits-card__accent {
  background: linear-gradient(90deg, #4ade80, #15803d);
}
.credits-card--trad .credits-card__accent {
  background: linear-gradient(90deg, #22d3ee, #0891b2);
}
.credits-card--design .credits-card__accent {
  background: linear-gradient(90deg, #d8b4fe, #9333ea);
}
.credits-card--thanks .credits-card__accent {
  background: linear-gradient(90deg, #fcd34d, #d97706);
}
.credits-card--all .credits-card__accent {
  background: linear-gradient(90deg, #38bdf8, #1d4ed8);
}

.credits-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.credits-card:hover .credits-card__shine {
  opacity: 1;
}

.credits-card--dev:hover {
  border-color: rgba(168, 85, 247, 0.5);
}
.credits-card--code:hover {
  border-color: rgba(59, 130, 246, 0.5);
}
.credits-card--bug:hover {
  border-color: rgba(239, 68, 68, 0.5);
}
.credits-card--beta:hover {
  border-color: rgba(34, 197, 94, 0.5);
}
.credits-card--trad:hover {
  border-color: rgba(34, 211, 238, 0.5);
}
.credits-card--design:hover {
  border-color: rgba(192, 132, 252, 0.5);
}
.credits-card--thanks:hover {
  border-color: rgba(251, 191, 36, 0.5);
}

.credits-card__avatar-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 0.15rem;
}

.credits-card__avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.22),
    transparent 70%
  );
  opacity: 0.7;
}

.credits-card--dev .credits-card__avatar-wrap::before {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.28),
    transparent 70%
  );
}
.credits-card--code .credits-card__avatar-wrap::before {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.28),
    transparent 70%
  );
}
.credits-card--bug .credits-card__avatar-wrap::before {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.28), transparent 70%);
}
.credits-card--beta .credits-card__avatar-wrap::before {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28), transparent 70%);
}
.credits-card--trad .credits-card__avatar-wrap::before {
  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.28),
    transparent 70%
  );
}
.credits-card--design .credits-card__avatar-wrap::before {
  background: radial-gradient(
    circle,
    rgba(192, 132, 252, 0.28),
    transparent 70%
  );
}
.credits-card--thanks .credits-card__avatar-wrap::before {
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.28),
    transparent 70%
  );
}

.credits-card__avatar {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.credits-card:hover .credits-card__avatar {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.credits-card__name {
  max-width: 100%;
  padding: 0 0.15rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fafafa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credits-card__handle {
  max-width: 100%;
  padding: 0 0.15rem;
  font-size: 0.74rem;
  color: var(--home-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credits-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 1.35rem;
  margin-top: 0.1rem;
}

.credits-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.credits-card__tag--dev {
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.35);
}

.credits-card__tag--code {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.35);
}

.credits-card__tag--bug {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.35);
}

.credits-card__tag--beta {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.35);
}

.credits-card__tag--trad {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.35);
}

.credits-card__tag--design {
  color: #f3e8ff;
  background: rgba(192, 132, 252, 0.2);
  border-color: rgba(192, 132, 252, 0.35);
}

.credits-card__tag--thanks {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.35);
}

.credits-card__tag--all {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.35);
}

.credits-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
  opacity: 0.65;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.credits-card:hover .credits-card__cta {
  opacity: 1;
  color: #bae6fd;
}

.credits-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 10rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px dashed rgba(0, 191, 255, 0.22);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.08), rgba(255, 255, 255, 0.02));
  text-align: center;
  color: var(--home-muted);
}

.credits-empty i {
  font-size: 1.35rem;
  color: var(--home-accent);
  opacity: 0.75;
}

.credits-empty p {
  margin: 0;
  max-width: 18rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.credits-empty strong {
  color: #e5e5e5;
}

.home-features {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 0.75rem 2rem;
}

.home-features .sectionGridItem picture,
.home-features .sectionGridItem img {
  display: block;
  max-width: 100%;
  height: auto;
}

.home-features .sectionGridItem img {
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.home-features .sectionGridItem img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.home-people-grid--devs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-people-badge--admin {
  color: #7dd3fc;
  background: rgba(14, 116, 144, 0.22);
  border-color: rgba(56, 189, 248, 0.35);
}

.home-people-badge--dev {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(59, 130, 246, 0.35);
}

.home-people-badge--mod {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(59, 130, 246, 0.35);
}

.home-people-badge--design,
.home-people-badge--designer {
  color: #d8b4fe;
  background: rgba(147, 51, 234, 0.22);
  border-color: rgba(168, 85, 247, 0.35);
}

.home-people-badge--code {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(59, 130, 246, 0.35);
}

.home-people-badge--bug {
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.22);
  border-color: rgba(239, 68, 68, 0.35);
}

.home-people-badge--beta {
  color: #86efac;
  background: rgba(22, 163, 74, 0.22);
  border-color: rgba(34, 197, 94, 0.35);
}

.home-people-badge--trad {
  color: #7dd3fc;
  background: rgba(14, 116, 144, 0.22);
  border-color: rgba(56, 189, 248, 0.35);
}

.home-people-badge--thanks,
.home-people-badge--default {
  color: #d4d4d4;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

@keyframes home-pulse {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.85;
    filter: brightness(1.25);
  }
}

.floating-menu a[href*="checker"] {
  font-weight: 600;
  background: linear-gradient(90deg, #00bfff, #1e90ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-pulse 2s ease-in-out infinite;
}

.home-gradient {
  background: linear-gradient(
    90deg,
    #e0f2fe,
    var(--home-accent),
    var(--home-accent-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-people {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 0 0.75rem;
}

.home-person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 18rem);
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.12), rgba(59, 130, 246, 0.06));
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.home-person-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.home-person-card img {
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 0.85rem;
  border: 3px solid rgba(56, 189, 248, 0.35);
}

.home-person-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.35rem;
}

.home-person-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  border: 1px solid transparent;
}

.home-person-badge--owner {
  color: #d8b4fe;
  background: rgba(147, 51, 234, 0.22);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.home-person-badge--dev {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.home-person-card p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--home-muted);
  margin-bottom: 0.85rem;
}

.home-person-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.15s ease;
}

.home-person-link:hover {
  color: #fff;
}

.home-person-link img {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  border: none;
  border-radius: 0;
}

.home-launcher {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 0 0.75rem;
}

.home-launcher-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.12), rgba(251, 191, 36, 0.06));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.home-launcher-featured__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .home-launcher-featured {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 1.5rem;
    text-align: left;
  }

  .home-launcher-featured__copy {
    align-items: flex-start;
  }
}

.home-launcher-featured__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 0.45rem;
}

.home-launcher-featured__copy h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 0.55rem;
}

.home-launcher-featured__copy p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--home-muted);
  margin-bottom: 0.85rem;
  max-width: 34rem;
}

.home-launcher-featured .home-launcher-tags--left {
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .home-launcher-featured .home-launcher-tags--left {
    justify-content: flex-start;
  }
}

.home-launcher-tags--left {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.home-launcher-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .home-launcher-featured__actions {
    justify-content: flex-start;
  }
}

.home-launcher-featured__actions .home-launcher-btn,
.home-launcher-featured__actions .home-launcher-btn--mia-ghost {
  width: auto;
  max-width: none;
}

.home-launcher-featured__visual {
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .home-launcher-featured__visual {
    max-width: none;
    margin: 0;
  }
}

.home-launcher-featured__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
  transition: transform 0.2s ease;
}

.home-launcher-featured__visual:hover img {
  transform: scale(1.02);
}

.home-launcher-btn--mia {
  background: linear-gradient(135deg, #38bdf8, #fbbf24);
  color: #101014;
}

.home-launcher-btn--mia-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  max-width: none;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.28);
}

.home-launcher-btn--mia-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 191, 36, 0.4);
}

.home-launcher-btn--mia-ghost svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.home-launcher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .home-launcher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-features .sectionGrid {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.14);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.08), rgba(30, 144, 255, 0.03));
}

.home-launcher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.home-launcher-card--aerial {
  border: 1px solid rgba(59, 130, 246, 0.24);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.16), rgba(29, 78, 216, 0.06));
}

.home-launcher-card--glow {
  border: 1px solid rgba(168, 85, 247, 0.24);
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.16), rgba(219, 39, 119, 0.06));
}

.home-launcher-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.home-launcher-card--aerial:hover {
  border-color: rgba(59, 130, 246, 0.45);
}

.home-launcher-card--glow:hover {
  border-color: rgba(168, 85, 247, 0.45);
}

.home-launcher-card img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.12);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.home-launcher-card--aerial img {
  border-color: rgba(59, 130, 246, 0.35);
}

.home-launcher-card--glow img {
  border-color: rgba(168, 85, 247, 0.35);
}

.home-launcher-card img:hover {
  transform: scale(1.04);
}

.home-launcher-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f5f5f5;
}

.home-launcher-card p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--home-muted);
  max-width: 26rem;
}

.home-launcher-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.home-launcher-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.04);
}

.home-launcher-tag__icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: #38bdf8;
  stroke: currentColor;
}

.home-launcher-featured .home-launcher-tag__icon {
  color: #38bdf8;
}

.home-launcher-card--aerial .home-launcher-tag__icon {
  color: #60a5fa;
}

.home-launcher-card--glow .home-launcher-tag__icon {
  color: #c084fc;
}

.home-launcher-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 18rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.home-launcher-btn:hover {
  transform: translateY(-1px);
}

.home-launcher-btn--aerial {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.home-launcher-btn--glow {
  background: linear-gradient(135deg, #a855f7, #db2777);
}

.home-launcher-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.home-overlay.activo {
  opacity: 1;
  pointer-events: auto;
}

.home-overlay-img {
  max-width: calc(100vw - 2rem);
  max-height: calc(100dvh - 5rem);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.home-overlay.activo .home-overlay-img {
  transform: scale(1);
}

.home-overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 51;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #387aa6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.floating-button:hover {
  background-color: #2c5d84;
}

.floating-menu {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  border-radius: 10px;
  padding: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-menu a {
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 1rem;
  text-align: center;
}

.floating-menu a:hover {
  text-decoration: underline;
}

.floating-menu a[href*="premium"] {
  color: #fbbf24;
  font-weight: 600;
}

.floating-menu a[href*="faq"] {
  color: #c4b5fd;
  font-weight: 600;
}

@media (min-width: 768px) {
  .floating-button {
    display: none;
  }
}
