﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Sora:wght@500;600&display=swap');

:root {
  --bg: #0b0c10;
  --bg-2: #11131a;
  --card: #0b2335;
  --card-2: #0a1d2c;
  --text: #eef1f6;
  --muted: #a7b0c2;
  --accent: #3a60ff;
  --accent-2: #006de1;
  --border: rgba(58, 96, 255, 0.35);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: #000000;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.bg-orbit {
  display: none;
}

.page {
  width: min(960px, 100%);
}

.card {
  display: none;
}

.page-header {
  text-align: center;
  margin-bottom: 36px;
}

.vsp-logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
}

.subtitle {
  margin: 4px 0 0;
  color: #0b2335;
  font-size: 0.95rem;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}

.grid-logos {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-height: none;
  padding-right: 0;
  overflow: visible;
}

.grid-inline {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid::-webkit-scrollbar {
  width: 6px;
}

.grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.tile {
  background: rgba(10, 12, 18, 0.75);
  border: 1px dashed rgba(124, 224, 255, 0.35);
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  gap: 6px;
}

.logo-tile {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.16);
  padding: 28px;
  gap: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background: var(--brand);
  color: var(--brand-ink);
}

.logo-frame {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.logo-img {
  width: 88px;
  height: 88px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.logo-tile .tile-title {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}

.logo-tile.gpt {
  --brand: #0ea37a;
  --brand-ink: #0b0c10;
}

.logo-tile.gamma {
  --brand: #f59f2f;
  --brand-ink: #0b0c10;
}

.logo-tile.lovable {
  --brand: #ff5aa5;
  --brand-ink: #0b0c10;
}

.logo-tile.windsurf {
  --brand: #4b7bff;
  --brand-ink: #f4f6ff;
}.tile:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(124, 224, 255, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.tile-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.tile-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.glow {
  display: none;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, 30px) rotate(40deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (max-width: 640px) {
  body {
    padding: 20px;
  }

  .card {
    padding: 22px 20px 18px;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

