
:root{
  --bg:#07090c;
  --bg-2:#10161d;
  --card:rgba(15,19,25,.82);
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.16);
  --text:#f4f7fb;
  --muted:#b7c1cd;
  --gold:#d9bf84;
  --gold-2:#8b7344;
  --spotify:#1db954;
  --shadow:0 25px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(217,191,132,.10), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.05), transparent 22%),
    linear-gradient(180deg, #0a0d11 0%, #050608 100%);
  min-height:100vh;
}

.page-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(217,191,132,.09), transparent 18%);
}

.wrap{
  position:relative;
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  padding:32px 0 56px;
}

.hero-card,
.latest-card{
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.hero-card{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  border-radius:28px;
  overflow:hidden;
  min-height:680px;
}

.hero-copy{
  padding:36px 34px 36px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo{
  width:180px;
  max-width:60%;
  margin-bottom:10px;
  object-fit:contain;
}

.eyebrow{
  margin:0 0 8px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:800;
}

h1{
  margin:0 0 18px;
  font-size:clamp(2.3rem, 4.4vw, 4.5rem);
  line-height:.98;
  letter-spacing:-.03em;
}

h2{
  margin:0;
  font-size:clamp(1.6rem, 2.8vw, 2.35rem);
  letter-spacing:-.03em;
}

.hero-copy p:not(.eyebrow){
  margin:0 0 14px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.72;
  max-width:62ch;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.actions a,
.latest-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 18px;
  border-radius:14px;
  color:var(--text);
  text-decoration:none;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.03);
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  font-weight:700;
}

.actions a:hover,
.latest-cta:hover{
  transform:translateY(-1px);
  border-color:rgba(217,191,132,.48);
  background:rgba(255,255,255,.06);
  box-shadow:0 12px 28px rgba(0,0,0,.25);
}

.actions a .icon{
  width:20px;
  height:20px;
  display:inline-flex;
}

.actions a svg{
  width:20px;
  height:20px;
}

.spotify-link{
  border-color:rgba(29,185,84,.35) !important;
  background:rgba(29,185,84,.14) !important;
}

.spotify-link:hover{
  border-color:rgba(29,185,84,.6) !important;
  background:rgba(29,185,84,.2) !important;
}

.hero-media{
  position:relative;
  min-height:100%;
  display:flex;
  align-items:stretch;
  justify-content:stretch;
  padding:18px 18px 18px 0;
}

.banner-frame{
  position:relative;
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0b0f14;
  min-height:420px;
}

.banner-full{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.banner-tagline{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  margin:0;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(0,0,0,.45);
  color:#f5f7fa;
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.08);
  font-weight:600;
}

.latest-card{
  margin-top:24px;
  padding:24px;
  border-radius:26px;
}

.latest-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.video-shell{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:20px;
  border:1px solid var(--line);
  background:#000;
}

.video-shell iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media (max-width: 980px){
  .hero-card{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-copy{
    padding:30px 24px 10px;
  }

  .hero-media{
    padding:0 24px 24px;
  }

  .logo{
    width:160px;
  }
}

@media (max-width: 640px){
  .wrap{
    width:min(100% - 18px, 1200px);
    padding:18px 0 28px;
  }

  .hero-card,
  .latest-card{
    border-radius:20px;
  }

  .hero-copy{
    padding:24px 18px 8px;
  }

  .hero-media{
    padding:0 18px 18px;
  }

  .actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .actions a,
  .latest-cta{
    width:100%;
  }

  .latest-head{
    align-items:start;
    flex-direction:column;
  }

  .banner-tagline{
    left:12px;
    right:12px;
    bottom:12px;
    font-size:.95rem;
  }
}
