:root {
  --bg: #070912;
  --bg-soft: #0c101d;
  --surface: #111625;
  --surface-2: #171427;
  --surface-3: #1c1735;
  --ink: #fff8e8;
  --ink-soft: #e8dcc4;
  --muted: #c7b897;
  --gold: #f3c354;
  --gold-deep: #b77824;
  --red: #94292c;
  --red-deep: #57151a;
  --plum: #33205f;
  --green: #173a31;
  --cyan: #4ab6c8;
  --border: #7b5633;
  --border-soft: rgba(243, 195, 84, 0.22);
  --paper: #dac397;
  --paper-dark: #9c6c3d;
  --paper-ink: #2a170a;
  --wood: #4c2d19;
  --wood-deep: #21130c;
  --shadow: rgba(0, 0, 0, 0.48);
  --container: 1180px;
  --wide-frame: 1320px;
  --section-pad: clamp(18px, 5vw, 72px);
  --header-h: 74px;
  --font-display: "DotGothic16", "Noto Sans JP", system-ui, sans-serif;
  --font-pixel: "Press Start 2P", "Noto Sans JP", system-ui, sans-serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  background: #05070d;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.9;
  background:
    linear-gradient(180deg, rgba(51, 32, 95, 0.26) 0, transparent 360px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #070912 0%, #090c16 44%, #05070d 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(243, 195, 84, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 195, 84, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: 3.8rem;
  line-height: 1.22;
  text-shadow:
    4px 4px 0 #000,
    0 0 28px rgba(0, 0, 0, 0.9);
}

h1 span,
h2 span {
  color: var(--gold);
}

h1 span {
  display: block;
  color: var(--gold);
  text-shadow:
    4px 4px 0 #000,
    0 0 20px rgba(243, 195, 84, 0.32);
}

.mobile-break {
  display: none;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.3rem;
  line-height: 1.46;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.55;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
}

.scroll-gauge {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #ff8f32);
  box-shadow: 0 0 18px rgba(243, 195, 84, 0.84);
}

.has-start-gate body:not(.is-gate-done) {
  overflow: hidden;
}

.has-start-gate body:not(.is-gate-done) .scroll-gauge,
.has-start-gate body:not(.is-gate-done) .site-header,
.has-start-gate body:not(.is-gate-done) main,
.has-start-gate body:not(.is-gate-done) .site-footer,
.has-start-gate body:not(.is-gate-done) .mobile-cta,
.has-start-gate body:not(.is-gate-done) .guild-master {
  visibility: hidden;
}

.start-gate {
  display: none;
}

.has-start-gate .start-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(1, 2, 8, 0.3), rgba(1, 2, 8, 0.42)),
    url("assets/dododo-guild-start-gate.jpg") center / cover no-repeat,
    #010208;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease),
    visibility 620ms steps(1);
}

.has-start-gate body.is-gate-done .start-gate {
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
}

.start-gate::before,
.start-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.start-gate::before {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(1, 2, 8, 0.28) 48%, rgba(1, 2, 8, 0.34) 52%, transparent 58% 100%),
    radial-gradient(circle at 50% 54%, transparent 0 26%, rgba(1, 2, 8, 0.1) 52%, rgba(1, 2, 8, 0.18) 100%);
  opacity: 0.8;
}

.start-gate::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(1, 2, 8, 0.04), rgba(1, 2, 8, 0.14));
  opacity: 1;
}

.start-gate__panel {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(560px, 100%);
  padding: clamp(34px, 7vw, 64px) clamp(22px, 6vw, 52px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(12, 16, 29, 0.62), rgba(3, 5, 12, 0.78));
  border: 0;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(243, 195, 84, 0.38),
    inset 0 -1px 0 rgba(243, 195, 84, 0.26),
    0 28px 80px rgba(0, 0, 0, 0.56),
    0 0 70px rgba(243, 195, 84, 0.08);
  animation: gate-panel-in 900ms var(--ease) both;
  transition:
    transform 420ms var(--ease),
    box-shadow 420ms var(--ease),
    background 420ms var(--ease);
}

.start-gate.is-loading .start-gate__panel {
  transform: none;
  background:
    linear-gradient(180deg, rgba(12, 16, 29, 0.66), rgba(3, 5, 12, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(243, 195, 84, 0.46),
    inset 0 -1px 0 rgba(243, 195, 84, 0.28),
    0 32px 86px rgba(0, 0, 0, 0.58),
    0 0 88px rgba(243, 195, 84, 0.14);
}

.start-gate__panel::before,
.start-gate__panel::after {
  content: "";
  position: absolute;
  right: 42px;
  left: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 195, 84, 0.82), transparent);
  opacity: 0.86;
  pointer-events: none;
}

.start-gate__panel::before {
  top: 22px;
}

.start-gate__panel::after {
  bottom: 22px;
}

.start-gate__crest {
  position: relative;
  display: block;
  width: clamp(58px, 12vw, 82px);
  height: clamp(58px, 12vw, 82px);
  margin: 0 auto 16px;
  background: url("assets/dododo-guild-brand-icon-transparent.png") center / contain no-repeat;
  filter:
    drop-shadow(0 5px 0 rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 24px rgba(243, 195, 84, 0.22));
}

.start-gate__crest::before,
.start-gate__crest::after {
  display: none;
}

.start-gate__crest::before {
  inset: -14px;
  border: 1px solid rgba(243, 195, 84, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(243, 195, 84, 0.08);
  animation: gate-rune-spin 9s linear infinite;
}

.start-gate__crest::after {
  inset: -24px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(243, 195, 84, 0.58) 19% 21%, transparent 22% 48%, rgba(243, 195, 84, 0.36) 49% 51%, transparent 52% 100%);
  mask: radial-gradient(circle, transparent 0 62%, #000 63% 66%, transparent 67%);
  -webkit-mask: radial-gradient(circle, transparent 0 62%, #000 63% 66%, transparent 67%);
  opacity: 0.72;
  animation: gate-rune-spin 14s linear reverse infinite;
}

.start-gate__eyebrow,
.start-gate__loading-text,
.start-gate__tip {
  font-family: var(--font-pixel);
}

.start-gate__eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.68rem;
  line-height: 1.6;
  text-shadow: 0 2px 0 #000;
}

.start-gate h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-pixel);
  font-size: 1.9rem;
  line-height: 1.65;
  text-shadow:
    3px 3px 0 #000,
    0 0 30px rgba(243, 195, 84, 0.18);
}

.start-gate__text {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-weight: 900;
  line-height: 1.9;
}

.start-gate__button {
  position: relative;
  isolation: isolate;
  grid-area: 5 / 1;
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  min-width: min(240px, 100%);
  min-height: 56px;
  padding: 13px 26px;
  overflow: hidden;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.78rem;
  line-height: 1;
  background:
    linear-gradient(180deg, rgba(174, 43, 43, 0.94), rgba(77, 17, 24, 0.94)),
    var(--red);
  border: 1px solid rgba(243, 195, 84, 0.88);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.42),
    inset 0 0 22px rgba(243, 195, 84, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(243, 195, 84, 0.1);
  cursor: pointer;
  transition:
    opacity 180ms var(--ease),
    visibility 180ms steps(1, end),
    transform 220ms var(--ease),
    filter 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.start-gate__button::before {
  display: none;
}

.start-gate__button:hover,
.start-gate__button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.4),
    inset 0 0 26px rgba(243, 195, 84, 0.16),
    0 20px 40px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(243, 195, 84, 0.2);
}

.start-gate__button:focus {
  outline: none;
}

.start-gate__button:focus-visible {
  outline: 2px solid rgba(243, 195, 84, 0.9);
  outline-offset: 6px;
}

.start-gate__button:active {
  transform: translateY(1px);
}

.start-gate__loading {
  grid-area: 5 / 1;
  display: grid;
  gap: 16px;
  justify-items: stretch;
  align-self: center;
  width: min(360px, 100%);
  min-height: 92px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms var(--ease),
    visibility 220ms steps(1, end);
}

.start-gate.is-loading .start-gate__button {
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
}

.start-gate.is-loading .start-gate__crest {
  filter:
    drop-shadow(0 5px 0 rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 34px rgba(243, 195, 84, 0.34));
}

.start-gate.is-loading .start-gate__loading {
  opacity: 1;
  visibility: visible;
}

.start-gate__loading-text {
  display: block;
  min-height: 1.7em;
  color: var(--gold);
  font-size: 0.72rem;
  line-height: 1.7;
  white-space: nowrap;
  text-shadow: 0 2px 0 #000;
}

.start-gate__bar {
  position: relative;
  display: block;
  width: min(340px, 100%);
  height: 3px;
  margin: 4px auto 0;
  padding: 0;
  overflow: hidden;
  background: rgba(243, 195, 84, 0.15);
  border: 0;
  box-shadow: 0 0 0 1px rgba(243, 195, 84, 0.12);
}

.start-gate__bar span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background:
    linear-gradient(90deg, transparent, var(--gold), #fff3c6);
  box-shadow: 0 0 22px rgba(243, 195, 84, 0.58);
  transition: width 520ms steps(8, end);
}

.start-gate__tip {
  display: block;
  min-height: 1.8em;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.8;
  white-space: nowrap;
}

.pixel-transition {
  display: none;
}

.has-start-gate .pixel-transition {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: repeat(var(--pixel-cols, 24), 1fr);
  grid-template-rows: repeat(var(--pixel-rows, 14), 1fr);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background: transparent;
  pointer-events: none;
}

.pixel-transition__cell {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 195, 84, 0.05), transparent 58%),
    linear-gradient(180deg, rgba(2, 4, 10, 0.99), rgba(7, 9, 18, 0.98));
  box-shadow: inset 0 0 0 1px rgba(243, 195, 84, 0.02);
  transform: scale(1);
  transform-origin: center;
}

.pixel-transition__cell:nth-child(4n) {
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 195, 84, 0.11), transparent 54%),
    linear-gradient(180deg, rgba(3, 5, 13, 0.98), rgba(8, 10, 19, 0.95));
}

.pixel-transition__cell:nth-child(7n) {
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 92, 198, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(1, 2, 8, 0.99), rgba(5, 7, 14, 0.97));
}

body.is-pixel-transitioning .pixel-transition {
  visibility: visible;
  opacity: 1;
}

body.is-pixel-transitioning .pixel-transition__cell {
  animation: pixel-cell-materialize 540ms steps(7, end) var(--delay, 0ms) both;
}

body.is-pixel-done .pixel-transition {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 380ms var(--ease),
    visibility 0ms linear 380ms;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: var(--header-h);
  padding: 9px clamp(18px, 4vw, 54px);
  background:
    linear-gradient(180deg, rgba(7, 9, 18, 0.92), rgba(7, 9, 18, 0.72)),
    rgba(7, 9, 18, 0.78);
  border-bottom: 1px solid rgba(123, 86, 51, 0.55);
  backdrop-filter: blur(14px);
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  right: clamp(18px, 4vw, 54px);
  bottom: -1px;
  left: clamp(18px, 4vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 195, 84, 0.68), transparent);
}

.site-header::after {
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(243, 195, 84, 0.92) 0 18px, transparent 18px 30px);
  opacity: 0.62;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 18, 0.92);
  border-bottom-color: rgba(243, 195, 84, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  text-decoration: none;
}

.brand__crest {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  background: url("assets/dododo-guild-brand-icon-transparent.png") center / contain no-repeat;
  filter:
    drop-shadow(0 2px 0 #000)
    drop-shadow(0 0 14px rgba(243, 195, 84, 0.2));
}

.brand__crest::before,
.brand__crest::after {
  content: "";
  position: absolute;
  display: none;
}

.brand__crest::before {
  left: 18px;
  top: 13px;
  width: 4px;
  height: 24px;
}

.brand__crest::after {
  left: 9px;
  top: 24px;
  width: 22px;
  height: 4px;
  transform: rotate(-24deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.36);
}

.brand__text {
  display: block;
  min-width: 0;
}

.brand__name {
  display: block;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  line-height: 1.45;
  text-shadow: 0 3px 0 #000;
}

.brand__tag {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  justify-self: center;
  padding: 8px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms steps(3), filter 160ms steps(3);
}

.site-nav a {
  color: var(--gold);
  text-shadow: 0 2px 0 #000;
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 2px 0 #000)
    drop-shadow(0 0 8px rgba(243, 195, 84, 0.2));
}

.nav-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 160ms steps(3);
}

.site-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover {
  color: var(--ink);
  filter: brightness(1.08);
}

.site-nav a[aria-current] {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 10px 16px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  border: 3px solid var(--gold);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.44),
    0 10px 0 rgba(0, 0, 0, 0.34),
    0 0 22px rgba(243, 195, 84, 0.14);
  transition: transform 150ms steps(2), filter 150ms steps(2), box-shadow 150ms steps(2);
}

.header-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.44),
    0 13px 0 rgba(0, 0, 0, 0.38),
    0 0 28px rgba(243, 195, 84, 0.22);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(860px, calc(100svh - 18px));
  padding: calc(var(--header-h) + 54px) clamp(18px, 5vw, 64px) 26px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.98) 0%, rgba(7, 9, 18, 0.9) 33%, rgba(7, 9, 18, 0.4) 58%, rgba(7, 9, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 9, 18, 0.5) 0%, rgba(7, 9, 18, 0.02) 38%, rgba(7, 9, 18, 0.92) 100%);
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #080b12;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(243, 195, 84, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 195, 84, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(243, 195, 84, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 195, 84, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(243, 195, 84, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(1, 2, 8, 0.98), rgba(1, 2, 8, 0.92));
  background-size: 44px 44px, 44px 44px, auto, auto;
  pointer-events: none;
}

body.is-gate-done:not(.is-pixel-done) .hero__media::before {
  opacity: 0;
  animation: none;
}

body.is-gate-done:not(.is-pixel-done) .hero__media img {
  animation: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.06) brightness(0.9);
}

.hero__embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__content {
  width: min(680px, 100%);
  margin: 0 auto 0 0;
  padding-bottom: 18px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.66rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 34em;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
}

.hero__body {
  max-width: 42em;
  color: var(--ink-soft);
  font-weight: 700;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.hero__body--second {
  margin-top: 10px;
}

.hero__guild-name {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  line-height: 1.8;
  text-shadow: 0 3px 0 #000;
}

.hero__guild-name span {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.hero__note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.rpg-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  max-width: 100%;
  padding: 13px 21px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: inherit;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  background: rgba(17, 22, 37, 0.86);
  border: 3px solid var(--border);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.42), 0 10px 0 rgba(0, 0, 0, 0.42);
  transition: transform 150ms steps(2), border-color 150ms steps(2), box-shadow 150ms steps(2);
}

button.rpg-button {
  cursor: default;
}

button.rpg-button[aria-disabled="true"]:hover {
  transform: none;
}

.rpg-button::after {
  content: ">";
  color: currentColor;
  font-family: var(--font-pixel);
  font-size: 1rem;
}

.rpg-button__label {
  min-width: 0;
}

.rpg-button__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  color: #13080a;
  font-size: 0.78em;
  line-height: 1.1;
  white-space: nowrap;
  background: var(--gold);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.42);
}

.rpg-button:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.38),
    0 14px 0 rgba(0, 0, 0, 0.46),
    0 0 26px rgba(243, 195, 84, 0.14);
}

.rpg-button:active,
.header-cta:active {
  transform: translateY(1px);
}

.rpg-button--primary {
  color: var(--gold);
  background: linear-gradient(180deg, #a62e31, var(--red-deep));
  border-color: var(--gold);
}

.rpg-button--quiet {
  background: rgba(23, 20, 39, 0.78);
}

.rpg-button--large {
  min-height: 66px;
  padding-inline: 34px;
}

.hero__status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(940px, 100%);
  margin: 18px auto 0;
}

.hero__status a {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 14px;
  min-height: 150px;
  padding: 18px 18px 16px;
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(17, 22, 37, 0.92), rgba(7, 9, 18, 0.9)),
    var(--surface);
  border: 3px solid rgba(123, 86, 51, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(243, 195, 84, 0.16),
    0 10px 0 rgba(0, 0, 0, 0.34),
    0 0 22px rgba(243, 195, 84, 0.08);
  transition: transform 160ms steps(2), border-color 160ms steps(2), filter 160ms steps(2);
}

.hero__status a::before,
.hero__status a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(243, 195, 84, 0.66);
  pointer-events: none;
}

.hero__status a::before {
  top: 8px;
  left: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero__status a::after {
  right: 8px;
  bottom: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero__status a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  filter: brightness(1.06);
}

.hero__status-icon {
  grid-row: span 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  filter:
    drop-shadow(0 3px 0 #000)
    drop-shadow(0 0 12px rgba(243, 195, 84, 0.2));
}

.hero__status-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__status-label {
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  line-height: 1.4;
  text-shadow: 0 2px 0 #000;
}

.hero__status strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero__status p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.58;
}

.section {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 12px);
  padding: clamp(76px, 10vw, 130px) var(--section-pad);
  border-top: 1px solid rgba(123, 86, 51, 0.46);
}

.final-cta[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section__header {
  width: min(880px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section__header > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section__header > p:not(.eyebrow) + p {
  margin-top: 16px;
}

.intro-statement {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) var(--section-pad);
  background:
    linear-gradient(180deg, rgba(51, 32, 95, 0.18), rgba(7, 9, 18, 0.92)),
    repeating-linear-gradient(90deg, rgba(243, 195, 84, 0.08) 0 2px, transparent 2px 48px);
}

.intro-statement__art {
  position: relative;
  grid-area: 1 / 1;
  width: min(var(--wide-frame), 100%);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #070912;
  border: 4px solid rgba(123, 86, 51, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(243, 195, 84, 0.18),
    0 26px 60px rgba(0, 0, 0, 0.34);
}

.intro-statement__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.9) 0%, rgba(7, 9, 18, 0.66) 25%, rgba(7, 9, 18, 0.16) 58%, rgba(7, 9, 18, 0.02) 100%),
    linear-gradient(180deg, rgba(7, 9, 18, 0.03), rgba(7, 9, 18, 0.22));
  pointer-events: none;
}

.intro-statement__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.intro-statement__inner {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  align-self: stretch;
  justify-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--wide-frame), 100%);
  margin-left: 0;
  padding: clamp(42px, 6vw, 88px);
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.intro-statement__inner::before {
  content: "";
  display: none;
}

.intro-statement__rule {
  display: block;
  width: min(360px, 64%);
  height: 3px;
  margin: 24px 0 28px;
  background: linear-gradient(90deg, var(--gold), rgba(243, 195, 84, 0.08));
  box-shadow: 0 0 16px rgba(243, 195, 84, 0.22);
}

.intro-statement h2 {
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.2rem, 3.2vw, 2.82rem);
  line-height: 1.34;
  text-shadow:
    4px 4px 0 #000,
    0 0 24px rgba(0, 0, 0, 0.64);
}

.intro-statement h2 span {
  color: var(--gold);
}

.intro-statement p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.9;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.78);
}

.intro-statement__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 14px;
  color: var(--gold) !important;
  font-size: 1.12rem !important;
}

.intro-statement__flow span {
  display: inline-block;
}

.problem {
  background:
    linear-gradient(180deg, rgba(23, 58, 49, 0.1), transparent 44%),
    rgba(7, 9, 18, 0.18);
}

.section-art {
  position: relative;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 4px solid var(--border);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.42),
    0 26px 60px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.section-art::before,
.section-art::after,
.mini-art::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-art::before {
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(243, 195, 84, 0.3);
}

.section-art::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.18), transparent 36%, rgba(7, 9, 18, 0.18)),
    linear-gradient(180deg, rgba(243, 195, 84, 0.07), transparent 30%, rgba(7, 9, 18, 0.2));
}

.section-art img,
.mini-art img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.06) brightness(1.02);
  transform: none;
}

.section-art--quest img {
  object-position: 50% 50%;
}

.section-art--quest {
  width: min(1320px, 100%);
  aspect-ratio: 2.15 / 1;
}

.section-art--quest::after {
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.08), transparent 32%, rgba(7, 9, 18, 0.06)),
    linear-gradient(180deg, rgba(243, 195, 84, 0.08), transparent 38%, rgba(7, 9, 18, 0.16));
}

.section-art--quest img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 70% 50%;
  transform: scale(1.12);
  transform-origin: 70% 50%;
  filter: saturate(1.08) contrast(1.07) brightness(1.08);
}

.section-art--community::after,
.section-art--pass::after {
  background:
    linear-gradient(180deg, rgba(243, 195, 84, 0.05), transparent 42%, rgba(7, 9, 18, 0.16));
}

.section-art--community,
.section-art--pass {
  aspect-ratio: 16 / 9;
}

.section-art--community img,
.section-art--pass img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.section-art--community img {
  object-position: 50% 50%;
  transform: none;
  transform-origin: center;
  filter: saturate(1.08) contrast(1.07) brightness(1.04);
}

.section-art--pass img {
  object-position: 50% 50%;
  transform: none;
  transform-origin: center;
  filter: saturate(1.08) contrast(1.07) brightness(1.04);
}

.section-art--field::after {
  background: linear-gradient(180deg, rgba(7, 9, 18, 0.02), rgba(7, 9, 18, 0.46));
}

.section-art--ranks {
  width: min(var(--wide-frame), 100%);
  aspect-ratio: 2.45 / 1;
}

.section-art--ranks::after {
  background: linear-gradient(180deg, rgba(243, 195, 84, 0.08), transparent 38%, rgba(7, 9, 18, 0.2));
}

.section-art--ranks img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 54%;
}

.quest-log {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.quest-log article,
.culture-card,
.rank-card,
.price-card,
.fit-card,
.benefit-item,
.faq details {
  position: relative;
  border: 3px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 20, 39, 0.94), rgba(8, 11, 20, 0.96));
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.44), 0 18px 40px rgba(0, 0, 0, 0.25);
}

.quest-log article::before,
.culture-card::before,
.rank-card::before,
.price-card::before,
.fit-card::before,
.benefit-item::before,
.faq details::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(243, 195, 84, 0.2);
  pointer-events: none;
}

.quest-log article {
  min-height: 330px;
  padding: 26px;
}

.quest-log span,
.rule-board span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.76rem;
}

.quest-log p,
.guild__copy p,
.culture-card p,
.rank-card p,
.rank-card strong,
.rule-board p,
.chain-board__copy p,
.chain-steps,
.fit-card li,
.benefit-item p,
.price-card li,
.fineprint,
.faq details p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.guild {
  display: grid;
  grid-template-columns: minmax(460px, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
  width: min(1460px, 100%);
  min-height: calc(100svh - var(--header-h));
  margin: 0 auto;
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(48px, 6vw, 78px);
  background: transparent;
}

.guild__visual {
  position: relative;
  align-self: stretch;
  min-height: clamp(500px, 62svh, 690px);
  overflow: hidden;
  border: 4px solid var(--border);
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.guild__visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(243, 195, 84, 0.28);
  pointer-events: none;
}

.guild__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 60% 50%;
  filter: saturate(1.06) contrast(1.07) brightness(1.04);
}

.guild__copy {
  max-width: 640px;
}

.guild h2 {
  margin-bottom: 12px;
  font-size: 2.32rem;
  line-height: 1.36;
}

.guild__copy > p:not(.eyebrow) {
  font-size: 0.98rem;
  line-height: 1.72;
}

.guild__copy p + p {
  margin-top: 18px;
}

.guild__ledger {
  display: grid;
  gap: 1px;
  margin-top: 20px;
  border: 1px solid var(--border-soft);
  background: var(--border-soft);
}

.guild__ledger div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 6px 16px;
  align-items: start;
  padding: 15px 16px;
  background: rgba(9, 12, 22, 0.84);
}

.guild__ledger span {
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.64rem;
  line-height: 1.8;
}

.guild__ledger strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.48;
}

.guild__ledger p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.68;
}

.culture {
  background:
    linear-gradient(180deg, rgba(51, 32, 95, 0.18), transparent 52%),
    rgba(7, 9, 18, 0.18);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto;
}

.culture-card {
  min-height: 252px;
  padding: 28px;
}

.culture-card--wide {
  grid-column: 1 / -1;
  min-height: 190px;
  background:
    linear-gradient(90deg, rgba(23, 58, 49, 0.88), rgba(23, 20, 39, 0.94)),
    var(--surface);
  border-color: rgba(74, 182, 200, 0.58);
}

.culture-card__number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 38px;
  margin-bottom: 20px;
  color: var(--bg);
  font-family: var(--font-pixel);
  background: var(--gold);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.paper-panel {
  position: relative;
  min-height: 420px;
  padding: 34px;
  color: var(--paper-ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 82%, rgba(70, 37, 13, 0.12)),
    var(--paper);
  border: 5px solid var(--paper-dark);
  box-shadow: 10px 16px 0 rgba(0, 0, 0, 0.26);
}

.paper-panel--gold {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 18%, transparent 82%, rgba(70, 37, 13, 0.12)),
    #e8cf8a;
}

.paper-panel__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--ink);
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  background: var(--red-deep);
}

.paper-panel--gold .paper-panel__label {
  color: var(--bg);
  background: var(--gold);
}

.paper-panel h3 {
  color: var(--paper-ink);
}

.paper-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.paper-panel li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.paper-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 9px;
  background: var(--paper-ink);
}

.roadmap {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 58, 49, 0.12), transparent 58%),
    rgba(7, 9, 18, 0.1);
}

.rank-ladder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  grid-auto-rows: 1fr;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto;
}

.rank-ladder::before {
  display: none;
}

.rank-card {
  z-index: 1;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 28px;
}

.rank-card__badge {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  min-width: 112px;
  min-height: 48px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  background: var(--plum);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.58);
}

.rank-card--active {
  border-color: #a578ff;
}

.rank-card--partner {
  border-color: #ef7b2a;
}

.rank-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.9rem;
  font-weight: 800;
  border-top: 1px solid rgba(243, 195, 84, 0.18);
}

.rank-card p + p {
  margin-top: 12px;
}

.rank-card strong span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.68rem;
  line-height: 1.6;
}

.quest {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(520px, 1.26fr);
  gap: 24px;
  align-items: stretch;
  width: min(calc(var(--wide-frame) + var(--section-pad) + var(--section-pad)), 100%);
  margin: 0 auto;
}

.quest__copy {
  align-self: center;
}

.quest__copy h2 {
  margin-bottom: 22px;
}

.quest__copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.quest__copy p + p {
  margin-top: 14px;
}

.mini-art {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--border);
  background: var(--surface);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.42), 0 18px 38px rgba(0, 0, 0, 0.24);
}

.mini-art::before {
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(243, 195, 84, 0.24);
}

.mini-art img {
  aspect-ratio: 16 / 9;
  object-position: 42% 48%;
}

.mini-art--quest {
  min-height: 430px;
}

.mini-art--quest img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 52% 50%;
  transform: scale(1.08);
}

.rule-board {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(243, 195, 84, 0.22);
  border: 4px solid var(--wood-deep);
  box-shadow: inset 0 0 0 3px var(--border), 0 22px 52px rgba(0, 0, 0, 0.32);
}

.rule-board article,
.rule-board__note {
  margin: 0;
  padding: 30px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #4a2b17, #27160c);
}

.rule-board h3 {
  font-size: 1.16rem;
}

.rule-board article p + p {
  margin-top: 14px;
}

.rule-board__note {
  grid-column: 1 / -1;
  color: var(--ink-soft) !important;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.9;
}

.reports {
  background:
    linear-gradient(180deg, rgba(51, 32, 95, 0.16), transparent 46%),
    rgba(7, 9, 18, 0.16);
}

.chain-board {
  display: grid;
  gap: 24px;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto;
}

.chain-board__visual,
.chain-board__copy {
  position: relative;
  border: 4px solid var(--border);
  background:
    linear-gradient(180deg, rgba(23, 20, 39, 0.94), rgba(8, 11, 20, 0.98)),
    var(--surface);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.44), 0 22px 54px rgba(0, 0, 0, 0.3);
}

.chain-board__visual::before,
.chain-board__copy::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(243, 195, 84, 0.22);
  pointer-events: none;
}

.chain-board__visual {
  min-height: auto;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.chain-board__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.08) contrast(1.08) brightness(1.03);
}

.chain-board__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.16), transparent 24%, rgba(7, 9, 18, 0.26)),
    linear-gradient(180deg, transparent 50%, rgba(5, 7, 13, 0.54));
  pointer-events: none;
}

.chain-board__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px 34px;
  align-items: center;
  min-height: auto;
  padding: clamp(28px, 3vw, 44px);
}

.chain-board__label {
  grid-column: 1;
  margin: 0 0 18px;
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.chain-board__copy h3 {
  grid-column: 1;
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.45;
}

.chain-steps {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.72;
}

.chain-steps li {
  position: relative;
  padding-left: 36px;
}

.chain-steps li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--gold);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.28);
  transform: rotate(45deg);
}

.chain-board__copy > p:last-child {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 195, 84, 0.2);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.9;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto;
}

.fit-card {
  min-height: 520px;
  padding: 30px;
}

.fit-card--good {
  border-color: rgba(74, 182, 200, 0.6);
}

.fit-card--not {
  border-color: rgba(183, 120, 36, 0.74);
}

.fit-list,
.price-card ul,
.price-card ol {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.price-card ul,
.price-card ol {
  padding-left: 1.2em;
}

.fit-list {
  padding-left: 0;
}

.fit-point {
  padding-top: 16px;
  border-top: 1px solid rgba(243, 195, 84, 0.16);
}

.fit-point h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

.fit-point p,
.fit-card__closing {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.82;
}

.fit-card__closing {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 182, 200, 0.24);
  color: var(--ink-soft);
}

.benefits {
  background:
    linear-gradient(180deg, rgba(23, 58, 49, 0.12), transparent 58%),
    rgba(7, 9, 18, 0.12);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto;
}

.benefit-item {
  min-height: 390px;
  padding: 28px;
}

.benefit-item--rules {
  grid-column: 1 / -1;
  min-height: auto;
}

.benefit-item__num {
  margin: 0 0 8px;
  color: var(--gold) !important;
  font-family: var(--font-pixel);
  font-size: 0.64rem;
}

.benefit-item h3 {
  font-size: 1.18rem;
}

.benefit-item p + p {
  margin-top: 14px;
}

.benefit-item ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.benefit-item li {
  padding: 10px 12px;
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.5;
  background: var(--gold);
  border: 2px solid var(--gold-deep);
}

.pricing {
  background:
    linear-gradient(180deg, rgba(148, 41, 44, 0.12), transparent 46%),
    rgba(7, 9, 18, 0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--wide-frame), 100%);
  margin: 0 auto;
}

.price-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 32px;
}

.price-card--main {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(33, 21, 36, 0.96), rgba(12, 14, 24, 0.98));
}

.price-card__label {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 12px;
  color: var(--bg);
  font-size: 0.84rem;
  font-weight: 900;
  background: var(--gold);
}

.price-card h3 {
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 1.58rem;
  font-weight: 400;
}

.price {
  margin: 10px 0 18px;
  color: var(--ink) !important;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.22;
}

.price span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 1rem;
}

.price-card .rpg-button {
  width: 100%;
  margin-top: auto;
}

.price-card__note {
  margin: 22px 0 0;
  color: var(--ink-soft) !important;
  font-weight: 800;
  line-height: 1.85;
}

.price-card__subnote {
  margin: 14px 0 0;
  padding-top: 14px;
  color: var(--muted) !important;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.7;
  border-top: 1px solid rgba(243, 195, 84, 0.2);
}

.pricing-message {
  position: relative;
  width: min(var(--wide-frame), 100%);
  margin: 24px auto 0;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(23, 20, 39, 0.92), rgba(8, 11, 20, 0.96)),
    var(--surface);
  border: 3px solid rgba(243, 195, 84, 0.38);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.44), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.pricing-message::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(243, 195, 84, 0.18);
  pointer-events: none;
}

.pricing-message h3 {
  color: var(--gold);
  font-size: 1.34rem;
}

.pricing-message p {
  color: var(--muted);
  font-weight: 800;
}

.pricing-message p + p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--gold);
  font-weight: 900;
  line-height: 1.7;
}

.faq details p {
  margin: 0;
  padding: 0 26px 24px;
}

.guardian {
  background:
    linear-gradient(180deg, rgba(51, 32, 95, 0.18), transparent 52%),
    rgba(7, 9, 18, 0.16);
}

.section-art--guardian {
  aspect-ratio: 16 / 9;
}

.section-art--guardian img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.terms-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 22px;
  width: min(var(--wide-frame), 100%);
  margin: 24px auto 0;
}

.terms-panel__rules,
.terms-panel__culture {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(23, 20, 39, 0.94), rgba(8, 11, 20, 0.98)),
    var(--surface);
  border: 3px solid var(--border);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.44), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.terms-panel__rules::before,
.terms-panel__culture::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(243, 195, 84, 0.2);
  pointer-events: none;
}

.terms-panel__rules ul {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.terms-panel__rules li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.75;
}

.terms-panel__rules li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}

.terms-panel p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.9;
}

.terms-panel p + p {
  margin-top: 14px;
}

.terms-panel__culture h3 {
  color: var(--gold);
  font-size: 1.34rem;
}

.final-cta {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(7, 9, 18, 0), rgba(7, 9, 18, 0.82)),
    repeating-linear-gradient(90deg, rgba(243, 195, 84, 0.08) 0 2px, transparent 2px 42px);
}

.final-cta__art {
  position: relative;
  grid-area: 1 / 1;
  width: min(var(--wide-frame), 100%);
  min-height: 650px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 4px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.final-cta__art::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(243, 195, 84, 0.25);
  pointer-events: none;
}

.final-cta__art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.86) 0%, rgba(7, 9, 18, 0.64) 34%, rgba(7, 9, 18, 0.2) 67%, rgba(7, 9, 18, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 9, 18, 0.02), rgba(7, 9, 18, 0.28));
  pointer-events: none;
}

.final-cta__art img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.final-cta__inner {
  position: relative;
  z-index: 4;
  grid-area: 1 / 1;
  align-self: stretch;
  justify-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--wide-frame), 100%);
  margin-left: 0;
  padding: clamp(44px, 6vw, 88px);
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.final-cta__inner .eyebrow,
.final-cta__inner h2 {
  text-align: left;
}

.final-cta__inner h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 2.12rem;
  line-height: 1.42;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.86);
}

.final-cta__copy {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin-bottom: 24px;
}

.final-cta p:not(.eyebrow),
.final-quest-list {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.76;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.78);
}

.final-cta__lead {
  color: var(--ink) !important;
  font-size: 1.04rem !important;
  line-height: 1.68 !important;
  text-align: left;
}

.final-quest-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.final-quest-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
}

.final-quest-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.final-flow {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 1.22rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-align: left;
}

.final-flow span {
  color: var(--ink);
}

.final-cta__closing {
  color: var(--ink) !important;
  text-align: left;
}

.final-cta__closing--last {
  color: var(--gold) !important;
}

.final-cta__copy strong {
  color: var(--gold);
}

.final-cta .rpg-button {
  width: min(470px, 100%);
  max-width: 560px;
}

.legal-body {
  min-height: 100svh;
  color: var(--paper-ink);
  background-color: #05070d;
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 86, 51, 0.22), transparent 360px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #070912 0%, #090c16 44%, #05070d 100%);
}

.legal-main {
  min-height: 100svh;
  padding: calc(var(--header-h) + 56px) var(--section-pad) 96px;
}

.legal-scroll {
  position: relative;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 64px) clamp(120px, 11vw, 160px);
  overflow: hidden;
  color: var(--paper-ink);
  background-color: #c7974f;
  background-image: url("assets/legal-parchment.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border: 0;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48);
  isolation: isolate;
}

.legal-scroll::before,
.legal-scroll::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.legal-scroll::before {
  inset: 16px;
  border: 1px solid rgba(76, 45, 25, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 232, 0.24),
    0 0 0 1px rgba(79, 42, 18, 0.12);
}

.legal-scroll::after {
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background: radial-gradient(circle at 50% 36%, transparent 0 44%, rgba(41, 20, 9, 0.16) 100%);
  mix-blend-mode: multiply;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: #4a2b16;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(74, 43, 22, 0.34);
}

.legal-back:hover {
  color: #7b1f20;
  border-color: currentColor;
}

.legal-kicker {
  margin-bottom: 14px;
  color: #7b1f20;
  font-family: var(--font-pixel);
  font-size: 0.64rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.legal-scroll h1,
.legal-scroll h2 {
  max-width: none;
  color: #231207;
  text-shadow: none;
}

.legal-scroll h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.35;
}

.legal-scroll h1::after {
  content: "";
  display: block;
  width: min(460px, 100%);
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, #7b1f20, rgba(76, 45, 25, 0.1));
}

.legal-lead {
  width: min(760px, 100%);
  margin-bottom: 34px;
  color: #4d2d18;
  font-weight: 800;
  line-height: 1.9;
}

.legal-table-wrap {
  position: relative;
  overflow-x: auto;
  background: rgba(70, 39, 15, 0.035);
  border: 2px solid rgba(76, 45, 25, 0.48);
  box-shadow:
    inset 0 0 28px rgba(70, 39, 15, 0.05),
    0 10px 24px rgba(73, 37, 11, 0.08);
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(76, 45, 25, 0.26);
}

.legal-table th {
  width: 230px;
  color: #301706;
  font-weight: 900;
  text-align: left;
  background: rgba(76, 45, 25, 0.075);
}

.legal-table td {
  color: #3c2412;
  font-weight: 700;
  line-height: 1.85;
}

.legal-table a,
.legal-important a {
  color: #7b1f20;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-important {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(70, 39, 15, 0.055), rgba(70, 39, 15, 0.025));
  border: 2px solid rgba(76, 45, 25, 0.44);
  box-shadow: inset 0 0 28px rgba(70, 39, 15, 0.08);
}

.legal-important h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3.6vw, 2.1rem);
}

.legal-important p,
.legal-important li {
  color: #3c2412;
  font-weight: 800;
  line-height: 1.9;
}

.legal-important ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 1.4em;
}

.wax-seal {
  position: absolute;
  right: clamp(22px, 6vw, 76px);
  bottom: clamp(22px, 4vw, 54px);
  width: clamp(78px, 10vw, 112px);
  height: auto;
  filter: drop-shadow(0 14px 14px rgba(53, 24, 8, 0.32));
  transform: rotate(-9deg);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px clamp(18px, 5vw, 72px);
  background: #05070d;
  border-top: 1px solid rgba(123, 86, 51, 0.52);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.mobile-cta {
  display: none;
}

.guild-master {
  position: fixed;
  right: clamp(14px, 2.2vw, 28px);
  bottom: 20px;
  z-index: 116;
  width: min(168px, 17vw);
  pointer-events: none;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), width 180ms var(--ease);
}

.guild-master__stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.guild-master__avatar,
.guild-master__walker {
  position: relative;
  z-index: 2;
  width: 100%;
  image-rendering: auto;
  filter:
    drop-shadow(0 9px 0 rgba(0, 0, 0, 0.22))
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
  transform-origin: 50% 100%;
  transition: transform 180ms var(--ease), filter 180ms var(--ease);
}

.guild-master__avatar {
  height: auto;
}

.guild-master__walker {
  display: none;
  aspect-ratio: 483.25 / 814;
  background: url("assets/guild-master-walk-strip.png") 0 0 / 400% 100% no-repeat;
}

.guild-master__shadow {
  position: absolute;
  right: 16%;
  bottom: 1%;
  left: 18%;
  z-index: 1;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.44), transparent 72%);
  transform-origin: center;
}

.guild-master__bubble {
  position: absolute;
  right: min(100%, 158px);
  bottom: 64%;
  width: 250px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.65;
  background:
    linear-gradient(180deg, rgba(23, 20, 39, 0.96), rgba(8, 11, 20, 0.96)),
    var(--surface);
  border: 3px solid var(--gold);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.46),
    0 14px 34px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.guild-master__bubble::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  background: inherit;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(45deg);
}

.guild-master.is-idle .guild-master__avatar {
  animation: guide-idle 2.6s var(--ease) infinite;
}

.guild-master.is-idle .guild-master__bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.guild-master.is-walking .guild-master__avatar {
  display: none;
}

.guild-master.is-walking .guild-master__walker {
  display: block;
  animation:
    guide-walk-sprite 680ms linear infinite,
    guide-walk-bob 680ms var(--ease) infinite;
}

.guild-master.is-walking .guild-master__shadow {
  animation: guide-shadow 680ms steps(4) infinite;
}

.guild-master.is-hidden-mobile {
  opacity: 0;
  transform: translateY(18px);
}

.guild-master.is-minimized {
  width: 68px;
  opacity: 0;
  transform: translateY(18px);
}

.guild-master.is-minimized .guild-master__bubble {
  opacity: 0;
  transform: translateY(8px) scale(0.94);
}

.guild-master.is-final-mobile {
  bottom: 144px;
  width: 64px;
}

@media (min-width: 901px) {
  .guild-master {
    right: clamp(10px, 1.4vw, 20px);
    width: min(136px, 9.5vw);
  }

  .guild-master__bubble {
    right: 0;
    bottom: calc(100% + 8px);
    width: 232px;
    font-size: 0.82rem;
  }

  .guild-master__bubble::after {
    right: 34px;
    bottom: -12px;
    transform: rotate(135deg);
  }
}

.ui-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: currentColor;
}

.benefit-item .ui-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--gold);
}

.ui-icon::before,
.ui-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.ui-icon--sword::before {
  inset: 0;
  background: url("assets/cta-sword.svg") center / contain no-repeat;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.56));
}

.ui-icon--sword::after {
  display: none;
}

.ui-icon--chest::before {
  left: 2px;
  bottom: 5px;
  width: 28px;
  height: 20px;
  border: 4px solid currentColor;
  background: transparent;
}

.ui-icon--chest::after {
  left: 13px;
  top: 15px;
  width: 7px;
  height: 7px;
}

.ui-icon--book::before {
  left: 4px;
  top: 7px;
  width: 32px;
  height: 27px;
  border: 4px solid currentColor;
  background: transparent;
}

.ui-icon--book::after {
  left: 20px;
  top: 7px;
  width: 3px;
  height: 27px;
}

.ui-icon--flag::before {
  left: 5px;
  top: 5px;
  width: 4px;
  height: 31px;
}

.ui-icon--flag::after {
  left: 9px;
  top: 5px;
  width: 25px;
  height: 18px;
  clip-path: polygon(0 0, 100% 0, 80% 50%, 100% 100%, 0 100%);
}

.ui-icon--shield::before {
  inset: 2px 7px;
  clip-path: polygon(50% 0, 100% 14%, 100% 66%, 50% 100%, 0 66%, 0 14%);
}

.ui-icon--shield::after {
  left: 19px;
  top: 10px;
  width: 3px;
  height: 21px;
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:where(
  .quest-log article,
  .culture-card,
  .paper-panel,
  .rank-card,
  .rule-board article,
  .chain-board__copy,
  .fit-card,
  .benefit-item,
  .price-card,
  .pricing-message,
  .faq details,
  .terms-panel__rules,
  .terms-panel__culture
).reveal {
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
}

:where(
  .quest-log article,
  .culture-card,
  .paper-panel,
  .rank-card,
  .rule-board article,
  .chain-board__copy,
  .fit-card,
  .benefit-item,
  .price-card,
  .pricing-message,
  .faq details,
  .terms-panel__rules,
  .terms-panel__culture
).reveal.is-visible {
  transform: none;
}

:where(
  .quest-log,
  .culture-grid,
  .before-after,
  .rank-ladder,
  .rule-board,
  .fit-grid,
  .benefit-row,
  .pricing-grid,
  .faq-list
) > .reveal:nth-child(2) {
  --delay: 70ms;
}

:where(
  .quest-log,
  .culture-grid,
  .before-after,
  .rank-ladder,
  .rule-board,
  .fit-grid,
  .benefit-row,
  .pricing-grid,
  .faq-list
) > .reveal:nth-child(3) {
  --delay: 140ms;
}

:where(
  .quest-log,
  .culture-grid,
  .rank-ladder,
  .benefit-row,
  .faq-list
) > .reveal:nth-child(4) {
  --delay: 210ms;
}

@media (hover: hover) and (pointer: fine) {
  :where(.quest-log article, .culture-card, .rank-card, .fit-card, .benefit-item, .price-card, .faq details).is-visible:hover {
    border-color: rgba(243, 195, 84, 0.78);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.44), 0 24px 52px rgba(0, 0, 0, 0.34);
    transform: translateY(-4px);
  }
}

.ember {
  position: absolute;
  bottom: 18%;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(243, 195, 84, 0.8);
  opacity: 0;
  animation: ember-rise var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes ember-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  14% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), -68vh, 0);
  }
}

@keyframes gate-scan {
  0% {
    opacity: 0.12;
    transform: translate3d(-5%, 0, 0) scaleX(0.94);
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.12;
    transform: translate3d(5%, 0, 0) scaleX(1);
  }
}

@keyframes gate-core-pulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleY(0.9);
  }
  50% {
    opacity: 0.68;
    transform: scaleY(1);
  }
}

@keyframes gate-spark-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.7);
  }
  14% {
    opacity: 0.9;
  }
  76% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -54px, 0) scale(1.15);
  }
}

@keyframes gate-rune-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gate-button-sheen {
  0%,
  42% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  54% {
    opacity: 0.54;
  }
  72%,
  100% {
    transform: translateX(620%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes pixel-cell-materialize {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  24% {
    opacity: 1;
    transform: scale(1.005);
  }
  68% {
    opacity: 0.24;
    transform: scale(0.96);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes gate-panel-in {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes gate-crest-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes gate-gold-line {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes hero-pixel-unveil {
  0% {
    clip-path: inset(0 0 0 0);
    background-position:
      0 0,
      0 0,
      50% 42%,
      0 0;
    background-size: 62px 62px, 62px 62px, auto, auto;
  }
  28% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
    background-position:
      0 -24px,
      -24px 0,
      50% 42%,
      0 0;
    background-size: 24px 24px, 24px 24px, auto, auto;
  }
}

@keyframes hero-pixel-flicker {
  0% {
    opacity: 1;
  }
  42% {
    opacity: 0.96;
  }
  76% {
    opacity: 0.44;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hero-image-pop {
  0% {
    filter: saturate(0.88) contrast(1.12) brightness(0.48);
    transform: scale(1.008);
  }
  52% {
    filter: saturate(1.1) contrast(1.08) brightness(0.78);
  }
  100% {
    filter: saturate(1.06) contrast(1.06) brightness(0.9);
    transform: scale(1);
  }
}

@keyframes hero-content-pop {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes guide-idle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-0.8deg);
  }
}

@keyframes guide-walk-sprite {
  0%,
  24.99% {
    background-position: 0% 0;
  }
  25%,
  49.99% {
    background-position: 33.333% 0;
  }
  50%,
  74.99% {
    background-position: 66.666% 0;
  }
  75%,
  100% {
    background-position: 100% 0;
  }
}

@keyframes guide-walk-bob {
  0% {
    transform: translateY(0) translateX(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-7px) translateX(-3px) rotate(1.2deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(-1.2deg);
  }
}

@keyframes guide-shadow {
  0%,
  100% {
    opacity: 0.56;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.36;
    transform: scaleX(0.78);
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .quest-log,
  .benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-ladder::before {
    display: none;
  }

  .guild-master {
    width: 132px;
  }

  .guild-master__bubble {
    width: 224px;
    right: 118px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.92rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 34px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 9, 18, 0.18) 0%, rgba(7, 9, 18, 0.28) 28%, rgba(7, 9, 18, 0.9) 54%, rgba(7, 9, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(7, 9, 18, 0.58), rgba(7, 9, 18, 0.18));
  }

  .hero__media img {
    object-position: 50% 50%;
    filter: saturate(1.04) contrast(1.04) brightness(0.86);
  }

  .hero__content {
    margin-top: 28svh;
  }

  .hero__status,
  .guild,
  .before-after,
  .quest,
  .chain-board,
  .terms-panel,
  .fit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero__status {
    gap: 12px;
  }

  .hero__status a {
    min-height: 132px;
  }

  .guild__visual {
    order: -1;
  }

  .guild {
    min-height: auto;
  }

  .guild__visual {
    align-self: auto;
    min-height: auto;
    aspect-ratio: 16 / 9;
    border-width: 3px;
  }

  .guild__visual img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 64% 40%;
    transform: scale(1.22);
    transform-origin: center;
  }

  .culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .culture-card,
  .culture-card--wide {
    grid-column: auto;
  }

  .rule-board {
    grid-template-columns: 1fr;
  }

  .section-art {
    margin-bottom: 24px;
  }

  .section-art--community,
  .section-art--pass,
  .section-art--ranks {
    aspect-ratio: 16 / 9;
  }

  .section-art--community img,
  .section-art--pass img,
  .section-art--ranks img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
    filter: saturate(1.04) contrast(1.04);
  }

  .section-art--community {
    aspect-ratio: 16 / 9;
  }

  .section-art--community img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
    transform-origin: center;
    filter: saturate(1.08) contrast(1.06) brightness(1.04);
  }

  .section-art--pass img {
    object-position: 50% 50%;
    transform: none;
    transform-origin: center;
  }

  .section-art--quest {
    aspect-ratio: 16 / 9;
  }

  .section-art--quest img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 70% 50%;
    transform: scale(1.08);
    filter: saturate(1.04) contrast(1.04);
  }

  .guild-master {
    width: 112px;
    right: 12px;
    bottom: 70px;
  }

  .guild-master__bubble {
    right: 80px;
    bottom: 72%;
    width: min(226px, calc(100vw - 132px));
    padding: 12px 14px;
    font-size: 0.78rem;
  }

  .mini-art--quest {
    min-height: auto;
  }

  .mini-art--quest img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: 50% 50%;
    transform: none;
  }

  .chain-board__visual,
  .chain-board__copy {
    min-height: auto;
  }

  .chain-board__copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .chain-board__visual img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .chain-board__copy h3 {
    font-size: 1.72rem;
  }

  .section-art--guardian img,
  .final-cta__art img {
    object-position: 50% 50%;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 48px;
    --section-pad: 14px;
  }

  body {
    padding-bottom: 66px;
  }

  h1 {
    position: relative;
    max-width: 8.6em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    font-size: 2.06rem;
    line-height: 1.18;
  }

  .hero h1::after {
    content: "";
    display: block;
    width: min(82%, 250px);
    height: 3px;
    margin-top: 13px;
    background: linear-gradient(90deg, var(--gold), rgba(243, 195, 84, 0.08));
    box-shadow: 0 0 16px rgba(243, 195, 84, 0.22);
  }

  .hero h1 span {
    margin-top: 5px;
  }

  h2 {
    font-size: 1.66rem;
    line-height: 1.45;
  }

  h3 {
    font-size: 1.08rem;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: var(--header-h);
    padding: 5px 12px;
    background:
      linear-gradient(180deg, rgba(7, 9, 18, 0.96), rgba(7, 9, 18, 0.86)),
      rgba(7, 9, 18, 0.9);
  }

  .site-header .brand {
    gap: 8px;
    justify-content: flex-start;
  }

  .brand__crest {
    width: 32px;
    height: 32px;
  }

  .brand__name {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .brand__tag {
    display: none;
  }

  .start-gate {
    padding: 18px;
  }

  .start-gate__panel {
    padding: 30px 20px;
  }

  .start-gate h2 {
    font-size: 1.46rem;
  }

  .start-gate__text {
    font-size: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: grid;
    align-items: start;
    min-height: min(720px, calc(100svh - 10px));
    padding: calc(var(--header-h) + 18px) 14px 58px;
    overflow: hidden;
    background: #070912;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 18, 0.96) 0%, rgba(7, 9, 18, 0.82) 46%, rgba(7, 9, 18, 0.36) 78%, rgba(7, 9, 18, 0.1) 100%),
      linear-gradient(180deg, rgba(7, 9, 18, 0.02) 0%, rgba(7, 9, 18, 0.2) 40%, rgba(7, 9, 18, 0.7) 74%, rgba(7, 9, 18, 0.96) 100%),
      radial-gradient(circle at 72% 52%, rgba(243, 195, 84, 0.12), transparent 28%);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
    margin: 0;
    border: 0;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 58% 42%;
    filter: saturate(1.08) contrast(1.08) brightness(0.94);
  }

  .hero__content {
    width: min(100%, 352px);
    margin-top: 0;
    padding-bottom: 0;
  }

  .mobile-break {
    display: block;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .hero__lead {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero__body {
    max-width: 28em;
    font-size: 0.82rem;
    line-height: 1.66;
  }

  .hero__body--second {
    margin-top: 8px;
  }

  .hero__guild-name {
    margin-top: 10px;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero__guild-name span {
    font-size: 0.72rem;
  }

  .hero__status {
    display: none;
  }

  .hero__actions,
  .rpg-button {
    width: 100%;
  }

  .hero__actions {
    width: min(100%, 342px);
    gap: 10px;
    margin-top: 17px;
  }

  .hero__actions .rpg-button--quiet {
    display: none;
  }

  .rpg-button {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .hero__actions .rpg-button--primary {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 14px;
    gap: 8px 10px;
    min-height: 62px;
    padding: 10px 12px 10px 14px;
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: left;
    box-shadow:
      inset 0 0 0 2px rgba(0, 0, 0, 0.44),
      0 8px 0 rgba(0, 0, 0, 0.46),
      0 0 22px rgba(243, 195, 84, 0.16);
  }

  .hero__actions .rpg-button--primary .ui-icon {
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
    justify-self: center;
  }

  .hero__actions .rpg-button--primary::after {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    font-size: 0.82rem;
  }

  .hero__actions .rpg-button__badge {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    padding: 3px 6px;
    font-size: 0.66rem;
  }

  .hero__note {
    display: inline-block;
    width: min(100%, 342px);
    margin-top: 9px;
    padding: 6px 8px;
    color: var(--ink-soft);
    font-size: 0.7rem;
    line-height: 1.5;
    background: rgba(7, 9, 18, 0.58);
    border-left: 2px solid rgba(243, 195, 84, 0.7);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .rpg-button--large {
    min-height: 66px;
    padding-inline: 18px;
  }

  .section {
    padding: 58px 14px;
  }

  .legal-main {
    padding: calc(var(--header-h) + 26px) 12px 56px;
  }

  .legal-scroll {
    padding: 24px 16px 112px;
    border-width: 3px;
  }

  .legal-scroll::before {
    inset: 10px;
  }

  .legal-back {
    margin-bottom: 18px;
    font-size: 0.86rem;
  }

  .legal-kicker {
    font-size: 0.58rem;
  }

  .legal-scroll h1 {
    font-size: 1.48rem;
    line-height: 1.5;
  }

  .legal-scroll h1::after {
    width: 72%;
    margin-top: 16px;
  }

  .legal-lead {
    margin-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .legal-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .legal-table tr {
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(70, 39, 15, 0.035);
    border: 1px solid rgba(76, 45, 25, 0.36);
    box-shadow: inset 0 0 18px rgba(70, 39, 15, 0.045);
  }

  .legal-table th,
  .legal-table td {
    padding: 12px 13px;
    border-bottom: 0;
  }

  .legal-table th {
    width: 100%;
    color: #4b2610;
    background: rgba(76, 45, 25, 0.075);
  }

  .legal-table td {
    font-size: 0.9rem;
    line-height: 1.78;
  }

  .legal-important {
    margin-top: 24px;
    padding: 18px 14px;
    background: rgba(70, 39, 15, 0.035);
  }

  .legal-important h2 {
    font-size: 1.46rem;
  }

  .legal-important p,
  .legal-important li {
    font-size: 0.9rem;
    line-height: 1.82;
  }

  .wax-seal {
    right: 20px;
    bottom: 22px;
    width: 74px;
  }

  .section__header {
    margin-bottom: 30px;
    text-align: left;
  }

  .section__header > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .intro-statement {
    display: grid;
    padding: 20px 10px 46px;
  }

  .intro-statement__art {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.18;
    border-width: 3px;
  }

  .intro-statement__art::after {
    background:
      linear-gradient(180deg, rgba(7, 9, 18, 0.04) 0%, rgba(7, 9, 18, 0.34) 36%, rgba(7, 9, 18, 0.98) 74%),
      linear-gradient(90deg, rgba(7, 9, 18, 0.3), rgba(7, 9, 18, 0.08) 54%, rgba(7, 9, 18, 0.28));
  }

  .intro-statement__art img {
    height: 100%;
    object-fit: cover;
    object-position: 62% 18%;
    filter: saturate(1.06) contrast(1.05) brightness(0.94);
  }

  .intro-statement__inner {
    align-self: stretch;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-width: 0;
    height: 100%;
    margin-left: 0;
    padding: 26px 18px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 9, 18, 0.12) 25%, rgba(7, 9, 18, 0.92) 62%, rgba(7, 9, 18, 0.98) 100%);
  }

  .intro-statement h2 {
    max-width: 9.8em;
    margin-bottom: 14px;
    font-size: 1.62rem;
    line-height: 1.3;
  }

  .intro-statement p:not(.eyebrow) {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .intro-statement__flow {
    display: grid;
    gap: 3px;
    margin-bottom: 12px;
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
  }

  .intro-statement__rule {
    width: 58%;
    height: 2px;
    margin: 14px 0 16px;
  }

  .quest-log,
  .culture-grid,
  .rank-ladder,
  .benefit-row {
    grid-template-columns: 1fr;
  }

  .quest-log article,
  .culture-card,
  .rank-card,
  .fit-card,
  .benefit-item,
  .price-card {
    min-height: auto;
    padding: 21px;
  }

  .guild__visual img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 63% 48%;
    transform: scale(1.16);
  }

  .guild__ledger div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guild__ledger p {
    grid-column: auto;
  }

  .paper-panel {
    min-height: auto;
    padding: 26px;
    box-shadow: 7px 10px 0 rgba(0, 0, 0, 0.24);
  }

  .rank-card__badge {
    margin-bottom: 22px;
  }

  .chain-board {
    gap: 16px;
  }

  .chain-board__visual,
  .chain-board__copy {
    border-width: 3px;
  }

  .chain-board__copy {
    padding: 26px 22px;
  }

  .chain-board__label {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }

  .chain-board__copy h3 {
    margin-bottom: 18px;
    font-size: 1.26rem;
  }

  .chain-steps {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .chain-steps li {
    padding-left: 30px;
  }

  .chain-steps li::before {
    width: 14px;
    height: 14px;
  }

  .chain-board__copy > p:last-child {
    padding-top: 18px;
    font-size: 0.92rem;
  }

  .benefit-item ul {
    grid-template-columns: 1fr;
  }

  .pricing-message,
  .terms-panel__rules,
  .terms-panel__culture {
    padding: 22px;
  }

  .terms-panel {
    gap: 16px;
  }

  .terms-panel p {
    font-size: 0.9rem;
  }

  .final-cta__art {
    min-height: 680px;
    margin-bottom: 0;
    aspect-ratio: auto;
    border-width: 3px;
  }

  .final-cta__art::after {
    background:
      linear-gradient(180deg, rgba(7, 9, 18, 0.2) 0%, rgba(7, 9, 18, 0.52) 38%, rgba(7, 9, 18, 0.78) 100%),
      linear-gradient(90deg, rgba(7, 9, 18, 0.66), rgba(7, 9, 18, 0.18));
  }

  .final-cta__art img {
    object-position: 48% 50%;
  }

  .final-cta__inner {
    justify-self: center;
    align-self: center;
    width: 100%;
    margin-left: 0;
    padding: 30px 22px;
    text-align: left;
    background: transparent;
  }

  .final-cta p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.66;
  }

  .final-cta__inner h2 {
    max-width: none;
    margin-bottom: 14px;
    font-size: 1.34rem;
    line-height: 1.42;
  }

  .final-cta__inner .eyebrow,
  .final-cta__inner h2,
  .final-cta__lead,
  .final-flow,
  .final-cta__closing {
    text-align: left;
  }

  .final-cta__lead {
    font-size: 0.9rem !important;
  }

  .final-quest-list {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 0.86rem;
  }

  .final-quest-list li {
    padding: 0 0 0 20px;
    text-align: left;
  }

  .final-flow {
    font-size: 0.94rem !important;
  }

  .final-cta__closing {
    max-width: calc(100% - 70px);
  }

  .price-card h3 {
    font-size: 1.28rem;
  }

  .price {
    font-size: 2.26rem;
  }

  .faq summary {
    padding: 18px 20px;
  }

  .faq details p {
    padding: 0 20px 22px;
  }

  .final-cta {
    padding: 58px 14px;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 30px 16px;
  }

  .site-footer nav {
    justify-content: start;
    flex-wrap: wrap;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    opacity: 0;
    transform: translateY(120%);
    color: var(--gold);
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(180deg, var(--red), var(--red-deep));
    border: 2px solid var(--gold);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.44), 0 16px 28px rgba(0, 0, 0, 0.38);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .mobile-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .guild-master {
    right: 12px;
    width: 68px;
    bottom: 156px;
    opacity: 0.96;
  }

  .guild-master.is-mobile-cta-visible {
    right: 10px;
    width: 58px;
    bottom: 108px;
    opacity: 0.92;
  }

  .guild-master.is-hidden-mobile,
  .guild-master.is-hidden-mobile.is-mobile-cta-visible {
    opacity: 0;
    transform: translateY(18px);
  }

  .guild-master.is-final-mobile {
    right: 2px;
    bottom: 198px;
    width: 60px;
  }

  .guild-master__bubble {
    display: none;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.94rem;
  }

  h2 {
    font-size: 1.56rem;
  }

  .brand__name {
    font-size: 0.78rem;
  }

  .brand__tag {
    display: none;
  }

  .hero__content {
    margin-top: 0;
  }
}

@media (max-width: 680px) and (max-height: 720px) {
  .guild-master {
    display: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.78rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 24px);
  }

  .hero h1::after {
    margin-top: 10px;
  }

  .hero__lead {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__body {
    font-size: 0.82rem;
    line-height: 1.64;
  }

  .hero__actions {
    margin-top: 12px;
  }

  .hero__note {
    margin-top: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .guild-master__avatar,
  .guild-master__walker,
  .guild-master__shadow {
    animation: none !important;
  }
}
