:root {
  color-scheme: dark;
  --void: #020303;
  --void-soft: #050507;
  --obsidian: #09090c;
  --obsidian-raised: #101014;
  --ink: #f5f0e7;
  --ink-muted: #aaa59d;
  --ink-faint: #706d68;
  --gold: #d8ad58;
  --gold-bright: #f1d58e;
  --gold-pale: #fff0c4;
  --crimson: #b81d37;
  --crimson-bright: #ed4660;
  --nebula: #7046a2;
  --line: rgba(236, 207, 145, 0.15);
  --line-bright: rgba(236, 207, 145, 0.34);
  --glass: rgba(12, 11, 15, 0.74);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 4.75rem);
  --max-width: 94rem;
  --radius-large: 1.75rem;
  --radius-medium: 1.1rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --accent: var(--gold);
  --accent-bright: var(--gold-bright);
  --accent-rgb: 216, 173, 88;
  --secondary-rgb: 112, 70, 162;
}

body[data-domain="legacybythecrown.com"] {
  --accent: #d9ad67;
  --accent-bright: #f2d9a3;
  --accent-rgb: 217, 173, 103;
  --secondary-rgb: 126, 73, 179;
}

body[data-domain="thecrownslegacy.in"] {
  --accent: #e0ae55;
  --accent-bright: #f5d48e;
  --accent-rgb: 224, 174, 85;
  --secondary-rgb: 178, 34, 67;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--void);
  scroll-behavior: smooth;
  scrollbar-color: rgba(var(--accent-rgb), 0.45) var(--void);
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--secondary-rgb), 0.12), transparent 26rem),
    radial-gradient(circle at 12% 38%, rgba(123, 28, 53, 0.08), transparent 32rem),
    linear-gradient(180deg, #020303 0%, #050407 52%, #020303 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

button:not(:disabled),
a {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(var(--accent-rgb), 0.28);
  color: #fff9e9;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--obsidian);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.cosmic-field,
.cosmic-veil,
.pointer-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.cosmic-field {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.cosmic-veil {
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 75%, transparent);
  opacity: 0.4;
}

.pointer-aura {
  --pointer-x: 50vw;
  --pointer-y: 30vh;
  z-index: 1;
  background: radial-gradient(
    26rem circle at var(--pointer-x) var(--pointer-y),
    rgba(var(--accent-rgb), 0.055),
    transparent 72%
  );
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 1.15rem var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition:
    padding 450ms var(--ease-out),
    background 450ms var(--ease-out),
    border-color 450ms var(--ease-out),
    backdrop-filter 450ms var(--ease-out);
}

.site-header.is-scrolled {
  padding-block: 0.72rem;
  border-color: var(--line);
  background: rgba(2, 3, 3, 0.78);
  backdrop-filter: blur(22px) saturate(125%);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__sigil {
  position: relative;
  width: 2.55rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.44);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16), transparent 68%);
  box-shadow: inset 0 0 1rem rgba(var(--accent-rgb), 0.08);
  transform: rotate(45deg);
}

.brand__sigil::before,
.brand__sigil::after {
  content: "";
  position: absolute;
  inset: 0.29rem;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.brand__sigil::before {
  border-radius: 50%;
}

.brand__sigil::after {
  transform: rotate(45deg);
}

.brand__sigil i {
  position: absolute;
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--crimson-bright);
  box-shadow: 0 0 0.75rem rgba(237, 70, 96, 0.82);
}

.brand__sigil b {
  position: relative;
  z-index: 1;
  color: var(--gold-pale);
  font-size: 0.46rem;
  letter-spacing: 0.12em;
  transform: rotate(-45deg);
}

.brand__wordmark {
  display: grid;
  gap: 0.2rem;
}

.brand__wordmark strong {
  color: #f6eedc;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.brand__wordmark small {
  color: var(--ink-faint);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.domain-nav {
  visibility: visible;
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  background: rgba(10, 9, 12, 0.55);
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out),
    visibility 0s linear;
}

.domain-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #85817b;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.domain-link:hover {
  color: #ddd4c4;
}

.domain-link.is-current {
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--gold-bright);
}

.domain-link__index {
  color: rgba(var(--accent-rgb), 0.72);
  font-family: var(--font-display);
  font-size: 0.64rem;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #c9c0b2;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta i {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  font-style: normal;
  transition:
    transform 260ms var(--ease-out),
    background 260ms ease;
}

.header-cta:hover i {
  background: rgba(var(--accent-rgb), 0.1);
  transform: translateY(0.2rem);
}

.hero {
  width: min(100%, var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8.5rem, 13vw, 11rem) var(--page-gutter) 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.92fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8rem 18% 12% 49%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.14), transparent 68%);
  filter: blur(5rem);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 0.5rem rgba(var(--accent-rgb), 0.5);
}

.hero__chapter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 2rem 0 0;
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__chapter i {
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--crimson-bright);
  box-shadow: 0 0 0.7rem rgba(237, 70, 96, 0.74);
}

.hero h1 {
  max-width: 13ch;
  margin: 1.1rem 0 1.4rem;
  color: #eee8dc;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.6vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.86;
}

.hero h1 em {
  display: block;
  background: linear-gradient(112deg, #b88536 2%, #fff0bd 48%, #c08b35 91%);
  background-clip: text;
  color: transparent;
  font-weight: 400;
  text-shadow: 0 0 2.4rem rgba(var(--accent-rgb), 0.06);
}

.hero__description {
  max-width: 41rem;
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 2.25rem;
}

.primary-action,
.submit-action {
  position: relative;
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.72);
  border-radius: 999px;
  background: linear-gradient(110deg, #a3722c, #e4bd70 46%, #8c5d20);
  box-shadow:
    0 0.8rem 2.5rem rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color: #100b05;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease;
}

.primary-action {
  padding: 0.25rem 0.4rem 0.25rem 1.35rem;
}

.primary-action::before,
.submit-action::before {
  content: "";
  position: absolute;
  inset: -100% 45%;
  width: 30%;
  background: rgba(255, 255, 255, 0.32);
  filter: blur(0.8rem);
  transform: rotate(20deg) translateX(-350%);
  transition: transform 700ms var(--ease-out);
}

.primary-action:hover,
.submit-action:hover:not(:disabled) {
  box-shadow:
    0 1rem 3rem rgba(var(--accent-rgb), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-0.16rem);
}

.primary-action:hover::before,
.submit-action:hover::before {
  transform: rotate(20deg) translateX(350%);
}

.primary-action b {
  width: 2.7rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 11, 3, 0.16);
  font-size: 1rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #7f7b74;
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.availability i {
  width: 0.42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.72);
  box-shadow: 0 0 0.75rem rgba(var(--accent-rgb), 0.52);
  animation: signalPulse 2.8s ease-in-out infinite;
}

.hero__relic {
  position: relative;
  width: min(100%, 35rem);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__relic::before {
  content: "";
  position: absolute;
  inset: 14%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 244, 207, 0.18), transparent 7%),
    radial-gradient(circle at center, #131119 0%, #050507 58%, transparent 70%);
  box-shadow:
    inset -2.2rem -2.8rem 4.5rem #000,
    inset 1.1rem 0.8rem 2.2rem rgba(var(--secondary-rgb), 0.13),
    0 0 5rem rgba(var(--secondary-rgb), 0.11);
}

.hero__relic::after {
  content: "";
  position: absolute;
  inset: 22%;
  z-index: -1;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 43% 57% 51% 49% / 55% 42% 58% 45%;
  box-shadow:
    inset 0 0 2.5rem rgba(var(--accent-rgb), 0.08),
    0 0 1.6rem rgba(var(--accent-rgb), 0.06);
  animation: relicMorph 9s ease-in-out infinite alternate;
}

.relic-halo,
.relic-axis,
.relic-orbit,
.relic-core {
  position: absolute;
}

.relic-halo {
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 50%;
}

.relic-halo::before,
.relic-halo::after {
  content: "";
  position: absolute;
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 1rem rgba(var(--accent-rgb), 0.8);
}

.relic-halo::before {
  top: -0.21rem;
  left: 50%;
}

.relic-halo::after {
  right: 8%;
  bottom: 20%;
  background: var(--crimson-bright);
  box-shadow: 0 0 1rem rgba(237, 70, 96, 0.85);
}

.relic-halo--outer {
  inset: 4%;
  border-style: dashed;
  animation: slowSpin 42s linear infinite;
}

.relic-halo--middle {
  inset: 12%;
  transform: rotate(28deg);
  animation: reverseSpin 31s linear infinite;
}

.relic-axis {
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.52), transparent);
}

.relic-axis::before,
.relic-axis::after {
  content: "";
  position: absolute;
  top: -0.22rem;
  width: 0.45rem;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--accent-rgb), 0.58);
  transform: rotate(45deg);
}

.relic-axis::before {
  left: 13%;
}

.relic-axis::after {
  right: 13%;
}

.relic-axis--one {
  transform: rotate(30deg);
}

.relic-axis--two {
  transform: rotate(150deg);
}

.relic-orbit {
  inset: 25%;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.relic-orbit span {
  position: absolute;
  width: 0.68rem;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--accent-rgb), 0.72);
  border-radius: 50%;
  background: #110d0a;
  box-shadow: inset 0 0 0 0.16rem #060606, 0 0 1rem rgba(var(--accent-rgb), 0.35);
}

.relic-orbit span:nth-child(1) {
  top: -0.34rem;
  left: 50%;
}

.relic-orbit span:nth-child(2) {
  right: 5%;
  bottom: 17%;
}

.relic-orbit span:nth-child(3) {
  bottom: 17%;
  left: 5%;
}

.relic-core {
  width: 23%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 238, 185, 0.3), transparent 8%),
    radial-gradient(circle, rgba(var(--secondary-rgb), 0.36), #080609 62%);
  box-shadow:
    0 0 0 0.5rem rgba(var(--accent-rgb), 0.035),
    0 0 0 0.6rem rgba(var(--accent-rgb), 0.16),
    0 0 3.5rem rgba(var(--secondary-rgb), 0.25),
    inset 0 0 1.3rem #000;
}

.relic-core::after {
  content: "";
  position: absolute;
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--crimson-bright);
  box-shadow: 0 0 1.4rem 0.3rem rgba(237, 70, 96, 0.45);
}

.relic-core i {
  opacity: 0.48;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.15em;
  transform: translateY(1.5rem);
}

.relic-caption {
  position: absolute;
  right: 2%;
  bottom: 10%;
  min-width: 11rem;
  display: grid;
  gap: 0.32rem;
  padding-left: 2.8rem;
  color: #6f6a63;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.relic-caption::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 2.2rem;
  height: 1px;
  background: var(--line-bright);
}

.relic-caption b {
  color: #aca398;
  font-size: 0.58rem;
  font-weight: 550;
  text-transform: none;
}

.hero__ledger {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.hero__ledger > div {
  position: relative;
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.5rem;
}

.hero__ledger > div + div {
  border-left: 1px solid var(--line);
}

.hero__ledger strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.hero__ledger span {
  max-width: 9rem;
  color: #716e68;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.artifacts,
.doctrine,
.final-signal {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.artifacts {
  padding-top: clamp(6rem, 10vw, 11rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 31rem);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.doctrine h2,
.final-signal h2 {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p,
.final-signal > p {
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.75;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.artifact-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  min-height: 41rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(231, 211, 172, 0.12);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(var(--accent-rgb), 0.095), transparent 28%),
    linear-gradient(145deg, rgba(18, 17, 21, 0.93), rgba(7, 7, 9, 0.96));
  box-shadow:
    0 2rem 6rem rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 240ms var(--ease-out),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.artifact-card:nth-child(even) {
  transform: translateY(2.5rem) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.artifact-card:hover {
  border-color: rgba(var(--accent-rgb), 0.32);
  box-shadow:
    0 2.5rem 7rem rgba(0, 0, 0, 0.42),
    0 0 3rem rgba(var(--accent-rgb), 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.artifact-card__flare {
  position: absolute;
  inset: -40% 28% auto;
  height: 65%;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.16), transparent);
  filter: blur(3rem);
  transform: rotate(-18deg);
  pointer-events: none;
}

.artifact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.02) 35%, transparent 55%),
    repeating-linear-gradient(135deg, transparent 0 3.9rem, rgba(255, 255, 255, 0.012) 4rem);
  pointer-events: none;
}

.artifact-card__header,
.artifact-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.artifact-card__header {
  color: #625f59;
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.artifact-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #918c84;
}

.artifact-card__status i {
  width: 0.34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--crimson-bright);
  box-shadow: 0 0 0.55rem rgba(237, 70, 96, 0.7);
}

.artifact-card__relic {
  position: relative;
  width: 10.5rem;
  aspect-ratio: 1;
  margin: clamp(2.2rem, 5vw, 4rem) auto 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.13), transparent 8%),
    radial-gradient(circle, rgba(var(--secondary-rgb), 0.17), #08080a 64%);
  box-shadow:
    0 0 0 1.1rem rgba(var(--accent-rgb), 0.018),
    0 0 0 1.15rem rgba(var(--accent-rgb), 0.07),
    0 1.4rem 3rem rgba(0, 0, 0, 0.55),
    inset -1.2rem -1.6rem 2.5rem #020203;
  transform: translateZ(2.3rem);
}

.artifact-card__relic::before,
.artifact-card__relic::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
}

.artifact-card__relic::before {
  inset: -1.55rem;
  border-style: dashed;
  animation: slowSpin 28s linear infinite;
}

.artifact-card__relic::after {
  inset: 1.4rem;
  border-color: rgba(var(--secondary-rgb), 0.25);
}

.artifact-card__relic span {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #fff2c1, #a76c1f);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 3.1rem;
  filter: drop-shadow(0 0 1rem rgba(var(--accent-rgb), 0.2));
}

.artifact-card__signal,
.artifact-card h3,
.artifact-card__descriptor,
.artifact-card__description,
.artifact-card__capabilities {
  position: relative;
  z-index: 2;
}

.artifact-card__signal {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.artifact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.artifact-card__descriptor {
  margin: 0.72rem 0 0;
  color: #bcb4a8;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  letter-spacing: 0.025em;
}

.artifact-card__description {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: #8f8b84;
  font-size: 0.83rem;
  line-height: 1.75;
}

.artifact-card__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 2rem;
  padding: 0;
  list-style: none;
}

.artifact-card__capabilities li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  color: #77736d;
  font-size: 0.55rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artifact-card__capabilities li span {
  width: 0.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.7);
}

.artifact-card__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.artifact-card__footer > span {
  color: #9d968b;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.artifact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artifact-card__action b {
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 50%;
  font-size: 0.82rem;
  transition:
    transform 260ms var(--ease-out),
    background 260ms ease;
}

.artifact-card__action:hover b {
  background: rgba(var(--accent-rgb), 0.1);
  transform: translate(0.16rem, -0.16rem);
}

.doctrine {
  position: relative;
  min-height: 46rem;
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.05fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding-top: clamp(5rem, 8vw, 9rem);
  padding-bottom: clamp(5rem, 8vw, 9rem);
  border-block: 1px solid var(--line);
}

.doctrine::before {
  content: "";
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(circle at 20% 50%, rgba(var(--secondary-rgb), 0.1), transparent 34%);
  filter: blur(3rem);
  pointer-events: none;
}

.doctrine__orb {
  position: relative;
  width: min(100%, 18rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.2), #060608 62%);
  box-shadow:
    0 0 0 2.4rem rgba(var(--accent-rgb), 0.016),
    0 0 0 2.45rem rgba(var(--accent-rgb), 0.075),
    inset -2rem -2rem 3rem #000;
}

.doctrine__orb::before,
.doctrine__orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 50%;
}

.doctrine__orb::before {
  inset: -20%;
  border-style: dashed;
  animation: reverseSpin 38s linear infinite;
}

.doctrine__orb::after {
  inset: 25%;
  background: radial-gradient(circle, var(--crimson-bright) 0 5%, rgba(139, 17, 42, 0.52) 10%, transparent 68%);
  box-shadow: 0 0 2rem rgba(237, 70, 96, 0.24);
}

.doctrine__orb span {
  position: relative;
  z-index: 2;
  color: rgba(255, 235, 190, 0.55);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.doctrine h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.doctrine__copy > p:last-child {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.75;
}

.doctrine__principles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctrine__principles li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.doctrine__principles li:last-child {
  border-bottom: 1px solid var(--line);
}

.doctrine__principles > li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.doctrine__principles strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #d8d0c3;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}

.doctrine__principles p {
  margin: 0;
  color: #77736d;
  font-size: 0.75rem;
  line-height: 1.65;
}

.final-signal {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 4rem;
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.final-signal h2 {
  max-width: 14ch;
}

.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(19rem, 34rem) auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--page-gutter) 2.5rem;
  border-top: 1px solid var(--line);
  color: #9b948a;
  font-size: 0.58rem;
  line-height: 1.55;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-sigil {
  width: 2.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.5rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > div p {
  display: grid;
  gap: 0.18rem;
  color: #9b948a;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-footer small {
  color: #9d968b;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-dialog {
  width: min(calc(100% - 2rem), 38rem);
  max-height: min(52rem, calc(100dvh - 2rem));
  overflow: visible;
  padding: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 1.75rem;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 3rem 9rem rgba(0, 0, 0, 0.75);
}

.waitlist-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px) saturate(70%);
}

.waitlist-dialog[open] {
  animation: dialogEnter 420ms var(--ease-out) both;
}

.waitlist-dialog.is-fallback[open] {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  display: block;
  margin: 0;
  animation: none;
  transform: translate(-50%, -50%);
}

body.dialog-fallback-open .cosmic-veil {
  z-index: 80;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px) saturate(70%);
  opacity: 1;
  pointer-events: auto;
}

.waitlist-dialog__shell {
  position: relative;
  max-height: min(52rem, calc(100dvh - 2rem));
  overflow-y: auto;
  padding: clamp(1.5rem, 5vw, 3.2rem);
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(18, 16, 21, 0.98), rgba(5, 5, 7, 0.99)),
    var(--obsidian);
  scrollbar-color: rgba(var(--accent-rgb), 0.35) transparent;
}

.waitlist-dialog__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(135deg, transparent 0 4.9rem, rgba(255, 255, 255, 0.012) 5rem);
  pointer-events: none;
}

.waitlist-dialog__glow {
  position: absolute;
  inset: -18rem 20% auto;
  height: 24rem;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.25), transparent 68%);
  filter: blur(2.5rem);
  pointer-events: none;
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.55rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: #a39c92;
  font-size: 1.25rem;
  font-weight: 300;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.dialog-close:hover {
  border-color: rgba(var(--accent-rgb), 0.32);
  color: var(--gold-bright);
  transform: rotate(8deg);
}

.dialog-sigil {
  position: relative;
  z-index: 2;
  width: 5.2rem;
  aspect-ratio: 1;
  margin-bottom: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.24), #08070a 70%);
  box-shadow: 0 0 0 0.65rem rgba(var(--accent-rgb), 0.025), 0 0 1.7rem rgba(var(--secondary-rgb), 0.14);
}

.dialog-sigil::before {
  content: "";
  position: absolute;
  inset: -0.68rem;
  border: 1px dashed rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.dialog-sigil span {
  color: var(--gold-bright);
  font-size: 1.4rem;
}

.waitlist-dialog h2 {
  position: relative;
  z-index: 2;
  max-width: 11ch;
  margin: 0.9rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.waitlist-dialog h2 em {
  color: var(--gold-bright);
  font-style: normal;
}

.waitlist-dialog__description {
  position: relative;
  z-index: 2;
  max-width: 31rem;
  margin: 0 0 2rem;
  color: #99938a;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.65;
}

.waitlist-dialog form,
.success-state {
  position: relative;
  z-index: 3;
}

.email-field {
  display: grid;
  gap: 0.65rem;
}

.email-field > span {
  color: #c3baad;
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.email-field input {
  width: 100%;
  min-height: 3.65rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.85rem;
  outline: 0;
  background: rgba(0, 0, 0, 0.34);
  color: #f4ecdd;
  font-size: 0.94rem;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.email-field input::placeholder {
  color: #57534e;
}

.email-field input:focus {
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.035);
  box-shadow: 0 0 0 0.23rem rgba(var(--accent-rgb), 0.08);
}

.email-field small {
  color: #a39c92;
  font-size: 0.68rem;
  line-height: 1.5;
}

.consent-field {
  position: relative;
  display: block;
  margin-top: 1.35rem;
  padding-left: 1.9rem;
  color: #999188;
  font-size: 0.72rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.consent-field > span {
  display: block;
}

.consent-field i {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 1.15rem;
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 0.28rem;
  background: rgba(0, 0, 0, 0.36);
}

.consent-field i::after {
  content: "";
  position: absolute;
  top: 0.16rem;
  left: 0.36rem;
  width: 0.28rem;
  height: 0.54rem;
  border-right: 2px solid #151005;
  border-bottom: 2px solid #151005;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 150ms ease, transform 150ms ease;
}

.consent-field input:checked + span i {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}

.consent-field input:checked + span i::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.consent-field input:focus-visible + span i {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.consent-field strong {
  color: #c8beb0;
  font-weight: 600;
}

.consent-note {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 1px solid rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.035);
  color: #aaa297;
  font-size: 0.68rem;
  line-height: 1.55;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.secondary-action,
.submit-action {
  min-height: 3.4rem;
  border-radius: 999px;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: #a39d94;
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.secondary-action:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
  color: #ddd4c7;
}

.submit-action {
  padding: 0.25rem 1.3rem;
}

.submit-action i {
  font-size: 1rem;
  font-style: normal;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.9rem 0 0;
  color: #ada499;
  font-size: 0.67rem;
  line-height: 1.5;
}

.form-status[data-state="error"] {
  color: #f19aae;
}

.success-state {
  padding: 1rem 0 0;
}

.success-state > span {
  width: 3.6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.3rem;
  box-shadow: 0 0 2rem rgba(var(--accent-rgb), 0.12);
}

.success-state h3 {
  margin: 1.4rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
}

.success-state p {
  max-width: 28rem;
  margin: 0 0 1.8rem;
  color: #938d84;
  font-family: var(--font-display);
  line-height: 1.65;
}

.success-state .submit-action {
  width: 100%;
}

.noscript {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid var(--gold);
  border-radius: 0.8rem;
  background: #100d08;
  color: #e8d8b7;
  text-align: center;
  font-size: 0.75rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

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

.js .artifact-card.reveal.is-visible {
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.js .artifact-card.reveal.is-visible:nth-child(even) {
  transform: translateY(2.5rem) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.js .artifact-card.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.js .artifact-card.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.js .artifact-card.reveal:nth-child(4) {
  transition-delay: 200ms;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes reverseSpin {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes relicMorph {
  0% { border-radius: 43% 57% 51% 49% / 55% 42% 58% 45%; transform: rotate(0deg) scale(0.98); }
  100% { border-radius: 55% 45% 43% 57% / 44% 58% 42% 56%; transform: rotate(12deg) scale(1.02); }
}

@keyframes signalPulse {
  0%, 100% { opacity: 0.46; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes dialogEnter {
  from { opacity: 0; transform: translateY(1.5rem) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 76rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .domain-nav {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header.is-scrolled .domain-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -0.5rem);
    transition-delay: 0s, 0s, 220ms;
  }

  .hero {
    padding-top: 11rem;
  }

  .doctrine {
    grid-template-columns: 0.65fr 1fr;
  }

  .doctrine__principles {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .doctrine__principles li,
  .doctrine__principles li:last-child {
    padding-inline: 1rem;
    border-block: 1px solid var(--line);
  }

  .doctrine__principles li + li {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 58rem) {
  .site-header {
    gap: 1rem;
  }

  .header-cta span,
  .brand__wordmark small {
    display: none;
  }

  .domain-nav {
    max-width: calc(100vw - 2rem);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .domain-link {
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    padding-top: 12rem;
  }

  .hero__copy {
    max-width: 46rem;
  }

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

  .hero__relic {
    width: min(100%, 29rem);
    margin-block: 1rem;
  }

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

  .hero__ledger > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero__ledger > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .final-signal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .artifact-card,
  .artifact-card:nth-child(even) {
    min-height: 39rem;
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }

  .js .artifact-card.reveal.is-visible,
  .js .artifact-card.reveal.is-visible:nth-child(even) {
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }

  .doctrine {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .doctrine__orb {
    width: 13rem;
    margin-left: 2rem;
  }

  .doctrine__principles {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .doctrine__principles li,
  .doctrine__principles li:last-child {
    padding-inline: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
  }

  .doctrine__principles li:last-child {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 38rem) {
  :root {
    --page-gutter: 1.1rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand__wordmark strong {
    max-width: 10rem;
    overflow: hidden;
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .domain-nav {
    top: 4.75rem;
  }

  .domain-link {
    padding: 0.52rem 0.62rem;
    font-size: 0.52rem;
  }

  .domain-link__index {
    display: none;
  }

  .hero {
    padding-top: 10.5rem;
  }

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

  .hero__description {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-action {
    width: 100%;
    justify-content: space-between;
  }

  .hero__relic {
    width: min(100%, 23rem);
  }

  .relic-caption {
    right: 0;
    bottom: 4%;
  }

  .hero__ledger > div {
    min-height: 4.8rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem;
  }

  .hero__ledger strong {
    font-size: 1.25rem;
  }

  .artifact-card {
    min-height: 37rem;
  }

  .artifact-card__relic {
    width: 8.4rem;
  }

  .artifact-card__footer {
    align-items: flex-end;
  }

  .artifact-card__action span {
    display: none;
  }

  .doctrine__orb {
    width: 10rem;
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .secondary-action {
    order: 2;
  }

  .submit-action {
    order: 1;
  }
}

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

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

  .cosmic-field {
    opacity: 0.42;
  }

  .pointer-aura {
    display: none;
  }

  .artifact-card,
  .artifact-card:nth-child(even) {
    transform: none !important;
  }

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