@font-face {
  font-family: "Bodoni Moda";
  src: url("/marketing/fonts/bodoni-moda-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  color-scheme: dark;
  --black: #000;
  --panel: #060606;
  --panel-raised: #0b0a09;
  --ivory: #f4efe6;
  --ivory-soft: #d8d0c3;
  --muted: #9a948a;
  --dim: #625d55;
  --gold: #c1a46d;
  --gold-bright: #d8bd86;
  --gold-deep: #6d5633;
  --warm: #16120b;
  --rose: #8f5364;
  --chrome: #82909f;
  --line: rgb(244 239 230 / 13%);
  --line-strong: rgb(193 164 109 / 38%);
  --shadow: 0 34px 90px rgb(0 0 0 / 55%);
  --radius: 5px;
  --shell: min(1320px, calc(100vw - 56px));
  --serif: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 75% 0%, rgb(193 164 109 / 7%), transparent 28rem),
    var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  border: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 82%), rgb(0 0 0 / 34%) 62%, transparent);
  backdrop-filter: blur(8px) saturate(115%);
}

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

.wordmark {
  width: fit-content;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  gap: clamp(22px, 3vw, 44px);
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav a,
.header-sign-in,
.header-entry {
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 120ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}

.header-sign-in {
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-sign-in:hover,
.header-sign-in:focus-visible {
  color: var(--gold-bright);
}

.header-sign-in:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgb(255 255 255 / 68%);
  outline-offset: 4px;
}

.header-entry {
  display: inline-flex;
  min-height: 36px;
  justify-content: center;
  align-items: center;
  justify-self: end;
  padding: 0 12px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 5px;
  color: #fff;
  background: rgb(0 0 0 / 32%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%), 0 1px 2px rgb(0 0 0 / 24%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  white-space: nowrap;
}

.header-entry:hover,
.header-entry:focus-visible {
  border-color: rgb(255 255 255 / 68%);
  color: #fff;
  background: rgb(255 255 255 / 10%);
}

.header-entry:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 34%), inset 0 1px 0 rgb(255 255 255 / 8%), 0 1px 2px rgb(0 0 0 / 24%);
}

.header-entry:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.96%, rgb(255 255 255 / 3%) 50%, transparent 50.04%),
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 100% 100%, 100% 12.5%;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 0.86fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  min-height: calc(100svh - 58px);
  padding-block: clamp(80px, 12vw, 160px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 830px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 10vw, 9.3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.hero-home h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.92;
}

.hero-category h1,
.hero-comparison h1,
.hero-feature h1,
.hero-guide h1 {
  font-size: clamp(3.8rem, 7.7vw, 7.25rem);
  line-height: 0.91;
}

.hero-performer h1 {
  font-size: clamp(4rem, 7.7vw, 7.5rem);
  line-height: 0.91;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 35px;
  color: var(--ivory-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  text-wrap: pretty;
}

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

.hero-note {
  max-width: 620px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 120ms ease;
}

.button-primary {
  color: #111;
  background: var(--ivory);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgb(255 255 255 / 68%);
  background: #fff;
}

.button-secondary {
  border-color: rgb(244 239 230 / 22%);
  background: rgb(255 255 255 / 5.5%);
  color: var(--ivory);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgb(244 239 230 / 42%);
  color: #fff;
  background: rgb(244 239 230 / 10%);
}

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 22%);
}

.button-secondary:focus-visible {
  box-shadow: 0 0 0 3px rgb(244 239 230 / 16%);
}

.button:active {
  transform: translateY(1px);
}

.trust-line {
  margin: 20px 0 0;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.studio-visual,
.performer-portrait,
.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  aspect-ratio: 0.79;
}

.studio-visual::after,
.performer-portrait::after,
.hero-media::after {
  position: absolute;
  inset: auto 11% -8% 11%;
  height: 15%;
  border-radius: 50%;
  background: rgb(193 164 109 / 15%);
  filter: blur(40px);
  content: "";
}

.visual-panel {
  position: absolute;
  inset: 7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 48% 48% var(--radius) var(--radius);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 5%), transparent 28%),
    radial-gradient(circle at 60% 28%, rgb(193 164 109 / 28%), transparent 27%),
    radial-gradient(circle at 50% 92%, rgb(85 50 22 / 42%), transparent 48%),
    #070605;
  box-shadow: inset 0 0 90px rgb(193 164 109 / 8%), var(--shadow);
}

.visual-panel::before {
  position: absolute;
  inset: 28% 21% 14%;
  border: 1px solid rgb(244 239 230 / 14%);
  border-radius: 50% 50% 8% 8%;
  background:
    radial-gradient(ellipse at 50% 23%, rgb(244 239 230 / 28%) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 50% 50%, rgb(193 164 109 / 19%), transparent 57%);
  box-shadow: inset 0 0 60px rgb(0 0 0 / 85%);
  content: "";
  filter: blur(0.3px);
}

.visual-kicker,
.visual-caption {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visual-caption {
  align-self: flex-end;
  max-width: 170px;
  text-align: right;
}

.visual-mark {
  position: relative;
  z-index: 2;
  align-self: center;
  color: rgb(244 239 230 / 9%);
  font-family: var(--serif);
  font-size: clamp(7rem, 17vw, 12rem);
  letter-spacing: -0.1em;
  line-height: 1;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgb(193 164 109 / 18%);
  border-radius: 50%;
}

.visual-orbit-one {
  inset: -4% 3%;
  transform: rotate(17deg);
}

.visual-orbit-two {
  inset: 4% -5%;
  transform: rotate(-22deg);
}

.creation-visual .visual-panel {
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 7%), transparent 27%),
    radial-gradient(circle at 50% 38%, rgb(193 164 109 / 23%), transparent 25%),
    linear-gradient(155deg, #171109, #050505 66%);
}

.creation-visual .visual-panel::before {
  inset: 18% 18% 24%;
  border-color: rgb(216 189 134 / 27%);
  border-radius: 50% 50% 12% 12%;
  background:
    radial-gradient(ellipse at 50% 20%, rgb(244 239 230 / 28%) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 50% 54%, rgb(193 164 109 / 20%), transparent 56%);
}

.creation-visual .visual-mark {
  color: rgb(244 239 230 / 14%);
  font-size: clamp(4.3rem, 9vw, 7rem);
  letter-spacing: -0.06em;
}

.creation-details {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 290px);
  align-self: center;
  border: 1px solid rgb(244 239 230 / 12%);
  background: rgb(244 239 230 / 12%);
}

.creation-details span {
  padding: 9px 11px;
  background: rgb(5 5 5 / 82%);
  color: var(--ivory-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.performer-portrait {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 48% 48% var(--radius) var(--radius);
  background:
    linear-gradient(160deg, rgb(255 255 255 / 5%), transparent 23%),
    radial-gradient(circle at 50% 24%, rgb(244 239 230 / 20%), transparent 7%),
    radial-gradient(circle at 50% 49%, rgb(193 164 109 / 20%), transparent 36%),
    linear-gradient(180deg, #14100b, #040404 72%);
  box-shadow: var(--shadow);
}

.hero-media {
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 48% 48% var(--radius) var(--radius);
  background: #070605;
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgb(0 0 0 / 82%) 100%),
    linear-gradient(145deg, rgb(255 255 255 / 9%), transparent 24%);
  content: "";
  pointer-events: none;
}

.hero-media::after {
  z-index: 1;
}

.hero-media picture,
.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
}

.hero-media .hero-video {
  position: absolute;
  inset: 0;
}

.hero-media-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  gap: 6px;
  padding: clamp(25px, 4vw, 38px);
}

.hero-media-caption span {
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-media-caption strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.hero-has-media {
  isolation: isolate;
  min-height: 100svh;
  border: 0;
  background: #000;
}

.hero-has-media::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgb(0 0 0 / 88%) 12%, rgb(0 0 0 / 24%) 58%, transparent 76%),
    linear-gradient(0deg, rgb(0 0 0 / 82%) 0%, transparent 48%),
    repeating-radial-gradient(circle at 50% 50%, rgb(255 255 255 / 3%) 0 1px, transparent 1px 4px);
  background-size: auto, auto, 5px 5px;
  mask-image: none;
}

.hero-has-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 22%), transparent 26%, transparent 74%, rgb(0 0 0 / 35%));
  content: "";
  pointer-events: none;
}

.hero-has-media .hero-grid {
  z-index: 2;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 100svh;
  padding-block: clamp(150px, 19vh, 230px) clamp(76px, 9vh, 104px);
}

.hero-has-media .hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  column-gap: clamp(40px, 8vw, 130px);
  align-items: end;
  max-width: none;
  animation: hero-copy-in 850ms 100ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-has-media .hero-copy > .eyebrow,
.hero-has-media .hero-copy > h1 {
  grid-column: 1 / -1;
}

.hero-has-media .hero-copy > h1 {
  max-width: 9.6ch;
  margin-bottom: clamp(38px, 5vh, 62px);
  color: #fffaf2;
  font-size: clamp(5.7rem, 10.8vw, 11.2rem);
  letter-spacing: -0.07em;
  line-height: 0.79;
  text-shadow: 0 4px 42px rgb(0 0 0 / 48%);
}

.hero-has-media.hero-home h1 {
  font-size: clamp(5.7rem, 10.8vw, 11.2rem);
  line-height: 0.79;
}

.hero-has-media.hero-category h1,
.hero-has-media.hero-comparison h1,
.hero-has-media.hero-feature h1,
.hero-has-media.hero-guide h1,
.hero-has-media.hero-performer h1 {
  max-width: 10.5ch;
  font-size: clamp(5.2rem, 9vw, 9.5rem);
  line-height: 0.82;
}

.hero-has-media .hero-lede {
  grid-row: 3;
  grid-column: 1;
  max-width: 37ch;
  margin: 0;
  color: rgb(255 250 242 / 88%);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.hero-has-media .hero-actions {
  grid-row: 3;
  grid-column: 2;
  justify-self: end;
  justify-content: flex-end;
}

.hero-has-media .hero-note {
  grid-row: 4;
  grid-column: 2;
  justify-self: end;
  margin: 15px 0 0;
  color: rgb(255 250 242 / 58%);
  text-align: right;
}

.hero-has-media .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-has-media .hero-media::before {
  background: linear-gradient(135deg, rgb(255 255 255 / 4%), transparent 30%);
}

.hero-has-media .hero-media::after {
  display: none;
}

.hero-has-media .hero-media img,
.hero-has-media .hero-media video {
  filter: contrast(1.04) saturate(0.94);
  animation: hero-settle 1.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-home.hero-has-media .hero-media img,
.hero-home.hero-has-media .hero-media video {
  object-position: 75% 50%;
}

.hero[data-page-id="guides"].hero-has-media .hero-media img {
  object-position: 82% 50%;
}

.hero-has-media .hero-media-caption {
  inset: 104px clamp(26px, 4vw, 66px) auto auto;
  justify-items: end;
  gap: 2px;
  padding: 0;
  text-align: right;
}

.hero-has-media .hero-media-caption strong {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.feature-hero-media-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-hero-frame {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.feature-hero-frame + .feature-hero-frame {
  border-left: 1px solid rgb(216 189 134 / 54%);
}

.feature-hero-frame img {
  object-position: var(--image-position, 50% 50%);
}

.feature-hero-label {
  position: absolute;
  z-index: 2;
  top: clamp(88px, 9vh, 126px);
  left: clamp(18px, 2.5vw, 42px);
  color: rgb(255 250 242 / 72%);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-feature-single.hero-has-media::before {
  background:
    linear-gradient(90deg, #000 0%, rgb(0 0 0 / 92%) 12%, rgb(0 0 0 / 58%) 43%, rgb(0 0 0 / 8%) 72%),
    linear-gradient(0deg, rgb(0 0 0 / 88%) 0%, transparent 58%);
}

.hero-feature-single.hero-has-media .hero-copy > h1 {
  max-width: 6.2ch;
}

.hero-feature-duo.hero-has-media::before {
  background:
    linear-gradient(90deg, #000 0%, rgb(0 0 0 / 78%) 13%, rgb(0 0 0 / 28%) 45%, transparent 68%),
    linear-gradient(0deg, rgb(0 0 0 / 94%) 0%, rgb(0 0 0 / 58%) 35%, transparent 68%);
}

@media (max-width: 980px), (orientation: portrait) {
  .feature-hero-frame img {
    object-position: var(--mobile-image-position, var(--image-position, 50% 50%));
  }
}

.hero[data-page-id="guide-create-original-performer"] .feature-hero-frame img {
  object-position: 50% 14%;
}

.hero[data-page-id="guide-consistent-characters"] .feature-hero-frame:first-child img {
  object-position: 55% 34%;
}

.hero[data-page-id="guide-consistent-characters"] .feature-hero-frame:last-child img {
  object-position: 68% 32%;
}

.hero[data-page-id="guide-private-generator"] .feature-hero-frame img {
  object-position: 34% 42%;
}

.hero[data-page-id="guide-choose-generator"] .feature-hero-frame img {
  object-position: 50% 42%;
}

.hero[data-page-id="private-vs-public"] .feature-hero-frame:first-child img {
  object-position: 50% 42%;
}

.hero[data-page-id="private-vs-public"] .feature-hero-frame:last-child img {
  object-position: 50% 18%;
}

@media (max-width: 980px), (orientation: portrait) {
  .hero[data-page-id="guide-create-original-performer"] .feature-hero-frame img {
    object-position: 50% 50%;
  }

  .hero[data-page-id="guide-consistent-characters"] .feature-hero-frame:first-child img,
  .hero[data-page-id="guide-consistent-characters"] .feature-hero-frame:last-child img {
    object-position: 50% 24%;
  }

  .hero[data-page-id="guide-private-generator"] .feature-hero-frame img {
    object-position: 50% 30%;
  }

  .hero[data-page-id="guide-choose-generator"] .feature-hero-frame img {
    object-position: 50% 32%;
  }

  .hero[data-page-id="private-vs-public"] .feature-hero-frame:first-child img {
    object-position: 50% 30%;
  }

  .hero[data-page-id="private-vs-public"] .feature-hero-frame:last-child img {
    object-position: 50% 20%;
  }
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: clamp(26px, 4vw, 66px);
  bottom: 24px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: rgb(255 250 242 / 72%);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll span:last-child {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.hero-scroll:hover span:last-child {
  transform: translateY(5px);
}

@keyframes hero-settle {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.portrait-monogram {
  position: absolute;
  inset: 11% 0 auto;
  color: rgb(244 239 230 / 8%);
  font-family: var(--serif);
  font-size: clamp(13rem, 29vw, 23rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  text-align: center;
}

.portrait-copy {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 9px;
  padding: 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 94%) 25%);
}

.portrait-copy span {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.portrait-copy small {
  color: var(--muted);
  line-height: 1.5;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  border: 0;
  background: var(--ivory);
  color: #080705;
  isolation: isolate;
}

.manifesto::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(244 239 230 / 2%) 0%, rgb(244 239 230 / 4%) 48%, rgb(244 239 230 / 76%) 82%, var(--ivory) 100%),
    linear-gradient(90deg, rgb(244 239 230 / 76%) 0%, rgb(244 239 230 / 18%) 36%, transparent 66%);
  content: "";
  pointer-events: none;
}

.manifesto-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.manifesto-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgb(0 0 0 / 72%) 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgb(0 0 0 / 72%) 70%, transparent 100%);
}

.manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.17fr 1.3fr 0.42fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  min-height: 100svh;
  padding-block: clamp(56px, 7vw, 110px) clamp(54px, 7vw, 104px);
}

.manifesto-number {
  align-self: start;
  margin: 0;
  color: rgb(8 7 5 / 55%);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: 7.2ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 9.8vw, 10.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.manifesto-grid > p:last-child {
  max-width: 23ch;
  margin: 0 0 8px;
  color: rgb(8 7 5 / 66%);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.direction-sequence {
  position: relative;
  padding: 0;
  border: 0;
  background: #000;
}

.sequence-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  column-gap: clamp(50px, 9vw, 140px);
  align-items: end;
  padding-block: clamp(100px, 13vw, 175px) clamp(58px, 8vw, 100px);
}

.sequence-intro .eyebrow {
  grid-column: 1 / -1;
}

.sequence-intro h2 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.sequence-intro > p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
}

.sequence-grid {
  display: block;
}

.sequence-card {
  position: relative;
  z-index: var(--sequence-index, 1);
  top: 0;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #050403;
  box-shadow: none;
}

@supports (position: sticky) {
  .sequence-card {
    position: sticky;
  }
}

.sequence-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  aspect-ratio: auto;
  background: #090806;
}

.sequence-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sequence-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 48%), transparent 54%),
    linear-gradient(0deg, rgb(0 0 0 / 68%), transparent 48%);
  content: "";
  pointer-events: none;
}

.sequence-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--sequence-position, 50% 30%);
  filter: contrast(1.04) saturate(0.94);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sequence-card:hover img {
  transform: scale(1.025);
}

.sequence-card figcaption {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(110px, 12vh, 145px) max(28px, calc((100vw - 1320px) / 2)) clamp(45px, 7vw, 95px);
  border: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 36%), transparent 60%);
}

.sequence-card figcaption span {
  color: rgb(255 250 242 / 74%);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.sequence-card figcaption strong {
  max-width: 7ch;
  font-family: var(--serif);
  font-size: clamp(6rem, 13vw, 13rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-shadow: 0 4px 40px rgb(0 0 0 / 38%);
}

.section {
  padding-block: clamp(110px, 13vw, 190px);
}

.section-intro {
  max-width: 1120px;
  margin-bottom: clamp(70px, 10vw, 140px);
}

.section-intro h2,
.closing-inner h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr;
  gap: 50px;
  align-items: end;
  max-width: none;
}

.split-intro > p {
  margin-bottom: 5px;
  color: var(--muted);
}

.editorial-grid {
  display: block;
  border: 0;
  counter-reset: direction;
}

.editorial-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(62px, 0.15fr) minmax(0, 1fr) minmax(270px, 0.48fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  min-height: 34svh;
  padding-block: clamp(46px, 6vw, 84px);
  border: 0;
  border-top: 1px solid rgb(244 239 230 / 28%);
  background: transparent;
  counter-increment: direction;
}

.editorial-card::before {
  align-self: start;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  content: "0" counter(direction);
}

.editorial-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.editorial-card > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.editorial-card ul {
  grid-column: 3;
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ivory-soft);
  list-style: none;
}

.editorial-card li::before {
  margin-right: 10px;
  color: var(--gold);
  content: "—";
}

.editorial-link {
  grid-column: 3;
  width: fit-content;
  margin-top: 24px;
  border-bottom: 1px solid rgb(199 162 94 / 55%);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-transform: uppercase;
}

.guide-content {
  padding-top: clamp(96px, 12vw, 180px);
}

.guide-intro {
  max-width: 920px;
}

.guide-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(58px, 8vw, 110px);
  border: 1px solid var(--line);
  background: var(--line);
}

.guide-index-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(36px, 5vw, 68px);
  background: #050505;
  color: var(--ivory);
  transition: background 180ms ease, color 180ms ease;
}

.guide-index-card:hover,
.guide-index-card:focus-visible {
  background: var(--ivory);
  color: #090807;
}

.guide-index-card h2,
.guide-article-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.guide-index-card h2 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.guide-index-card > p:not(.eyebrow) {
  max-width: 44ch;
  margin: 32px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.guide-index-card:hover > p,
.guide-index-card:focus-visible > p {
  color: #423c34;
}

.guide-link-label {
  margin-top: auto;
  padding-top: 44px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guide-article {
  max-width: 860px;
  margin: clamp(62px, 9vw, 128px) auto 0;
}

.guide-article-section {
  padding-block: clamp(54px, 7vw, 90px);
  border-top: 1px solid rgb(244 239 230 / 25%);
}

.guide-article-section h2 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6.5vw, 6.1rem);
}

.guide-article-section > p,
.guide-article-section li {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.guide-article-section > p {
  margin: 32px 0 0;
}

.guide-article-section ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.guide-article-section li {
  position: relative;
  padding-left: 26px;
}

.guide-article-section li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "—";
}

.performer-section {
  width: 100%;
  border: 0;
  background: #030303;
}

.performer-section > .shell {
  width: 100%;
}

.performer-section .split-intro {
  width: var(--shell);
  margin-inline: auto;
}

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

.starting-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.78fr));
}

.starting-points .performer-card {
  min-height: 72svh;
}

.starting-points {
  padding-bottom: 0;
}

.starting-points + #about-luxo {
  padding-top: clamp(72px, 6vw, 96px);
}

.custom-creator::before {
  background:
    linear-gradient(0deg, rgb(8 5 3 / 92%) 0%, rgb(8 5 3 / 48%) 44%, transparent 72%),
    linear-gradient(120deg, rgb(193 164 109 / 14%), transparent 42%);
}

.custom-creator .performer-card-image {
  object-position: 50% 28%;
}

.custom-creator .performer-card-mark {
  z-index: 1;
  color: rgb(244 239 230 / 10%);
  font-size: clamp(18rem, 32vw, 32rem);
}

.custom-creator .performer-card-content strong {
  max-width: 5ch;
  font-size: clamp(4.8rem, 7.5vw, 8rem);
}

.performer-card {
  position: relative;
  display: flex;
  min-height: 88svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 74px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #16090d;
  transition: none;
}

.performer-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 84%) 0%, transparent 56%);
  content: "";
}

.performer-card.tone-rose::before {
  background:
    linear-gradient(0deg, rgb(18 4 8 / 78%), transparent 64%),
    radial-gradient(circle at 22% 20%, rgb(193 164 109 / 17%), transparent 34%);
}

.performer-card.tone-chrome::before {
  background: linear-gradient(0deg, rgb(0 0 0 / 91%) 0%, rgb(0 0 0 / 14%) 65%);
}

.performer-card:hover {
  border-color: transparent;
  transform: none;
}

.performer-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 23%;
  filter: contrast(1.04) saturate(0.94);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.performer-card:hover .performer-card-image {
  transform: scale(1.035);
}

.performer-card-mark {
  position: absolute;
  z-index: 0;
  inset: 50% auto auto 50%;
  color: rgb(244 239 230 / 11%);
  font-family: var(--serif);
  font-size: clamp(22rem, 48vw, 48rem);
  line-height: 0.7;
  transform: translate(-50%, -50%);
}

.performer-card.has-image .performer-card-mark {
  z-index: 1;
  color: rgb(244 239 230 / 7%);
}

.performer-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.performer-card-content small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.performer-card-content strong {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.performer-card-content > span {
  max-width: 310px;
  color: rgb(244 239 230 / 68%);
}

.performer-arrow {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  color: var(--ivory);
  font-size: 2rem;
  transition: transform 180ms ease;
}

.performer-card:hover .performer-arrow {
  transform: translate(6px, -6px);
}

.faq-section {
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(60px, 10vw, 150px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 3px;
  color: var(--gold);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 26px 0;
  color: var(--muted);
}

.closing-cta {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  background: var(--gold);
  color: #080603;
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82svh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(100px, 14vw, 190px);
  text-align: left;
}

.closing-inner h2 {
  max-width: 10ch;
  color: inherit;
  font-size: clamp(5rem, 10vw, 10rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.closing-inner > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 34px;
  color: rgb(8 6 3 / 66%);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.closing-inner > .eyebrow {
  color: rgb(8 6 3 / 66%);
}

.closing-cta:not(.closing-visual) .button-primary {
  border-color: #080603;
  background: #080603;
  color: var(--ivory);
}

.closing-cta:not(.closing-visual) .button-primary:hover,
.closing-cta:not(.closing-visual) .button-primary:focus-visible {
  border-color: #000;
  background: #000;
}

.closing-visual {
  min-height: 100svh;
  background: #000;
  color: var(--ivory);
}

.closing-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 62%) 38%, transparent 72%),
    linear-gradient(0deg, rgb(0 0 0 / 64%), transparent 45%);
  content: "";
}

.closing-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.closing-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--closing-position, 50% 23%);
  filter: contrast(1.04) saturate(0.94);
}

.closing-visual .closing-inner {
  min-height: 100svh;
  justify-content: flex-end;
  padding-bottom: clamp(70px, 10vh, 120px);
}

.closing-visual .closing-inner > .eyebrow {
  color: var(--gold-bright);
}

.closing-visual .closing-inner > p:not(.eyebrow) {
  color: rgb(244 239 230 / 70%);
}

.closing-visual .button-primary {
  border-color: var(--ivory);
  background: var(--ivory);
  color: #080603;
}

.closing-performer::after {
  background:
    linear-gradient(90deg, #000 0%, #000 28%, rgb(0 0 0 / 92%) 42%, rgb(0 0 0 / 54%) 62%, transparent 82%),
    linear-gradient(0deg, rgb(0 0 0 / 72%), transparent 52%);
}

.closing-performer .closing-image {
  object-fit: contain;
  object-position: var(--closing-position, 100% 50%);
}

.closing-performer .closing-inner h2 {
  max-width: 7.4ch;
}

.site-footer {
  padding-top: clamp(70px, 9vw, 115px);
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr;
  gap: 70px;
  padding-bottom: 70px;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 23px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.footer-note {
  max-width: 380px;
  color: var(--muted);
}

.adult-note {
  color: var(--dim);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.footer-label {
  margin-bottom: 9px;
  color: var(--ivory);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-grid {
    gap: clamp(48px, 6vw, 90px);
    padding-block: 54px;
  }

  h1 {
    font-size: clamp(4.5rem, 8vw, 7.25rem);
  }

  .hero-category h1,
  .hero-comparison h1,
  .hero-feature h1,
  .hero-guide h1 {
    font-size: clamp(3.6rem, 6.3vw, 6rem);
  }

  .hero-performer h1 {
    font-size: clamp(3.8rem, 6.3vw, 6rem);
  }

  .studio-visual,
  .performer-portrait,
  .hero-media {
    width: min(100%, 460px);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-has-media .hero-copy {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .hero-has-media .hero-lede,
  .hero-has-media .hero-actions,
  .hero-has-media .hero-note {
    grid-row: auto;
    grid-column: 1;
    justify-self: start;
  }

  .hero-has-media .hero-actions {
    justify-content: flex-start;
    margin-top: 28px;
  }

  .hero-has-media .hero-note {
    text-align: left;
  }

  .studio-visual,
  .performer-portrait,
  .hero-media {
    justify-self: center;
    width: min(86vw, 550px);
  }

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

  .manifesto-grid {
    grid-template-rows: auto 1fr auto auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .manifesto-number {
    grid-row: 1;
  }

  .manifesto h2 {
    grid-row: 3;
  }

  .manifesto-grid > p:last-child {
    grid-row: 4;
    margin-top: 24px;
  }

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

  .editorial-card {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 30svh;
  }

  .editorial-card > p:last-of-type,
  .editorial-card ul,
  .editorial-link {
    grid-column: 2;
  }

  .guide-index-grid {
    grid-template-columns: 1fr;
  }

  .performer-section .performer-card {
    min-height: 78svh;
  }

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

  .starting-grid .custom-creator {
    grid-column: 1 / -1;
    min-height: 68svh;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr;
  }
}

@media (max-width: 720px) {
  :root {
    --mobile-header-height: 64px;
    --shell: calc(100vw - 32px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .header-sign-in,
  .header-entry {
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-has-media {
    min-height: 100svh;
  }

  .hero-has-media .hero-media {
    inset: var(--mobile-header-height) 0 0;
    height: auto;
  }

  .hero-has-media .hero-grid {
    min-height: 100svh;
    padding-block: 112px 56px;
  }

  .hero-has-media .hero-copy > h1,
  .hero-has-media.hero-home h1,
  .hero-has-media.hero-category h1,
  .hero-has-media.hero-comparison h1,
  .hero-has-media.hero-feature h1,
  .hero-has-media.hero-guide h1,
  .hero-has-media.hero-performer h1 {
    max-width: 8.4ch;
    margin-bottom: 30px;
    font-size: clamp(4.2rem, 19vw, 6.4rem);
    line-height: 0.8;
  }

  .hero-has-media .hero-lede {
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-has-media .hero-media-caption {
    inset: 82px 16px auto auto;
  }

  .hero-feature-single.hero-has-media::before {
    background: linear-gradient(0deg, #000 0%, rgb(0 0 0 / 82%) 35%, rgb(0 0 0 / 15%) 72%, transparent 100%);
  }

  .hero-feature-duo.hero-has-media {
    min-height: 100svh;
  }

  .hero-feature-duo.hero-has-media::before {
    background: linear-gradient(180deg, transparent 0 38%, rgb(0 0 0 / 74%) 53%, #000 65% 100%);
  }

  .hero-feature-duo.hero-has-media .feature-hero-media {
    inset: var(--mobile-header-height) 0 auto;
    height: calc(58svh - var(--mobile-header-height));
  }

  .hero-feature-duo.hero-has-media .hero-grid {
    align-items: end;
    min-height: 100svh;
    padding-block: calc(58svh + 34px) 56px;
  }

  .feature-hero-label {
    top: 84px;
    left: 14px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-grid {
    gap: 58px;
    min-height: auto;
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.3rem);
  }

  .hero-category h1,
  .hero-comparison h1,
  .hero-feature h1,
  .hero-guide h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-performer h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-actions {
    width: 100%;
  }

  .studio-visual,
  .performer-portrait,
  .hero-media {
    width: min(92vw, 500px);
  }

  .direction-sequence .sequence-grid {
    display: block;
    padding: 0;
    overflow: visible;
  }

  .sequence-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sequence-intro .eyebrow {
    grid-column: 1;
  }

  .sequence-intro h2 {
    font-size: clamp(4.2rem, 18vw, 6.5rem);
  }

  .sequence-card {
    height: 100svh;
    scroll-snap-align: none;
  }

  .sequence-card figcaption {
    padding: 92px 16px 44px;
  }

  .sequence-card figcaption strong {
    font-size: clamp(4.8rem, 21vw, 7.4rem);
  }

  .manifesto-grid {
    padding-block: 32px 46px;
  }

  .manifesto,
  .manifesto-grid {
    min-height: 100svh;
  }

  .manifesto::after {
    background:
      linear-gradient(180deg, transparent 0%, rgb(244 239 230 / 4%) 44%, rgb(244 239 230 / 90%) 74%, var(--ivory) 100%),
      linear-gradient(90deg, rgb(244 239 230 / 20%) 0%, transparent 55%);
  }

  .manifesto-media img {
    object-position: top center;
  }

  .manifesto h2 {
    max-width: 6.8ch;
    font-size: clamp(4.2rem, 18vw, 6.5rem);
  }

  .manifesto-grid > p:last-child {
    max-width: 29ch;
  }

  .section-intro h2,
  .closing-inner h2 {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }

  .editorial-card {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 62svh;
    align-content: center;
  }

  .editorial-card > p:last-of-type,
  .editorial-card ul,
  .editorial-link {
    grid-column: 1;
  }

  .editorial-card h3 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .guide-content {
    padding-top: 78px;
  }

  .guide-index-card {
    min-height: 330px;
    padding: 34px 28px;
  }

  .guide-article-section h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .split-intro,
  .performer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .starting-grid .custom-creator {
    grid-column: 1;
  }

  .performer-section .performer-card {
    min-height: 82svh;
  }

  .performer-card-mark {
    font-size: 30rem;
  }

  .performer-card-content strong {
    font-size: clamp(5rem, 24vw, 7.5rem);
  }

  .closing-image {
    object-position: var(--closing-position, 53% 50%);
  }

  .closing-performer::after {
    background:
      linear-gradient(0deg, #000 0%, rgb(0 0 0 / 92%) 32%, rgb(0 0 0 / 35%) 62%, transparent 82%),
      linear-gradient(90deg, rgb(0 0 0 / 30%), transparent 75%);
  }

  .closing-performer .closing-image {
    object-fit: cover;
    object-position: 50% 45%;
  }

  .closing-visual .closing-inner {
    padding-bottom: 62px;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.content-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #090807;
}

.content-media picture,
.content-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.content-media img {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(0.94);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.editorial-card-copy > p:last-of-type,
.guide-section-copy > p,
.guide-section-copy li {
  color: var(--muted);
}

.editorial-card:not(.editorial-card-visual) .editorial-card-copy {
  display: contents;
}

.editorial-card:not(.editorial-card-visual) .editorial-card-copy > p:last-of-type,
.editorial-card:not(.editorial-card-visual) .editorial-card-copy ul,
.editorial-card:not(.editorial-card-visual) .editorial-card-copy .editorial-link {
  grid-column: 3;
}

.editorial-card-visual {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 0;
  min-height: 74svh;
  padding-block: 0;
  overflow: hidden;
}

.editorial-card-visual::before {
  position: absolute;
  z-index: 3;
  top: clamp(24px, 3vw, 46px);
  left: clamp(24px, 3vw, 46px);
  padding: 8px 11px;
  border: 1px solid rgb(244 239 230 / 35%);
  background: rgb(0 0 0 / 48%);
  backdrop-filter: blur(10px);
}

.editorial-card-visual:nth-child(even) .editorial-card-media {
  order: 2;
}

.editorial-card-media,
.editorial-card-copy {
  min-height: 74svh;
}

.editorial-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
}

.editorial-card-copy > p:last-of-type {
  max-width: 42ch;
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.7;
}

.editorial-card-copy ul {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
}

.editorial-card-copy .editorial-link {
  margin-top: 30px;
}

.editorial-card-visual:hover .editorial-card-media img,
.guide-index-card-visual:hover .guide-section-media img {
  transform: scale(1.025);
  filter: contrast(1.05) saturate(1);
}

.guide-index-card-visual {
  min-height: 720px;
  padding: 0;
  overflow: hidden;
}

.guide-index-card-visual .guide-section-media {
  height: 390px;
  flex: 0 0 auto;
}

.guide-index-card-visual .guide-section-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(34px, 4vw, 58px);
}

.guide-index-card .guide-section-copy > p:not(.eyebrow) {
  max-width: 44ch;
  margin: 28px 0 0;
  line-height: 1.7;
}

.guide-index-card:hover .guide-section-copy > p,
.guide-index-card:focus-visible .guide-section-copy > p {
  color: #423c34;
}

.guide-article:has(.guide-article-section-visual) {
  max-width: none;
}

.guide-article-section-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 76svh;
  padding-block: 0;
  overflow: hidden;
}

.guide-article-section-visual:nth-child(even) .guide-section-media {
  order: 2;
}

.guide-article-section-visual .guide-section-media,
.guide-article-section-visual .guide-section-copy {
  min-height: 76svh;
}

.guide-article-section-visual .guide-section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
}

.guide-article-section .guide-section-copy > p {
  max-width: 68ch;
  margin: 32px 0 0;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.guide-article-section .guide-section-copy ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.guide-article-section .guide-section-copy li {
  position: relative;
  max-width: 68ch;
  padding-left: 26px;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.guide-article-section .guide-section-copy li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "—";
}

.faq-grid-visual {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: clamp(40px, 6vw, 78px);
}

.faq-media {
  width: 100%;
  height: 66svh;
}

@media (max-width: 980px) {
  .editorial-card-visual,
  .guide-article-section-visual,
  .faq-grid-visual {
    grid-template-columns: 1fr;
  }

  .editorial-card-visual:nth-child(even) .editorial-card-media,
  .guide-article-section-visual:nth-child(even) .guide-section-media {
    order: 0;
  }

  .editorial-card-media,
  .guide-article-section-visual .guide-section-media {
    min-height: 62svh;
  }

  .editorial-card-copy,
  .guide-article-section-visual .guide-section-copy {
    min-height: auto;
  }

  .faq-media {
    height: 70svh;
  }
}

@media (max-width: 720px) {
  .editorial-card-visual,
  .guide-article-section-visual {
    min-height: auto;
  }

  .editorial-card-media,
  .guide-article-section-visual .guide-section-media {
    min-height: 64svh;
  }

  .editorial-card-copy,
  .guide-article-section-visual .guide-section-copy {
    min-height: auto;
    padding: 50px 8px 76px;
  }

  .guide-index-card-visual {
    min-height: 700px;
  }

  .guide-index-card-visual .guide-section-media {
    height: 58svh;
  }

  .guide-index-card-visual .guide-section-copy {
    padding: 34px 28px 42px;
  }

  .faq-media {
    height: 68svh;
  }
}

@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;
  }

  .hero-has-media .hero-media img,
  .hero-has-media .hero-media video,
  .hero-has-media .hero-copy {
    filter: none;
    transform: none;
  }

  .hero-video-media .hero-video {
    display: none;
  }
}

.adult-entry-document {
  min-height: 100%;
  background: #050505;
}

.adult-entry-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgb(193 164 109 / 13%), transparent 32rem),
    #050505;
}

.adult-entry-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  place-items: center;
}

.adult-entry-card {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgb(244 239 230 / 14%);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 4%), transparent 38%),
    #0a0908;
  box-shadow: 0 42px 110px rgb(0 0 0 / 68%);
}

.adult-entry-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.adult-entry-wordmark {
  display: block;
  padding: 24px 30px 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.adult-entry-form {
  padding: clamp(42px, 7vw, 74px) clamp(26px, 6vw, 58px) clamp(30px, 5vw, 50px);
}

.adult-entry-kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.adult-entry-form h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.adult-entry-description {
  max-width: 52ch;
  margin: 30px 0 0;
  color: var(--ivory-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.adult-entry-options {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-block: 1px solid var(--line);
}

.adult-entry-control {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  padding: 17px 0;
  color: var(--ivory-soft);
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.5;
}

.adult-entry-control + .adult-entry-control {
  border-top: 1px solid var(--line);
}

.adult-entry-control input {
  display: grid;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  appearance: none;
  border: 1px solid rgb(244 239 230 / 38%);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  place-content: center;
}

.adult-entry-control input::after {
  width: 9px;
  height: 5px;
  border: solid var(--black);
  border-width: 0 0 2px 2px;
  content: "";
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg);
}

.adult-entry-control input:checked {
  border-color: var(--ivory);
  background: var(--ivory);
}

.adult-entry-control input:checked::after {
  opacity: 1;
}

.adult-entry-control input:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.adult-entry-control a {
  border-bottom: 1px solid rgb(244 239 230 / 45%);
  color: var(--ivory);
}

.adult-entry-submit {
  width: 100%;
  margin-top: 28px;
  padding: 16px 22px;
  border: 1px solid var(--ivory);
  border-radius: 4px;
  background: var(--ivory);
  color: var(--black);
  cursor: pointer;
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease;
}

.adult-entry-submit:not(:disabled):hover {
  transform: translateY(-1px);
}

.adult-entry-submit:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

@media (max-width: 560px) {
  .adult-entry-shell {
    padding: 0;
  }

  .adult-entry-card {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .adult-entry-wordmark {
    padding: 25px 22px 0;
  }

  .adult-entry-form {
    padding-inline: 22px;
  }
}
