@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/fonts/Fraunces-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --night-950: #0b0512;
  --night-900: #14061c;
  --night-850: #1a0926;
  --night-800: #1f0c2b;
  --night-700: #2c1440;
  --night-600: #3e1f58;
  --gold-100: #ffe9a8;
  --gold-300: #ffd84a;
  --gold-500: #ffc53d;
  --gold-700: #e0a21f;
  --crimson-300: #ff7a9c;
  --crimson-500: #ff1f5e;
  --violet: #5b1fcf;
  --pink: #ff2d95;
  --cobalt: #2b2fd6;
  --cyan: #00d4f8;
  --emerald: #00e27e;
  --white: #ffffff;
  --text-dim: #c7b8d6;
  --text-faint: #9a8aac;
  --stroke: rgba(255, 255, 255, 0.11);
  --surface: rgba(255, 255, 255, 0.055);
  --surface-raised: rgba(255, 255, 255, 0.085);
  --focus: #ffd84a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--night-950);
  color: var(--white);
  font: 600 16px/1.62 "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--white);
  color: var(--night-950);
  font-weight: 900;
  transform: translateY(-160%);
}

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

.landing-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 4%, rgba(255, 45, 149, 0.16), transparent 28rem),
    radial-gradient(circle at 12% 19%, rgba(91, 31, 207, 0.17), transparent 34rem),
    linear-gradient(180deg, #110719 0%, var(--night-950) 25%, #100518 68%, #08040d 100%);
}

.landing-page::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.65px, transparent 0.65px);
  background-size: 9px 9px;
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

.landing-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 5, 18, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.landing-brand {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.landing-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 74, 0.38);
  border-radius: 15px;
  background: var(--night-900);
  box-shadow: 0 9px 28px rgba(255, 197, 61, 0.16);
}

.landing-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wordmark {
  background: linear-gradient(180deg, var(--gold-100), var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font: 700 23px/1 "Fraunces", Georgia, serif;
  letter-spacing: 0.08em;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.landing-nav a {
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.landing-nav a:hover,
.landing-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 216, 74, 0.48);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold-100), var(--gold-700));
  box-shadow: 0 10px 28px rgba(255, 197, 61, 0.17);
  color: var(--night-950);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.header-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(410px, 0.85fr) minmax(560px, 1.15fr);
  min-height: 780px;
  align-items: center;
  gap: 18px;
  padding-block: 72px 88px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.landing-page h1,
.landing-page h2 {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.landing-page h1 {
  margin-bottom: 25px;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 0.96;
}

.landing-page h1 span,
.landing-page h2 span {
  background: linear-gradient(95deg, var(--gold-100), var(--gold-500) 47%, #ff9ccf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 29px;
  color: var(--text-dim);
  font-size: 19px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.support-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.primary-button {
  border: 1px solid rgba(255, 233, 168, 0.5);
  background: linear-gradient(145deg, var(--gold-100), var(--gold-700));
  box-shadow: 0 11px 32px rgba(255, 197, 61, 0.22);
  color: var(--night-950);
}

.secondary-button {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.primary-button:hover,
.secondary-button:hover,
.support-button:hover {
  transform: translateY(-2px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--text-faint);
  font-size: 13px;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof span {
  color: var(--emerald);
}

.hero-art {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hero-beams {
  position: absolute;
  z-index: -3;
  inset: -15% -24% -6% -18%;
  background: conic-gradient(from 10deg at 55% 42%, transparent 0 7%, rgba(255, 255, 255, 0.055) 7% 12%, transparent 12% 25%);
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
  opacity: 0.65;
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(255, 216, 74, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(91, 31, 207, 0.13), 0 0 90px rgba(255, 45, 149, 0.08);
}

.hero-orbit-one {
  inset: 7% 1% 5% 3%;
}

.hero-orbit-two {
  inset: 17% 12% 14% 15%;
}

.hero-cast {
  position: absolute;
  top: 16%;
  right: -9%;
  width: 116%;
  filter: drop-shadow(0 35px 44px rgba(0, 0, 0, 0.46));
  animation: cast-float 6s ease-in-out infinite;
}

.hero-cast,
.character-art picture,
.final-cta picture {
  aspect-ratio: 1672 / 941;
}

.hero-cast img,
.character-art img,
.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.secret-card,
.suspect-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 6, 28, 0.82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.secret-card {
  top: 8%;
  left: 7%;
  display: grid;
  min-width: 170px;
  padding: 17px 19px;
  border-radius: 20px;
}

.secret-card span,
.secret-card small,
.suspect-card span {
  color: var(--text-faint);
  font-size: 11px;
}

.secret-card strong {
  margin-block: 3px;
  color: var(--gold-300);
  font-size: 27px;
  letter-spacing: 0.08em;
}

.suspect-card {
  right: 1%;
  bottom: 10%;
  padding: 14px 17px;
  border-radius: 17px;
  transform: rotate(3deg);
}

.suspect-card span,
.suspect-card strong {
  display: block;
}

.suspect-card strong {
  color: var(--crimson-300);
  font-size: 15px;
}

.ritual-section,
.deck-section,
.features-section,
.faq-section {
  padding-block: clamp(82px, 10vw, 138px);
  scroll-margin-top: 58px;
}

.section-intro {
  max-width: 830px;
  margin-bottom: 48px;
}

.section-intro-centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro-centered .landing-eyebrow {
  justify-content: center;
}

.section-intro h2,
.character-copy h2,
.privacy-section h2,
.final-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.6vw, 70px);
  line-height: 1.02;
}

.section-intro > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.7;
}

.section-intro-centered > p:last-child {
  margin-inline: auto;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
}

.ritual-card {
  position: relative;
  min-height: 320px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 45, 149, 0.12), transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.ritual-card-raised {
  transform: translateY(-22px);
}

.ritual-number {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ritual-symbol {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 34px 0 30px;
  border: 1px solid rgba(255, 216, 74, 0.25);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 216, 74, 0.14), rgba(91, 31, 207, 0.2));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
  color: var(--gold-100);
  font: 700 30px/1 "Fraunces", Georgia, serif;
}

.ritual-symbol-crimson {
  border-color: rgba(255, 31, 94, 0.3);
  background: linear-gradient(145deg, rgba(255, 31, 94, 0.2), rgba(91, 31, 207, 0.14));
  color: var(--crimson-300);
}

.ritual-card h3,
.deck-card h3,
.bento-card h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1.18;
}

.ritual-card p,
.deck-card p,
.bento-card p {
  margin-bottom: 0;
  color: var(--text-dim);
  font-size: 15px;
}

.character-section {
  display: grid;
  grid-template-columns: minmax(510px, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding-block: clamp(88px, 11vw, 150px);
}

.character-art {
  position: relative;
  min-width: 0;
}

.character-art picture {
  position: relative;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.42));
}

.character-glow {
  position: absolute;
  inset: 7% -8% -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 47, 214, 0.34), rgba(255, 45, 149, 0.13) 44%, transparent 71%);
  filter: blur(14px);
}

.character-copy > p:not(.landing-eyebrow) {
  margin-bottom: 28px;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 197, 61, 0.11);
  color: var(--gold-300);
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.feature-list small {
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.45;
}

.deck-section .section-intro {
  margin-inline: auto;
  text-align: center;
}

.deck-section .section-intro .landing-eyebrow {
  justify-content: center;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.deck-card {
  min-width: 0;
  padding: 11px 11px 17px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  transition: border-color 180ms ease, transform 180ms ease;
}

.deck-card:hover {
  border-color: rgba(255, 216, 74, 0.34);
  transform: translateY(-5px);
}

.deck-card picture {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background: var(--night-800);
}

.deck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-card > div {
  padding: 15px 5px 0;
}

.deck-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.deck-card p {
  font-size: 13px;
}

.deck-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 197, 61, 0.12);
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.deck-badge-free {
  background: rgba(0, 226, 126, 0.12);
  color: #70ffbd;
}

.deck-badge-after-dark {
  background: rgba(255, 31, 94, 0.13);
  color: var(--crimson-300);
}

.deck-badge-gift {
  background: rgba(0, 212, 248, 0.12);
  color: #7ceaff;
}

.access-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 25px 28px;
  border: 1px solid rgba(255, 216, 74, 0.17);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 197, 61, 0.07), rgba(91, 31, 207, 0.075));
}

.access-mask {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--gold-100), var(--gold-700));
  color: var(--night-950);
  font: 700 23px/1 "Fraunces", Georgia, serif;
}

.access-note strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
}

.access-note p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 340px;
  padding: clamp(25px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.bento-wide {
  grid-column: span 8;
}

.bento-violet {
  background: radial-gradient(circle at 88% 90%, rgba(255, 45, 149, 0.16), transparent 42%), linear-gradient(145deg, rgba(91, 31, 207, 0.17), rgba(255, 255, 255, 0.025));
}

.bento-gold {
  background: radial-gradient(circle at 80% 100%, rgba(255, 197, 61, 0.16), transparent 45%), linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.bento-lagoon {
  background: radial-gradient(circle at 86% 100%, rgba(0, 226, 126, 0.13), transparent 45%), linear-gradient(145deg, rgba(0, 83, 178, 0.15), rgba(255, 255, 255, 0.025));
}

.feature-kicker {
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bento-card h3 {
  max-width: 690px;
  margin-top: 20px;
  font-size: clamp(26px, 3.2vw, 42px);
}

.bento-card p {
  max-width: 660px;
  margin-bottom: clamp(24px, 2.5vw, 34px);
  font-size: 16px;
}

.pass-visual {
  position: static;
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(11, 5, 18, 0.55);
}

.pass-visual span,
.offline-proof li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.pass-visual i {
  color: var(--gold-300);
  font-style: normal;
}

.number-visual {
  position: static;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
}

.number-visual span {
  display: grid;
  width: 62px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(11, 5, 18, 0.7);
  color: var(--text-dim);
  font-size: 22px;
  font-weight: 900;
}

.number-visual span:last-child {
  height: 94px;
  border-color: rgba(255, 216, 74, 0.28);
  color: var(--gold-300);
  transform: translateY(-6px);
}

.dice-visual {
  position: static;
  display: grid;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(0, 212, 248, 0.22);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(0, 212, 248, 0.12), rgba(91, 31, 207, 0.2));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: #79eaff;
  font-size: 34px;
  margin-top: auto;
  margin-left: auto;
  transform: rotate(8deg);
}

.timer-visual {
  position: static;
  margin-top: auto;
}

.timer-visual strong {
  display: block;
  color: var(--gold-100);
  font-size: 38px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.timer-visual span {
  display: block;
  height: 9px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald) 0 55%, var(--gold-300) 55% 82%, var(--crimson-500) 82%);
}

.offline-proof {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.privacy-section {
  display: grid;
  grid-template-columns: auto minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  gap: 30px;
  align-items: center;
  margin-block: clamp(82px, 10vw, 140px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(0, 212, 248, 0.18);
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(0, 212, 248, 0.055), rgba(91, 31, 207, 0.07));
}

.privacy-orb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(0, 212, 248, 0.25);
  border-radius: 21px;
  background: rgba(0, 212, 248, 0.08);
  color: #72ecff;
  font-size: 29px;
}

.privacy-section .landing-eyebrow {
  margin-bottom: 9px;
}

.privacy-section h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.5vw, 56px);
}

.privacy-section > p {
  margin-bottom: 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.privacy-section a {
  color: var(--gold-300);
  font-weight: 800;
}

.faq-section {
  max-width: 980px;
}

.faq-list {
  border-top: 1px solid var(--stroke);
}

.faq-list details {
  border-bottom: 1px solid var(--stroke);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 20px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 790px;
  margin: -2px 0 24px;
  color: var(--text-dim);
  line-height: 1.72;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-block: 64px 126px;
  padding: 25px clamp(28px, 5vw, 60px) 0;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.045);
}

.final-cta picture,
.final-copy {
  position: relative;
  z-index: 2;
}

.final-cta picture {
  align-self: end;
  margin: 0 -5% -1%;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.final-copy {
  padding-block: 54px;
}

.final-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.final-copy > p:not(.landing-eyebrow) {
  margin-bottom: 27px;
  color: var(--text-dim);
  font-size: 17px;
}

.final-glow {
  position: absolute;
  inset: -36% 45% -74% -13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.29), rgba(91, 31, 207, 0.16) 45%, transparent 72%);
  filter: blur(14px);
}

.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.14);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  padding-block: 46px;
}

.footer-brand p {
  margin: 7px 0 0 59px;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a {
  min-height: 44px;
  align-content: center;
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-faint) !important;
  font-size: 12px;
}

@keyframes cast-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Legal and support pages */
body:not(.landing-page) {
  color-scheme: light;
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 45, 149, 0.26), transparent 31rem),
    radial-gradient(circle at 92% 7%, rgba(91, 31, 207, 0.33), transparent 34rem),
    linear-gradient(145deg, var(--night-800), var(--night-950) 56%);
  color: #24152f;
}

.shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 20px;
}

.legal-header .landing-brand {
  min-height: 48px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.legal-nav a {
  min-height: 48px;
  padding: 13px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.legal-main {
  padding: clamp(32px, 6vw, 62px) clamp(22px, 6vw, 62px) 65px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 90px rgba(4, 1, 9, 0.36);
}

.legal-main a {
  color: #4b20a8;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin: 0 0 18px;
  padding: 6px 11px;
  border: 1px solid #dfc76f;
  border-radius: 999px;
  background: #fff8dc;
  color: #624800;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main h1,
.legal-main h2,
.legal-main h3 {
  color: var(--night-900);
  letter-spacing: -0.028em;
}

.legal-main h1 {
  margin: 0 0 8px;
  font-size: clamp(36px, 7vw, 54px);
  line-height: 1.07;
}

.legal-main h2 {
  margin: 42px 0 11px;
  font-size: 24px;
  line-height: 1.28;
}

.legal-main h3 {
  margin: 27px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.legal-main p {
  margin: 0 0 16px;
}

.legal-main ul {
  margin: 8px 0 20px;
  padding-left: 24px;
}

.legal-main li + li {
  margin-top: 8px;
}

.meta {
  margin-bottom: 28px !important;
  color: #6e6275;
  font-size: 14px;
}

.lede {
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.68;
}

.notice {
  margin: 27px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--crimson-500);
  border-radius: 5px 18px 18px 5px;
  background: #fff0f6;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.contact-card {
  margin: 27px 0 8px;
  padding: 23px;
  border: 1px solid #e9dfe9;
  border-radius: 21px;
  background: linear-gradient(145deg, #fffaf1, #fff3fa);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.support-button {
  margin-top: 4px;
  background: var(--night-900);
  color: #fff !important;
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 27px 2px 44px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.legal-footer div:last-child {
  text-align: right;
}

.legal-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1180px) {
  .landing-shell { width: min(980px, calc(100% - 52px)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .landing-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 28px; padding-top: 92px; text-align: center; }
  .hero-copy { max-width: 820px; margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-art { min-height: 590px; }
  .hero-cast { top: 12%; right: 1%; width: 100%; }
  .secret-card { left: 11%; }
  .suspect-card { right: 8%; }
  .ritual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ritual-card-raised { transform: none; }
  .character-section { grid-template-columns: 1fr; }
  .character-art { width: min(850px, 100%); margin-inline: auto; }
  .character-copy { max-width: 760px; }
  .deck-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .privacy-section { grid-template-columns: auto 1fr; }
  .privacy-section > p { grid-column: 1 / -1; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-copy { grid-row: 1; max-width: 700px; margin-inline: auto; }
  .final-cta picture { width: min(760px, 100%); margin-inline: auto; }
}

@media (max-width: 820px) {
  .landing-shell { width: min(100% - 34px, 720px); }
  .hero { padding-top: 68px; }
  .hero-art { min-height: 460px; }
  .secret-card { top: 3%; left: 1%; transform: scale(0.86); }
  .suspect-card { right: 1%; bottom: 5%; transform: rotate(3deg) scale(0.9); }
  .ritual-grid { grid-template-columns: 1fr; max-width: 660px; margin-inline: auto; }
  .ritual-card { min-height: 265px; }
  .ritual-symbol { margin-block: 25px 22px; }
  .deck-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card, .bento-wide { grid-column: 1 / -1; }
  .privacy-section { grid-template-columns: 1fr; text-align: left; }
  .privacy-section > p { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-note { grid-column: auto; }
}

@media (max-width: 620px) {
  .landing-shell { width: min(100% - 24px, 560px); }
  .site-header { background: rgba(11, 5, 18, 0.91); }
  .header-inner { min-height: 70px; gap: 12px; }
  .landing-mark { width: 44px; height: 44px; border-radius: 14px; }
  .wordmark { font-size: 20px; }
  .header-cta { min-height: 46px; padding-inline: 14px; font-size: 12px; }
  .header-cta span { display: none; }
  .hero { padding-block: 58px 38px; }
  .landing-page h1 { font-size: clamp(45px, 15vw, 66px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .primary-button, .secondary-button { width: 100%; }
  .hero-proof { display: grid; justify-items: start; width: fit-content; margin-inline: auto; }
  .hero-art { min-height: 340px; }
  .hero-cast { top: 15%; right: -11%; width: 122%; }
  .hero-orbit-one { inset: 9% -5% 3%; }
  .hero-orbit-two { inset: 19% 6% 13%; }
  .secret-card { top: 0; min-width: 137px; padding: 12px 14px; transform: scale(0.78); transform-origin: top left; }
  .secret-card strong { font-size: 22px; }
  .suspect-card { right: -4%; bottom: 1%; transform: rotate(3deg) scale(0.76); transform-origin: bottom right; }
  .ritual-section, .deck-section, .features-section, .faq-section { padding-block: 70px; }
  .section-intro { margin-bottom: 34px; }
  .section-intro h2, .character-copy h2, .privacy-section h2, .final-copy h2 { font-size: clamp(38px, 12vw, 53px); }
  .section-intro > p:last-child, .character-copy > p:not(.landing-eyebrow) { font-size: 16px; }
  .character-section { padding-block: 70px; }
  .character-art { width: 115%; margin-left: -7.5%; }
  .deck-grid { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; }
  .deck-card { display: grid; grid-template-columns: 120px 1fr; gap: 3px; align-items: center; }
  .deck-card picture { width: 120px; }
  .deck-card > div { padding: 8px 10px 8px 15px; }
  .deck-card h3 { font-size: 18px; }
  .access-note { grid-template-columns: 1fr; padding: 22px; }
  .bento-card { min-height: 350px; padding: 25px; }
  .pass-visual { gap: 4px; padding: 10px; }
  .pass-visual span { padding: 8px; font-size: 9px; }
  .privacy-section { margin-block: 70px; padding: 28px; }
  .faq-list summary { font-size: 16px; }
  .final-cta { margin-block: 55px 90px; padding: 10px 20px 0; border-radius: 28px; }
  .final-copy { padding-block: 42px 10px; }
  .final-cta picture { width: 118%; margin-left: -9%; }
  .footer-brand p { margin-left: 0; }
  .shell { width: min(100% - 24px, 860px); }
  .legal-header { align-items: flex-start; flex-direction: column; padding-top: 18px; }
  .legal-nav { justify-content: flex-start; }
  .legal-main { border-radius: 24px; }
  .legal-footer { flex-direction: column; }
  .legal-footer div:last-child { text-align: left; }
  .legal-footer a { margin: 0 15px 0 0; }
}

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