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

html {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  background-image: radial-gradient(
    ellipse at 50% 38%,
    rgba(200, 146, 42, 0.10) 0%,
    transparent 65%
  );
  color: var(--color-cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

/* ── Stage ─────────────────────────────────────── */

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 480px;
}

/* ── Logo ───────────────────────────────────────── */

.logo-wrap {
  margin-bottom: var(--space-lg);
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  display: block;
}

/* ── Divider ────────────────────────────────────── */

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: var(--space-md);
}

/* ── Identity ───────────────────────────────────── */

.identity {
  margin-bottom: 0;
}

.team-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: 0.2em;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.team-abbr {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--color-cream-muted);
  text-transform: uppercase;
}

/* ── Tagline ────────────────────────────────────── */

.tagline-block {
  margin-top: var(--space-lg);
}

.tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-cream);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.coming-soon {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--color-cream-muted);
}

/* ── Contact ────────────────────────────────────── */

.contact {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.social-link {
  color: var(--color-cream);
  opacity: 0.6;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.25s ease;
}

.social-link:hover {
  opacity: 1;
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.emails {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.emails a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-cream-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.emails a:hover {
  color: var(--color-cream);
}

.emails .sep {
  color: var(--color-cream-muted);
  font-size: 0.72rem;
  opacity: 0.5;
  user-select: none;
}

/* ── Animations ─────────────────────────────────── */

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

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: var(--delay, 0s);
}

/* ── Responsive ─────────────────────────────────── */

@media (max-width: 480px) {
  .logo {
    width: 110px;
    height: 110px;
  }

  .team-name {
    font-size: 1.5rem;
  }

  .emails {
    flex-direction: column;
    gap: 6px;
  }

  .emails .sep {
    display: none;
  }
}
