*{box-sizing:border-box}
:root{
  --paper:#f6f4ef;
  --paper2:#ece9e1;
  --ink:#171717;
  --muted:#73706a;
  --line:#d9d5cd;
  --red:#d71920;
  --red2:#b81117;
  --dark:#171717;
  --cream:#fffdf8;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,"Microsoft YaHei","PingFang SC",sans-serif;
  background:var(--paper);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font:inherit}
.wrap{width:min(1180px,calc(100% - 36px));margin:0 auto}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,244,239,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,213,205,.8)
}
.nav-inner{
  height:74px;
  display:flex;
  align-items:center;
  gap:28px
}
.brand{display:flex;align-items:center;gap:10px}
.brand-logo{width:40px;height:40px;object-fit:contain}
.brand-fallback{
  width:40px;height:40px;border-radius:50%;
  background:var(--red);color:#fff;
  display:none;align-items:center;justify-content:center;
  font-size:12px;font-weight:900
}
.brand-name{font-size:18px;font-weight:900}
.desktop-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
  font-size:13px;
  font-weight:700;
  color:#5d5a55
}
.desktop-nav a:hover{color:var(--red)}
.nav-cta{
  border:1px solid var(--ink);
  padding:11px 17px;
  font-size:12px;
  font-weight:900
}
.nav-cta:hover{background:var(--ink);color:#fff}
.menu-btn{display:none;margin-left:auto;border:0;background:none;font-size:26px}
.mobile-menu{display:none}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  min-height:720px;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line)
}
.hero-orbit{
  position:absolute;
  border:1px solid rgba(23,23,23,.08);
  border-radius:50%
}
.orbit-a{
  width:640px;height:640px;
  left:50%;top:48%;
  transform:translate(-50%,-50%)
}
.orbit-b{
  width:900px;height:900px;
  left:50%;top:48%;
  transform:translate(-50%,-50%)
}
.hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:950px
}
.hero-eyebrow{
  display:inline-block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:22px
}
.hero h1{
  margin:0;
  font-size:clamp(56px,7vw,92px);
  line-height:.96;
  letter-spacing:-.06em;
  font-weight:900
}
.hero h1 span{
  display:block;
  max-width:920px;
  margin:10px auto 0;
  font-size:.47em;
  line-height:1.12;
  letter-spacing:-.045em
}
.hero-lead{
  max-width:760px;
  margin:28px auto 0;
  color:#66635e;
  font-size:16px;
  line-height:1.9
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:32px
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 27px;
  font-weight:900;
  font-size:13px
}
.primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 12px 30px rgba(215,25,32,.16)
}
.primary:hover{background:var(--red2)}
.secondary{
  border:1px solid #b9b4aa;
  background:rgba(255,255,255,.35)
}
.hero-seal{
  margin:42px auto 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:11px;
  color:#77736c;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em
}
.hero-seal i{
  width:4px;height:4px;
  border-radius:50%;
  background:var(--red)
}

/* CLIENT RAIL */
.client-rail{
  padding:82px 0;
  background:var(--cream);
  border-bottom:1px solid var(--line)
}
.rail-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:30px
}
.rail-head span,
.marquee-head span,
.tournament-heading>span,
.faq-title>span,
.eyebrow-dark{
  color:var(--red);
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em
}
.rail-head h2,
.marquee-head h2,
.tournament-heading h2,
.faq-title h2{
  margin:7px 0 0;
  font-size:clamp(32px,4vw,48px);
  line-height:1.1;
  letter-spacing:-.04em
}
.rail-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line)
}
.rail-grid article{
  min-height:250px;
  padding:25px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  flex-direction:column
}
.rail-no{
  color:var(--red);
  font-size:10px;
  font-weight:900
}
.rail-grid strong{
  display:block;
  font-size:24px;
  margin:35px 0 12px
}
.rail-grid p{
  color:#77736d;
  font-size:14px;
  line-height:1.75;
  margin:0
}
.rail-grid small{
  margin-top:auto;
  padding-top:18px;
  color:#aaa49b;
  font-size:8px;
  letter-spacing:.13em
}

/* GAME MARQUEE */
.game-marquee{
  padding:95px 0;
  background:#171717;
  color:#fff
}
.marquee-head{
  max-width:700px;
  margin-bottom:36px
}
.marquee-head span{color:#ff6a6f}
.marquee-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  grid-template-areas:
    "large a b"
    "large c c";
  border-top:1px solid #353535;
  border-left:1px solid #353535
}
.marquee-card{
  min-height:270px;
  padding:26px;
  border-right:1px solid #353535;
  border-bottom:1px solid #353535;
  position:relative
}
.marquee-card.large{
  grid-area:large;
  min-height:540px
}
.marquee-card:nth-child(2){grid-area:a}
.marquee-card:nth-child(3){grid-area:b}
.marquee-card:nth-child(4){grid-area:c}
.mode-label{
  color:#f56a6f;
  font-size:9px;
  font-weight:900;
  letter-spacing:.14em
}
.mode-symbol{
  font-size:44px;
  color:#f56a6f;
  margin:55px 0 26px
}
.marquee-card.large .mode-symbol{
  font-size:72px;
  margin-top:100px
}
.marquee-card h3{
  margin:0 0 13px;
  font-size:25px
}
.marquee-card.large h3{font-size:36px}
.marquee-card p{
  color:#a4a4a4;
  line-height:1.75;
  font-size:14px;
  margin:0;
  max-width:520px
}
.marquee-card small{
  position:absolute;
  left:26px;
  bottom:23px;
  color:#5c5c5c;
  font-size:8px;
  letter-spacing:.14em
}

/* EDITORIAL */
.editorial{
  padding:100px 0;
  background:var(--paper)
}
.editorial-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:90px;
  align-items:center
}
.editorial-copy h2{
  font-size:clamp(38px,5vw,58px);
  line-height:1.03;
  letter-spacing:-.05em;
  margin:12px 0 23px
}
.editorial-copy>p{
  color:#6c6862;
  line-height:1.85;
  font-size:15px
}
.editorial-points{
  margin-top:32px;
  border-top:1px solid var(--line)
}
.editorial-points div{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--line)
}
.editorial-points b{font-size:14px}
.editorial-points span{color:#77736d;font-size:13px}

.editorial-board{
  min-height:520px;
  background:#171717;
  color:#fff;
  padding:28px;
  position:relative;
  overflow:hidden
}
.editorial-board:after{
  content:"GG";
  position:absolute;
  right:-20px;
  bottom:-35px;
  color:#ffffff08;
  font-size:220px;
  font-weight:900;
  line-height:1
}
.board-top{
  display:flex;
  justify-content:space-between;
  color:#777;
  font-size:9px;
  letter-spacing:.13em
}
.board-icon{
  width:92px;height:92px;
  margin-top:85px;
  background:#fff;
  border-radius:18px;
  display:grid;
  place-items:center;
  overflow:hidden
}
.board-icon img{width:100%;height:100%;object-fit:cover}
.board-icon span{
  display:none;
  width:100%;height:100%;
  place-items:center;
  color:#171717;
  font-size:28px;
  font-weight:900
}
.editorial-board>strong{
  display:block;
  font-size:46px;
  line-height:.96;
  margin-top:28px;
  letter-spacing:-.05em
}
.board-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:28px
}
.board-tags span{
  border:1px solid #373737;
  padding:8px 10px;
  color:#aaa;
  font-size:8px;
  letter-spacing:.12em
}

/* TOURNAMENTS */
.tournaments{
  padding:95px 0;
  background:var(--cream);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.tournament-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px
}
.tournament-heading p{
  color:#6e6a64;
  line-height:1.8;
  font-size:14px
}
.timeline{
  border-top:1px solid var(--line)
}
.timeline article{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:22px;
  padding:26px 0;
  border-bottom:1px solid var(--line)
}
.timeline b{
  color:var(--red);
  font-size:11px
}
.timeline h3{
  margin:0 0 8px;
  font-size:20px
}
.timeline p{
  margin:0;
  color:#77736d;
  line-height:1.75;
  font-size:14px
}

/* FAQ */
.faq-section{
  padding:95px 0;
  background:var(--paper)
}
.faq-layout{
  display:grid;
  grid-template-columns:.65fr 1.35fr;
  gap:90px
}
.faq-list{
  border-top:1px solid var(--line)
}
.faq-item{
  border-bottom:1px solid var(--line)
}
.faq-q{
  width:100%;
  padding:22px 0;
  border:0;
  background:none;
  display:flex;
  justify-content:space-between;
  text-align:left;
  cursor:pointer;
  font-size:17px;
  font-weight:900;
  color:var(--ink)
}
.faq-q span{
  color:var(--red);
  font-size:20px;
  transition:.2s
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:.3s
}
.faq-a p{
  margin:0;
  padding:0 45px 22px 0;
  color:#706c66;
  line-height:1.8;
  font-size:14px
}
.faq-item.open .faq-a{max-height:220px}
.faq-item.open .faq-q span{transform:rotate(45deg)}

/* CTA */
.final-cta{
  padding:90px 0;
  background:var(--red);
  color:#fff;
  text-align:center
}
.final-inner span{
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em
}
.final-inner h2{
  max-width:850px;
  margin:12px auto 8px;
  font-size:clamp(42px,6vw,72px);
  line-height:.96;
  letter-spacing:-.055em
}
.final-inner p{
  margin:15px 0 24px;
  opacity:.8;
  font-size:12px;
  letter-spacing:.15em
}
.final-inner a{
  display:inline-flex;
  min-height:50px;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  background:#fff;
  color:#171717;
  font-weight:900;
  font-size:13px
}

/* FOOTER */
.footer{
  background:#171717;
  color:#fff;
  padding:62px 0 25px
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:55px
}
.footer-brand p{
  max-width:420px;
  color:#8f8f8f;
  font-size:13px;
  line-height:1.8
}
.footer h3{
  margin:0 0 16px;
  color:#777;
  font-size:10px;
  letter-spacing:.13em;
  text-transform:uppercase
}
.footer-grid>div:not(.footer-brand){
  display:flex;
  flex-direction:column;
  gap:9px
}
.footer a{
  color:#b2b2b2;
  font-size:13px
}
.footer a:hover{color:#fff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  border-top:1px solid #2a2a2a;
  margin-top:44px;
  padding-top:21px;
  color:#666;
  font-size:10px
}

/* RESPONSIVE */
@media(max-width:960px){
  .rail-grid{grid-template-columns:repeat(2,1fr)}
  .marquee-grid{
    grid-template-columns:1fr 1fr;
    grid-template-areas:
      "large large"
      "a b"
      "c c"
  }
  .marquee-card.large{min-height:420px}
  .editorial-grid,
  .tournament-layout,
  .faq-layout{
    grid-template-columns:1fr;
    gap:50px
  }
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:760px){
  .wrap{width:min(100% - 24px,1180px)}
  .desktop-nav,.nav-cta{display:none}
  .menu-btn{display:block}
  .mobile-menu{
    position:fixed;
    top:74px;left:0;right:0;
    display:none;
    flex-direction:column;
    gap:15px;
    padding:18px 20px 22px;
    background:var(--paper);
    border-bottom:1px solid var(--line)
  }
  .mobile-menu.open{display:flex}
  .mobile-menu a{font-size:14px;font-weight:700}
  .mobile-cta{
    background:var(--ink);
    color:#fff!important;
    padding:12px 14px;
    text-align:center
  }
  .hero{
    min-height:650px
  }
  .hero h1{font-size:55px}
  .hero h1 span{font-size:.52em}
  .hero-lead{font-size:15px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .hero-seal{flex-wrap:wrap}
  .orbit-a{width:430px;height:430px}
  .orbit-b{width:620px;height:620px}
  .rail-head{display:block}
  .rail-head h2{margin-top:9px}
  .rail-grid{grid-template-columns:1fr}
  .marquee-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "large"
      "a"
      "b"
      "c"
  }
  .marquee-card.large{min-height:390px}
  .marquee-card{min-height:280px}
  .editorial{padding:75px 0}
  .editorial-board{min-height:420px}
  .editorial-board>strong{font-size:38px}
  .timeline article{grid-template-columns:48px 1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px}
}

@media(max-width:460px){
  .brand-name{font-size:16px}
  .hero{min-height:620px}
  .hero h1{font-size:47px}
  .hero-seal{gap:7px}
  .editorial-points div{grid-template-columns:1fr;gap:5px}
}
