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

html, body {
  height: 100%;
}

body {
  background: #0a0a0a;
  color: #f9f9f9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Masthead */
.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8a8a8a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.masthead span:last-child {
  color: #c9a4ff;
}

/* Main stage */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 6rem;
  text-align: center;
  gap: 2rem;
}

/* Iridescent logo (CSS mask + animated gradient) */
.logo {
  width: clamp(200px, 32vw, 320px);
  aspect-ratio: 817 / 500;
  background: linear-gradient(
    110deg,
    #ff78d0 0%,
    #c084fc 18%,
    #6aa8ff 36%,
    #5de3d4 54%,
    #a8ff9a 70%,
    #ffe066 84%,
    #ff78d0 100%
  );
  background-size: 220% 100%;
  -webkit-mask: url(logo-letters.svg) center / contain no-repeat;
          mask: url(logo-letters.svg) center / contain no-repeat;
  animation: shimmer 9s linear infinite;
  filter: drop-shadow(0 0 50px rgba(192, 132, 252, 0.28));
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Editorial headline */
.headline {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-top: 0.5rem;
}

.blurb {
  max-width: 38ch;
  font-size: clamp(0.95rem, 1vw + 0.55rem, 1.125rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #c8c8c8;
  margin-top: 0.25rem;
}

.contact {
  max-width: 46ch;
  font-size: clamp(0.9rem, 0.9vw + 0.5rem, 1rem);
  line-height: 1.55;
  color: #a8a8a8;
  margin-top: 0.25rem;
}

.contact a {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 132, 252, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover {
  color: #c084fc;
  border-bottom-color: #c084fc;
}

.signoff {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #8a8a8a;
  margin-top: 0.5rem;
}

.signoff em {
  font-style: italic;
}

/* Ticker */
.ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ticker-track {
  display: inline-flex;
  animation: scroll 42s linear infinite;
}

.ticker-group {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: 'Anton', 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8e8e8;
}

.ticker-group a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ticker-group a:hover {
  color: #c084fc;
}

.ticker-group .dot {
  color: #6a6a6a;
  font-size: 0.8rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Accessibility — respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo { animation: none; }
  .ticker-track { animation: none; }
}

/* Small screens */
@media (max-width: 480px) {
  .masthead {
    padding: 1rem 1.25rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  main {
    padding: 2rem 1.25rem 5rem;
    gap: 1.5rem;
  }
  .ticker-group {
    font-size: 0.85rem;
    gap: 1.25rem;
    padding-right: 1.25rem;
  }
}
