:root {
  --bg: #f5f3f4;
  --panel: rgba(255, 255, 255, 0.96);
  --text: #4f5871;
  --muted: #7f8698;
  --line: rgba(111, 121, 146, 0.15);
  --shadow: 0 20px 45px rgba(53, 60, 86, 0.22);
  --hero-shadow: 0 30px 70px rgba(18, 10, 30, 0.3);
  --cta: linear-gradient(135deg, #5e667d, #3f4760);
  --hover: #d94f73;
  --blue: #6f96ff;
  --red: #ff5f7d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(218, 226, 255, 0.55), transparent 24%),
    linear-gradient(180deg, #f8f6f7 0%, #eeecef 100%);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 32px;
  overflow-x: hidden;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 147, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(111, 150, 255, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(248, 246, 247, 0.98), rgba(238, 236, 239, 0.98));
  backdrop-filter: blur(10px);
}

.access-panel {
  width: min(420px, 100%);
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(53, 60, 86, 0.18);
}

.access-eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.access-panel h1 {
  margin: 0 0 24px;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: #3f4760;
}

.access-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text);
}

.access-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(79, 88, 113, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
}

.access-input:focus {
  outline: 2px solid rgba(111, 150, 255, 0.35);
  outline-offset: 1px;
}

.access-button {
  width: 100%;
  margin-top: 16px;
  padding: 15px 18px;
  border: 0;
  background: var(--cta);
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.access-error {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #bb2f52;
  font-size: 0.95rem;
}

.site-shell.is-locked {
  visibility: hidden;
  pointer-events: none;
}

.page-glow {
  position: fixed;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
}

.page-glow-left {
  left: -10vw;
  top: 18vh;
  background: rgba(255, 124, 148, 0.9);
}

.page-glow-right {
  right: -10vw;
  top: 12vh;
  background: rgba(123, 159, 255, 0.75);
}

.card {
  width: min(1015px, 100%);
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  transition: box-shadow 300ms ease;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 36px;
  height: 28px;
  border-radius: 5px;
  background: #4f5871;
  position: relative;
  box-shadow: 0 10px 24px rgba(79, 88, 113, 0.25);
}

.brand-icon::before {
  content: "";
  position: absolute;
  inset: 7px 9px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.brand-icon::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 6px;
  width: 12px;
  height: 6px;
  border-radius: 3px 3px 0 0;
  background: #4f5871;
}

.brand-text {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.nav a,
.preview-card,
.cta-button {
  text-decoration: none;
}

.nav a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 2px;
  transition: color 220ms ease, transform 220ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--hover), transparent);
  transition: transform 240ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #303a56;
  transform: translateY(-2px);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 88, 119, 0.7), transparent 12%),
    radial-gradient(circle at 59% 15%, rgba(255, 95, 109, 0.62), transparent 10%),
    radial-gradient(circle at 74% 12%, rgba(111, 150, 255, 0.8), transparent 13%),
    radial-gradient(circle at 90% 10%, rgba(255, 109, 134, 0.72), transparent 8%),
    linear-gradient(180deg, #28172c 0%, #45203c 32%, #27385c 62%, #1a1730 100%);
  box-shadow: var(--hero-shadow) inset;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.08) 48%, transparent 66%),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.08), transparent 28%);
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 15, 0.4), transparent 18%, transparent 82%, rgba(5, 6, 15, 0.35)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-lights .light {
  position: absolute;
  top: -10%;
  width: 180px;
  height: 280px;
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: sway 6s ease-in-out infinite alternate;
}

.light::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.95);
}

.light::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 78px solid transparent;
  border-right: 78px solid transparent;
  border-top: 250px solid rgba(255, 255, 255, 0.1);
  filter: blur(8px);
}

.light-red::after {
  border-top-color: rgba(255, 82, 112, 0.34);
}

.light-blue::after {
  border-top-color: rgba(94, 144, 255, 0.35);
}

.left { left: 110px; animation-delay: -0.5s; }
.center { left: 47%; animation-delay: -2s; }
.right { left: 67%; animation-delay: -1s; }
.far-right { right: 58px; animation-delay: -3s; }

.hero-band {
  position: absolute;
  inset: auto 0 0;
  height: 74%;
}

.silhouette {
  position: absolute;
  bottom: 60px;
  background: rgba(16, 15, 27, 0.55);
  filter: blur(2px);
  border-radius: 42% 42% 18% 18%;
}

.guitarist {
  left: 46px;
  width: 120px;
  height: 245px;
  transform: skew(-8deg);
}

.singer {
  left: 41%;
  width: 60px;
  height: 170px;
  border-radius: 50% 50% 18% 18%;
}

.drums {
  right: 18%;
  width: 170px;
  height: 160px;
  border-radius: 45%;
}

.bassist {
  right: 44px;
  width: 110px;
  height: 220px;
  transform: skew(8deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #f9eef2;
  padding-top: 64px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
}

.hero h1 {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 300;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.hero h1::before,
.hero h1::after {
  content: "";
  display: inline-block;
  width: clamp(50px, 8vw, 90px);
  height: 2px;
  margin: 0 18px 8px;
  background: rgba(255, 255, 255, 0.7);
}

.preview-strip {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 28px;
}

.preview-card {
  color: var(--text);
  text-align: center;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 260ms ease;
}

.preview-image {
  width: 210px;
  height: 110px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(19, 22, 40, 0.28);
  margin-bottom: 10px;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 117, 142, 0.95), transparent 10%),
    radial-gradient(circle at 35% 52%, rgba(255, 68, 106, 0.85), transparent 11%),
    radial-gradient(circle at 48% 28%, rgba(117, 161, 255, 0.85), transparent 9%),
    radial-gradient(circle at 69% 34%, rgba(255, 130, 84, 0.85), transparent 12%),
    linear-gradient(180deg, rgba(34, 32, 58, 0.65), rgba(13, 13, 30, 0.92));
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.preview-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.32) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 500ms ease;
}

.preview-image::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 28px;
  border-radius: 50%;
  background: rgba(2, 4, 15, 0.32);
  filter: blur(8px);
}

.stage {
  filter: saturate(1.2) hue-rotate(-8deg);
}

.artist {
  filter: saturate(1.1) hue-rotate(10deg);
}

.preview-card:hover,
.preview-card:focus-visible {
  transform: translateY(-8px);
}

.preview-card:hover .preview-image,
.preview-card:focus-visible .preview-image {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 24px 55px rgba(19, 22, 40, 0.42);
  border-color: rgba(255, 255, 255, 1);
}

.preview-card:hover .preview-image::before,
.preview-card:focus-visible .preview-image::before {
  transform: translateX(130%);
}

.cta-section {
  padding: 42px 58px 34px;
  text-align: center;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 12%, var(--line) 88%, transparent 100%);
}

.cta-section h2 {
  margin: 20px 0 6px;
  color: #4c5670;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.cta-section p {
  margin: 0;
  font-size: 1.2rem;
  color: #58627d;
}

.cta-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr auto 2fr;
  gap: 20px;
  align-items: center;
}

.line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  box-shadow: 0 16px 30px rgba(63, 71, 96, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.35) 50%, transparent 68%);
  transform: translateX(-150%);
  transition: transform 520ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 42px rgba(63, 71, 96, 0.38);
  filter: brightness(1.06);
}

.cta-button:hover::before,
.cta-button:focus-visible::before {
  transform: translateX(150%);
}

.signature-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.signature {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  color: #55607b;
  white-space: nowrap;
}

.website {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

@keyframes sway {
  from {
    transform: rotate(-5deg) translateY(0);
  }
  to {
    transform: rotate(5deg) translateY(12px);
  }
}

@media (max-width: 900px) {
  body {
    padding: 14px;
  }

  .topbar {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
  }

  .preview-strip {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: center;
    gap: 16px;
    bottom: 20px;
  }

  .preview-image {
    width: min(320px, 78vw);
  }

  .cta-section {
    padding: 30px 20px 28px;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .cta-row > .line:first-child {
    display: none;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
  }

  .signature-wrap {
    grid-template-columns: 1fr;
  }

  .signature-wrap .line {
    display: none;
  }
}

@media (max-width: 600px) {
  body {
    display: block;
    padding: 0;
    background: #f3f1f3;
  }

  .page-glow {
    display: none;
  }

  .access-gate {
    position: relative;
    min-height: 100vh;
    padding: 16px;
  }

  .access-panel {
    padding: 28px 20px;
    box-shadow: none;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 10px 18px;
  }

  .nav a {
    font-size: 0.82rem;
    padding: 6px 0;
  }

  .card {
    width: 100%;
    border: 0;
    box-shadow: none;
  }

  .topbar {
    align-items: center;
    padding: 16px 16px 18px;
    gap: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .hero-copy {
    padding: 34px 16px 0;
  }

  .eyebrow {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero {
    min-height: 600px;
  }

  .hero-lights .light {
    width: 120px;
    height: 220px;
  }

  .light::after {
    border-left-width: 52px;
    border-right-width: 52px;
    border-top-width: 180px;
  }

  .left {
    left: 6%;
  }

  .center {
    left: 41%;
  }

  .right {
    left: 64%;
  }

  .far-right {
    right: 4%;
  }

  .hero h1 {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }

  .hero h1::before,
  .hero h1::after {
    display: none;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 1.45rem;
  }

  .signature {
    white-space: normal;
    line-height: 1.1;
  }

  .website {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 560px;
  }

  .preview-strip {
    width: calc(100% - 20px);
    bottom: 14px;
  }

  .preview-image {
    width: min(100%, 290px);
    height: 94px;
  }

  .preview-card {
    font-size: 0.82rem;
  }

  .cta-button {
    padding: 16px 22px;
    font-size: 0.92rem;
  }
}
