@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;600&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- Background dot texture ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

main {
  max-width: 520px;
  text-align: center;
}

/* ---- Logo ---- */
.logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out both;
}

/* Glow behind logo */
.logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.logo-svg {
  position: relative;
  width: 64px;
  height: 64px;
  display: block;
  transition: transform 0.3s ease;
}

.logo-wrap:hover .logo-svg {
  transform: scale(1.06);
}

/* Staggered bar entrance */
.logo-bar {
  animation: fadeUp 0.6s ease-out both;
}
.logo-bar-1 { animation-delay: 0.1s; }
.logo-bar-2 { animation-delay: 0.2s; }
.logo-bar-3 { animation-delay: 0.3s; }

/* ---- Headings ---- */
h1 {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite, fadeUp 0.8s 0.15s ease-out both;
}

h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-align: left;
  animation: fadeUp 0.8s 0.25s ease-out both;
}

/* ---- Tagline ---- */
.tagline {
  color: #777;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.35s ease-out both;
}

/* ---- About ---- */
.about {
  color: #777;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.45s ease-out both;
}

.about p {
  margin-bottom: 1rem;
}

.about p:last-child {
  margin-bottom: 0;
}

/* ---- Contact ---- */
.contact {
  font-size: 0.85rem;
  color: #555;
  text-align: left;
  animation: fadeUp 0.8s 0.55s ease-out both;
}

.contact a {
  color: #888;
  text-decoration: none;
}

.contact a:hover {
  color: #ccc;
}

/* ---- Animations ---- */
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .logo-wrap,
  .logo-bar,
  h1, h2, .tagline, .about, .contact {
    animation: none;
  }
  h1 {
    -webkit-text-fill-color: #fff;
  }
  .logo-wrap:hover .logo-svg {
    transform: none;
  }
}
