:root {
  color-scheme: dark;
  --bg: #050403;
  --bg-soft: #0b0907;
  --panel: rgba(13, 13, 12, 0.78);
  --panel-strong: rgba(16, 16, 15, 0.92);
  --text: #fff8ef;
  --muted: #c9b9a6;
  --dim: #8e8172;
  --line: rgba(255, 210, 159, 0.16);
  --line-strong: rgba(255, 176, 93, 0.36);
  --orange: #ff8a35;
  --orange-strong: #ff6b22;
  --gold: #f1bd66;
  --cyan: #5fd5df;
  --violet: #7866ff;
  --shadow: rgba(0, 0, 0, 0.56);
  font-family:
    Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial,
    sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(255, 150, 56, 0.28), transparent 24rem),
    radial-gradient(circle at 82% 26%, rgba(84, 208, 217, 0.18), transparent 20rem),
    linear-gradient(140deg, #050403 0%, #080604 44%, #170905 100%);
  background-size: 128px 128px, 128px 128px, auto, auto, auto;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 138, 53, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--bg);
  background: var(--text);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 12px;
  color: rgba(255, 248, 239, 0.86);
  background: rgba(12, 9, 7, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.25), transparent 36%),
    linear-gradient(135deg, var(--orange), var(--orange-strong) 58%, #4c1b10);
  border: 1px solid rgba(255, 214, 175, 0.35);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 106, 34, 0.48);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 248, 239, 0.68);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-action,
.primary-action {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 218, 159, 0.2), transparent),
    linear-gradient(135deg, #ff9b42, #ff6f25);
  border: 1px solid rgba(255, 219, 184, 0.42);
  box-shadow: 0 14px 46px rgba(255, 109, 32, 0.28);
}

.secondary-action {
  color: rgba(255, 248, 239, 0.86);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.header-action:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  margin-top: -89px;
  padding: 144px 24px 84px;
  overflow: hidden;
}

.hero-background,
.hero-background > span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.light-field {
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
}

.light-field-a {
  background:
    linear-gradient(128deg, transparent 0%, transparent 42%, rgba(255, 112, 34, 0.35) 43%, rgba(95, 213, 223, 0.14) 58%, transparent 59%),
    radial-gradient(circle at 28% 22%, rgba(255, 167, 73, 0.24), transparent 20rem);
}

.light-field-b {
  background:
    radial-gradient(circle at 56% 34%, rgba(120, 102, 255, 0.28), transparent 18rem),
    radial-gradient(circle at 72% 38%, rgba(95, 213, 223, 0.18), transparent 22rem);
  animation: slowSweep 12s ease-in-out infinite alternate;
}

.grid-field {
  opacity: 0.38;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.film-stage {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255, 138, 53, 0.11), transparent 30%, rgba(95, 213, 223, 0.1)),
    rgba(5, 5, 4, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(255, 103, 31, 0.12);
  backdrop-filter: blur(14px);
}

.stage-topline,
.stage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 248, 239, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.stage-topline {
  padding: 2px 4px 14px;
}

.stage-caption {
  padding: 14px 4px 0;
}

.stage-caption strong {
  color: rgba(255, 248, 239, 0.84);
  font-size: 15px;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  background: #080807;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.hero-copy {
  width: min(900px, 100%);
  margin: 50px auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

h1,
h2,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 24px;
  color: #fffdf8;
  font-size: 104px;
  font-weight: 900;
  line-height: 0.96;
  text-shadow:
    0 4px 0 rgba(70, 58, 49, 0.6),
    0 22px 54px rgba(255, 124, 45, 0.18);
}

.hero-claim {
  width: min(760px, 100%);
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  color: #ffffff;
  font-size: 32px;
  font-weight: 850;
  line-height: 1.28;
  text-wrap: balance;
}

.hero-text {
  width: min(780px, 100%);
  margin: 0 auto;
  color: rgba(255, 248, 239, 0.72);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-band {
  padding: 88px 24px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

h2 {
  margin-bottom: 0;
  color: #fffdf8;
  font-size: 48px;
  font-weight: 850;
  line-height: 1.12;
}

.about-copy {
  color: rgba(255, 248, 239, 0.75);
  font-size: 19px;
  line-height: 1.8;
}

.about-copy p {
  margin-bottom: 20px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  width: min(700px, 100%);
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.coming-grid article {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 9, 8, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coming-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 138, 53, 0.1);
  border: 1px solid rgba(255, 138, 53, 0.18);
  border-radius: 999px;
}

.coming-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fffdf8;
  font-size: 21px;
  line-height: 1.35;
}

.coming-grid p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

.contact-section {
  padding-bottom: 112px;
}

.contact-layout {
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(255, 138, 53, 0.14), transparent 44%, rgba(95, 213, 223, 0.08)),
    rgba(10, 9, 8, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.contact-layout p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  padding: 24px 0 36px;
  color: rgba(255, 248, 239, 0.52);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@keyframes slowSweep {
  from {
    opacity: 0.42;
    transform: translate3d(-3%, -2%, 0) scale(1);
  }
  to {
    opacity: 0.8;
    transform: translate3d(3%, 2%, 0) scale(1.04);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 28px);
  }

  .site-nav {
    display: none;
  }

  .hero {
    margin-top: -83px;
    padding-top: 128px;
  }

  .film-stage {
    padding: 12px;
  }

  .stage-topline,
  .stage-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-copy {
    margin-top: 38px;
  }

  h1 {
    font-size: 72px;
  }

  .hero-claim {
    font-size: 26px;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h2 {
    font-size: 38px;
  }

  .coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding: 118px 14px 58px;
  }

  .stage-topline,
  .stage-caption {
    font-size: 12px;
  }

  .stage-caption strong {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-copy {
    max-width: 350px;
  }

  .eyebrow {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 54px;
  }

  .hero-claim {
    max-width: 340px;
    font-size: 22px;
    line-height: 1.38;
  }

  .hero-text {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-text,
  .about-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .section-band {
    padding: 64px 14px;
  }

  h2 {
    font-size: 32px;
  }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .coming-grid article {
    min-height: 0;
  }

  .contact-layout {
    padding: 24px;
  }

  .site-footer {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
