:root {
  --ink: #080d0b;
  --ink-soft: #0e1612;
  --ink-raised: #141e18;
  --forest: #182a20;
  --forest-light: #294332;
  --parchment: #eee5d1;
  --parchment-soft: #bdb49f;
  --parchment-dim: #827d71;
  --gold: #cba85f;
  --gold-bright: #f0d28d;
  --gold-dark: #765c2d;
  --rust: #9b4f32;
  --cyan: #31ddda;
  --blue: #0c2462;
  --line: rgba(229, 211, 168, 0.17);
  --line-strong: rgba(229, 211, 168, 0.3);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow-deep: 0 40px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
}

h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.container.narrow {
  width: min(860px, calc(100% - 64px));
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border: 1px solid var(--gold);
  background: var(--parchment);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(229, 211, 168, 0.12);
  background: linear-gradient(180deg, rgba(4, 8, 6, 0.8), rgba(4, 8, 6, 0));
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--parchment);
  text-decoration: none;
}

.wordmark-seal {
  --seal-turn: -45deg;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid rgba(240, 210, 141, 0.54);
  background:
    linear-gradient(135deg, rgba(203, 168, 95, 0.2), transparent 55%),
    rgba(3, 9, 6, 0.72);
  box-shadow: inset 0 0 0 4px rgba(203, 168, 95, 0.05);
  color: transparent;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: normal;
  font-variant-ligatures: none;
  letter-spacing: -0.07em;
  line-height: 1;
  text-indent: -0.06em;
  text-shadow: 0 0 14px rgba(240, 210, 141, 0.45);
  writing-mode: horizontal-tb;
}

.wordmark-seal::first-letter {
  letter-spacing: 0;
}

.wordmark-seal::after {
  content: "IA";
  transform: rotate(var(--seal-turn));
  color: var(--gold-bright);
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wordmark-copy strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.wordmark-copy small {
  margin-top: 0.33rem;
  color: var(--parchment-dim);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.4rem);
}

.site-nav > a:not(.button) {
  color: #c8c1b1;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--gold-bright);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  border-color: rgba(203, 168, 95, 0.58);
}

.button-primary {
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), #b98b3d);
  box-shadow: 0 12px 32px rgba(185, 139, 61, 0.18);
  color: #171108;
}

.button-primary:hover {
  box-shadow: 0 15px 38px rgba(185, 139, 61, 0.28);
}

.button-ghost {
  border-color: rgba(49, 221, 218, 0.55);
  color: #7cf5ef;
}

.button-ghost:hover {
  background: rgba(49, 221, 218, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.3rem;
  border-bottom: 1px solid rgba(240, 210, 141, 0.48);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-cyan {
  color: var(--cyan);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 168px 0 116px;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 32%, rgba(97, 131, 71, 0.16), transparent 30%),
    radial-gradient(circle at 16% 74%, rgba(118, 92, 45, 0.12), transparent 32%),
    linear-gradient(120deg, #0a0f0d 0%, #101912 48%, #08100c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(229, 211, 168, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 211, 168, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -180px;
  right: -180px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(203, 168, 95, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(203, 168, 95, 0.025),
    0 0 0 180px rgba(203, 168, 95, 0.018);
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    radial-gradient(circle at 24% 36%, rgba(255, 255, 255, 0.23) 0 1px, transparent 1.5px),
    radial-gradient(circle at 83% 14%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 64% 82%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.5px);
  background-size: 149px 137px, 191px 179px, 223px 211px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.hero-copy {
  max-width: 640px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 2rem;
  font-size: clamp(3.55rem, 6.2vw, 6.9rem);
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 2.2rem;
  color: #bdb8aa;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.4rem;
}

.hero-facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  padding: 1.4rem 1rem 0 0;
}

.hero-facts > div + div {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  margin: 0.4rem 0 0;
  color: var(--parchment-dim);
  font-size: 0.69rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.world-window {
  position: relative;
  transform: perspective(1200px) rotateY(-3deg);
  border: 1px solid rgba(203, 168, 95, 0.38);
  background: #0a100c;
  box-shadow:
    var(--shadow-deep),
    inset 0 0 0 5px rgba(203, 168, 95, 0.035);
}

.world-window::before,
.world-window::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  opacity: 0.7;
}

.world-window::before {
  top: -5px;
  left: -5px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.world-window::after {
  right: -5px;
  bottom: -5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.world-window-head {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.15rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #172019, #0d140f);
  color: #d3cbb8;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-window-head div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.world-window-head > span {
  color: var(--parchment-dim);
}

.status-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ebd64;
  box-shadow: 0 0 12px rgba(142, 189, 100, 0.8);
}

.cameron-map {
  position: relative;
  height: 385px;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 17, 9, 0.12), rgba(4, 8, 5, 0.45)),
    url("/assets/astonia/world/cameron/00012000.png") repeat;
  background-size: auto, 40px 40px;
  image-rendering: pixelated;
}

.cameron-map::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.map-shadow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(3px);
}

.map-shadow-one {
  top: 56px;
  right: 44px;
  width: 170px;
  height: 90px;
}

.map-shadow-two {
  bottom: 20px;
  left: 8px;
  width: 240px;
  height: 110px;
}

.trail {
  position: absolute;
  z-index: 0;
  display: block;
  background: rgba(123, 105, 67, 0.26);
  filter: blur(0.5px);
}

.trail-one {
  top: 142px;
  left: -40px;
  width: 430px;
  height: 80px;
  transform: rotate(21deg);
  border-radius: 50%;
}

.trail-two {
  right: -80px;
  bottom: 7px;
  width: 350px;
  height: 65px;
  transform: rotate(-32deg);
  border-radius: 50%;
}

.map-tree,
.map-character {
  position: absolute;
  z-index: 2;
  user-select: none;
}

.map-tree-one {
  top: -76px;
  left: -55px;
  width: 260px;
}

.map-tree-two {
  top: -95px;
  right: -68px;
  width: 270px;
}

.map-tree-three {
  bottom: -150px;
  left: 90px;
  width: 280px;
}

.map-character {
  width: 142px;
  height: 142px;
  filter: drop-shadow(0 10px 4px rgba(0, 0, 0, 0.45));
  animation: character-breathe 3.6s ease-in-out infinite;
}

.map-warrior {
  z-index: 3;
  top: 113px;
  left: 42%;
}

.map-mage {
  right: 12%;
  bottom: 15px;
  opacity: 0.76;
  animation-delay: -1.8s;
}

.map-pent {
  position: absolute;
  z-index: 3;
  top: 71px;
  right: 30%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  clip-path: polygon(50% 0%, 98% 36%, 79% 100%, 21% 100%, 2% 36%);
  background: linear-gradient(145deg, #d9b065, #61451e);
  box-shadow: 0 0 24px rgba(240, 210, 141, 0.7);
  color: #171008;
  font-family: var(--serif);
  font-size: 0.9rem;
  animation: pent-glow 2.4s ease-in-out infinite;
}

.map-pent::before {
  content: "";
  position: absolute;
  inset: 4px;
  clip-path: inherit;
  background: #19341e;
}

.map-pent span {
  position: relative;
}

.map-caption {
  position: absolute;
  z-index: 4;
  bottom: 0.8rem;
  left: 0.85rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(226, 214, 184, 0.18);
  background: rgba(4, 8, 6, 0.78);
  color: #c0b9aa;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.run-status {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 112px;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #161e18, #0b110d);
}

.level-medallion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.level-medallion span {
  color: var(--parchment-dim);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.level-medallion strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.run-progress {
  padding: 1.15rem 1.25rem 1rem;
}

.run-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.run-progress-copy span {
  color: #c6bead;
}

.run-progress-copy strong {
  color: var(--gold);
  font-weight: 500;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  background: #050906;
  box-shadow: inset 0 0 0 1px rgba(229, 211, 168, 0.1);
}

.progress-track span {
  display: block;
  width: 8%;
  height: 100%;
  background: linear-gradient(90deg, #755a29, var(--gold-bright));
  box-shadow: 0 0 12px rgba(240, 210, 141, 0.5);
}

.run-progress p {
  margin: 0.7rem 0 0;
  color: var(--parchment-dim);
  font-size: 0.64rem;
}

.hero-edge {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 44px;
  clip-path: polygon(0 72%, 20% 45%, 44% 78%, 70% 28%, 100% 66%, 100% 100%, 0 100%);
  background: #111914;
}

.watch-strip {
  border-top: 1px solid rgba(203, 168, 95, 0.12);
  border-bottom: 1px solid rgba(203, 168, 95, 0.2);
  background: #111914;
}

.watch-strip-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.watch-strip p {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: #d9d0bc;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.watch-glyph {
  color: var(--gold);
}

.watch-strip ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  color: var(--parchment-dim);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  list-style: none;
  text-transform: uppercase;
}

.watch-strip li + li::before {
  content: "·";
  margin-right: 1.4rem;
  color: var(--gold-dark);
}

.section {
  padding: clamp(6rem, 10vw, 9.5rem) 0;
}

.journey {
  position: relative;
  background:
    radial-gradient(circle at 5% 20%, rgba(203, 168, 95, 0.07), transparent 27%),
    #0d130f;
}

.journey::after {
  content: "200";
  position: absolute;
  z-index: 0;
  top: 80px;
  right: -0.08em;
  color: rgba(229, 211, 168, 0.025);
  font-family: var(--serif);
  font-size: min(30vw, 380px);
  line-height: 1;
  pointer-events: none;
}

.journey .container {
  position: relative;
  z-index: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 5rem;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 0.5rem;
  color: var(--parchment-soft);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.path-card {
  position: relative;
  min-height: 410px;
  padding: 2.25rem 2rem 1.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 48%),
    #111914;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 168, 95, 0.4);
}

.path-card-featured {
  transform: translateY(-1.2rem);
  border-color: rgba(203, 168, 95, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(203, 168, 95, 0.12), transparent 36%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 48%),
    #162019;
}

.path-card-featured:hover {
  transform: translateY(calc(-1.2rem - 4px));
}

.path-number {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  color: rgba(240, 210, 141, 0.07);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.card-kicker {
  position: relative;
  margin-bottom: 3rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path-card h3 {
  position: relative;
  margin-bottom: 1.4rem;
}

.path-card > p:not(.card-kicker) {
  position: relative;
  color: var(--parchment-soft);
  font-size: 0.92rem;
}

.card-rule {
  position: absolute;
  right: 2rem;
  bottom: 3.9rem;
  left: 2rem;
  height: 1px;
  background: var(--line);
}

.path-card small {
  position: absolute;
  right: 2rem;
  bottom: 1.65rem;
  left: 2rem;
  color: var(--parchment-dim);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1.3rem;
  margin-top: 5.2rem;
  margin-bottom: 0;
  padding: 2rem 2.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.game-loop > li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
}

.game-loop > li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-style: normal;
}

.game-loop span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-dark);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.game-loop strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.game-loop small {
  color: var(--parchment-dim);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 13, 11, 0.96), rgba(8, 13, 11, 0.76)),
    repeating-linear-gradient(135deg, #152219 0 1px, transparent 1px 24px);
}

.company::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(203, 168, 95, 0.07);
  transform: rotate(45deg);
}

.company-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.company-copy h2 {
  max-width: 600px;
}

.company-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--parchment-soft);
}

.plain-list {
  margin: 2.4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plain-list li {
  display: flex;
  gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: #cfc7b5;
  font-family: var(--serif);
}

.plain-list span {
  color: var(--gold-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.roster {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roster::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(203, 168, 95, 0.22), transparent);
}

.roster-card {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr 150px 1.1fr;
  align-items: center;
  padding: 1rem 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(15, 23, 17, 0.88);
}

.roster-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 168, 95, 0.11), transparent 66%);
}

.roster-card > * {
  position: relative;
  z-index: 1;
}

.roster-card img {
  width: 150px;
  height: 150px;
  image-rendering: pixelated;
  filter: drop-shadow(0 12px 6px rgba(0, 0, 0, 0.42));
}

.roster-role {
  color: var(--gold-dark);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.roster-card strong {
  display: block;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.roster-card small {
  color: var(--parchment-dim);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-mage {
  margin-inline: 1.5rem -1.5rem;
  border-color: rgba(92, 112, 158, 0.33);
}

.roster-mage::after {
  background: radial-gradient(circle, rgba(69, 101, 163, 0.16), transparent 66%);
}

.roster-seyan {
  border-color: rgba(203, 168, 95, 0.34);
}

.roster-seyan::after {
  background: radial-gradient(circle, rgba(203, 168, 95, 0.18), transparent 66%);
}

.archive {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 13, 40, 0.98) 0%, rgba(7, 19, 56, 0.88) 52%, rgba(5, 13, 40, 0.96) 100%),
    url("/archive/where-we-began/gaming-26.jpg") center / cover;
}

.archive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(49, 221, 218, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 221, 218, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.archive-stars {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 10% 20%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 30%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 86% 76%, #fff 0 1px, transparent 1.5px);
  background-size: 229px 211px, 307px 293px, 361px 347px;
  pointer-events: none;
}

.archive-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.archive-reel {
  max-width: 470px;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid rgba(49, 221, 218, 0.28);
  background: rgba(3, 10, 31, 0.86);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.42);
}

.film-label {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 0.6rem;
  color: rgba(163, 239, 239, 0.68);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-reel video {
  width: 100%;
  aspect-ratio: 932 / 1048;
  max-height: 570px;
  background: #03091e;
  object-fit: contain;
}

.archive-reel figcaption {
  padding: 0.8rem 0.6rem 0.2rem;
  color: rgba(163, 239, 239, 0.58);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-copy {
  max-width: 640px;
}

.archive-copy h2 {
  font-size: clamp(3rem, 5.5vw, 5.7rem);
}

.archive-copy > p:not(.eyebrow) {
  color: #b2bed6;
}

.archive-copy .button {
  margin-top: 1rem;
}

.origin {
  background:
    radial-gradient(circle at 80% 20%, rgba(203, 168, 95, 0.08), transparent 30%),
    #0b110d;
}

.origin-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: 4rem;
  border: 1px solid var(--line);
  background: rgba(18, 27, 21, 0.62);
}

.origin-mark {
  position: relative;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid rgba(203, 168, 95, 0.38);
  box-shadow:
    inset 0 0 0 10px rgba(203, 168, 95, 0.03),
    0 0 60px rgba(203, 168, 95, 0.07);
}

.origin-mark::before,
.origin-mark::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(203, 168, 95, 0.16);
}

.origin-mark::after {
  inset: 47px;
}

.origin-mark span {
  transform: rotate(-45deg);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.origin-panel h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.origin-panel > div:last-child > p:not(.eyebrow):not(.required-credit) {
  max-width: 720px;
  color: var(--parchment-dim);
}

.required-credit {
  margin-bottom: 1rem;
  color: #d8cfbb;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.required-credit a,
.footer-base a,
.legal-copy a {
  color: var(--gold-bright);
}

.final-call {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(6, 11, 8, 0.96), rgba(20, 33, 23, 0.9)),
    url("/assets/astonia/world/cameron/00012000.png") repeat;
}

.final-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.final-call h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.final-call .eyebrow {
  margin-bottom: 0.8rem;
}

.site-footer {
  padding: 4rem 0 1.7rem;
  border-top: 1px solid rgba(203, 168, 95, 0.12);
  background: #060907;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer-main nav a {
  color: var(--parchment-dim);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-main nav a:hover {
  color: var(--gold-bright);
}

.footer-base {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229, 211, 168, 0.08);
}

.footer-base p {
  margin: 0;
  color: #8c887e;
  font-size: 0.61rem;
  letter-spacing: 0.04em;
}

/* Credits and provenance */

.interior-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(203, 168, 95, 0.08), transparent 24%),
    #0a0f0d;
}

.interior-hero {
  position: relative;
  min-height: 570px;
  padding: 190px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(6, 10, 7, 0.86), rgba(8, 13, 10, 0.96)),
    url("/assets/astonia/world/cameron/00012000.png") repeat;
}

.interior-hero::before {
  content: "III";
  position: absolute;
  top: 90px;
  right: 6vw;
  color: rgba(240, 210, 141, 0.045);
  font-family: var(--serif);
  font-size: min(34vw, 390px);
  line-height: 1;
}

.interior-hero .container {
  position: relative;
}

.interior-hero h1 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 8rem);
}

.interior-hero > .container > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--parchment-soft);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 740px);
  justify-content: space-between;
  gap: 6rem;
  padding-top: 7rem;
  padding-bottom: 9rem;
}

.legal-nav {
  position: sticky;
  top: 2rem;
  display: flex;
  height: max-content;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.legal-nav strong {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav a {
  color: var(--parchment-dim);
  font-size: 0.76rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--parchment);
}

.legal-copy > section {
  scroll-margin-top: 2rem;
  padding-bottom: 5rem;
}

.legal-copy > section + section {
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.legal-number {
  margin-bottom: 1.3rem;
  color: var(--gold-dark);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.legal-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.legal-copy section > p:not(.legal-number) {
  color: var(--parchment-soft);
}

.credit-statement {
  margin-bottom: 2rem;
  padding: 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(203, 168, 95, 0.06);
}

.credit-statement p {
  margin: 0;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-updated {
  margin: 0;
  color: var(--parchment-dim);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-footer {
  padding-top: 1.7rem;
}

/* 2019 archive */

.archive-page {
  background: #06102d;
  color: #f0f5ff;
}

.archive-header {
  border-bottom-color: rgba(98, 223, 228, 0.15);
  background: linear-gradient(180deg, rgba(2, 8, 29, 0.9), rgba(2, 8, 29, 0));
}

.archive-button {
  border-color: var(--cyan);
  background: rgba(49, 221, 218, 0.08);
  color: #96ffff;
}

.archive-button:hover {
  background: var(--cyan);
  color: #04112f;
  box-shadow: 0 12px 32px rgba(49, 221, 218, 0.18);
}

.archive-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 210px 0 120px;
  isolation: isolate;
  background: #07123a;
}

.archive-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("/archive/where-we-began/gaming-26.jpg") center bottom / cover no-repeat;
  filter: saturate(0.78) contrast(1.07);
  transform: scale(1.015);
}

.archive-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 30, 0.93) 0%, rgba(2, 7, 30, 0.62) 50%, rgba(2, 7, 30, 0.2) 100%),
    linear-gradient(180deg, rgba(2, 7, 30, 0.25), rgba(2, 7, 30, 0.12) 58%, #06102d 100%);
}

.archive-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(49, 221, 218, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 221, 218, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.archive-hero-inner {
  position: relative;
}

.archive-hero-inner h1 {
  max-width: 840px;
  margin-bottom: 1.8rem;
  font-size: clamp(4.8rem, 10vw, 10rem);
  letter-spacing: -0.06em;
}

.archive-hero-inner > p:not(.eyebrow) {
  max-width: 600px;
  color: #bac8eb;
  font-size: 1.08rem;
}

.archive-hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.6rem;
}

.archive-text-link {
  border-bottom-color: rgba(49, 221, 218, 0.48);
  color: #83f5f2;
}

.archive-chapter {
  position: relative;
  background:
    radial-gradient(circle at 12% 40%, rgba(49, 221, 218, 0.09), transparent 26%),
    #06102d;
}

.archive-chapter-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.archive-video-large {
  padding: 0.8rem;
  border: 1px solid rgba(49, 221, 218, 0.3);
  background: #03091f;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.46);
}

.archive-video-large video {
  width: 100%;
  aspect-ratio: 932 / 1048;
  max-height: 670px;
  background: #020718;
  object-fit: contain;
}

.archive-chapter-copy {
  position: relative;
}

.archive-year {
  position: absolute;
  z-index: 0;
  top: -0.33em;
  right: -0.1em;
  margin: 0;
  color: rgba(49, 221, 218, 0.045);
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
}

.archive-chapter-copy > *:not(.archive-year) {
  position: relative;
  z-index: 1;
}

.archive-chapter-copy h2 {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.archive-chapter-copy > p:not(.eyebrow):not(.archive-year) {
  color: #aebbdc;
}

.archive-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 2.5rem 0;
  border-top: 1px solid rgba(98, 223, 228, 0.16);
  border-left: 1px solid rgba(98, 223, 228, 0.16);
}

.archive-details > div {
  padding: 1rem;
  border-right: 1px solid rgba(98, 223, 228, 0.16);
  border-bottom: 1px solid rgba(98, 223, 228, 0.16);
}

.archive-details dt {
  color: #6d7da8;
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-details dd {
  margin: 0.25rem 0 0;
  color: #c9d7f6;
  font-family: var(--serif);
}

.archive-downloads {
  display: grid;
  gap: 0.6rem;
}

.archive-downloads a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(49, 221, 218, 0.18);
  color: #b9c8e9;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-downloads a:hover {
  border-color: rgba(49, 221, 218, 0.48);
  color: #83f5f2;
}

.archive-downloads span {
  color: #7e96c4;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.archive-now {
  padding: 6rem 0;
  border-top: 1px solid rgba(49, 221, 218, 0.12);
  background:
    linear-gradient(100deg, rgba(6, 11, 8, 0.97), rgba(20, 33, 23, 0.92)),
    url("/assets/astonia/world/cameron/00012000.png") repeat;
}

.archive-now-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr) auto;
  align-items: center;
  gap: 3.5rem;
}

.archive-now h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

.archive-now .eyebrow {
  margin-bottom: 0.8rem;
}

.archive-now-inner > p {
  margin: 0;
  color: var(--parchment-soft);
  font-size: 0.9rem;
}

.archive-footer {
  border-top-color: rgba(49, 221, 218, 0.12);
  background: #020719;
}

@keyframes character-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pent-glow {
  0%,
  100% {
    filter: brightness(0.88);
  }
  50% {
    filter: brightness(1.2);
  }
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.6vw, 5.4rem);
  }

  .cameron-map {
    height: 340px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .split-heading > p {
    max-width: 620px;
  }

  .company-layout {
    gap: 4rem;
  }

  .roster-card {
    grid-template-columns: 0.9fr 130px 1.1fr;
  }

  .roster-card img {
    width: 130px;
    height: 130px;
  }

  .archive-now-inner {
    grid-template-columns: 1fr 0.8fr;
  }

  .archive-now-inner .button {
    grid-column: 1 / -1;
    width: max-content;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 82px;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav > a:not(.button) {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .world-window {
    width: min(620px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .watch-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 330px;
  }

  .path-card-featured,
  .path-card-featured:hover {
    transform: none;
  }

  .game-loop {
    grid-template-columns: 1fr 1fr;
  }

  .game-loop > li:not(:last-child)::after {
    content: none;
  }

  .company-layout {
    grid-template-columns: 1fr;
  }

  .company-copy {
    max-width: 680px;
  }

  .archive-layout,
  .archive-chapter-layout {
    grid-template-columns: 1fr;
  }

  .archive-reel,
  .archive-video-large {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .archive-copy,
  .archive-chapter-copy {
    max-width: 700px;
  }

  .origin-panel {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 3rem;
    padding: 3rem;
  }

  .origin-mark {
    width: 130px;
    height: 130px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .container.narrow {
    width: min(100% - 36px, 1180px);
  }

  .site-header {
    padding: 0 18px;
  }

  .wordmark-copy small {
    display: none;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 0.6rem 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 90px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 14.4vw, 5.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    padding: 0.8rem 0;
  }

  .hero-facts > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-facts dd {
    margin: 0;
  }

  .world-window-head {
    font-size: 0.56rem;
  }

  .cameron-map {
    height: 290px;
  }

  .map-tree-one {
    left: -100px;
  }

  .map-tree-two {
    right: -110px;
  }

  .map-tree-three {
    left: 20px;
  }

  .map-warrior {
    left: 30%;
  }

  .map-mage {
    right: 1%;
  }

  .run-status {
    grid-template-columns: 72px 1fr;
  }

  .watch-strip ul {
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
  }

  .watch-strip li + li::before {
    margin-right: 0.8rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .split-heading {
    margin-bottom: 3.5rem;
  }

  .game-loop {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .game-loop > li {
    padding: 0.8rem;
    border-bottom: 1px solid var(--line);
  }

  .roster-card {
    min-height: 130px;
    grid-template-columns: 1fr 110px;
    padding: 0.8rem 1rem;
  }

  .roster-card img {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 110px;
    height: 110px;
  }

  .roster-card > div {
    grid-column: 1;
  }

  .roster-role {
    align-self: end;
  }

  .roster-mage {
    margin-inline: 0;
  }

  .archive-layout {
    gap: 3.5rem;
  }

  .origin-panel {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .origin-mark {
    width: 100px;
    height: 100px;
    margin: 1rem 0 0 1rem;
  }

  .origin-mark::before {
    inset: 17px;
  }

  .origin-mark::after {
    inset: 34px;
  }

  .final-call-inner,
  .footer-main,
  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-call .button {
    width: 100%;
  }

  .footer-main {
    gap: 2rem;
  }

  .footer-base {
    gap: 1rem;
  }

  .interior-hero {
    min-height: 520px;
    padding: 155px 0 80px;
  }

  .interior-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.7rem);
  }

  .legal-layout {
    padding-top: 4.5rem;
    padding-bottom: 6rem;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-nav strong {
    grid-column: auto;
  }

  .legal-copy > section {
    padding-bottom: 3.5rem;
  }

  .legal-copy > section + section {
    padding-top: 3.5rem;
  }

  .credit-statement {
    padding: 1.4rem;
  }

  .archive-hero {
    min-height: 690px;
    padding: 160px 0 100px;
  }

  .archive-hero::before {
    background:
      linear-gradient(90deg, rgba(2, 7, 30, 0.88), rgba(2, 7, 30, 0.38)),
      linear-gradient(180deg, rgba(2, 7, 30, 0.2), #06102d 100%);
  }

  .archive-hero-inner h1 {
    font-size: clamp(4rem, 19vw, 7.2rem);
  }

  .archive-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-details {
    grid-template-columns: 1fr;
  }

  .archive-now-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .archive-now-inner .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .wordmark-seal {
    width: 36px;
    height: 36px;
  }

  .wordmark-copy strong {
    font-size: 0.95rem;
  }

  .site-header .button-small {
    font-size: 0.61rem;
  }

  .run-progress-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
