/* Sets showcase page — layout and component styles */

/* ── SETS PAGE HERO ── */
.sets-hero {
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.sets-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224, 64, 251, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sets-hero-inner {
  max-width: 900px;
  position: relative;
}

.sets-hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 16px 0 24px;
}

.sets-hero-city {
  color: var(--accent);
}

.sets-hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ── SETS SHOWCASE ── */
.sets-showcase {
  padding: 0 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.showcase-card--reverse {
  direction: rtl;
}

.showcase-card--reverse > * {
  direction: ltr;
}

/* ── SET VISUALS (gradient placeholders) ── */
.showcase-visual {
  position: relative;
  border-radius: 6px;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  margin-right: 48px;
}

.showcase-card--reverse .showcase-visual {
  margin-right: 0;
  margin-left: 48px;
}

.visual-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
  color: var(--fg);
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.visual-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Neon Room — magenta/cyan */
.showcase-visual--neon {
  background: linear-gradient(135deg, #0d0020 0%, #1a0030 40%, #0a001a 100%);
}

.visual-glow--neon {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(224, 64, 251, 0.55) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 70%, rgba(0, 220, 255, 0.35) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 0%, rgba(180, 0, 255, 0.25) 0%, transparent 50%);
}

/* Velvet Lounge — deep red/burgundy */
.showcase-visual--velvet {
  background: linear-gradient(135deg, #1a0508 0%, #2d0a10 40%, #150306 100%);
}

.visual-glow--velvet {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(160, 20, 40, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(100, 10, 25, 0.4) 0%, transparent 40%),
    linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
}

/* Moody Corner — charcoal/amber */
.showcase-visual--moody {
  background: linear-gradient(135deg, #0a0a0d 0%, #111115 40%, #080808 100%);
}

.visual-glow--moody {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(180, 120, 40, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(80, 60, 30, 0.3) 0%, transparent 45%);
}

/* Podcast Corner — warm wood-tone */
.showcase-visual--podcast {
  background: linear-gradient(135deg, #12100c 0%, #1e1a12 40%, #0e0c08 100%);
}

.visual-glow--podcast {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 140, 60, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(150, 100, 40, 0.25) 0%, transparent 40%),
    linear-gradient(180deg, rgba(108, 138, 245, 0.08) 0%, transparent 30%);
}

/* White Cyc — clean off-white with soft shadow */
.showcase-visual--cyc {
  background: linear-gradient(135deg, #f5f2ee 0%, #ede8e2 60%, #ddd8d0 100%);
  box-shadow: inset 0 -40px 80px rgba(0,0,0,0.08);
}

.visual-glow--cyc {
  background: radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.06) 0%, transparent 60%);
}

/* ── CARD BODY ── */
.showcase-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
}

.showcase-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 6px;
}

.showcase-pitch {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── TAGS ── */
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: lowercase;
}

/* ── USE CHIPS ── */
.showcase-uses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uses-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.uses-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.use-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── PRICING ── */
.showcase-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
}

.price-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ── BOOK CTA ── */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
  align-self: flex-start;
}

.btn-book:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

/* ── BOTTOM CTA STRIP ── */
.cta-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
}

.cta-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 12px 0 16px;
}

.cta-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-primary {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0f;
  background: var(--accent);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 3px;
  text-align: center;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #e0bc5a;
}

.waitlist-form {
  display: flex;
  gap: 8px;
}

.waitlist-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.waitlist-input::placeholder {
  color: var(--fg-muted);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.waitlist-feedback {
  font-size: 13px;
  min-height: 20px;
}

.waitlist-feedback--success {
  color: #6ec97e;
}

.waitlist-feedback--error {
  color: #e06060;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .showcase-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-card--reverse {
    direction: ltr;
  }

  .showcase-visual {
    margin-right: 0;
    margin-left: 0;
    min-height: 260px;
  }

  .cta-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sets-hero {
    padding: 60px 24px 48px;
  }

  .sets-showcase {
    padding: 0 24px 60px;
  }

  .cta-strip {
    padding: 60px 24px;
  }

  .showcase-card {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .showcase-visual {
    min-height: 220px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .showcase-pricing {
    gap: 14px;
  }
}
