:root {
  --paper:#100c09;
  --ink:#f1e4d0;
  --muted:#b5a48d;
  --rule:#463325;
  --red:#d0a05a;
  color-scheme:dark;
  --display:'Philosopher',Georgia,serif;
  --body:'Manrope',sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:2rem;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:500 16px/1.65 var(--body);
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
  cursor:pointer;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
h1,h2,h3,p,figure {
  margin:0;
}
h1,h2,h3 {
  font-family:var(--display);
  font-weight:700;
}
h2 {
  font-size:clamp(2.2rem,4.2vw,3.7rem);
  line-height:1.08;
  letter-spacing:-.035em;
}
h3 {
  font-size:1.65rem;
  line-height:1.2;
}
a,button {
  touch-action:manipulation;
}
a:focus-visible,button:focus-visible {
  outline:3px solid var(--red);
  outline-offset:6px;
}
a:hover {
  color:var(--red);
}
[hidden] {
  display:none!important;
}
.wrap {
  width:min(1280px,calc(100% - 112px));
  margin-inline:auto;
}
.skip {
  position:fixed;
  left:1rem;
  top:-6rem;
  z-index:50;
  background:var(--paper);
  padding:1rem;
}
.skip:focus {
  top:1rem;
}
.masthead {
  height:100px;
  display:flex;
  align-items:center;
  gap:3rem;
  border-bottom:1px solid var(--rule);
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.1em;
}
.brand img {
  border-radius:7px;
}
.masthead nav {
  display:flex;
  gap:2rem;
  margin-left:auto;
  font-size:13px;
}
.lang {
  display:flex;
  align-items:center;
  gap:7px;
  font-size:11px;
  color:var(--muted);
}
.lang button {
  background:none;
  border:0;
  padding:12px 4px;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
}
.lang button[aria-pressed=true] {
  color:var(--red);
  text-decoration:underline;
  text-underline-offset:5px;
}
.hero {
  display:grid;
  grid-template-columns:1fr 1.06fr;
  gap:clamp(2rem,5vw,5rem);
  padding-top:44px;
  padding-bottom:48px;
  align-items:center;
}
.eyebrow {
  color:var(--red);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:24px;
}
.hero h1 {
  font-size:clamp(4rem,7.7vw,7rem);
  line-height:.92;
  letter-spacing:-.055em;
  margin-left:-4px;
}
.hero-hook {
  font-family:var(--display);
  font-size:clamp(1.45rem,2.3vw,2rem);
  line-height:1.22;
  margin-top:30px;
}
.intro {
  max-width:440px;
  font-size:14px;
  line-height:1.85;
  color:var(--muted);
  margin-top:20px;
}
.stores {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.store {
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--ink);
  color:var(--paper);
  border:1px solid var(--ink);
  border-radius:5px;
  padding:10px 17px;
  min-width:175px;
  transition:background .2s,transform .2s;
}
.store:hover {
  background:var(--red);
  border-color:var(--red);
  color:var(--paper);
  transform:translateY(-2px);
}
.store svg {
  width:26px;
  height:30px;
  flex-shrink:0;
}
.store small {
  display:block;
  font-size:9px;
  line-height:1.5;
}
.store strong {
  display:block;
  font-size:18px;
  font-weight:600;
  line-height:1.4;
}
.platform-note {
  margin-top:12px;
  color:var(--muted);
  font-size:10px;
}
.hero-art {
  position:relative;
  height:610px;
  align-self:stretch;
  background:#211d1a;
  overflow:hidden;
}
.hero-art>img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:51% 50%;
}
.hero-art:after {
  content:'';
  position:absolute;
  inset:65% 0 0;
  background:linear-gradient(transparent,#171814cc);
  pointer-events:none;
}
.hero-art figcaption {
  position:absolute;
  bottom:25px;
  left:26px;
  right:26px;
  color:#eee8da;
  z-index:1;
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:11px;
}
.hero-art figcaption>span:first-child {
  letter-spacing:.15em;
}
.chapter-line {
  display:flex;
  align-items:center;
  gap:20px;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding-block:17px;
  font-size:10px;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.12em;
}
.chapter-line>span:last-child {
  margin-left:auto;
  color:var(--red);
}
.how {
  display:grid;
  grid-template-columns:1fr 1.06fr;
  gap:clamp(2rem,6vw,6rem);
  padding-block:100px;
}
.section-heading>p:last-child {
  max-width:390px;
  color:var(--muted);
  font-size:14px;
  margin-top:25px;
}
.steps {
  list-style:none;
  padding:0;
  margin:0;
}
.steps li {
  display:flex;
  gap:20px;
  padding:24px 0;
  border-bottom:1px solid var(--rule);
  align-items:flex-start;
}
.steps li:first-child {
  padding-top:0;
}
.steps li:last-child {
  border-bottom:0;
  padding-bottom:0;
}
.steps h3 {
  font-size:1.5rem;
  margin-bottom:10px;
}
.steps p {
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
}
.step-number {
  font-size:10px;
  color:var(--red);
  padding-top:6px;
}
.steps img {
  width:46px;
  height:46px;
  object-fit:contain;
  margin-left:auto;
}
.demo-section {
  background:#19120d;
  color:var(--ink);
  padding-block:66px 70px;
}
.demo-heading {
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:flex-end;
  margin-bottom:62px;
}
.demo-heading .eyebrow {
  color:#d4b788;
  margin-bottom:14px;
}
.demo-heading h2 {
  font-size:clamp(1.8rem,3.4vw,3rem);
}
.demo-heading>p {
  max-width:230px;
  color:var(--muted);
  font-size:13px;
}
.demo-stage {
  position:relative;
  aspect-ratio:16/9;
  background:#0d0906;
  border:1px solid var(--rule);
}
.demo-poster {
  width:100%;
  height:100%;
  object-fit:cover;
}
.demo-launch {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:#13181045;
}
.play {
  padding:17px 26px;
  background:var(--red);
  color:var(--paper);
  border:0;
  border-radius:3px;
  font-size:15px;
  font-weight:800;
  box-shadow:0 4px 25px #16191155;
}
.play:hover {
  background:#dfc497;
}
.play>span:last-child {
  margin-left:20px;
}
.demo-launch>p {
  background:#20231de8;
  padding:3px 10px;
  margin-top:12px;
  font-size:11px;
}
.live {
  position:absolute;
  inset:0;
  background:#100e0b;
}
.live iframe {
  transform-origin:top left;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.live-close {
  position:absolute;
  right:0;
  top:-52px;
  z-index:5;
  width:44px;
  height:44px;
  border:1px solid #b6a782;
  background:#272017;
  color:var(--ink);
  border-radius:50%;
}
.live-loading {
  position:absolute;
  bottom:12%;
  left:50%;
  transform:translateX(-50%);
  background:#272017;
  padding:10px 20px;
  text-align:center;
}
.after-fight {
  padding-top:24px;
}
.after-fight .store {
  border-color:#807c65;
}
.heroes {
  padding-block:100px;
}
.heroes .section-heading {
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:80px;
}
.heroes .eyebrow {
  grid-column:1/-1;
}
.heroes .section-heading>p:last-child {
  margin-top:0;
  align-self:end;
}
.hero-roster {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  margin-top:48px;
}
.portrait {
  background:#251a13;
  overflow:hidden;
  border-bottom:2px solid var(--red);
  aspect-ratio:1/1.12;
}
.portrait img {
  height:100%;
  width:100%;
  object-fit:contain;
  transition:transform .5s;
}
.hero-character:hover .portrait img {
  transform:scale(1.045);
}
.cleric .portrait {
  background:#242117;
  border-color:#888647;
}
.mage .portrait {
  background:#1a2025;
  border-color:#566d71;
}
.rogue .portrait {
  background:#1c2219;
  border-color:#657644;
}
.hero-character h3 {
  margin-top:20px;
}
.hero-character p {
  margin-top:10px;
  font-size:12px;
  line-height:1.75;
  color:var(--muted);
  max-width:235px;
}
.journey {
  display:grid;
  grid-template-columns:1.06fr 1fr;
  gap:70px;
  align-items:center;
  padding-bottom:100px;
}
.journey figure img {
  width:100%;
  height:475px;
  object-fit:cover;
  object-position:55%;
}
.journey figcaption {
  margin-top:12px;
  font-size:10px;
  color:var(--muted);
}
.journey h2 {
  font-size:clamp(2rem,3.5vw,3rem);
}
.journey h2+p,.journey-detail p {
  font-size:14px;
  color:var(--muted);
  margin-top:23px;
}
.journey-detail {
  border-top:1px solid var(--rule);
  padding-top:25px;
  margin-top:28px;
}
.journey-detail h3 {
  font-size:1.4rem;
}
.journey-detail p {
  margin-top:10px;
}
.download {
  background:#28150f;
  color:var(--ink);
  border-block:1px solid var(--rule);
  padding-block:65px 70px;
  text-align:center;
}
.download img {
  margin:0 auto 22px;
  width:58px;
  height:58px;
}
.download h2 {
  font-size:clamp(2.5rem,5.2vw,4.8rem);
}
.download p {
  margin-top:20px;
  font-size:14px;
  color:#f1dcc7;
}
.download .stores {
  justify-content:center;
}
.download .store {
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
  text-align:left;
}
.download .store:hover {
  background:#dfc497;
  border-color:#dfc497;
}
footer {
  padding-block:40px;
  display:flex;
  justify-content:space-between;
  gap:30px;
}
footer p {
  font-size:10px;
  color:var(--muted);
  margin-top:10px;
}
footer nav {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px 25px;
  font-size:11px;
}
@media(min-width:1550px) {
  .hero {
    padding-block:60px;
  }
  .hero-art {
    height:660px;
  }
}
@media(max-width:1050px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .hero {
    gap:30px;
  }
  .hero h1 {
    font-size:6.9vw;
  }
  .hero-art {
    height:580px;
  }
  .store {
    min-width:150px;
    padding:9px 12px;
    gap:8px;
  }
  .store strong {
    font-size:16px;
  }
  .hero .stores {
    gap:8px;
  }
  .journey {
    gap:36px;
  }
  .how {
    gap:40px;
  }
  .hero-roster {
    gap:18px;
  }
  .demo-heading>p {
    max-width:180px;
  }
}
@media(max-width:760px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .masthead {
    height:76px;
    gap:16px;
  }
  .masthead nav {
    display:none;
  }
  .brand {
    font-size:11px;
  }
  .lang {
    margin-left:auto;
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:34px;
    gap:30px;
    padding-bottom:25px;
  }
  .hero h1 {
    font-size:clamp(4.4rem,15vw,6.5rem);
  }
  .hero .eyebrow {
    font-size:9px;
    margin-bottom:22px;
  }
  .hero-hook {
    margin-top:23px;
    font-size:1.6rem;
  }
  .intro {
    font-size:13px;
    margin-top:16px;
    max-width:480px;
  }
  .hero .stores {
    margin-top:24px;
  }
  .hero-art {
    height:360px;
  }
  .hero-art>img {
    object-position:50% 51%;
  }
  .hero-art figcaption {
    left:18px;
    right:18px;
    bottom:18px;
  }
  .chapter-line {
    font-size:8px;
    gap:14px;
  }
  .how {
    grid-template-columns:1fr;
    padding-block:56px;
    gap:36px;
  }
  .eyebrow {
    font-size:9px;
    margin-bottom:18px;
  }
  .section-heading>p:last-child {
    font-size:13px;
    margin-top:20px;
  }
  .steps li {
    gap:14px;
  }
  .steps img {
    width:38px;
    height:38px;
  }
  .demo-section {
    padding-block:38px;
  }
  .demo-heading {
    display:block;
    margin-bottom:62px;
  }
  .demo-heading>p {
    max-width:none;
    margin-top:14px;
    font-size:12px;
  }
  .demo-stage {
    aspect-ratio:16/9;
  }
  .play {
    font-size:13px;
    padding:14px 20px;
  }
  .demo-launch>p {
    font-size:10px;
  }
  .heroes {
    padding-block:56px;
  }
  .heroes .section-heading {
    display:block;
  }
  .heroes .section-heading>p:last-child {
    margin-top:20px;
  }
  .hero-roster {
    grid-template-columns:repeat(2,1fr);
    gap:30px 16px;
    margin-top:30px;
  }
  .hero-character h3 {
    font-size:1.4rem;
    margin-top:14px;
  }
  .hero-character p {
    font-size:11px;
  }
  .journey {
    grid-template-columns:1fr;
    gap:30px;
    padding-bottom:56px;
  }
  .journey figure img {
    height:310px;
  }
  .journey>div {
    grid-row:1;
  }
  .journey h2+p,.journey-detail p {
    font-size:13px;
  }
  .download {
    padding-block:45px;
  }
  .download p {
    font-size:12px;
    max-width:260px;
    margin-inline:auto;
  }
  .store {
    min-width:145px;
  }
  .store strong {
    font-size:15px;
  }
  footer {
    display:block;
    padding-block:30px;
  }
  footer nav {
    margin-top:25px;
    gap:14px 20px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }
}
