:root {
  --bg: #050505;
  --bg-soft: #0b0b0d;
  --card: #101013;
  --card-hover: #15151a;
  --text: #f4f4f6;
  --muted: #a9a9b0;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.035), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 0 52px;
}

.logo {
  display: block;
  width: min(760px, 92vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.04));
}

.tagline {
  max-width: 880px;
  margin: 8px auto 0;
  font-size: clamp(1.08rem, 2.1vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: #d8d8dd;
}

.assets-section {
  padding: 38px 0 92px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.07em;
  font-weight: 800;
}

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

.asset-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.asset-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--card-hover);
}

.asset-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0b0b0c;
}

.asset-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
}

.asset-card:hover .asset-image {
  transform: scale(1.025);
}

.asset-info {
  padding: 18px 18px 20px;
}

.asset-name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.asset-description {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.asset-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.asset-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.asset-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}

.empty-state {
  padding: 60px 24px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255,255,255,0.018);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 20px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer a {
  color: #efeff2;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-dot {
  opacity: 0.45;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  main {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding-top: 18px;
  }

  .logo {
    width: 100%;
  }

  .tagline {
    font-size: 1rem;
  }

  .assets-section {
    padding-top: 18px;
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .footer-dot {
    display: none;
  }

  footer {
    flex-direction: column;
  }
}
