@font-face {
  font-family: Barlow;
  src: url("/warlordacademy/assets/fonts/barlow-condensed-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/warlordacademy/assets/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --ink: #101523;
  --navy: #181f34;
  --paper: #f0efe5;
  --lime: #e5ff79;
  --muted: #a3a9b7;
  --line: #ffffff24;
  --display: Barlow, "Arial Narrow", Impact, sans-serif;
  --body: Manrope, Arial, sans-serif;
  color-scheme: dark;
  font-family: var(--body);
  color: var(--paper);
  background: var(--ink);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p {
  margin: 0;
  line-height: 1.7;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.94;
  margin: 0;
  letter-spacing: -0.012em;
}
h2 {
  font-size: clamp(52px, 6.5vw, 90px);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #ff956c;
  outline-offset: 6px;
}
button[hidden] {
  display: none;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 110px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--ink);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(1440px, calc(100% - 64px));
  margin: auto;
  min-height: 93px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 27px;
  line-height: 0.85;
  letter-spacing: 0.015em;
}
.brand small {
  display: block;
  font-size: 17px;
  letter-spacing: 0.24em;
  margin-top: 6px;
}
.brand img {
  flex: none;
}
#primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 750;
}
#primary-nav > a:not(.button) {
  padding: 14px 0;
  position: relative;
}
#primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--lime);
  transition: right 0.2s;
}
#primary-nav > a:hover::after {
  right: 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  padding: 21px 27px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  min-height: 58px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #f2ffb6;
  transform: translateY(-3px);
}
.button span {
  font-size: 22px;
  line-height: 0.7;
}
.button-small {
  min-height: 44px;
  padding: 14px 20px;
  gap: 28px;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 15px;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 835px;
  padding-top: 170px;
  background:
    radial-gradient(ellipse at 77% 50%, #51416755 0, transparent 50%),
    var(--ink);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff04 1px, transparent 1px),
    linear-gradient(90deg, #ffffff04 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero .eyebrow {
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 100%;
  display: inline-block;
  box-shadow: 0 0 13px currentColor;
  flex: none;
}
.hero h1 {
  font-size: clamp(70px, 7.8vw, 112px);
  max-width: 770px;
  line-height: 0.92;
  letter-spacing: -0.012em;
}
.hero h1 > span {
  color: var(--lime);
}
.hero-description {
  max-width: 420px;
  color: #d0d1d9;
  font-size: 15px;
  margin-top: 27px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
}
.watch-link:hover {
  color: var(--lime);
}
.play-small {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff58;
  border-radius: 50%;
  font-size: 9px;
  padding-left: 2px;
}
.platform-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #b0b3c1;
  margin-top: 19px;
}
.platform-note svg {
  height: 16px;
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.platform-note span {
  padding-inline: 2px;
}
.hero-art {
  position: absolute;
  inset: 55px -80px 0 40%;
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid #a48bb536;
  border-radius: 50%;
  top: 72px;
  left: 12%;
  box-shadow:
    0 0 0 55px #ffffff02,
    0 0 0 110px #ffffff02;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed #a48bb52e;
  border-radius: 50%;
}
.hero-watermark {
  font-family: var(--display);
  color: #c3bfe406;
  font-size: 620px;
  position: absolute;
  left: 10%;
  top: 50px;
  line-height: 1;
}
.hero-knight {
  position: absolute;
  width: 780px;
  max-width: none;
  bottom: -70px;
  right: -20px;
  filter: drop-shadow(-30px 25px 30px #0007);
  animation: arrival 0.9s ease-out both;
}
.art-tag {
  position: absolute;
  right: 142px;
  bottom: 97px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #e4dfdf9e;
  writing-mode: vertical-rl;
  display: flex;
  gap: 30px;
}
.art-tag b {
  color: var(--lime);
  font-weight: 600;
}
.hero-bottom {
  position: relative;
  z-index: 4;
  margin-top: 72px;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 750;
}
.hero-bottom > span {
  color: var(--muted);
}
.hero-bottom a {
  display: flex;
  gap: 20px;
}
.hero-bottom a span {
  color: var(--lime);
  font-size: 18px;
}
.roster-strip {
  background: var(--lime);
  color: var(--ink);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
  gap: 24px;
}
.strip-inner p {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  letter-spacing: 0.07em;
  font-weight: 850;
  line-height: 1.3;
}
.strip-inner strong {
  font-family: var(--display);
  font-size: 49px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.star {
  font-size: 35px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
  color: var(--lime);
}
.section-intro {
  font-size: 13px;
  color: #b8bdca;
  line-height: 1.9;
  max-width: 350px;
  padding-bottom: 6px;
}
.muted-heading {
  color: #717a90;
}
.battle-window {
  display: block;
  height: 510px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #292a32;
}
.battle-window > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transition:
    transform 0.65s,
    filter 0.65s;
  filter: brightness(0.76);
}
.battle-window:hover > img {
  transform: scale(1.025);
  filter: brightness(0.95);
}
.battle-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #090f224d, transparent 50%, #0a1023d9);
}
.frame-top {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 750;
}
.frame-top .status-dot {
  color: var(--lime);
  width: 5px;
  height: 5px;
}
.frame-top > span:last-child {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid #ffffff59;
}
.play-ring {
  width: 83px;
  height: 83px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 40%;
  left: calc(50% - 41px);
  border: 1px solid #ffffffae;
  background: #10152342;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  font-size: 20px;
  padding-left: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.battle-window:hover .play-ring {
  background: var(--lime);
  color: var(--ink);
}
.battle-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.battle-caption strong {
  font-family: var(--display);
  font-size: 53px;
  line-height: 0.94;
}
.battle-caption > span {
  font-size: 12px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.battle-caption b {
  font-size: 23px;
  color: var(--lime);
}
.media-note {
  text-align: right;
  font-size: 9px;
  color: #929bad;
  margin-top: 12px;
}
.how-to {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 55px;
}
.how-to article {
  display: flex;
  gap: 20px;
}
.step {
  font-family: var(--display);
  font-size: 25px;
  color: var(--lime);
  padding-top: 1px;
}
.how-to h3 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.05;
}
.how-to p {
  font-size: 12px;
  color: #abb2c3;
  line-height: 1.9;
}
.order-banner {
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 31px 0;
  margin-top: 60px;
}
.order-icon {
  font-size: 50px;
  color: var(--lime);
  line-height: 1;
}
.order-banner .eyebrow {
  font-size: 8px;
  color: #a4abbc;
  margin-bottom: 7px;
}
.order-banner p:not(.eyebrow) {
  font-family: var(--display);
  font-size: 37px;
  line-height: 1.1;
}
.order-banner em {
  color: var(--lime);
  font-style: normal;
}
.order-label {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: #a4abbc;
}
.champions-section {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}
.champions-section .eyebrow {
  color: #657042;
}
.champions-section .section-intro {
  color: #5d6366;
}
.champions-section h2 {
  font-size: clamp(52px, 5.8vw, 79px);
}
.champion-feature {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  padding: 42px 50px;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  min-height: 348px;
}
.champion-portrait {
  position: relative;
  flex: none;
  width: 270px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.champion-portrait img {
  position: relative;
  width: 256px;
  height: 256px;
  object-fit: contain;
  mix-blend-mode: lighten;
  z-index: 1;
}
.portrait-ring {
  position: absolute;
  inset: 0;
  border: 1px solid #ffffff15;
  border-radius: 50%;
  transform: rotate(-25deg);
}
.portrait-ring::after {
  content: "✦";
  position: absolute;
  top: 38px;
  right: 10px;
  color: var(--lime);
  font-size: 21px;
}
.portrait-index {
  position: absolute;
  bottom: 0;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #b3b8c6;
  z-index: 2;
  background: var(--navy);
  padding: 4px 12px;
}
.champion-copy {
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.champion-copy .eyebrow {
  color: var(--lime);
  font-size: 10px;
  margin-bottom: 16px;
}
.champion-copy h3 {
  font-size: 64px;
  margin-bottom: 20px;
}
.champion-copy > p:not(.eyebrow):not(.ability) {
  font-size: 13px;
  color: #bdc3d1;
  max-width: 460px;
  line-height: 1.8;
}
.ability {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 23px;
  padding-top: 17px;
}
.ability > span {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #8f9aae;
}
.ability > strong {
  font-size: 12px;
  font-weight: 700;
}
.feature-number {
  position: absolute;
  font-family: var(--display);
  right: -12px;
  bottom: -83px;
  color: #ffffff03;
  font-size: 400px;
  line-height: 1;
  pointer-events: none;
}
.champion-picker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.champion-picker button {
  position: relative;
  text-align: left;
  padding: 12px 12px 16px;
  border: 1px solid #151b2922;
  background: #e7e7dd;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  color: var(--ink);
}
.champion-picker img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.champion-picker button > span {
  font-size: 10px;
  font-weight: 850;
  align-self: flex-start;
  line-height: 1.5;
}
.champion-picker small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.08em;
  font-weight: 650;
  opacity: 0.6;
  margin-top: 3px;
}
.champion-picker b {
  position: absolute;
  bottom: 18px;
  right: 11px;
  font-size: 14px;
  font-weight: 500;
}
.champion-picker button:hover {
  background: #dedfce;
  transform: translateY(-3px);
}
.champion-picker button[aria-pressed="true"] {
  background: var(--lime);
  border-color: var(--ink);
}
.champion-picker button[aria-pressed="true"]::before {
  content: "";
  position: absolute;
  top: -13px;
  width: 1px;
  height: 12px;
  background: var(--ink);
}
.faction-line {
  font-size: 8px;
  letter-spacing: 0.11em;
  font-weight: 800;
  margin-top: 36px;
  text-align: center;
  color: #616657;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.faction-line span {
  color: #88996a;
}
.rival-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.rival-copy .eyebrow {
  color: var(--lime);
  margin-bottom: 24px;
}
.rival-copy h2 {
  font-size: clamp(68px, 7.2vw, 100px);
}
.rival-copy h2 span {
  color: var(--lime);
}
.rival-copy > p:not(.eyebrow) {
  margin-top: 28px;
  max-width: 390px;
  color: #b5bdcd;
  font-size: 13px;
  line-height: 1.9;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 1px solid #ffffff46;
  margin-top: 25px;
}
.text-link span {
  font-size: 21px;
  color: var(--lime);
}
.text-link:hover {
  color: var(--lime);
}
.rival-visual {
  min-height: 535px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #191e28;
}
.arena-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #0a102250, #0a10225c),
    url("/warlordacademy/assets/arena.webp") center/cover;
  filter: saturate(0.6);
  opacity: 0.7;
}
.match-card {
  position: relative;
  width: 270px;
  padding: 28px;
  background: #101523ee;
  transform: rotate(-7deg);
  border: 1px solid #c5cdb740;
  box-shadow: 15px 25px 40px #0006;
}
.match-card .eyebrow {
  font-size: 8px;
  color: var(--lime);
}
.match-card strong {
  font-family: var(--display);
  font-size: 66px;
  line-height: 0.92;
  display: block;
  margin: 25px 0;
}
.heart-row {
  display: flex;
  gap: 12px;
  font-size: 28px;
  color: #f98168;
}
.match-card > p {
  font-size: 11px;
  color: #bac0cd;
  margin-top: 13px;
}
.card-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 15px;
  font-size: 7px;
  letter-spacing: 0.1em;
}
.card-bottom > span:last-child {
  font-size: 22px;
  color: var(--lime);
}
.visual-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.fair-section {
  background: #e77659;
  color: var(--ink);
  padding-block: 68px;
}
.fair-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: center;
}
.fair-section .eyebrow {
  font-size: 9px;
  margin-bottom: 18px;
}
.fair-section h2 {
  font-size: clamp(45px, 5.2vw, 70px);
}
.fair-section h2 span {
  color: #702f23;
}
.fair-copy {
  border-left: 1px solid #10152340;
  padding-left: 52px;
}
.fair-copy > p {
  font-size: 15px;
  max-width: 375px;
  line-height: 1.8;
}
.fair-section .text-link {
  border-color: #10152360;
  margin-top: 20px;
}
.fair-section .text-link span {
  color: var(--ink);
}
.fair-section .text-link:hover {
  color: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.faq-section .eyebrow {
  color: var(--lime);
  margin-bottom: 24px;
}
.faq-section h2 {
  font-size: 88px;
}
.faq-intro {
  font-size: 13px;
  color: #9da6b9;
  margin-top: 24px;
}
.faq-section .text-link {
  font-size: 11px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 30px;
}
summary {
  list-style: none;
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 23px;
  font-weight: 400;
  color: var(--lime);
  transition: transform 0.2s;
  flex: none;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > div {
  padding-bottom: 25px;
  max-width: 95%;
}
details p {
  color: #a9b2c4;
  font-size: 12px;
  line-height: 1.9;
}
details p + p {
  margin-top: 12px;
}
details a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--paper);
}
.enlist-section {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  padding-block: 80px;
}
.enlist-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.enlist-inner > .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 9px;
  margin-bottom: 24px;
}
.enlist-inner h2 {
  font-size: clamp(95px, 13vw, 170px);
  line-height: 0.83;
}
.enlist-inner h2 span {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.enlist-inner > p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 27px;
}
.button-dark {
  background: var(--ink);
  color: var(--lime);
  margin-top: 28px;
}
.button-dark:hover {
  background: #303c51;
}
.enlist-note {
  display: block;
  margin-top: 16px;
  font-size: 8px;
  letter-spacing: 0.08em;
}
.enlist-star {
  position: absolute;
  font-size: 700px;
  line-height: 1;
  bottom: -230px;
  right: -230px;
  color: #a7c64635;
  transform: rotate(-10deg);
  pointer-events: none;
}
footer {
  padding: 52px 0 24px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-bottom: 45px;
}
.footer-main > p {
  font-size: 11px;
  color: #a5adbc;
  line-height: 1.8;
}
.footer-main > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 11px;
}
.footer-main a:hover {
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 8px;
  color: #a5adbc;
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
}
.footer-bottom > a {
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--paper);
}
dialog {
  padding: 0;
  border: 1px solid #ffffff35;
  max-width: min(94vw, 650px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 20px 120px #0008;
}
dialog::backdrop {
  background: #030713e8;
  backdrop-filter: blur(9px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 24px;
}
.dialog-top h2 {
  font-size: 25px;
  line-height: 1;
}
.close-video {
  height: 40px;
  width: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 19px;
}
.close-video:hover {
  background: var(--lime);
  color: var(--ink);
}
dialog video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72dvh;
  background: #000;
}
dialog > p {
  font-size: 9px;
  color: #adb5c5;
  padding: 13px 20px;
}
.modal-open {
  overflow: hidden;
}
@keyframes arrival {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .hero-art {
    inset-inline-end: calc((100vw - 1550px) / 2);
  }
  .hero-knight {
    right: 0;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    min-height: 780px;
    padding-top: 158px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-art {
    left: 40%;
    right: -155px;
  }
  .hero-knight {
    width: 740px;
    bottom: -75px;
    right: -50px;
  }
  .hero-description {
    max-width: 350px;
    font-size: 13px;
  }
  .hero-bottom {
    margin-top: 61px;
  }
  .section-pad {
    padding-block: 85px;
  }
  .champion-feature {
    gap: 30px;
    padding: 35px;
  }
  .champion-copy h3 {
    font-size: 53px;
  }
  .champion-picker {
    gap: 6px;
  }
  .champion-picker button {
    padding: 10px 8px 15px;
  }
  .champion-picker button > span {
    font-size: 9px;
  }
  .champion-picker b {
    display: none;
  }
  .champion-picker img {
    width: 85px;
    height: 85px;
  }
  .rival-grid {
    gap: 45px;
  }
  .rival-visual {
    min-height: 510px;
  }
  .fair-grid {
    gap: 40px;
  }
  .fair-copy {
    padding-left: 35px;
  }
  .faq-grid {
    gap: 50px;
  }
  .section-intro {
    font-size: 12px;
  }
  .hero-orbit {
    left: 0;
  }
}
@media (max-width: 850px) {
  .nav-wrap {
    min-height: 80px;
    width: calc(100% - 40px);
  }
  #primary-nav {
    gap: 23px;
    font-size: 10px;
  }
  .brand {
    font-size: 24px;
  }
  .brand small {
    font-size: 14px;
  }
  .brand img {
    width: 31px;
  }
  .hero {
    padding-top: 138px;
    min-height: 750px;
  }
  .hero h1 {
    font-size: 75px;
  }
  .hero-art {
    left: 35%;
    right: -240px;
    opacity: 0.77;
  }
  .hero-knight {
    width: 680px;
    bottom: -80px;
  }
  .hero-description {
    max-width: 325px;
  }
  .hero-actions {
    gap: 18px;
  }
  .button {
    padding: 20px;
    gap: 24px;
    font-size: 12px;
  }
  .button-small {
    padding: 13px 16px;
    font-size: 10px;
    min-height: 42px;
  }
  .hero-bottom {
    margin-top: 66px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 30px;
  }
  .section-intro {
    max-width: 225px;
  }
  .strip-inner {
    min-height: 88px;
    gap: 13px;
  }
  .strip-inner strong {
    font-size: 42px;
  }
  .strip-inner p {
    font-size: 9px;
    gap: 10px;
  }
  .star {
    font-size: 25px;
  }
  .battle-window {
    height: 420px;
  }
  .how-to {
    gap: 22px;
  }
  .how-to article {
    display: block;
  }
  .step {
    display: block;
    margin-bottom: 14px;
  }
  .how-to h3 {
    font-size: 24px;
  }
  .how-to p {
    font-size: 11px;
  }
  .champion-feature {
    padding: 30px 24px;
    gap: 24px;
  }
  .champion-portrait {
    width: 220px;
    height: 250px;
    min-height: 0;
  }
  .champion-portrait img {
    width: 218px;
    height: 218px;
  }
  .portrait-ring {
    inset: 15px 0;
  }
  .champion-copy h3 {
    font-size: 46px;
  }
  .champion-copy > p:not(.eyebrow):not(.ability) {
    font-size: 12px;
  }
  .champion-picker {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .champion-picker button {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }
  .champion-picker img {
    width: 52px;
    height: 52px;
    margin: 0;
  }
  .champion-picker button > span {
    align-self: center;
    font-size: 9px;
  }
  .champion-picker button[aria-pressed="true"]::before {
    display: none;
  }
  .rival-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .rival-copy h2 {
    font-size: 72px;
  }
  .rival-visual {
    min-height: 460px;
  }
  .match-card {
    width: 225px;
    padding: 24px;
    transform: rotate(-5deg);
  }
  .match-card strong {
    font-size: 57px;
  }
  .rival-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .rival-copy .text-link {
    font-size: 10px;
    gap: 15px;
  }
  .fair-grid {
    gap: 30px;
  }
  .fair-copy {
    padding-left: 25px;
  }
  .fair-copy > p {
    font-size: 12px;
  }
  .faq-grid {
    gap: 35px;
    grid-template-columns: 0.8fr 1.3fr;
  }
  .faq-section h2 {
    font-size: 76px;
  }
  .faq-section .eyebrow {
    font-size: 9px;
  }
  .footer-main {
    gap: 20px;
  }
  .footer-main > p {
    font-size: 9px;
  }
  .footer-main > div {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 15px;
  }
  .footer-bottom nav {
    gap: 15px;
  }
  .order-label {
    font-size: 8px;
  }
  .order-banner p:not(.eyebrow) {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section-pad {
    padding-block: 65px;
  }
  .nav-wrap {
    min-height: 76px;
  }
  .brand {
    font-size: 23px;
    gap: 7px;
  }
  .brand small {
    font-size: 13px;
    letter-spacing: 0.27em;
  }
  .brand img {
    width: 30px;
    height: 34px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
  }
  .menu-toggle > span {
    font-size: 17px;
  }
  #primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #101523f7;
    backdrop-filter: blur(15px);
    padding: 23px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    display: none;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  #primary-nav.is-open {
    display: flex;
  }
  #primary-nav .button {
    margin-top: 8px;
    justify-content: space-between;
    font-size: 13px;
  }
  .hero {
    padding-top: 110px;
    min-height: 960px;
  }
  .hero-content {
    position: relative;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(43px, 13.8vw, 85px);
    max-width: 100%;
    line-height: 0.92;
    position: relative;
    z-index: 2;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.8;
    max-width: 310px;
    margin-top: 21px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 20px;
  }
  .button {
    min-height: 52px;
    padding: 18px 20px;
    font-size: 12px;
    gap: 25px;
  }
  .watch-link {
    font-size: 10px;
    gap: 8px;
  }
  .play-small {
    width: 29px;
    height: 29px;
    font-size: 8px;
  }
  .platform-note {
    font-size: 9px;
    margin-top: 14px;
  }
  .hero-art {
    top: 430px;
    bottom: 35px;
    left: -30px;
    right: -25px;
    opacity: 1;
  }
  .hero-knight {
    width: 520px;
    bottom: -54px;
    right: calc(50% - 265px);
  }
  .hero-orbit {
    width: 340px;
    height: 340px;
    top: 43px;
    left: calc(50% - 170px);
    box-shadow:
      0 0 0 35px #ffffff02,
      0 0 0 70px #ffffff02;
  }
  .hero-watermark {
    font-size: 400px;
    left: 0;
    top: 45px;
  }
  .art-tag {
    right: 36px;
    bottom: 54px;
    font-size: 7px;
    gap: 15px;
  }
  .hero-bottom {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
    background: #101523a8;
    backdrop-filter: blur(8px);
    font-size: 7px;
    padding: 19px 0;
    gap: 15px;
  }
  .hero-bottom a {
    gap: 10px;
  }
  .hero-bottom a span {
    font-size: 16px;
  }
  .strip-inner {
    min-height: 94px;
    gap: 9px;
  }
  .strip-inner p {
    display: block;
    font-size: 7px;
    text-align: center;
    letter-spacing: 0.01em;
    flex: 1;
  }
  .strip-inner strong {
    display: block;
    font-size: 38px;
    margin-bottom: 5px;
  }
  .star {
    font-size: 22px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 19px;
  }
  .section-heading h2 {
    font-size: 52px;
  }
  .section-intro {
    font-size: 12px;
    max-width: none;
    margin-top: 24px;
  }
  .section-intro br {
    display: none;
  }
  .battle-window {
    height: 385px;
  }
  .battle-window > img {
    object-position: center 54%;
  }
  .frame-top {
    top: 17px;
    left: 16px;
    right: 16px;
    font-size: 7px;
    gap: 6px;
  }
  .play-ring {
    width: 62px;
    height: 62px;
    left: calc(50% - 31px);
    top: 35%;
    font-size: 15px;
  }
  .battle-caption {
    left: 18px;
    right: 18px;
    bottom: 21px;
    display: block;
  }
  .battle-caption strong {
    font-size: 43px;
  }
  .battle-caption > span {
    font-size: 10px;
    margin-top: 13px;
    gap: 18px;
  }
  .media-note {
    text-align: left;
    font-size: 8px;
    margin-top: 10px;
  }
  .how-to {
    display: block;
    margin-top: 35px;
  }
  .how-to article {
    display: flex;
    gap: 23px;
    padding-block: 23px;
    border-bottom: 1px solid var(--line);
  }
  .how-to article:first-child {
    padding-top: 0;
  }
  .how-to article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .step {
    font-size: 25px;
    min-width: 21px;
  }
  .how-to h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .how-to p {
    font-size: 12px;
    line-height: 1.9;
  }
  .order-banner {
    gap: 15px;
    margin-top: 35px;
    padding-block: 25px;
  }
  .order-icon {
    font-size: 33px;
    align-self: flex-start;
  }
  .order-banner .eyebrow {
    font-size: 7px;
  }
  .order-banner p:not(.eyebrow) {
    font-size: 27px;
    line-height: 1.15;
  }
  .order-label {
    display: none;
  }
  .champions-section h2 {
    font-size: 49px;
  }
  .champion-feature {
    display: block;
    padding: 27px 25px;
  }
  .champion-portrait {
    width: 225px;
    height: 235px;
    min-height: 0;
    margin: 0 auto 30px;
  }
  .champion-portrait img {
    width: 225px;
    height: 225px;
  }
  .champion-copy h3 {
    font-size: 50px;
  }
  .champion-copy .eyebrow {
    font-size: 9px;
  }
  .champion-copy > p:not(.eyebrow):not(.ability) {
    font-size: 12px;
    min-height: 86px;
  }
  .ability {
    gap: 20px;
  }
  .ability > span {
    font-size: 7px;
  }
  .ability > strong {
    font-size: 11px;
  }
  .champion-picker {
    grid-template-columns: repeat(2, 1fr);
  }
  .champion-picker button {
    gap: 8px;
    padding: 10px 7px;
  }
  .champion-picker img {
    width: 45px;
    height: 45px;
  }
  .champion-picker button > span {
    font-size: 9px;
  }
  .champion-picker small {
    font-size: 6px;
  }
  .faction-line {
    gap: 7px;
    font-size: 7px;
    margin-top: 27px;
    line-height: 1.9;
  }
  .rival-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .rival-copy h2 {
    font-size: 80px;
  }
  .rival-copy .eyebrow {
    font-size: 8px;
  }
  .rival-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 440px;
    margin-top: 24px;
  }
  .rival-copy .text-link {
    font-size: 12px;
  }
  .rival-visual {
    min-height: 450px;
  }
  .match-card {
    width: 250px;
  }
  .match-card strong {
    font-size: 63px;
  }
  .fair-section {
    padding-block: 52px;
  }
  .fair-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fair-section h2 {
    font-size: 54px;
  }
  .fair-copy {
    padding: 0;
    border: 0;
  }
  .fair-copy > p {
    font-size: 13px;
    max-width: 400px;
  }
  .fair-section .text-link {
    font-size: 11px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-section h2 {
    font-size: 73px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section .eyebrow {
    font-size: 8px;
  }
  .faq-intro {
    margin-top: 18px;
  }
  .faq-section .text-link {
    margin-top: 13px;
  }
  .faq-section summary {
    font-size: 12px;
    padding-block: 23px;
    gap: 20px;
  }
  .faq-section details p {
    font-size: 12px;
  }
  .enlist-section {
    padding-block: 64px;
  }
  .enlist-inner > .eyebrow {
    font-size: 7px;
  }
  .enlist-inner h2 {
    font-size: clamp(75px, 20vw, 130px);
    line-height: 0.88;
  }
  .enlist-inner h2 span {
    -webkit-text-stroke: 1px var(--ink);
  }
  .enlist-inner > p {
    font-size: 12px;
    margin-top: 24px;
  }
  .enlist-note {
    font-size: 7px;
  }
  .enlist-star {
    font-size: 450px;
    right: -180px;
    bottom: -140px;
  }
  footer {
    padding: 40px 0 28px;
  }
  .footer-main {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
    gap: 26px;
  }
  .footer-main > p {
    font-size: 10px;
    max-width: 150px;
  }
  .footer-main > div {
    flex-basis: 100%;
    flex-direction: row;
    gap: 25px;
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    font-size: 8px;
    line-height: 1.6;
  }
  .footer-bottom > span {
    flex-basis: 100%;
  }
  .footer-bottom nav {
    gap: 20px;
  }
  .footer-bottom > a {
    font-size: 7px;
  }
  .dialog-top {
    padding: 10px 14px;
  }
  .dialog-top h2 {
    font-size: 23px;
  }
  dialog > p {
    font-size: 8px;
  }
}
@media (max-width: 370px) {
  .hero-actions {
    gap: 13px;
  }
  .button {
    padding-inline: 16px;
    gap: 20px;
  }
  .hero-description {
    font-size: 11px;
  }
  .hero {
    min-height: 935px;
  }
  .hero-art {
    top: 420px;
  }
  .hero-bottom > span {
    font-size: 6px;
  }
  .section-heading h2 {
    font-size: 47px;
  }
  .champion-picker button > span {
    font-size: 8px;
  }
  .champion-picker img {
    width: 39px;
    height: 39px;
  }
  .footer-bottom nav {
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 640px) {
  html:not(.js) .site-header {
    position: relative;
  }
  html:not(.js) .nav-wrap {
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 18px;
  }
  html:not(.js) #primary-nav {
    display: flex;
    position: static;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    background: none;
    border: 0;
    gap: 15px;
    font-size: 11px;
  }
  html:not(.js) #primary-nav .button {
    margin: 0;
  }
  html:not(.js) .hero {
    padding-top: 35px;
  }
}

.faq-grid > * {
  min-width: 0;
}
details p {
  overflow-wrap: anywhere;
}
@media (max-width: 370px) {
  .hero-actions > .button {
    flex-shrink: 0;
    gap: 16px;
    font-size: 11px;
    padding-inline: 14px;
  }
  .hero-actions .watch-link {
    font-size: 9px;
    gap: 6px;
  }
}
