* { box-sizing: border-box; }

:root {
  --bg: #09090b;
  --panel: #18181b;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --orange: #f97316;
  --orange-light: #fed7aa;
  --purple: #d8b4fe;
  --border: rgba(255,255,255,0.1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.hero {
  min-height: 760px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.32), transparent 35%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.26), transparent 35%),
    linear-gradient(135deg, #09090b, #18181b);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover { color: var(--orange-light); }

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 110px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}

.hero-logo-wrap { display: flex; justify-content: center; }

.hero-logo {
  width: min(100%, 420px);
  border-radius: 50%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow.purple { color: var(--purple); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 720px;
  color: #d4d4d8;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 18px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--orange);
  color: #18181b;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.18);
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.button.dark {
  background: #09090b;
  color: var(--orange-light);
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px;
}

.features, .show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card, .show-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(24, 24, 27, 0.86);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.14);
  font-size: 1.6rem;
}

.card h2, .show-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card p, .show-card span, .about p, .contact p, footer { color: var(--muted); }

.shows {
  margin-top: 72px;
  padding: 58px 0;
}

.section-heading { margin-bottom: 28px; }

.show-card h3 { color: var(--orange-light); }

.show-card p {
  margin-bottom: 4px;
  color: #e4e4e7;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, #18181b, #09090b);
}

.about p { font-size: 1.08rem; }

.member-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.member-list li {
  border-radius: 18px;
  background: var(--panel);
  padding: 16px;
  text-align: center;
  font-weight: 900;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 72px;
  padding: 42px;
  border-radius: 32px;
  background: var(--orange);
  color: #18181b;
  box-shadow: 0 24px 70px rgba(249, 115, 22, 0.22);
}

.contact p {
  max-width: 680px;
  color: #27272a;
  font-size: 1.08rem;
}

footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 42px;
  text-align: center;
}

@media (max-width: 950px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-logo-wrap { order: -1; }

  .hero-logo { max-width: 300px; }
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .features, .show-grid, .about { grid-template-columns: 1fr; }

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

@media (max-width: 520px) {
  .nav-links { flex-wrap: wrap; }
  .member-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
