:root {
  --clr-lilac-50: #f5f3ff;
  --clr-lilac-100: #ede9fe;
  --clr-lilac-200: #ddd6fe;
  --clr-lilac-400: #a78bfa;
  --clr-soft-pink: #fbcfe8;
  --clr-sky: #bfdbfe;
  --bg: #080914;
  --panel: rgba(17, 17, 17, .8);
  --text: #fff;
  --muted: rgba(255, 255, 255, .82);
  --line: rgba(221, 214, 254, .5);
  --hero-gradient: linear-gradient(135deg, var(--clr-soft-pink), var(--clr-sky));
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--sans);
  background: #080914;
}
a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(32px, 4.8vw, 76px);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav-mark { width: 14px; height: 14px; flex: 0 0 auto; background: var(--hero-gradient); border: 1px solid rgba(255,255,255,.42); }
.nav-logo { margin-right: auto; color: var(--clr-soft-pink); text-transform: uppercase; letter-spacing: .36em; font-size: clamp(10px, .9vw, 13px); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
  margin: 0;
  padding: 12px 20px;
  color: var(--clr-lilac-50);
  border: 1px solid rgba(221,214,254,.28);
  background: rgba(8,9,20,.72);
  backdrop-filter: blur(18px);
  list-style: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}
.nav-links li { position: relative; }
.nav-links li.active::after { content: ''; position: absolute; right: 0; bottom: -11px; left: 0; height: 1px; background: var(--hero-gradient); }
.nav-links a:hover { color: var(--clr-soft-pink); }
.nav-toggle { display: none; }

.hero { position: relative; min-height: 100svh; isolation: isolate; overflow: hidden; }
.hero-video-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.05) brightness(1.08);
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-video-active {
  opacity: 1;
}
.hero-video-next {
  opacity: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, rgba(8,9,20,.40) 0%, rgba(8,9,20,.08) 42%, rgba(8,9,20,.20) 100%),
    radial-gradient(circle at 20% 20%, rgba(167,139,250,.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(191,219,254,.06), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(251,207,232,.04), transparent 36%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 52% 60%, rgba(251,207,232,.08), transparent 24%),
    radial-gradient(circle at 54% 30%, rgba(191,219,254,.10), transparent 36%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(300px,390px);
  align-items: center;
  gap: clamp(34px,5vw,82px);
  padding: 104px clamp(48px,7vw,112px) 128px;
}
.hero-copy {
  position: relative;
  z-index: 12;
  max-width: 840px;
  text-align: center;
  transform: translateY(5vh);
  margin-top: 2rem;
}
.hero-title { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; font: 700 clamp(30px,2.8vw,52px)/1 var(--serif); text-align: center; text-transform: uppercase; letter-spacing: .04em; text-shadow: 0 0 24px rgba(0,0,0,.22); }
.hero-title span { display: block; white-space: nowrap; }
.hero-title span:first-child { color: var(--clr-lilac-50); }
.hero-title span:last-child { color: var(--clr-soft-pink); }
.hero-subtitle {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--clr-lilac-200);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: clamp(10px, .9vw, 12px);
  line-height: 1.8;
  font-weight: 700;
}
.hero-medley {
  display: none;
  position: relative;
  overflow: hidden;
}
.hero-medley-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-medley-video-active {
  opacity: 1;
  z-index: 1;
}
.hero-medley-video-next {
  opacity: 0;
  z-index: 0;
}

.hero-line-left { position: absolute; z-index: 4; left: clamp(34px,4.6vw,72px); top: 25%; width: 1px; height: 43vh; background: linear-gradient(transparent,var(--clr-soft-pink),var(--clr-sky),transparent); }
.hero-arc { position: absolute; z-index: 4; border: 1px solid var(--line); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; pointer-events: none; }
.hero-arc-one { width: 36vw; aspect-ratio: 1; right: -14vw; top: 25vh; }
.hero-arc-two { width: 24vw; aspect-ratio: 1; left: 34vw; bottom: 11vh; transform: rotate(160deg); }
.hero-dot { position: absolute; z-index: 4; width: 8px; height: 8px; border-radius: 50%; background: var(--clr-soft-pink); box-shadow: 0 0 18px rgba(251,207,232,.58); }
.hero-dot-one { right: 8vw; top: 31vh; }
.hero-dot-two { left: 45vw; bottom: 28vh; }

.showcase { position: relative; z-index: 12; width: 390px; height: 455px; overflow: hidden; color: #fff; border: 1px solid rgba(221,214,254,.24); background: rgba(8,9,20,.45); box-shadow: 0 30px 110px rgba(0,0,0,.32), 0 0 42px rgba(191,219,254,.08); backdrop-filter: blur(16px); }
.showcase-slide { position: absolute; inset: 0; display: grid; grid-template-rows: 44% 56%; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .7s ease, visibility .7s; }
.showcase-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
.showcase-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.98) contrast(1.04) brightness(.7); }
.showcase-info { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 30px 54px; text-align: center; background: linear-gradient(rgba(8,9,20,.56),rgba(8,9,20,.92)); }
.showcase-info p { margin: 0 0 9px; color: var(--clr-lilac-200); text-transform: uppercase; letter-spacing: .22em; font-size: 10px; }
.showcase-info h2 { margin: 0 0 9px; font: 300 clamp(30px,2.7vw,42px)/1 var(--serif); }
.showcase-info span { color: var(--muted); font-size: 12.5px; line-height: 1.65; }
.showcase-info a { width: min(100%, 180px); margin: 20px auto 0; padding: 12px 16px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; text-align: center; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 500; transition: .22s ease; }
.showcase-info a:hover { color: #080914; border-color: transparent; background: var(--hero-gradient); }
.showcase-progress { position: absolute; z-index: 6; right: 30px; bottom: 22px; left: 50%; width: min(220px, calc(100% - 60px)); display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; transform: translateX(-50%); }
.progress-item { height: 2px; padding: 0; overflow: hidden; border: 0; background: rgba(255,255,255,.18); cursor: pointer; }
.progress-item span { display: block; width: 0; height: 100%; background: var(--hero-gradient); }
.progress-item.active span { animation: progress 4s linear forwards; }
@keyframes progress { to { width: 100%; } }

.footer { position: relative; z-index: 20; min-height: 110px; margin-top: -110px; padding: 24px 20px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(180deg,rgba(8,9,20,0),#080914 32%); }
.footer-name { color: rgba(255,255,255,.86); text-transform: uppercase; letter-spacing: .44em; font-size: 11px; }
.footer-socials { display: flex; align-items: center; gap: 30px; }
.footer-socials a { color: rgba(255,255,255,.68); transition: color .18s ease; }
.footer-socials a:hover { color: var(--clr-soft-pink); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-divider { width: 44px; height: 1px; background: var(--hero-gradient); }
.footer-copy { color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .44em; font-size: 9px; }

:focus-visible { outline: 3px solid var(--clr-sky); outline-offset: 4px; }

@media (min-width: 981px) {
  .hero-video-bg {
    display: block;
  }
  .hero-medley {
    margin-top: clamp(1.5rem, 1.8vw, 2rem);
  }
  .hero-copy {
    transform: none;
    margin-top: clamp(16rem, 22vw, 24rem);
    margin-left: clamp(7rem, 15vw, 19rem);
  }
  .hero-title {
    margin-left: clamp(12rem, 18vw, 20rem);
    margin-top: clamp(4rem, 8vw, 11rem);
  }
  .showcase {
    margin-left: clamp(6rem, 8vw, 10rem);
  }
  .hero-subtitle {
    margin-left: clamp(12rem, 18vw, 20rem);
  }
}

@media (max-width: 980px) {
  .nav { padding: 16px 18px; }
  .nav-logo { letter-spacing: .28em; }
  .nav-toggle { display: inline-flex; padding: 10px 14px; color: var(--text); border: 1px solid rgba(221,214,254,.34); background: rgba(8,9,20,.78); text-transform: uppercase; letter-spacing: .14em; font: 11px var(--sans); }
  .nav-links { position: absolute; top: 62px; right: 18px; flex-direction: column; align-items: flex-start; min-width: 190px; gap: 18px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s ease; }
  .nav.open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .hero-content { grid-template-columns: 1fr; align-items: start; gap: 34px; padding: 104px 22px 180px; }
  .hero-copy {
    max-width: min(620px, 100%);
    margin: 0 auto;
    padding: 24px 22px;
    transform: none;
    border: 1px solid rgba(221,214,254,.22);
    border-radius: 24px;
    background: rgba(8,9,20,.58);
    backdrop-filter: blur(12px);
  }
  .hero-title { gap: 9px; font-size: clamp(34px,9.2vw,70px); }
  .showcase { width: min(100%, 680px); height: 520px; margin: 0 auto; background: rgba(8,9,20,.9); }
  .hero-video-bg { display: none; }
  .hero-overlay { display: none; }
  .hero-line-left { display: none; }
  .hero-arc-one { width: 82vw; right: -42vw; }
  .hero-arc-two { width: 70vw; left: 20vw; bottom: 18vh; }
  .footer { min-height: 146px; margin-top: -146px; }
}

@media (max-width: 640px) {
  .nav-mark { width: 14px; height: 14px; }
  .nav-logo { font-size: 10px; letter-spacing: .18em; }
  .hero-content { padding: 92px 16px 190px; gap: 24px; }
  .hero-copy { padding: 20px 16px; border-radius: 18px; background: rgba(8,9,20,.7); }
  .hero-medley {
    display: block;
    margin: 16px auto 0;
    width: min(100%, 340px);
    height: 180px;
    overflow: hidden;
    border: 1px solid rgba(221,214,254,.24);
    border-radius: 16px;
    background: rgba(8,9,20,.8);
    box-shadow: 0 18px 45px rgba(0,0,0,.32);
  }
  .hero-title { gap: 8px; font-size: clamp(27px,8.6vw,46px); line-height: .98; }
  .hero-title span { white-space: normal; }
  .showcase { width: 100%; height: auto; min-height: 500px; margin-inline: 0; border-right: 1px solid rgba(221,214,254,.34); border-left: 1px solid rgba(221,214,254,.34); background: rgba(8,9,20,.92); }
  .showcase-slide { grid-template-rows: 42% 58%; }
  .showcase-info { padding: 24px 22px 56px; background: linear-gradient(180deg, rgba(8,9,20,.24), rgba(8,9,20,.96)); }
  .showcase-info h2 { font-size: 38px; }
  .showcase-info span { font-size: 13px; }
  .showcase-progress { right: 22px; bottom: 22px; left: 50%; width: min(200px, calc(100% - 44px)); }
  .footer-name { letter-spacing: .32em; }
  .footer-copy { letter-spacing: .26em; text-align: center; }
}
