:root {
  --bg: #080510;
  --bg-soft: #120a24;
  --panel: rgba(17, 12, 34, 0.72);
  --panel-strong: rgba(18, 10, 36, 0.92);
  --line: rgba(149, 113, 255, 0.18);
  --text: #f4f0ff;
  --muted: #b9b0d6;
  --teal: #71f2eb;
  --cyan: #6cc7ff;
  --violet: #8c52ff;
  --glow: 0 0 40px rgba(113, 242, 235, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(140, 82, 255, 0.24), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(108, 199, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(113, 242, 235, 0.1), transparent 28%),
    linear-gradient(160deg, #04030a 0%, #0a0614 42%, #07050f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  opacity: 0.22;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.button,
.text-link,
.contact-card a {
  transition: 180ms ease;
}

.brand {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.contact-card a:hover,
.text-link:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--text);
  border-radius: 999px;
}

.section {
  padding: 3.75rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: calc(100vh - 6rem);
  gap: 3rem;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 9vw, 7rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.6rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  color: #061018;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: var(--glow);
}

.button-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-secondary {
  border-color: rgba(113, 242, 235, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(113, 242, 235, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 32rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 6, 21, 0.38), rgba(8, 5, 16, 0.74)),
    radial-gradient(circle at 30% 25%, rgba(113, 242, 235, 0.16), transparent 22%),
    radial-gradient(circle at 70% 72%, rgba(140, 82, 255, 0.22), transparent 26%),
    url("step by step cover.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(113, 242, 235, 0.08);
  border-radius: calc(var(--radius-lg) - 0.6rem);
  mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.orb-large {
  width: 15rem;
  height: 15rem;
  top: 3rem;
  right: -2rem;
  background: radial-gradient(circle, rgba(113, 242, 235, 0.7), rgba(113, 242, 235, 0.04) 68%);
}

.orb-small {
  width: 11rem;
  height: 11rem;
  bottom: 2rem;
  left: -1rem;
  background: radial-gradient(circle, rgba(140, 82, 255, 0.62), rgba(140, 82, 255, 0.03) 70%);
}


.velora-mark {
  position: absolute;
  top: 1.7rem;
  left: 1.7rem;
  display: grid;
  gap: 0.45rem;
  z-index: 2;
}

.velora-mark span {
  display: block;
  width: 3.4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(113, 242, 235, 0.82), rgba(113, 242, 235, 0.08));
}

.velora-mark span:nth-child(2) {
  width: 2.2rem;
}

.velora-mark span:nth-child(3) {
  width: 4.3rem;
}

.vinyl-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82%, 22rem);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background: rgba(8, 5, 16, 0.6);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.vinyl-label,
.music-type,
.panel-kicker {
  margin-bottom: 0.7rem;
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.vinyl-card h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.hero-release-link {
  display: block;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  display: block;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.music-card,
.velora-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.music-card {
  overflow: hidden;
  position: relative;
}

.music-card::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.4rem auto;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(113, 242, 235, 0.12);
  border-radius: 999px;
  opacity: 0.55;
}

.music-art {
  min-height: 15rem;
  background-size: cover;
  background-position: center;
}

.music-art-one {
  background:
    linear-gradient(180deg, rgba(8, 5, 16, 0.08), rgba(8, 5, 16, 0.32)),
    url("step by step cover.png");
  background-size: cover;
  background-position: center;
}

.music-art-two {
  background:
    linear-gradient(180deg, rgba(8, 5, 16, 0.08), rgba(8, 5, 16, 0.34)),
    url("darkest nights cover.png");
  background-size: cover;
  background-position: center;
}

.music-art-three {
  background:
    linear-gradient(180deg, rgba(8, 5, 16, 0.08), rgba(8, 5, 16, 0.28)),
    url("miss you cover.png");
  background-size: cover;
  background-position: center;
}

.music-copy {
  padding: 1.5rem;
}

.music-copy p + p,
.music-copy h3 + p,
.velora-panel > div p + p {
  margin-top: 0.9rem;
}

.music-copy a,
.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--text);
  font-weight: 700;
}

.about-layout,
.velora-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.about-layout > p {
  margin-top: 0;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section .section-heading,
.about-layout {
  position: relative;
  z-index: 2;
}

.about-portrait-blend {
  position: absolute;
  right: -2rem;
  bottom: -1.2rem;
  width: min(24rem, 34vw);
  pointer-events: none;
  opacity: 0.28;
  z-index: 1;
  filter: brightness(1.1) contrast(1.12) saturate(1.05) drop-shadow(0 14px 36px rgba(0, 0, 0, 0.3));
}

.about-portrait-blend::after {
  content: "";
  position: absolute;
  inset: auto 10% 4% 10%;
  height: 30%;
  background: radial-gradient(circle, rgba(113, 242, 235, 0.16), transparent 70%);
  filter: blur(22px);
}

.about-portrait-blend img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
}

.velora-panel {
  padding: 2rem;
  background:
    linear-gradient(90deg, rgba(113, 242, 235, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(17, 12, 34, 0.84), rgba(6, 11, 23, 0.72)),
    var(--panel-strong);
  position: relative;
  overflow: hidden;
}

.velora-panel > div {
  align-self: start;
}

.velora-panel > div:last-child {
  padding-top: 2.25rem;
}

.velora-panel > * {
  position: relative;
  z-index: 2;
}

.velora-panel::before {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(113, 242, 235, 0.65), rgba(113, 242, 235, 0.06));
  z-index: 3;
}

.velora-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 16, 0.92) 0%, rgba(8, 5, 16, 0.76) 36%, rgba(8, 5, 16, 0.28) 58%, rgba(8, 5, 16, 0.64) 100%),
    url("gate.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.26;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 22%, black 48%, black 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
  padding: 1.2rem;
}

.contact-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: center;
}

.contact-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-label {
  line-height: 1.2;
}

.contact-card a:first-child {
  color: var(--text);
  background: linear-gradient(135deg, rgba(113, 242, 235, 0.12), rgba(140, 82, 255, 0.16));
}

@media (max-width: 980px) {
  .hero,
  .music-grid,
  .about-layout,
  .velora-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .about-portrait-blend {
    width: min(18rem, 44vw);
    right: -1.5rem;
    opacity: 0.22;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .site-header {
    align-items: flex-start;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: calc(100% - 0.25rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(16rem, 100%);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(7, 5, 15, 0.96);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-visual {
    min-height: 22rem;
  }

  .about-portrait-blend {
    width: min(12rem, 46vw);
    right: -2.5rem;
    bottom: -0.5rem;
    opacity: 0.16;
  }

  .section {
    padding: 3rem 0;
  }
}
