:root {
  --bg: #0b1021;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --line: #e2e8f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 55%, #f8fafc 100%);
  line-height: 1.6;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.hero {
   background:
    radial-gradient(circle at 78% 28%, rgba(245,158,11,.24), transparent 23rem),
    radial-gradient(circle at 8% 84%, rgba(59,130,246,.16), transparent 22rem),
    linear-gradient(125deg, #080d1c, #172554 68%, #1e3a8a);
  color: #fff;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2.2rem;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(245,158,11,.16), transparent 56%),
    linear-gradient(to bottom, transparent, rgba(2,6,23,.58));
  border-bottom: 1px solid rgba(245,158,11,.28);
  pointer-events: none;
}
.stage-lights {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.stage-lights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16) 18%, rgba(255,255,255,.16) 82%, transparent);
}
.stage-light {
  position: absolute;
  top: -.25rem;
  width: min(24rem, 32vw);
  height: 80%;
  background: linear-gradient(to bottom, rgba(251,191,36,.14), rgba(251,191,36,.025) 60%, transparent);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  filter: blur(1px);
  opacity: .72;
}
.stage-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: .55rem;
  height: .55rem;
  background: #fde68a;
  border-radius: 50%;
  box-shadow: 0 0 .65rem .2rem rgba(251,191,36,.65);
  transform: translateX(-50%);
}
.stage-light-left { left: -4rem; transform: rotate(-14deg); transform-origin: 50% 0; }
.stage-light-center { left: 50%; opacity: .36; transform: translateX(-50%); }
.stage-light-right { right: -4rem; transform: rotate(14deg); transform-origin: 50% 0; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4%;
  position: relative;
  z-index: 1;
}
.logo { color: #fff; text-decoration: none; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.logo span { color: var(--primary); }
.links { display: flex; gap: 1rem; }
.links a { color: #e2e8f0; text-decoration: none; transition: color .2s ease; }
.links a:hover { color: #fff; }
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 700px; }
.badge {
  display: inline-block;
  background: rgba(245,158,11,.16);
  border: 1px solid rgba(245,158,11,.42);
  padding: .42rem .78rem;
  border-radius: 999px;
  color: #fde68a;
  font-size: .9rem;
  font-weight: 700;
}
.hero-video-heading p { color: #e2e8f0; font-size: .9rem; line-height: 1.35; margin: 0; text-align: right; }
.video-kicker { color: #fbbf24; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.hero-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: .8rem;
  overflow: hidden;
  z-index: 1;
}
h1 { font-size: clamp(2.35rem, 5vw, 4.15rem); line-height: 1.05; letter-spacing: -.045em; margin: 1rem 0; }
.subtitle { color: #dbeafe; font-size: clamp(1.05rem, 1.8vw, 1.22rem); max-width: 650px; }
.culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.culture-tags li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #f8fafc;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .01em;
  padding: .28rem .68rem;
}
.culture-tags li::before {
  content: "";
  display: inline-block;
  width: .3rem;
  height: .3rem;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 .45rem rgba(251,191,36,.6);
  margin: 0 .42rem .08rem 0;
}
.cta-group { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.55rem; }
.btn {
  display: inline-block;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #111827; box-shadow: 0 12px 26px rgba(245,158,11,.22); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-primarylk { background: var(--primary); color: #111827; display: inline-block; margin-top: auto; }
.btn-primarylk:hover { background: var(--primary-dark); }
.btn-light { background: #fff; color: #0f172a; box-shadow: 0 16px 36px rgba(2,6,23,.18); }
.btn-outline { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.secondary-link { color: var(--primary-dark); display: inline-block; font-weight: 750; margin-top: .8rem; text-decoration: none; }
.secondary-link::after { content: " →"; }
.secondary-link:hover { color: #92400e; text-decoration: underline; }
.hero-video-card {
  justify-self: center;
  position: relative;
  width: min(100%, 360px);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 1.35rem;
  box-shadow: 0 24px 70px rgba(2,6,23,.38);
  padding: .85rem;
  backdrop-filter: blur(12px);
}
.hero-video-card::before {
  content: "";
  position: absolute;
  inset: -2rem -2rem auto auto;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(245,158,11,.32);
  border-radius: 50%;
  z-index: 0;
}
.hero-video-heading {
  position: relative;
  display: grid;
  gap: .28rem;
  padding: .35rem .35rem .85rem;
  z-index: 1;
}
.hero-video-heading p { color: #e2e8f0; font-size: .9rem; line-height: 1.35; margin: 0; }
.video-kicker { color: #fbbf24; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.hero-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1;
  background: #020617;
}
.hero-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.section { padding: clamp(3.2rem, 6vw, 5rem) 0; }
.section h2 { font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 1.16; letter-spacing: -.03em; margin: 0 0 .65rem; }
.section-intro { max-width: 760px; margin-bottom: 1.8rem; }
.section-intro-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro p { color: var(--muted); margin-top: 0; }
.eyebrow { color: var(--primary-dark); font-size: .85rem; font-weight: 800; letter-spacing: .08em; margin: 0 0 .35rem; text-transform: uppercase; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.9);
  padding: 1.35rem;
  border-radius: 1.05rem;
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
}
.card h3 { margin-top: 0; line-height: 1.25; }
.video-grid { align-items: stretch; }
.video-card { display: flex; flex-direction: column; }
.video-card p { color: var(--muted); flex: 1; }
.video-embed { aspect-ratio: 16 / 9; border-radius: .85rem; margin-top: 1rem; overflow: hidden; background: #020617; }
.video-embed iframe { border: 0; display: block; height: 100%; width: 100%; }
.video-embed-compact { margin-top: 1.2rem; }
.alt { background: linear-gradient(135deg, #e2e8f0, #dbeafe); }
.two-col { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1.05fr .95fr; align-items: center; }
.two-col li { margin: .45rem 0; }
.two-col img { width: 100%; border-radius: 1rem; box-shadow: 0 18px 46px rgba(15,23,42,.16); }
.contact { background: #0f172a; color: #fff; text-align: center; }
.contact p { color: #cbd5e1; }
footer { padding: 1.2rem 0; text-align: center; color: #64748b; font-size: .95rem; }
footer a { color: var(--primary-dark); }
@media (max-width: 900px) {
  .links { display: none; }
  .hero-content, .grid-3, .grid-2, .two-col { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-video-card { max-width: 380px; }
}
@media (max-width: 560px) {
  .hero { padding-bottom: 3.5rem; }
  .stage-light-center { display: none; }
  .stage-light { height: 58%; opacity: .42; width: 58vw; }
  .hero-content { gap: 2rem; padding-top: 2.5rem; }
  .cta-group .btn { width: 100%; text-align: center; }
  .hero-video-card { width: min(100%, 330px); }
  .section-intro-centered { text-align: left; }
}
