/* =============================================
   APEX STREAMS – Coming Soon Page
   ============================================= */

:root {
  --navy-darkest:  #080f22;
  --navy-deep:     #0d1b3e;
  --navy-mid:      #111e45;
  --navy-light:    #162250;
  --teal:          #4dffc3;
  --teal-dim:      #3ddba8;
  --teal-glow:     rgba(77, 255, 195, 0.18);
  --teal-glow-sm:  rgba(77, 255, 195, 0.08);
  --white:         #ffffff;
  --text-muted:    rgba(255,255,255,0.75);
  --font-display:  'Poppins', sans-serif;
  --font-body:     'Poppins', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%,   var(--navy-light) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%,  #0a1530 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%,   #0c1840 0%, transparent 60%);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Header ---- */
.site-header {
  width: 100%;
  padding: 14px 28px;
  background: rgba(8, 15, 34, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  user-select: none;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* ---- Header divider line ---- */
.header-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #1e6fa8 20%,
    #2596cc 50%,
    #1e6fa8 80%,
    transparent 100%
  );
  opacity: 0.9;
}

/* ---- Main Content ---- */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.content-card {
  text-align: center;
  max-width: 600px;
  width: 100%;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---- Headline ---- */
.headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  color: var(--teal);
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 20px;
  text-shadow:
    0 0 40px var(--teal-glow),
    0 0 80px rgba(77, 255, 195, 0.08);
  letter-spacing: 0.01em;
}

/* ---- Subtext ---- */
.subtext {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Contact List ---- */
.contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  position: relative;
}

.contact-item:hover,
.contact-item:focus-visible {
  color: var(--teal);
  background: var(--teal-glow-sm);
  transform: translateY(-1px);
  outline: none;
}

.contact-item:focus-visible {
  box-shadow: 0 0 0 2px var(--teal);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

/* ---- Entrance animation ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */

/* Tablet */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .main-content {
    padding: 48px 24px;
  }

  .headline {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 16px;
  }

  .logo-img {
    height: 28px;
  }

  .main-content {
    padding: 40px 16px;
    align-items: flex-start;
    padding-top: 80px;
  }

  .headline {
    font-size: clamp(1.6rem, 9vw, 2rem);
    margin-bottom: 16px;
  }

  .subtext {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .contact-item {
    font-size: 0.9rem;
    gap: 8px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .headline {
    font-size: 1.45rem;
  }

  .contact-item {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
