:root {
  --bg: #0b1017;
  --panel: #111a24;
  --ink: #eef4f7;
  --muted: #9aa9b5;
  --orange: #f0643c;
  --yellow: #f5b943;
  --line: rgba(215, 231, 239, 0.18);
  --display: "Arial Narrow", Impact, sans-serif;
  --sans: "Noto Sans SC", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.18;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(255, 255, 255, 0.025) 4px
  );
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  z-index: 50;
}
.site-header,
header {
  height: 82px;
  padding: 0 clamp(1rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
  background: rgba(11, 16, 23, 0.8);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font: 800 0.78rem/1 var(--display);
  letter-spacing: 0.06em;
  text-decoration: none;
}
.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand b {
  color: var(--orange);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}
.desktop-nav,
nav {
  display: none;
  gap: 2rem;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}
nav a:hover {
  color: #fff;
}
.nav-cta {
  display: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(110deg, rgba(240, 100, 60, 0.96), rgba(196, 55, 43, 0.96));
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 5% 50%);
}
.nav-cta span {
  margin-left: 0.7rem;
}
.menu {
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}
.menu i {
  height: 2px;
  width: 24px;
  background: var(--ink);
  display: block;
}
.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem clamp(1rem, 8vw, 8rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.98) 0%, rgba(8, 13, 18, 0.82) 34%, rgba(8, 13, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 13, 18, 0.76) 0%, rgba(8, 13, 18, 0) 48%),
    url("assets/hero-city-large.opt.webp?v=2") center 42%/cover;
  filter: saturate(1.08) contrast(1.04);
}
.hero-lasers {
  position: absolute;
  inset: -15% -10%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
  mix-blend-mode: screen;
}
.laser {
  position: absolute;
  display: block;
  height: 2.5px;
  transform-origin: left center;
  animation: laserSweep 5.5s ease-in-out infinite;
}
.laser::after {
  content: "";
  position: absolute;
  inset: -7px 0;
  background: inherit;
  filter: blur(8px);
  opacity: 0.82;
}
.laser::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 2px currentColor, 0 0 18px 5px currentColor;
  transform: translateY(-50%);
}
.laser-a {
  top: 29%;
  left: 43%;
  width: 48%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 61, 0.15) 15%, #ff6b42 72%, #fff3df 100%);
  transform: rotate(-19deg);
  animation-delay: -1s;
}
.laser-b {
  top: 49%;
  left: 54%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #6ce4ff 70%, #e9fcff 100%);
  transform: rotate(-12deg);
  animation-delay: -3.4s;
}
.laser-c {
  top: 67%;
  left: 35%;
  width: 52%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 191, 72, 0.12) 18%, #f5b943 80%, #fff 100%);
  transform: rotate(-23deg);
  animation-delay: -2.2s;
}
.laser-d {
  top: 16%;
  left: 72%;
  width: 29%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8cecff 78%, #fff);
  transform: rotate(57deg);
  animation-delay: -4.2s;
}
.laser-e {
  top: 82%;
  left: 58%;
  width: 32%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff5740 78%, #fff);
  transform: rotate(-38deg);
  animation-delay: -0.6s;
}
@keyframes laserSweep {
  0%, 100% { opacity: 0.28; filter: brightness(0.8); }
  46% { opacity: 0.95; filter: brightness(1.25); }
  52% { opacity: 0.55; filter: brightness(1); }
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 50%,
    rgba(240, 100, 60, 0.2) 50.2%,
    transparent 50.5%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.kicker,
.section-mark {
  font: 700 0.65rem/.1 var(--display);
  letter-spacing: 0.14em;
  color: var(--yellow);
}
.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker i {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font: 800 clamp(4rem, 10vw, 8.8rem)/0.85 var(--display);
  letter-spacing: -0.04em;
  margin: 2rem 0 1.4rem;
  text-transform: uppercase;
}
h1 strong {
  color: var(--orange);
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #c3d0d7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.orange-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 16rem;
  min-height: 3.45rem;
  padding: 0.95rem 1rem 1rem 0.6rem;
  background: linear-gradient(112deg, #ff6b42 0%, #ed5036 72%, #c83c2d 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 4% 50%);
  transition:
    filter 0.2s,
    transform 0.2s;
}
.orange-btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0.9rem;
  top: 50%;
  width: 1.45rem;
  height: 1.45rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}
.orange-btn::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 1.18rem;
  top: 50%;
  width: 0.9rem;
  height: 2px;
  background: #fff;
  box-shadow: 0 -0.35rem 0 -0.2px #fff, 0 0.35rem 0 -0.2px #fff;
  transform: translateY(-50%);
}
.orange-btn span {
  position: relative;
  z-index: 1;
  padding-left: 2.6rem;
}
.orange-btn b {
  position: relative;
  z-index: 1;
}
.orange-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}
.orange-btn b {
  font-size: 1.35rem;
  font-weight: 400;
}
.line-btn {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.4rem;
}
.line-btn span {
  margin-left: 0.6rem;
  color: var(--orange);
}
.hero-meta {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  color: #99a9b5;
  font: 700 0.6rem var(--display);
  letter-spacing: 0.1em;
}
.hero-meta span:before {
  content: "•";
  color: var(--orange);
  margin-right: 0.45rem;
}
.hero-radar {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(245, 185, 67, 0.35);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.8;
}
.radar-grid {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(245, 185, 67, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(245, 185, 67, 0.04),
    0 0 0 68px rgba(245, 185, 67, 0.04);
}
.radar-cross:before,
.radar-cross:after {
  content: "";
  position: absolute;
  background: rgba(245, 185, 67, 0.3);
}
.radar-cross:before {
  width: 1px;
  height: 100%;
  left: 50%;
}
.radar-cross:after {
  height: 1px;
  width: 100%;
  top: 50%;
}
.radar-label {
  position: absolute;
  right: 17%;
  top: 23%;
  font: 700 0.6rem/1.2 var(--display);
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.hero-side {
  position: absolute;
  right: 3%;
  top: 42%;
  writing-mode: vertical-rl;
  color: #7e8f9a;
  font: 700 0.65rem var(--display);
  letter-spacing: 0.2em;
}
.hero-side span {
  color: var(--orange);
  margin: 0.7rem 0;
}
.ticker {
  overflow: hidden;
  background: var(--orange);
  color: #fff;
  white-space: nowrap;
  padding: 0.75rem 0;
}
.ticker div {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
  font: 800 0.7rem var(--display);
  letter-spacing: 0.1em;
}
.ticker b {
  color: #241710;
}
@keyframes marquee {
  to {
    transform: translateX(-45%);
  }
}
section {
  padding: 6rem clamp(1rem, 8vw, 8rem);
}
.brief {
  background: #111a24;
  position: relative;
}
.brief:before {
  content: "HERO SELECT / HERO SELECT / HERO SELECT";
  position: absolute;
  right: -3rem;
  top: 5rem;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.04);
  font: 800 2.5rem var(--display);
  letter-spacing: 0.15em;
}
.brief-head {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.brief h2,
.modes h2,
.mobile-section h2,
.faq h2 {
  font: 800 clamp(2.7rem, 6vw, 5.8rem)/0.9 var(--display);
  letter-spacing: -0.03em;
}
.brief h2 em,
.modes h2 em,
.mobile-section h2 em,
.faq h2 em {
  color: var(--orange);
  font-style: normal;
}
.brief-head p,
.mode-copy > p,
.mobile-copy > p {
  max-width: 31rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}
.hero-cards {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}
.hero-cards article {
  min-height: 300px;
  background: #1a2632;
  border: 1px solid var(--line);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.hero-cards article:nth-child(2) {
  background: #17212b;
}
.role {
  font: 700 0.6rem var(--display);
  letter-spacing: 0.12em;
  color: var(--yellow);
}
.portrait {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-position: center;
  background-size: cover;
  mix-blend-mode: normal;
}
.p1 {
  background-image:
    linear-gradient(180deg, transparent 35%, #1a2632 100%),
    url("assets/hero-damage.jpg?v=2");
  background-position: center;
}
.p2 {
  background-image:
    linear-gradient(180deg, transparent 35%, #17212b 100%),
    url("assets/hero-tank.jpg?v=2");
  background-position: center;
}
.p3 {
  background-image:
    linear-gradient(180deg, transparent 28%, #17212b 100%), url("assets/hero-support.jpg?v=2");
  background-position: center;
}
.hero-cards h3 {
  position: absolute;
  left: 1.2rem;
  bottom: 3.4rem;
  font-size: 1.35rem;
}
.hero-cards p {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  color: #aebbc3;
  font-size: 0.75rem;
}
.card-arrow {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  color: var(--orange);
  font-size: 1.3rem;
}
.modes {
  background: #e9edf0;
  color: #111a24;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.mode-art {
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.mode-art:before {
  content: "LIVE / SEASON";
  position: absolute;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  color: #fff;
  font: 800 0.65rem var(--display);
  letter-spacing: 0.15em;
}
.mode-art img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
}
.mode-copy .section-mark {
  color: #e95e39;
}
.mode-copy > p {
  color: #4f5e69;
  margin: 1.4rem 0 2rem;
}
.stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(17, 26, 36, 0.2);
  border-bottom: 1px solid rgba(17, 26, 36, 0.2);
  padding: 1.1rem 0;
  margin-bottom: 2rem;
}
.stats div {
  display: flex;
  flex-direction: column;
}
.stats b {
  font: 800 2rem var(--display);
}
.stats b span {
  color: var(--orange);
  font-size: 1rem;
}
.stats small {
  font-size: 0.7rem;
  color: #687781;
}
.outline-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 14rem;
  color: #111a24;
  border: 1px solid #111a24;
  padding: 0.8rem 1rem 0.8rem 2.65rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}
.outline-btn::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}
.outline-btn::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 50%;
  width: 0.6rem;
  height: 1px;
  background: var(--orange);
  transform: translateY(-50%);
}
.outline-btn span {
  color: var(--orange);
  font-size: 1.1rem;
}
.mobile-section {
  background: #0e151e;
  display: grid;
  gap: 3rem;
  overflow: hidden;
}
.mobile-copy .section-mark {
  color: #9cc7e6;
}
.mobile-copy > p {
  margin: 1.4rem 0 2rem;
}
.mobile-copy ul {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  border-top: 1px solid var(--line);
}
.mobile-copy li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  column-gap: 0.7rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-copy li b {
  grid-row: span 2;
  color: var(--orange);
  font: 700 0.7rem var(--display);
}
.mobile-copy li span {
  font-size: 0.85rem;
  font-weight: 800;
}
.mobile-copy li small {
  color: var(--muted);
  font-size: 0.7rem;
}
.mobile-visual {
  height: 420px;
  position: relative;
}
.phone {
  position: absolute;
  left: 24%;
  top: 2%;
  width: 210px;
  height: 390px;
  border: 8px solid #1f2a34;
  border-radius: 28px;
  background: #05080c;
  box-shadow:
    18px 18px 0 rgba(240, 100, 60, 0.22),
    0 30px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(7deg);
  overflow: hidden;
}
.phone:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 65px;
  height: 16px;
  background: #020307;
  border-radius: 12px;
  transform: translateX(-50%);
}
.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.85);
}
.hud {
  position: absolute;
  background: #f5b943;
  color: #111a24;
  padding: 0.45rem 0.6rem;
  font: 700 0.58rem/1.3 var(--display);
  letter-spacing: 0.08em;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.hud strong {
  font-size: 0.8rem;
}
.hud-a {
  top: 15%;
  right: 5%;
  transform: rotate(-7deg);
}
.hud-b {
  bottom: 18%;
  left: 2%;
  background: #e9edf0;
  transform: rotate(5deg);
}
.faq {
  background: #f0f2f2;
  color: #111a24;
  display: grid;
  gap: 2rem;
}
.faq .section-mark {
  color: #e95e39;
}
.faq-list {
  border-top: 1px solid rgba(17, 26, 36, 0.25);
}
.faq details {
  border-bottom: 1px solid rgba(17, 26, 36, 0.25);
  padding: 1rem 0;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  margin: 1rem 2rem 0 0;
  color: #586873;
  font-size: 0.8rem;
  line-height: 1.8;
}
.site-footer,
footer {
  padding: 3rem clamp(1rem, 8vw, 8rem) 1.5rem;
  background: #070b10;
  display: grid;
  gap: 1rem;
}
.site-footer p,
footer p {
  color: #82919c;
  font-size: 0.75rem;
  margin: 0;
}
.site-footer > a,
footer > a {
  color: var(--yellow);
  font-size: 0.75rem;
  text-decoration: none;
}
.site-footer small,
footer small {
  color: #53616c;
  font: 700 0.6rem var(--display);
  letter-spacing: 0.1em;
  margin-top: 1.2rem;
}
@media (min-width: 640px) {
  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .brief-head {
    grid-template-columns: 1fr 1fr;
  }
  .modes {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .mobile-section {
    grid-template-columns: 1fr 0.9fr;
  }
  .faq {
    grid-template-columns: 0.7fr 1.3fr;
  }
  .faq h2 {
    grid-column: 1;
  }
  .faq-list {
    grid-column: 2;
    grid-row: 1/3;
  }
  .site-footer,
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  header {
    height: 92px;
  }
  .desktop-nav,
  nav,
  .nav-cta {
    display: flex;
  }
  .menu {
    display: none;
  }
  .hero {
    min-height: calc(100vh - 92px);
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero-radar {
    width: 340px;
    height: 340px;
    right: 10%;
    bottom: 10%;
  }
  .section-mark {
    font-size: 0.7rem;
  }
  section {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .brief-head {
    margin-top: 2.5rem;
  }
  .hero-cards {
    margin-top: 5rem;
  }
  .mode-art,
  .mode-art img {
    min-height: 530px;
  }
  .mobile-section {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .mobile-visual {
    height: 520px;
  }
  .phone {
    width: 270px;
    height: 500px;
    left: 23%;
  }
  .faq {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 639px) {
  h1 {
    font-size: 4.2rem;
  }
  .hero {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
  .hero-bg {
    background-size: cover, cover, cover;
    background-position: 0 0, 0 0, 62% center;
    background-repeat: no-repeat;
    background-color: #0b1017;
  }
  .hero-lasers {
    inset: -8% -35%;
    opacity: 0.92;
  }
  .laser-a { top: 36%; left: 54%; width: 62%; }
  .laser-b { top: 53%; left: 58%; width: 52%; }
  .laser-c { top: 70%; left: 42%; width: 68%; }
  .laser-d { top: 20%; left: 82%; width: 38%; }
  .laser-e { top: 78%; left: 65%; width: 46%; }
  .hero-radar {
    width: 190px;
    height: 190px;
    right: -4%;
    bottom: 5%;
    opacity: 0.55;
  }
  .hero-side {
    display: none;
  }
  .hero-meta {
    gap: 0.7rem;
    margin-top: 2.3rem;
  }
  .brief,
  .modes,
  .mobile-section,
  .faq {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mode-art {
    min-height: 280px;
  }
  .mode-art img {
    min-height: 280px;
  }
  .mobile-visual {
    height: 380px;
  }
  .phone {
    left: 18%;
    width: 190px;
    height: 355px;
  }
  .hud-a {
    right: 2%;
  }
  .hud-b {
    left: 0;
  }
}
