:root {
  --bg: #070b10;
  --panel: #121920;
  --line: rgba(255, 255, 255, 0.1);
  --ink: #f5f1ea;
  --mute: rgba(245, 241, 234, 0.68);
  --orange: #ff6a21;
  --orange-deep: #d94a10;
  --font: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-width: 1280px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}
img { max-width: 100%; display: block; }
button, a { font-family: inherit; color: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.92), rgba(7, 11, 16, 0.35));
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 40px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}
.brand span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.menu {
  display: flex;
  gap: 26px;
  flex: 1;
}
.menu a {
  font-size: 15px;
  color: var(--mute);
}
.menu a:hover,
.menu a.is-on { color: var(--orange); }

.btn {
  border: 0;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.btn--nav {
  padding: 10px 22px;
  font-size: 14px;
  color: #1a0c06;
  background: linear-gradient(180deg, #ff9a4d, var(--orange) 46%, var(--orange-deep));
}
.btn--hero {
  min-width: 240px;
  height: 62px;
  font-size: 18px;
  color: #1a0c06;
  background: linear-gradient(180deg, #ff9a4d, var(--orange) 46%, var(--orange-deep));
  box-shadow: 0 10px 28px rgba(255, 106, 33, 0.35);
}
.btn--ghost {
  min-width: 160px;
  height: 62px;
  font-size: 16px;
  color: var(--ink);
  background: rgba(8, 12, 16, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}
.hero__bg,
.hero__mask {
  position: absolute;
  inset: 0;
}
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__mask {
  background:
    linear-gradient(90deg, rgba(7, 11, 16, 0.72) 0%, rgba(7, 11, 16, 0.18) 52%, rgba(7, 11, 16, 0.4) 100%),
    linear-gradient(180deg, rgba(7, 11, 16, 0.2) 0%, rgba(7, 11, 16, 0.08) 40%, rgba(7, 11, 16, 0.88) 100%);
}
.hero__box {
  position: relative;
  z-index: 2;
  width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 140px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tag {
  margin: 0 0 16px;
  color: var(--orange);
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 700;
}
.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.18;
  letter-spacing: 0.04em;
}
.hero .lead {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--mute);
}
.cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
.hero .hint {
  margin: 16px 0 0;
  color: var(--mute);
  font-size: 13px;
}

.wrap {
  width: 1180px;
  margin: 0 auto;
}
.mod { padding: 88px 0; }
.mod--alt { background: #0b1117; }
.hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.hd h2 {
  margin: 8px 0 0;
  font-size: 36px;
  letter-spacing: 0.08em;
}
.more { color: var(--orange); font-size: 14px; }

.news {
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  gap: 24px;
  padding: 28px 32px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.news__date {
  margin: 0;
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
}
.news__date small { display: block; font-size: 13px; font-weight: 400; color: var(--mute); }
.news p { margin: 0; line-height: 1.8; color: var(--mute); }

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  padding: 26px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 196px;
}
.card i {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 12px;
}
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { margin: 0; color: var(--mute); line-height: 1.75; font-size: 14px; }
.card:hover { border-color: rgba(255, 106, 33, 0.55); transform: translateY(-4px); }
.card, .shot, .story { transition: 0.2s ease; }

.story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.story img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.story h2 { margin: 8px 0 14px; font-size: 36px; }
.story p { margin: 0 0 22px; color: var(--mute); line-height: 1.9; }

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  position: relative;
  overflow: hidden;
  text-align: left;
  color: inherit;
}
.shot img {
  width: 100%;
  height: 198px;
  object-fit: cover;
}
.shot b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  font-size: 14px;
  font-weight: 700;
}
.shot:hover img { transform: scale(1.06); }
.shot img { transition: 0.35s ease; }

.band {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
}
.band__box { position: relative; z-index: 1; }
.band h2 { margin: 0 0 10px; font-size: 36px; }
.band p { margin: 0 0 22px; color: var(--mute); }

.page-kv {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-kv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-kv__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.15), rgba(7, 11, 16, 0.88));
}
.page-kv .wrap { position: relative; z-index: 1; padding-bottom: 48px; }
.page-kv h1 { margin: 8px 0 0; font-size: 44px; }
.page-kv .lead { max-width: 760px; margin: 12px 0 0; color: var(--mute); line-height: 1.8; }

.article { padding: 64px 0 88px; }
.article h2 { margin: 0 0 14px; font-size: 28px; }
.article h3 { margin: 22px 0 8px; font-size: 20px; color: var(--orange); }
.article p { margin: 0 0 16px; color: var(--mute); line-height: 1.95; font-size: 15px; }
.article a { color: var(--orange); }

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 8px 0 28px;
}
.pair article,
.legal article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.advice {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.advice li {
  padding: 16px 8px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.qa details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.qa summary { cursor: pointer; font-size: 16px; }
.qa p { margin: 10px 0 0; }
.log {
  margin-top: 36px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.log ul { margin: 0; padding-left: 1.2em; color: var(--mute); line-height: 1.9; }

.foot {
  padding: 28px 40px 40px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
}
.foot p { margin: 0 0 6px; }
.foot a { color: inherit; }

.modal[hidden], .lightbox[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}
.modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__card {
  position: relative;
  width: 440px;
  padding: 36px 32px 28px;
  background: #141b22;
  border: 1px solid rgba(255, 106, 33, 0.35);
  text-align: center;
}
.modal__x {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 28px;
}
.modal__card h2 { margin: 8px 0 12px; font-size: 26px; }
.modal__card p { margin: 0 0 12px; color: var(--mute); line-height: 1.7; }
.modal__qr {
  width: 170px;
  margin: 16px auto 10px;
  padding: 8px;
  background: #fff;
}
.modal__qr img { width: 100%; height: auto; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox figure { margin: 0; width: min(1100px, 86vw); }
.lightbox img { width: 100%; height: auto; }
.lightbox figcaption { margin-top: 12px; text-align: center; color: var(--mute); }
.lightbox button {
  position: absolute;
  border: 0;
  background: none;
  color: #fff;
  font-size: 42px;
}
.lightbox__close { top: 16px; right: 28px; }
.lightbox__prev { left: 24px; top: 50%; }
.lightbox__next { right: 24px; top: 50%; }
