/* =========================================================
   DE IMAGE — FULL BLEED HERO
   Clean rebuild. No layout hacks.
========================================================= */

:root {
  --bg: #050510;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.65);
  --soft: rgba(255,255,255,0.85);

  --orange: #f4a340;
  --cyan: #5fd0d8;
  --pink: #e94f9a;
  --blue: #3fa9f5;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;
}

/* Reset */

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

html, body {
  height: 100%;
  background: var(--bg);
  font-family: var(--font);
  color: var(--white);
  overflow-x: hidden;
}

/* -------------------------------------------------------
   HERO FULL BLEED
------------------------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(env(safe-area-inset-top) + 60px) 24px 80px;
  background:
    radial-gradient(circle at 50% 20%, rgba(63,169,245,0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(233,79,154,0.1), transparent 60%),
    #050510;
}

/* Optional subtle grain overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,16,0.4),
    rgba(5,5,16,0.8)
  );
  pointer-events: none;
}

/* -------------------------------------------------------
   CONTENT
------------------------------------------------------- */

.hero-content {
  position: relative;
  max-width: 820px;
  text-align: center;
  z-index: 2;
}

/* Top section */

.eyebrow {
  font-size: 18px;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 18px;
}

.headline {
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 300;
  line-height: 1.05;
}

.headline span {
  font-weight: 600;
  background: linear-gradient(90deg, #4da3ff, #7dc3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 10px;
}

/* Description */

.description {
  margin: 30px auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft);
}

.availability {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}

/* Dots */

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background: #ffffff;
}

/* Channels */

.channels {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 22px;
  font-weight: 600;
}

.channel {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.channel:hover {
  transform: translateY(-4px);
  opacity: 0.85;
}

.orange { color: var(--orange); }
.cyan { color: var(--cyan); }
.pink { color: var(--pink); }
.blue { color: var(--blue); }

/* -------------------------------------------------------
   DESKTOP ENHANCEMENT
------------------------------------------------------- */

@media (min-width: 768px) {

  .channels {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    font-size: 20px;
  }

}