:root {
  --black: #020505;
  --glow: #63fff2;
  --cyan: #00d8cc;
  --cyan-dark: #007d86;
  --white: #effff9;
  --muted: rgba(239, 255, 249, 0.62);
  --line: rgba(99, 255, 242, 0.55);
  --line-soft: rgba(99, 255, 242, 0.22);
  --glass: rgba(3, 24, 34, 0.72);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--glow);
  background: var(--black);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

/* —— Shared buttons —— */

.btn-pill,
.stacked-actions a,
.simple-list a,
.simple-products button,
.listen-links a,
.video-panel a {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(2, 18, 31, 0.55);
  color: var(--glow);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  line-height: 1;
  letter-spacing: 0.06em;
  transition:
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.btn-pill:hover,
.btn-pill:focus-visible,
.stacked-actions a:hover,
.stacked-actions a:focus-visible,
.simple-list a:hover,
.simple-list a:focus-visible,
.simple-products button:hover,
.simple-products button:focus-visible,
.listen-links a:hover,
.listen-links a:focus-visible,
.video-panel a:hover,
.video-panel a:focus-visible {
  background: var(--glow);
  border-color: var(--glow);
  color: var(--black);
  outline: none;
  transform: translateY(-1px);
}

/* —— Home splash —— */

.splash {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding:
    calc(var(--header-h) + env(safe-area-inset-top, 0px))
    var(--space-4)
    calc(88px + env(safe-area-inset-bottom, 0px));
  background: var(--black);
}

.splash-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 85%;
  pointer-events: none;
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 5, 5, 0.72) 0%,
      rgba(2, 5, 5, 0.18) 35%,
      rgba(2, 5, 5, 0.18) 65%,
      rgba(2, 5, 5, 0.72) 100%
    ),
    linear-gradient(180deg, rgba(2, 5, 5, 0.35) 0%, rgba(2, 5, 5, 0.05) 45%, rgba(2, 5, 5, 0.7) 100%);
  pointer-events: none;
}

.splash::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(2, 5, 5, 0.85));
  pointer-events: none;
}

.corner-nav {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.corner {
  position: fixed;
  z-index: 7;
  pointer-events: auto;
  line-height: 1;
  font-size: clamp(0.78rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--glow);
  opacity: 0.92;
}

.corner:hover,
.corner:focus-visible {
  color: var(--white);
  opacity: 1;
  outline: none;
}

.corner--top-left {
  left: max(var(--space-4), env(safe-area-inset-left, 0px));
  top: calc(22px + env(safe-area-inset-top, 0px));
}

.corner--top-right {
  right: max(var(--space-4), env(safe-area-inset-right, 0px));
  top: calc(22px + env(safe-area-inset-top, 0px));
}

.corner--bottom-left {
  left: max(var(--space-4), env(safe-area-inset-left, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
}

.corner--bottom-right {
  right: max(var(--space-4), env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
}

.center-stage {
  position: relative;
  z-index: 3;
  width: min(420px, 90vw);
  display: grid;
  gap: var(--space-3);
  justify-items: center;
  margin-inline: auto;
  text-align: center;
  animation: rise-in 0.7s var(--ease-out) both;
}

.splash-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 7.5vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.88;
}

.release-line {
  display: grid;
  justify-items: center;
  gap: 0.35em;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.stacked-actions {
  display: grid;
  gap: 10px;
  width: min(300px, 100%);
  margin-top: var(--space-1);
}

.stacked-actions a {
  width: 100%;
}

/* —— Sub-pages —— */

.sub-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(ellipse 70% 42% at 50% 0%, rgba(0, 216, 204, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(2, 5, 5, 0.94) 0%, rgba(2, 5, 5, 0.98) 42%, rgba(2, 5, 5, 1) 100%),
    url("webbackground.png") center 108% / min(1400px, 120%) auto no-repeat fixed;
}

.sub-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(2, 5, 5, 0.55);
  pointer-events: none;
}

.simple-header,
.simple-main,
.simple-footer {
  position: relative;
  z-index: 1;
}

.simple-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-h);
  padding:
    calc(14px + env(safe-area-inset-top, 0px))
    max(var(--space-4), env(safe-area-inset-right, 0px))
    14px
    max(var(--space-4), env(safe-area-inset-left, 0px));
  background: rgba(2, 5, 5, 0.55);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}

.header-brand,
.simple-header nav {
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.header-brand {
  color: var(--glow);
  flex-shrink: 0;
}

.simple-header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.5vw, 28px);
}

.simple-header nav a[aria-current="page"] {
  color: var(--white);
  border-bottom: 1.5px solid var(--glow);
  padding-bottom: 2px;
}

.simple-header a:hover,
.simple-header a:focus-visible,
.simple-footer a:hover,
.simple-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.simple-main {
  width: min(1080px, calc(100% - var(--space-6)));
  margin: 0 auto;
  display: grid;
  align-content: start;
  gap: clamp(var(--space-3), 4vw, var(--space-5));
  padding: clamp(18px, 3vw, 28px) 0 clamp(var(--space-5), 6vw, var(--space-6));
}

.page-intro {
  text-align: center;
  display: grid;
  gap: var(--space-2);
  animation: rise-in 0.6s var(--ease-out) both;
}

.page-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.page-intro h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

h2 {
  margin: 0 0 var(--space-1);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--white);
}

p {
  margin: 0;
}

.page-intro p,
.listen-card p,
.video-panel p,
.simple-products p,
.simple-list span {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* —— Shop —— */

.simple-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--space-3);
  animation: rise-in 0.7s 0.08s var(--ease-out) both;
}

.simple-products article {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--glass);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition:
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.simple-products article:hover {
  border-color: var(--line);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 216, 204, 0.12);
}

.simple-products img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: linear-gradient(165deg, rgba(219, 255, 250, 0.95), rgba(180, 240, 232, 0.85));
}

.simple-products img[data-media="dark"] {
  background: linear-gradient(165deg, #0c1820 0%, #050a0d 100%);
  padding: clamp(8px, 2vw, 14px);
}

.simple-products article div {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3);
  flex: 1 1 auto;
}

.simple-products button {
  width: 100%;
  margin-top: auto;
  flex: 0 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* —— Tour —— */

.simple-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(12px);
  animation: rise-in 0.7s 0.08s var(--ease-out) both;
}

.simple-list article {
  display: grid;
  grid-template-columns: 130px 1fr 1.2fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line-soft);
}

.simple-list article:last-child {
  border-bottom: none;
}

.simple-list time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.simple-list strong {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.simple-list span {
  font-size: 0.88rem;
}

.simple-list a {
  min-width: 108px;
  white-space: nowrap;
}

/* —— Listen & Watch panels —— */

.listen-main {
  justify-items: center;
}

.listen-card,
.video-panel {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--glass);
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: rise-in 0.7s 0.08s var(--ease-out) both;
}

.listen-card img {
  width: 100%;
  aspect-ratio: 1;
  min-height: 280px;
  object-fit: contain;
  background: linear-gradient(165deg, #0c1820 0%, #050a0d 100%);
}

.video-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.listen-card div,
.video-panel div {
  display: grid;
  align-content: center;
  gap: var(--space-3);
  padding: clamp(var(--space-4), 4vw, var(--space-5));
}

.listen-links {
  display: grid;
  gap: 10px;
}

.listen-links a,
.video-panel a {
  width: 100%;
}

.video-panel img {
  aspect-ratio: 16 / 10;
  object-position: center 35%;
}

/* —— Footer —— */

.simple-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding:
    var(--space-4)
    max(var(--space-4), env(safe-area-inset-right, 0px))
    calc(var(--space-4) + env(safe-area-inset-bottom, 0px))
    max(var(--space-4), env(safe-area-inset-left, 0px));
  border-top: 1px solid var(--line-soft);
  font-size: clamp(0.72rem, 1.3vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.simple-footer a {
  color: var(--glow);
  font-weight: 700;
}

/* —— Motion —— */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* —— Responsive —— */

@media (max-width: 900px) {
  .simple-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simple-list article {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date ticket"
      "city ticket"
      "venue ticket";
  }

  .simple-list time {
    grid-area: date;
  }

  .simple-list strong {
    grid-area: city;
  }

  .simple-list span {
    grid-area: venue;
  }

  .simple-list a {
    grid-area: ticket;
    align-self: center;
  }
}

@media (max-width: 720px) {
  .splash {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .splash-bg {
    object-position: 50% 88%;
  }

  .corner {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .corner--top-left,
  .corner--top-right {
    top: calc(18px + env(safe-area-inset-top, 0px));
  }

  .corner--bottom-left,
  .corner--bottom-right {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .center-stage {
    width: min(340px, 92vw);
  }

  .stacked-actions {
    justify-items: stretch;
  }

  .simple-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    min-height: auto;
    padding-top: calc(18px + env(safe-area-inset-top, 0px));
    padding-bottom: 16px;
  }

  .simple-header nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }

  .simple-main {
    width: min(100% - var(--space-4), 1080px);
  }

  .listen-card,
  .video-panel {
    grid-template-columns: 1fr;
  }

  .listen-card img {
    min-height: 220px;
    max-height: 360px;
  }

  .video-panel img {
    min-height: 220px;
    max-height: 320px;
  }
}

@media (max-width: 520px) {
  .splash-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .simple-products {
    grid-template-columns: 1fr;
  }

  .simple-list article {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: var(--space-2);
  }

  .simple-list a {
    width: 100%;
    min-width: 0;
  }

  .simple-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
