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

:root {
  --bg: #070b13;
  --bg-soft: #0c1220;
  --panel: rgba(15, 21, 35, .78);
  --panel-solid: #101725;
  --line: rgba(255,255,255,.09);
  --text: #fff6e6;
  --muted: #aab1c2;
  --peach: #ffd4b4;
  --coral: #f4807b;
  --purple: #9a77c9;
  --blue: #1b3e79;
  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(75, 54, 126, .22), transparent 28%),
    radial-gradient(circle at 12% 48%, rgba(28, 65, 122, .15), transparent 31%),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 22%,
      black 82%,
      transparent
    );

  z-index: -1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}


/* =========================================================
   CONTENEDOR GENERAL
   ========================================================= */

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   CABECERA
   ========================================================= */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;

  background:
    linear-gradient(
      to bottom,
      rgba(6,10,18,.94),
      rgba(6,10,18,.58),
      transparent
    );

  backdrop-filter: blur(10px);
}

.nav {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;

  gap: 11px;

  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;

  object-fit: cover;

  border-radius: 50%;

  box-shadow:
    0 0 0 1px rgba(255,212,180,.26);
}

.brand div {
  display: flex;
  flex-direction: column;

  line-height: 1.05;
}

.brand strong {
  font-family: Manrope, sans-serif;

  font-size: 18px;

  letter-spacing: -.02em;
}

.brand span {
  color: var(--coral);

  font-size: 9px;

  letter-spacing: .28em;

  font-weight: 800;

  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 30px;
}

.nav-links a {
  text-decoration: none;

  color: rgba(255,255,255,.74);

  font-size: 14px;

  font-weight: 600;

  transition:
    color .2s ease,
    background .2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-youtube {
  padding: 10px 15px;

  border: 1px solid var(--line);

  border-radius: 10px;

  background: rgba(255,255,255,.035);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 790px;

  height: 100vh;
  max-height: 980px;

  position: relative;

  overflow: hidden;

  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;

  inset: 0;

  background-image:
    url("assets/banner3.png");

  background-size: cover;

  background-position: center center;

  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(5,9,17,.55) 0%,
      rgba(5,9,17,.20) 28%,
      rgba(5,9,17,.22) 58%,
      rgba(5,9,17,.78) 85%,
      #070b13 100%
    ),

    linear-gradient(
      90deg,
      rgba(5,9,17,.25) 0%,
      rgba(5,9,17,.05) 50%,
      rgba(5,9,17,.25) 100%
    );
}

.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 70px;

  display: flex;
  justify-content: center;

  text-align: center;
}


/* BLOQUE CENTRAL PRINCIPAL */

.hero-copy {
  width: min(720px, 100%);

  margin: 0 auto;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;
}


/* =========================================================
   ETIQUETA LOFI RADIO
   ========================================================= */

.live-pill,
.eyebrow {
  text-transform: uppercase;

  letter-spacing: .2em;

  font-size: 11px;

  font-weight: 800;
}

.live-pill {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 9px 12px;

  border: 1px solid rgba(255,255,255,.12);

  border-radius: 999px;

  background: rgba(7,11,19,.48);

  backdrop-filter: blur(12px);

  color: var(--peach);

  margin: 0 auto 22px;
}


/* =========================================================
   PUNTO EN DIRECTO
   ========================================================= */

.pulse {
  width: 9px;

  height: 9px;

  border-radius: 50%;

  background: var(--coral);

  box-shadow:
    0 0 0 0 rgba(244,128,123,.55);

  animation:
    pulse 1.9s infinite;
}

.pulse.small {
  width: 8px;

  height: 8px;
}

@keyframes pulse {

  70% {
    box-shadow:
      0 0 0 9px rgba(244,128,123,0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(244,128,123,0);
  }

}


/* =========================================================
   TÍTULO HERO
   ========================================================= */

.hero h1 {
  margin: 0 auto;

  max-width: 820px;

  font-family:
    Manrope,
    sans-serif;

  font-size:
    clamp(54px, 6.4vw, 88px);

  line-height: .98;

  letter-spacing: -.055em;

  text-align: center;

  text-shadow:
    0 12px 35px rgba(0,0,0,.38);
}

.hero h1 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      var(--peach),
      #f2a18e 55%,
      #c89bd3
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}


/* =========================================================
   TEXTO HERO
   ========================================================= */

.hero-copy > p {
  max-width: 620px;

  margin: 25px auto 0;

  font-size: 18px;

  line-height: 1.75;

  color: rgba(255,255,255,.78);

  text-align: center;

  text-shadow:
    0 4px 20px rgba(0,0,0,.30);
}


/* =========================================================
   BOTONES HERO
   ========================================================= */

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 13px;

  margin-top: 31px;
}

.btn {
  min-height: 50px;

  padding: 0 20px;

  border-radius: 12px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 800;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #12131a;

  background:
    linear-gradient(
      115deg,
      var(--peach),
      #ffc09f
    );

  box-shadow:
    0 12px 34px rgba(244,128,123,.18);
}

.btn-primary:hover {
  box-shadow:
    0 16px 42px rgba(244,128,123,.26);
}

.btn-ghost {
  border:
    1px solid rgba(255,255,255,.14);

  background:
    rgba(9,14,24,.55);

  backdrop-filter:
    blur(12px);

  color: #fff;
}

.btn-ghost:hover {
  background:
    rgba(255,255,255,.08);
}

.play-icon {
  font-size: 11px;
}


/* =========================================================
   24/7 · CHILL · FOCUS · RELAX · REPEAT
   ========================================================= */

.hero-meta {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 11px;

  margin: 32px auto 0;
}

.hero-meta span {
  color:
    rgba(255,255,255,.58);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .17em;
}

.hero-meta span:not(:last-child)::after {
  content: "•";

  margin-left: 11px;

  color: var(--coral);
}


/* =========================================================
   INDICADOR SCROLL
   ========================================================= */

.scroll-cue {
  position: absolute;

  z-index: 3;

  left: 50%;

  bottom: 34px;

  width: 28px;

  height: 45px;

  transform:
    translateX(-50%);

  border:
    1px solid rgba(255,255,255,.25);

  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;

  top: 9px;

  left: 50%;

  width: 4px;

  height: 8px;

  margin-left: -2px;

  border-radius: 999px;

  background: var(--peach);

  animation:
    scrollCue 1.8s infinite;
}

@keyframes scrollCue {

  0% {
    transform: translateY(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }

}


/* =========================================================
   SECCIONES
   ========================================================= */

.live-section,
.about-section {
  padding: 100px 0;
}


/* =========================================================
   CABECERAS DE SECCIÓN
   ========================================================= */

.section-heading {
  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 28px;
}

.eyebrow {
  color: var(--coral);
}

.section-heading h2,
.about-copy h2,
.cta-card h2 {
  margin: 7px 0 0;

  font-family:
    Manrope,
    sans-serif;

  font-size:
    clamp(35px, 4vw, 52px);

  letter-spacing: -.045em;

  line-height: 1.06;
}

.youtube-link {
  color: var(--peach);

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;
}


/* =========================================================
   GRID DIRECTO
   ========================================================= */

.live-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.72fr)
    minmax(285px, .68fr);

  gap: 22px;

  align-items: stretch;
}

.player-shell,
.side-card,
.about-panel,
.cta-card {
  border:
    1px solid var(--line);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.035),
      transparent 40%
    ),
    rgba(13,19,32,.76);

  box-shadow:
    var(--shadow);
}


/* =========================================================
   REPRODUCTOR
   ========================================================= */

.player-shell {
  border-radius: 22px;

  padding: 14px;
}

.player-topline {
  min-height: 43px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding:
    0 5px 12px;
}

.player-status {
  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--coral);

  font-size: 11px;

  letter-spacing: .16em;
}

.player-label {
  color:
    rgba(255,255,255,.45);

  font-size: 12px;
}

.player {
  position: relative;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #03060b;

  border-radius: 14px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05);
}

.player iframe {
  width: 100%;

  height: 100%;

  border: 0;

  display: block;
}


/* =========================================================
   PLACEHOLDER DEL DIRECTO
   ========================================================= */

.player-placeholder {
  position: absolute;

  inset: 0;

  overflow: hidden;

  display: grid;

  place-items: center;
}

.player-placeholder > img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.placeholder-shade {
  position: absolute;

  inset: 0;

  background:
    rgba(3,6,11,.72);

  backdrop-filter:
    blur(4px);
}

.placeholder-content {
  position: relative;

  z-index: 2;

  width:
    min(510px, 82%);

  text-align: center;
}

.placeholder-icon {
  width: 62px;

  height: 62px;

  margin:
    0 auto 16px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  color: #15121a;

  background:
    linear-gradient(
      135deg,
      var(--peach),
      var(--coral)
    );

  padding-left: 3px;

  box-shadow:
    0 15px 42px rgba(0,0,0,.35);
}

.placeholder-content h3 {
  font-size: 22px;

  margin:
    0 0 9px;
}

.placeholder-content p {
  margin: 0;

  color:
    rgba(255,255,255,.7);

  line-height: 1.7;

  font-size: 14px;
}

code {
  padding:
    2px 5px;

  border-radius: 5px;

  background:
    rgba(255,255,255,.08);

  color: var(--peach);
}

.embed-note {
  display: none;

  margin:
    12px 5px 2px;

  color: #d6a7a3;

  font-size: 12px;
}


/* =========================================================
   TARJETA LATERAL
   ========================================================= */

.side-card {
  border-radius: 22px;

  padding: 28px;

  display: flex;

  flex-direction: column;
}

.side-logo {
  width: 92px;

  height: 92px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 25px;

  box-shadow:
    0 0 0 1px rgba(255,212,180,.25),
    0 15px 45px rgba(0,0,0,.32);
}

.side-card h3 {
  margin:
    10px 0 12px;

  font-family:
    Manrope,
    sans-serif;

  font-size: 27px;

  line-height: 1.12;

  letter-spacing: -.035em;
}

.side-card > p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   LISTADO MOODS
   ========================================================= */

.mood-list {
  margin:
    27px 0;

  border-top:
    1px solid var(--line);
}

.mood-list > div {
  display: flex;

  gap: 14px;

  padding:
    15px 0;

  border-bottom:
    1px solid var(--line);
}

.mood-list span {
  color: var(--coral);

  font-size: 10px;

  letter-spacing: .12em;

  margin-top: 3px;
}

.mood-list p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.45;
}

.mood-list strong {
  display: block;

  color: var(--text);

  font-size: 13px;
}

.btn.full {
  width: 100%;

  margin-top: auto;
}


/* =========================================================
   SOBRE LOFSCAPE
   ========================================================= */

.about-section {
  padding-top: 45px;
}

.about-panel {
  overflow: hidden;

  border-radius: 26px;

  display: grid;

  grid-template-columns:
    1.25fr .75fr;
}

.about-image {
  min-height: 530px;

  position: relative;
}

.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 55%,
      rgba(12,18,31,.7)
    );
}

.about-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.about-copy {
  padding:
    58px 48px;

  align-self: center;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy p {
  margin:
    0 0 17px;

  color: var(--muted);

  line-height: 1.8;

  font-size: 15px;
}

.about-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 27px;
}

.about-tags span {
  padding:
    7px 11px;

  border-radius: 999px;

  border:
    1px solid rgba(255,255,255,.1);

  color:
    rgba(255,255,255,.68);

  font-size: 11px;

  letter-spacing: .08em;

  text-transform: uppercase;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta {
  padding:
    0 0 100px;
}

.cta-card {
  border-radius: 24px;

  padding:
    31px 34px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 25px;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(244,128,123,.11),
      transparent 34%
    ),
    radial-gradient(
      circle at 80% 25%,
      rgba(154,119,201,.12),
      transparent 33%
    ),
    rgba(13,19,32,.84);
}

.cta-card > img {
  width: 84px;

  height: 84px;

  border-radius: 50%;

  object-fit: cover;
}

.cta-card h2 {
  font-size: 31px;

  margin-top: 4px;
}

.cta-card p {
  margin:
    7px 0 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  border-top:
    1px solid var(--line);

  background:
    rgba(3,6,11,.55);
}

.footer-inner {
  min-height: 90px;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 20px;

  color:
    rgba(255,255,255,.45);

  font-size: 12px;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 10px;
}

.footer-brand img {
  width: 34px;

  height: 34px;

  border-radius: 50%;

  object-fit: cover;
}

.footer-inner p {
  margin: 0;

  text-transform: uppercase;

  letter-spacing: .12em;
}

.footer-inner > a {
  justify-self: end;

  color: var(--peach);

  text-decoration: none;

  font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .hero {
    min-height: 740px;

    max-height: none;
  }

  .hero-bg {
    background-position:
      center center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5,9,17,.48) 0%,
        rgba(5,9,17,.22) 30%,
        rgba(5,9,17,.30) 60%,
        rgba(5,9,17,.88) 90%,
        #070b13 100%
      );
  }

  .hero-copy {
    width:
      min(700px, 100%);
  }

  .live-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    display: grid;

    grid-template-columns:
      auto 1fr;

    column-gap: 25px;
  }

  .side-logo {
    grid-row:
      1 / span 4;
  }

  .mood-list,
  .side-card .full {
    grid-column:
      1 / -1;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 390px;
  }

  .about-image::after {
    background:
      linear-gradient(
        180deg,
        transparent 65%,
        rgba(12,18,31,.75)
      );
  }

  .about-copy {
    padding: 40px;
  }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 700px) {

  .container {
    width:
      min(100% - 26px, 1180px);
  }

  .nav {
    height: 70px;
  }

  .brand img {
    width: 41px;

    height: 41px;
  }

  .nav-links a:not(.nav-youtube) {
    display: none;
  }

  .hero {
    min-height: 720px;

    height: 100svh;
  }

  .hero-bg {
    background-position:
      center center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5,9,17,.42) 0%,
        rgba(5,9,17,.28) 28%,
        rgba(5,9,17,.50) 60%,
        rgba(5,9,17,.92) 82%,
        #070b13 100%
      );
  }

  .hero-content {
    padding-top: 80px;

    display: flex;

    align-items: center;

    justify-content: center;
  }

  .hero-copy {
    width: 100%;

    margin: 0 auto;

    text-align: center;

    align-items: center;
  }

  .hero h1 {
    font-size:
      clamp(46px, 14vw, 66px);

    text-align: center;
  }

  .hero-copy > p {
    max-width: 560px;

    margin:
      22px auto 0;

    font-size: 16px;

    line-height: 1.65;

    text-align: center;
  }

  .live-pill {
    margin:
      0 auto 20px;
  }

  .hero-actions {
    width: 100%;

    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .scroll-cue {
    display: none;
  }

  .live-section,
  .about-section {
    padding:
      72px 0;
  }

  .section-heading {
    align-items: start;

    flex-direction: column;

    gap: 12px;
  }

  .player-shell {
    padding: 10px;

    border-radius: 17px;
  }

  .player-topline {
    min-height: 36px;
  }

  .player-label {
    display: none;
  }

  .placeholder-content {
    width: 88%;
  }

  .placeholder-icon {
    width: 52px;

    height: 52px;
  }

  .placeholder-content h3 {
    font-size: 18px;
  }

  .placeholder-content p {
    font-size: 12px;
  }

  .side-card {
    display: flex;

    padding: 23px;
  }

  .side-logo {
    width: 76px;

    height: 76px;

    margin-bottom: 20px;
  }

  .about-image {
    min-height: 260px;
  }

  .about-copy {
    padding:
      30px 24px 34px;
  }

  .cta-card {
    grid-template-columns:
      auto 1fr;

    padding: 25px;
  }

  .cta-card > img {
    width: 67px;

    height: 67px;
  }

  .cta-card .btn {
    grid-column:
      1 / -1;

    width: 100%;
  }

  .footer-inner {
    grid-template-columns:
      1fr auto;

    padding:
      22px 0;
  }

  .footer-inner p {
    display: none;
  }

}


/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 470px) {

  .brand span {
    display: none;
  }

  .nav-youtube {
    padding:
      8px 11px;
  }

  .hero h1 {
    font-size:
      clamp(42px, 13vw, 56px);

    line-height: 1.01;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;

    grid-template-columns: 1fr;

    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 7px;

    max-width: 350px;
  }

  .hero-meta span {
    font-size: 9px;
  }

  .hero-meta span:not(:last-child)::after {
    margin-left: 7px;
  }

}