/* EVOLVE coming soon pages: /merch and /performance-space only. */
html,
body {
  background:#050505;
  color:#f5f5f5;
  overflow-x:hidden;
}

.cs-page {
  --cs-bg:#050505;
  --cs-bg2:#0a0a0a;
  --cs-card:#101010;
  --cs-red:#D6001C;
  --cs-border:rgba(255,255,255,.08);
  --cs-muted:rgba(245,245,245,.62);
  min-height:100svh;
  background:
    radial-gradient(ellipse 44% 48% at 76% 34%, rgba(214,0,28,.12), transparent 70%),
    radial-gradient(ellipse 32% 40% at 12% 88%, rgba(214,0,28,.06), transparent 70%),
    #050505;
  font-family:var(--font-text);
  overflow:hidden;
}

.cs-page::before {
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.055;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cs-page > * {
  position:relative;
  z-index:1;
}

.cs-hero {
  min-height:76svh;
  display:grid;
  grid-template-columns:minmax(0, 650px) minmax(360px, 1fr);
  gap:70px;
  align-items:center;
  padding:122px 80px 72px 140px;
  border-bottom:1px solid var(--cs-border);
}

.cs-label {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
  font-family:var(--font-body);
  font-size:12px;
  font-weight:400;
  letter-spacing:.34em;
  line-height:1;
  color:var(--cs-red);
  text-transform:uppercase;
}

.cs-status {
  display:inline-flex;
  margin-bottom:18px;
  padding:7px 10px;
  border:1px solid rgba(214,0,28,.42);
  background:rgba(214,0,28,.08);
  font-family:var(--font-body);
  font-size:12px;
  font-weight:400;
  letter-spacing:.28em;
  line-height:1;
  color:var(--cs-red);
  text-transform:uppercase;
}

.cs-label::before {
  content:"";
  width:32px;
  height:1px;
  background:var(--cs-red);
}

.cs-copy h1 {
  max-width:680px;
  margin:0 0 28px;
  font-family:var(--font-display);
  font-size:60px;
  line-height:.95;
  letter-spacing:0;
  color:#f5f5f5;
  text-transform:uppercase;
}

.cs-copy p,
.cs-card p,
.cs-product-card p {
  margin:0;
  font-family:var(--font-text);
  font-size:15px;
  font-weight:300;
  line-height:1.82;
  color:var(--cs-muted);
}

.cs-copy p {
  max-width:560px;
}

.cs-notify {
  display:flex;
  gap:12px;
  max-width:560px;
  margin-top:36px;
}

.cs-notify input {
  flex:1;
  min-width:0;
  height:54px;
  border:1px solid var(--cs-border);
  background:rgba(255,255,255,.035);
  color:#f5f5f5;
  padding:0 18px;
  outline:none;
  font-family:var(--font-text);
  font-size:14px;
}

.cs-notify input:focus {
  border-color:rgba(214,0,28,.75);
}

.cs-notify button {
  height:54px;
  border:1px solid var(--cs-red);
  background:var(--cs-red);
  color:#f5f5f5;
  padding:0 28px;
  font-family:var(--font-body);
  font-size:12px;
  font-weight:400;
  letter-spacing:.24em;
  text-transform:uppercase;
  cursor:pointer;
}

.cs-visual {
  min-height:520px;
}

.cs-product-stage {
  position:relative;
  min-height:520px;
}

.cs-product-card {
  position:absolute;
  width:230px;
  min-height:300px;
  padding:18px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  backdrop-filter:blur(16px);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.cs-product-card:hover,
.cs-card:hover {
  transform:translateY(-7px);
  border-color:rgba(214,0,28,.7);
  box-shadow:0 28px 90px rgba(214,0,28,.14);
}

.cs-product-card-1 { top:18px; left:4%; }
.cs-product-card-2 { top:78px; right:10%; }
.cs-product-card-3 { bottom:22px; left:18%; }
.cs-product-card-4 { bottom:64px; right:2%; }

.cs-product-card > span {
  display:inline-flex;
  margin-bottom:16px;
  padding:6px 9px;
  background:rgba(214,0,28,.9);
  font-family:var(--font-body);
  font-size:9px;
  font-weight:400;
  letter-spacing:.22em;
  color:#f5f5f5;
  text-transform:uppercase;
}

.cs-product-ghost {
  position:relative;
  height:138px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  overflow:hidden;
  background:radial-gradient(circle at center, rgba(214,0,28,.14), rgba(255,255,255,.02) 54%, transparent);
}

.cs-product-ghost::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(5,5,5,0.95), rgba(5,5,5,0.25));
  pointer-events:none;
}

.cs-product-ghost img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%) brightness(0.55) contrast(1.1);
  transform:scale(1.02);
  transition:transform .6s cubic-bezier(.23,1,.32,1), filter .3s ease;
}

.cs-product-card:hover .cs-product-ghost img {
  transform:scale(1.08);
  filter:grayscale(100%) brightness(0.62) contrast(1.14);
}

.cs-product-ghost svg {
  position:relative;
  z-index:1;
  width:118px;
  height:118px;
  fill:none;
  stroke:rgba(245,245,245,.62);
  stroke-width:1.6;
}

.cs-product-card h2,
.cs-card h2 {
  margin:0 0 10px;
  font-family:var(--font-display);
  font-size:24px;
  line-height:.95;
  letter-spacing:0;
  color:#f5f5f5;
  text-transform:uppercase;
}

.cs-room-stage {
  position:relative;
  min-height:420px;
  border:1px solid var(--cs-border);
  overflow:hidden;
  background:
    radial-gradient(ellipse 38% 28% at 50% 48%, rgba(214,0,28,.25), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}

.cs-room-stage::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to top, rgba(5,5,5,0.95), rgba(5,5,5,0.25));
  pointer-events:none;
}

.cs-room-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%) brightness(0.55) contrast(1.1);
  transform:scale(1.02);
}

.cs-room-grid {
  position:absolute;
  inset:8%;
  z-index:2;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:46px 46px;
  transform:perspective(700px) rotateX(62deg) translateY(94px);
  transform-origin:center bottom;
  opacity:.56;
}

.cs-room-frame {
  position:absolute;
  inset:18%;
  z-index:3;
  border:1px solid rgba(214,0,28,.42);
  transform:perspective(700px) rotateX(58deg);
  box-shadow:0 0 60px rgba(214,0,28,.13);
}

.cs-room-core {
  position:absolute;
  z-index:4;
  left:50%;
  top:48%;
  width:74px;
  height:74px;
  transform:translate(-50%, -50%);
  background:var(--cs-red);
  clip-path:polygon(50% 0, 100% 100%, 0 100%);
  filter:drop-shadow(0 0 34px rgba(214,0,28,.48));
}

.cs-room-beam {
  position:absolute;
  z-index:4;
  top:50%;
  left:50%;
  width:1px;
  height:340px;
  background:linear-gradient(180deg, transparent, rgba(214,0,28,.7), transparent);
  transform-origin:top center;
}

.cs-room-beam-a { transform:rotate(56deg); }
.cs-room-beam-b { transform:rotate(-56deg); }

.cs-cards {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1px;
  padding:0 80px 110px 140px;
  background:var(--cs-border);
}

.cs-card {
  min-height:220px;
  padding:34px 28px;
  background:#101010;
  border:1px solid transparent;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.cs-card > span {
  display:block;
  margin-bottom:34px;
  font-family:var(--font-body);
  font-size:11px;
  font-weight:400;
  letter-spacing:.28em;
  color:var(--cs-red);
}

.cs-reveal {
  opacity:0;
  transform:translateY(26px);
  transition:opacity .65s ease, transform .65s ease;
}

.cs-reveal.is-visible {
  opacity:1;
  transform:translateY(0);
}

@media (max-width:1180px) {
  .cs-hero {
    grid-template-columns:1fr;
    padding-left:60px;
    padding-right:60px;
  }

  .cs-cards {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    padding-left:60px;
    padding-right:60px;
  }
}

@media (max-width:768px) {
  .cs-hero {
    min-height:auto;
    padding:122px 28px 80px;
    gap:44px;
    text-align:center;
  }

  .cs-label {
    justify-content:center;
  }

  .cs-status {
    margin-left:auto;
    margin-right:auto;
  }

  .cs-label::before {
    width:24px;
  }

  .cs-copy h1 {
    font-size:26px;
    margin-left:auto;
    margin-right:auto;
  }

  .cs-copy p {
    font-size:15px;
    margin-left:auto;
    margin-right:auto;
  }

  .cs-notify {
    flex-direction:column;
    margin-left:auto;
    margin-right:auto;
  }

  .cs-notify button,
  .cs-notify input {
    width:100%;
  }

  .cs-visual,
  .cs-product-stage,
  .cs-room-stage {
    min-height:420px;
  }

  .cs-product-stage {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .cs-product-card {
    position:relative;
    inset:auto;
    width:auto;
    min-height:240px;
    padding:14px;
    text-align:left;
  }

  .cs-product-ghost {
    height:104px;
  }

  .cs-product-ghost svg {
    width:92px;
    height:92px;
  }

  .cs-room-grid {
    background-size:34px 34px;
  }

  .cs-cards {
    grid-template-columns:1fr;
    padding:0 28px 82px;
  }

  .cs-card {
    min-height:auto;
    text-align:center;
  }
}

@media (max-width:430px) {
  .cs-product-stage {
    grid-template-columns:1fr 1fr;
  }

  .cs-product-card h2,
  .cs-card h2 {
    font-size:20px;
  }

  .cs-product-card p {
    display:none;
  }
}

/* Shared typography lock for Merch + Performance Space. */
.cs-page,
.cs-page input,
.cs-page textarea,
.cs-page button {
  font-family:var(--font-text, 'Inter', sans-serif);
}

.cs-copy h1,
.cs-card h2,
.cs-product-card h2 {
  font-family:var(--font-display, 'Bebas Neue', sans-serif);
  font-weight:400;
  letter-spacing:0;
}

.cs-label,
.cs-status,
.cs-notify button,
.cs-card > span,
.cs-product-card > span {
  font-family:var(--font-body, 'Syne', sans-serif);
}
