:root {
  color-scheme: dark;
  --ink: #050505;
  --graphite: #111214;
  --graphite-2: #18191b;
  --acid: #f5ef00;
  --paper: #f2efe8;
  --muted: #8c8d92;
  --line: rgba(242, 239, 232, 0.18);
  --shell: min(1440px, calc(100vw - 64px));
  --header-height: 88px;
  --sans: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--acid) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html.site-loading body {
  visibility: hidden;
}

html.site-loading::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: #050505;
}

body.is-gated,
body.menu-open {
  overflow: hidden;
}

body.is-gated > :not(.age-gate) {
  pointer-events: none;
  user-select: none;
}

html.age-confirmed .age-gate {
  display: none !important;
}

html.age-confirmed body.is-gated {
  overflow: auto;
}

html.age-confirmed body.is-gated > :not(.age-gate) {
  pointer-events: auto;
  user-select: auto;
}

html.js-enabled [data-media-reveal] {
  opacity: 0;
}

html.js-enabled [data-media-reveal].is-media-ready {
  animation: media-reveal 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.js-enabled [data-critical-media][data-media-reveal],
html.js-enabled [data-critical-media][data-media-reveal].is-media-ready {
  opacity: 1;
  animation: none;
}

@keyframes media-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html.js-enabled [data-media-reveal].is-media-ready {
    animation-duration: 1ms;
  }
}

/* JUST ME / published journal */
.just-me-page {
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 9%, rgba(213,255,0,.07), transparent 30rem),
    #050505;
}
.just-me-hero {
  position: relative;
  isolation: isolate;
}
.just-me-hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  width: min(34vw, 520px);
  height: 4px;
  background: var(--acid);
  content: "";
}
.just-me-feed { padding-top: 72px; }
.just-me-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.just-me-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #0a0a0a;
  transition: border-color .35s ease, box-shadow .45s ease, transform .45s cubic-bezier(.2,.75,.2,1);
}
.just-me-card__link {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}
.just-me-card__media,
.just-me-entry__media,
.just-me-media__frame {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #111;
  isolation: isolate;
}
.just-me-card__media {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
}
.just-me-card__backdrop,
.just-me-entry__backdrop,
.just-me-media__backdrop {
  position: absolute;
  z-index: -1;
  inset: -7%;
  width: 114%;
  height: 114%;
  object-fit: cover;
  filter: blur(28px) brightness(.42) saturate(1.15);
  opacity: .88;
  transform: scale(1.06);
}
.just-me-card__image,
.just-me-entry__image,
.just-me-media__asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.just-me-card__image {
  transition: filter .45s ease, transform .7s cubic-bezier(.2,.75,.2,1);
}
.just-me-card__copy {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}
.just-me-card__copy::before {
  position: absolute;
  top: -1px;
  left: 30px;
  width: 64px;
  height: 3px;
  background: var(--acid);
  content: "";
  transform-origin: left;
  transition: width .4s ease;
}
.just-me-card__date,
.just-me-entry__date {
  color: var(--acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.just-me-card__title {
  margin: 22px 0 14px;
  font-size: clamp(26px, 2.15vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}
.just-me-card__excerpt {
  display: -webkit-box;
  max-width: 52ch;
  margin: 0 0 28px;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.just-me-card__cta {
  margin-top: auto;
  border-bottom: 1px solid rgba(246,242,234,.28);
  padding: 0 0 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
.just-me-card__cta span { margin-left: 18px; color: var(--acid); }
.just-me-card--text .just-me-card__link {
  min-height: 430px;
  grid-template-rows: 1fr;
  background:
    linear-gradient(145deg, rgba(213,255,0,.1), transparent 52%),
    #0a0a0a;
}
.just-me-card--text .just-me-card__copy { justify-content: flex-end; }

.just-me-entry-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(213,255,0,.38);
  background:
    radial-gradient(circle at 76% 22%, rgba(213,255,0,.1), transparent 34rem),
    #080808;
}
.just-me-entry-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: brightness(.62) saturate(.84) contrast(1.03);
}
.just-me-entry-hero__wash {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.48) 50%, rgba(5,5,5,.08) 84%),
    linear-gradient(0deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.42) 56%, rgba(5,5,5,.22) 100%);
}
.just-me-entry-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 110px;
  padding-bottom: clamp(48px, 7vh, 86px);
}
.just-me-entry-hero__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(28px, 4vh, 46px);
}
.just-me-entry__back {
  display: inline-flex;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.just-me-entry__back span { margin-right: 14px; color: var(--acid); }
.just-me-entry-hero h1 {
  max-width: min(100%, 1180px);
  margin: 16px 0 22px;
  font-size: var(--detail-title-size, clamp(58px, 6vw, 96px));
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .94;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}
.just-me-entry-hero h1.is-title-fitted {
  line-height: 1;
}
.just-me-entry__excerpt {
  max-width: 58ch;
  margin: 0;
  color: #dedbd4;
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
}
.just-me-entry {
  padding-top: 44px;
  padding-bottom: 140px;
}
.just-me-detail > .social-strip[data-social-placement="top"] { padding-bottom: 28px; }
.just-me-entry__body {
  width: min(820px, var(--shell));
  margin: 0 auto;
}
.just-me-entry__body > :first-child { margin-top: 0; }
.just-me-entry__paragraph,
.just-me-entry__quote,
.just-me-entry__heading {
  overflow-wrap: break-word;
}
.just-me-entry__paragraph {
  margin: 0 0 .9em;
  font-family: var(--serif);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.62;
}
.just-me-entry__heading {
  margin: 1.05em 0 .5em;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .93;
}
h3.just-me-entry__heading { font-size: clamp(28px, 3vw, 44px); }
.just-me-entry__quote {
  margin: 1.25em 0;
  border-left: 5px solid var(--acid);
  padding: 8px 0 8px 30px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  line-height: 1.45;
}
.just-me-entry__quote p { margin: 0; }
.just-me-entry__body a {
  border-bottom: 1px solid var(--acid);
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.just-me-entry__body strong { font-weight: 800; }
.just-me-entry__body em { font-style: italic; }
.just-me-entry__body .is-align-center,
.just-me-entry__body .just-me-block--align-center { text-align: center; }
.just-me-entry__body .is-align-right,
.just-me-entry__body .just-me-block--align-right { text-align: right; }
.just-me-entry__body .is-align-left,
.just-me-entry__body .just-me-block--align-left { text-align: left; }
.just-me-media {
  margin: 66px calc(50% - min(48vw, 610px));
}
.just-me-media__frame,
.just-me-media--video > .just-me-media__asset {
  width: min(96vw, 1220px);
  height: min(76vh, 820px);
  margin-inline: auto;
  border: 1px solid var(--line);
}
.just-me-media--video > .just-me-media__asset {
  display: block;
  background: #000;
  object-fit: contain;
}
.just-me-media figcaption {
  width: min(100%, 820px);
  margin: 14px auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.just-me-comments {
  width: min(920px, var(--shell));
  padding: 14px 0 132px;
}
.just-me-comments__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  align-items: end;
  gap: 42px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}
.just-me-comments__heading .eyebrow { color: var(--acid); }
.just-me-comments__heading h2 {
  max-width: 12ch;
  margin: 13px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -.055em;
  line-height: .92;
}
.just-me-comments__heading h2 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}
.just-me-comments__heading > p {
  max-width: 42ch;
  margin: 0 0 3px;
  color: #aaa8a2;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}
.just-me-comment-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1.7fr);
  gap: 20px;
  margin: 32px 0 66px;
  padding: 28px;
  border: 1px solid rgba(245,239,0,.3);
  background:
    linear-gradient(135deg, rgba(245,239,0,.055), transparent 42%),
    #0a0a0a;
}
.just-me-comment-form::before {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 72px;
  height: 3px;
  background: var(--acid);
  content: "";
}
.just-me-comment-form__reply-target[hidden] { display: none; }
.just-me-comment-form__reply-target {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--acid);
  background: rgba(245,239,0,.075);
}
.just-me-comment-form__reply-target p {
  min-width: 0;
  margin: 0;
  color: #aaa8a2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.just-me-comment-form__reply-target p span { color: var(--acid); }
.just-me-comment-form__reply-target p strong {
  color: var(--paper);
  overflow-wrap: anywhere;
}
.just-me-comment-form__cancel {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(242,239,232,.22);
  background: transparent;
  color: #aaa8a2;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
}
.just-me-comment-form__cancel:is(:hover, :focus-visible) { border-color: var(--acid); color: var(--acid); }
.just-me-comment-form label { display: grid; align-content: start; gap: 10px; }
.just-me-comment-form label > span {
  color: #dedbd4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.just-me-comment-form label > span small { margin-left: 8px; color: #777873; font-size: inherit; }
.just-me-comment-form input,
.just-me-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(242,239,232,.2);
  border-radius: 0;
  outline: 0;
  background: #050505;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.just-me-comment-form input { min-height: 54px; padding: 0 16px; }
.just-me-comment-form textarea { min-height: 148px; padding: 15px 46px 15px 16px; line-height: 1.5; resize: vertical; }
.just-me-comment-form input:focus,
.just-me-comment-form textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 1px var(--acid);
}
.just-me-comment-form__body { position: relative; }
.just-me-comment-form__body output {
  position: absolute;
  right: 12px;
  bottom: 11px;
  color: #6f706c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.just-me-comment-form__trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.just-me-comments__challenge { grid-column: 1 / -1; }
.just-me-comment-form__actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}
.just-me-comment-form__actions p {
  max-width: 44ch;
  margin: 0;
  color: #82827e;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}
.just-me-comment-form__actions a { border-bottom: 1px solid rgba(245,239,0,.55); color: #c9c6bd; }
.just-me-comment-form button[disabled] { cursor: wait; opacity: .55; transform: none; }
.just-me-comment-form__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border-left: 3px solid #888;
  background: rgba(255,255,255,.045);
  color: #bbb8b0;
  font-family: var(--serif);
  font-size: 15px;
}
.just-me-comment-form__status[data-state="success"] { border-color: var(--acid); color: var(--paper); }
.just-me-comment-form__status[data-state="error"] { border-color: #ff5d57; color: #ffd4d1; }
.just-me-comment-list { display: grid; }
.just-me-comment {
  padding: 28px 0 30px;
  border-top: 1px solid var(--line);
}
.just-me-comment:last-child { border-bottom: 1px solid var(--line); }
.just-me-comment > header,
.just-me-comment__reply > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.just-me-comment > header strong,
.just-me-comment__reply > header strong {
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  overflow-wrap: anywhere;
}
.just-me-comment time {
  flex: none;
  color: #777873;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.just-me-comment > .just-me-comment__body,
.just-me-comment__reply > .just-me-comment__body {
  margin: 13px 0 0;
  color: #d5d1c8;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}
.just-me-comment__reply {
  margin: 24px 0 0 34px;
  padding: 18px 20px;
  border-left: 2px solid rgba(242,239,232,.24);
  background: rgba(255,255,255,.035);
}
.just-me-comment__reply header strong {
  color: #d8d4cc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}
.just-me-comment__reply.is-owner {
  border-left: 4px solid var(--acid);
  background: rgba(245,239,0,.05);
}
.just-me-comment__reply.is-owner header strong { color: var(--acid); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.just-me-comment__reply-to {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 9px 0 0;
  color: #747570;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}
.just-me-comment__reply-to strong { color: #aaa8a2; overflow-wrap: anywhere; }
.just-me-comment__reply > .just-me-comment__body { margin-top: 8px; font-size: 16px; }
.just-me-comment__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.just-me-comment__reply-action {
  min-width: 64px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(242,239,232,.25);
  background: transparent;
  color: #858580;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}
.just-me-comment__reply-action:is(:hover, :focus-visible) { border-color: var(--acid); color: var(--acid); }
.just-me-comment__reply-action[disabled] { cursor: wait; opacity: .5; }
.just-me-comments__empty {
  margin: 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #858580;
  font-family: var(--serif);
  font-size: 16px;
}
.just-me-comments__empty.is-error { color: #d9aaa7; }

@media (hover: hover) and (pointer: fine) {
  .just-me-card:hover {
    border-color: rgba(213,255,0,.62);
    box-shadow: 0 28px 80px rgba(0,0,0,.45);
    transform: translate3d(0,-8px,0);
  }
  .just-me-card:hover .just-me-card__copy::before { width: 130px; }
  .just-me-card:hover .just-me-card__image {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.018);
  }
  .just-me-entry__back:hover,
  .just-me-entry__body a:hover { color: var(--acid); }
}

@media (max-width: 900px) {
  .just-me-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .just-me-feed { padding-top: 50px; }
  .just-me-grid { gap: 24px; }
  .just-me-card__media { aspect-ratio: 4 / 3; }
  .just-me-card__copy { min-height: 230px; padding: 24px; }
  .just-me-card__copy::before { left: 24px; }
  .just-me-card__title { font-size: clamp(25px, 7.4vw, 34px); line-height: 1.04; }
  .just-me-card--text .just-me-card__link { min-height: 350px; }
  .just-me-entry-hero { min-height: calc(100svh - var(--header-height)); }
  .just-me-entry-hero__media { object-position: 52% 34%; filter: brightness(.58) saturate(.9) contrast(1.03); }
  .just-me-entry-hero__wash {
    background:
      linear-gradient(0deg, rgba(5,5,5,.97) 0%, rgba(5,5,5,.6) 57%, rgba(5,5,5,.24) 100%),
      linear-gradient(90deg, rgba(5,5,5,.75), rgba(5,5,5,.08));
  }
  .just-me-entry-hero__inner { min-height: calc(100svh - var(--header-height)); padding-top: 86px; padding-bottom: 34px; }
  .just-me-entry-hero__meta { gap: 16px; margin-bottom: 26px; }
  .just-me-entry-hero h1 { max-width: 100%; font-size: var(--detail-title-size, clamp(36px, 10.4vw, 52px)); line-height: .96; }
  .just-me-detail > .social-strip[data-social-placement="top"] { padding-bottom: 20px; }
  .just-me-detail .just-me-entry { padding-top: 32px; padding-bottom: 90px; }
  .just-me-entry__paragraph { font-size: 18px; }
  .just-me-entry__quote { padding-left: 20px; }
  .just-me-media { margin: 48px 0; }
  .just-me-media__frame,
  .just-me-media--video > .just-me-media__asset {
    width: 100%;
    height: min(62vh, 580px);
  }
  .just-me-comments { width: var(--shell); padding: 0 0 88px; }
  .just-me-comments__heading { grid-template-columns: 1fr; gap: 20px; padding-bottom: 25px; }
  .just-me-comments__heading h2 { font-size: clamp(38px, 12vw, 54px); }
  .just-me-comments__heading > p { font-size: 16px; }
  .just-me-comment-form { grid-template-columns: 1fr; gap: 18px; margin: 24px 0 46px; padding: 23px 18px 20px; }
  .just-me-comment-form::before { left: 18px; }
  .just-me-comment-form__reply-target { align-items: stretch; grid-template-columns: 1fr; gap: 10px; }
  .just-me-comment-form__cancel { justify-self: start; }
  .just-me-comment-form__actions { align-items: stretch; flex-direction: column; }
  .just-me-comment-form__actions .button { width: 100%; }
  .just-me-comment-form__actions p { max-width: none; text-align: left; }
  .just-me-comment__reply { margin-left: 12px; padding: 16px; }
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

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

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

/* Large display type is decorative; body copy and form text remain selectable. */
.age-gate h2,
.mobile-menu nav a,
.hero-slide__content h1,
.hero-slide__content h2,
.section-heading h2,
.platform-promo h3,
.manifesto h2,
.model-feature h2,
.platform-dialog h2,
.detail-hero h1,
.page-hero h1 {
  -webkit-user-select: none;
  user-select: none;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}

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

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(245, 239, 0, 0.12);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--accent {
  background: var(--acid);
  color: var(--ink);
}

.button--accent:hover {
  background: var(--paper);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
}

.button--light:hover {
  background: var(--acid);
}

.button--ghost {
  border-color: rgba(242, 239, 232, 0.5);
  background: rgba(5, 5, 5, 0.14);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.age-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.age-gate.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.92)),
    url("/assets/web/images/halloween-cover.webp") center / cover;
  filter: saturate(0.65);
}

.age-gate__veil::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.age-gate__panel {
  position: relative;
  width: min(580px, 100%);
  padding: 38px 52px 42px;
  border: 1px solid rgba(242, 239, 232, 0.22);
  background: rgba(5, 5, 5, 0.86);
  text-align: center;
  backdrop-filter: blur(20px);
}

.age-gate__panel::before,
.age-gate__panel::after {
  position: absolute;
  width: 44px;
  height: 44px;
  content: "";
}

.age-gate__panel::before {
  top: -1px;
  left: -1px;
  border-top: 4px solid var(--acid);
  border-left: 4px solid var(--acid);
}

.age-gate__panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 4px solid var(--acid);
  border-bottom: 4px solid var(--acid);
}

.age-gate__mark {
  width: 112px;
  height: 112px;
  margin: -2px auto 16px;
  object-fit: contain;
}

.age-gate h2 {
  margin: 12px 0;
  font-size: clamp(44px, 8vw, 72px);
  font-stretch: condensed;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.age-gate__panel > p:not(.eyebrow) {
  max-width: 480px;
  margin: 20px auto 26px;
  color: #c9c7c1;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}

.age-gate small {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: var(--header-height);
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: height 250ms ease, background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  height: 72px;
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.site-header__brand {
  justify-self: start;
}

.site-header__logo {
  width: 154px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.site-header__logo--mobile {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.site-nav a,
.header-watch {
  position: relative;
  padding: 10px 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.menu-important-star {
  display: inline-block;
  margin-left: 7px;
  color: var(--acid);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 0.9em;
  font-style: normal;
  line-height: 1;
  transform: translateY(-0.08em);
}

.site-nav a.is-important { font-weight: 950; }
.site-nav a.is-current { color: var(--acid); }
.site-nav a.is-current::after { right: 0; height: 2px; }

.site-header__actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 22px;
}

.header-watch {
  isolation: isolate;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 17px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24), 0 0 0 0 rgba(245, 239, 0, 0);
  line-height: 1;
  transform: translateZ(0);
  transition: color 240ms ease, box-shadow 280ms ease, transform 280ms cubic-bezier(.22, 1, .36, 1);
  animation: header-watch-attention 6s ease-in-out infinite;
}

.header-watch::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.header-watch span {
  position: relative;
  z-index: 1;
  margin: 0;
}

.header-watch span:last-child {
  font-size: 15px;
  transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.header-watch:hover,
.header-watch:focus-visible {
  color: var(--acid);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .34), 0 0 0 3px rgba(245, 239, 0, .2);
  outline: 0;
  transform: translateY(-2px);
  animation: none;
}

.header-watch:hover::before,
.header-watch:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-watch:hover span:last-child,
.header-watch:focus-visible span:last-child {
  transform: translate3d(3px, -3px, 0) rotate(6deg);
}

@keyframes header-watch-attention {
  0%, 70%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, .24), 0 0 0 0 rgba(245, 239, 0, 0); }
  78% { box-shadow: 0 10px 30px rgba(0, 0, 0, .3), 0 0 0 5px rgba(245, 239, 0, .15); }
  86% { box-shadow: 0 8px 24px rgba(0, 0, 0, .24), 0 0 0 0 rgba(245, 239, 0, 0); }
}

.menu-toggle {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 239, 232, 0.4);
  background: rgba(5, 5, 5, 0.15);
  cursor: pointer;
  transition: border-color 240ms ease, box-shadow 280ms ease, transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.menu-toggle::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--acid);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.menu-toggle span {
  position: absolute;
  z-index: 1;
  left: 12px;
  width: 20px;
  height: 1px;
  background: var(--paper);
  transition: background-color 220ms ease, transform 250ms ease, top 250ms ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle:focus-visible,
.menu-open .menu-toggle {
  border-color: var(--acid);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .32), 0 0 0 2px rgba(245, 239, 0, .14);
  outline: 0;
  transform: translateY(-2px);
}
.menu-toggle:focus-visible::before,
.menu-open .menu-toggle::before { transform: scaleY(1); }
.menu-toggle:focus-visible span,
.menu-open .menu-toggle span { background: var(--ink); }
body:not(.menu-open) .menu-toggle:focus-visible span:first-child { transform: translateX(3px); }
body:not(.menu-open) .menu-toggle:focus-visible span:last-child { transform: translateX(-3px); }
.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 22px; transform: rotate(-45deg); }
.menu-toggle:active { transform: translateY(0) scale(.96); }

@media (hover: hover) and (pointer: fine) {
  .menu-toggle:hover {
    border-color: var(--acid);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .32), 0 0 0 2px rgba(245, 239, 0, .14);
    outline: 0;
    transform: translateY(-2px);
  }
  .menu-toggle:hover::before { transform: scaleY(1); }
  .menu-toggle:hover span { background: var(--ink); }
  body:not(.menu-open) .menu-toggle:hover span:first-child { transform: translateX(3px); }
  body:not(.menu-open) .menu-toggle:hover span:last-child { transform: translateX(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .header-watch { animation: none; }
  .header-watch,
  .header-watch::before,
  .header-watch span:last-child,
  .menu-toggle,
  .menu-toggle::before,
  .menu-toggle span { transition-duration: 1ms; }
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 30px) 7vw 40px;
  background: rgba(5, 5, 5, 0.98);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__inner {
  width: min(900px, 100%);
  margin-inline: auto;
}

.mobile-menu nav {
  display: grid;
  margin: 28px 0 36px;
}

.mobile-menu nav a {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(36px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  transition: padding 220ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.mobile-menu nav a::after {
  align-self: center;
  color: var(--acid);
  content: "↗";
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0;
  transform: translate(-12px, 8px);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  padding-right: 14px;
  padding-left: 16px;
  border-color: var(--acid);
  background: linear-gradient(90deg, rgba(245, 239, 0, 0.12), transparent 72%);
  color: var(--acid);
}

.mobile-menu nav a:hover::after,
.mobile-menu nav a:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.mobile-menu nav a span {
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.mobile-menu nav a.is-important {
  padding-right: 46px;
  background: linear-gradient(90deg, rgba(245, 239, 0, 0.1), transparent 72%);
  font-weight: 950;
}

.mobile-menu nav a.is-current {
  border-color: var(--acid);
  background: linear-gradient(90deg, rgba(245, 239, 0, 0.16), transparent 78%);
  color: var(--acid);
}

.mobile-menu nav a.is-current::after {
  opacity: 1;
  transform: translate(0, 0);
}

.mobile-menu nav a .menu-important-star {
  position: absolute;
  top: 50%;
  right: 10px;
  margin: 0;
  font-size: clamp(18px, 2.5vw, 28px);
  transform: translateY(-50%);
}

.hero {
  --hero-soften-duration: 2000ms;
  --hero-soften-easing: cubic-bezier(0.22, 0.61, 0.36, 1);
  --hero-fade-out-duration: 220ms;
  --hero-fade-in-duration: 420ms;
  position: relative;
  height: clamp(680px, 90svh, 980px);
  min-height: 680px;
  overflow: hidden;
  background: #090a0a;
  touch-action: pan-y;
}

.hero,
.hero * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.hero img,
.hero video {
  -webkit-user-drag: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero { cursor: grab; }
  .hero.is-dragging,
  .hero.is-dragging * { cursor: grabbing !important; }
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero__slides {
  isolation: isolate;
}

.hero-slide {
  z-index: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--hero-fade-in-duration) ease-out;
}

.hero-slide.is-active.is-fading-in {
  opacity: 0;
  transition: none;
}

.hero-slide.is-active.is-fading-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--hero-fade-out-duration) ease-in;
}

.hero-slide__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 1;
  transition: none;
}

.hero-slide__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.86) contrast(1.06);
  transform: scale(1.035);
  transition: transform 9s linear;
  -webkit-user-drag: none;
  user-select: none;
}

.hero-slide__picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-slide__picture .hero-slide__media {
  display: block;
}

.hero-slide.is-active .hero-slide__media {
  transform: scale(1.08);
}

.hero-slide__media--video {
  position: absolute;
  inset: 0;
  background: #070908;
}

.hero-slide__media--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide--split .hero-slide__media { object-position: 50% 40%; filter: saturate(0.72) contrast(1.1); }
.hero-slide--hard .hero-slide__media { object-position: 50% 44%; filter: saturate(0.42) contrast(1.28) brightness(0.76); }
.hero-slide--soft .hero-slide__media { object-position: 50% 35%; filter: saturate(0.86) contrast(1.05) brightness(0.9); }

/* Moving full-screen video is already visually active. Keep expensive image-only
   zoom and colour filters away from the decoder/compositor path. */
.hero-slide .hero-slide__media--video,
.hero-slide.is-active .hero-slide__media--video {
  contain: paint;
  filter: none;
  transform: none;
  transition: none;
}

.hero-slide__media--video video {
  display: block;
  backface-visibility: hidden;
}

.hero-slide__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #050505;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity var(--hero-soften-duration) var(--hero-soften-easing);
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 130px;
  padding-bottom: 106px;
}

.hero-slide__copy {
  display: flex;
  max-width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity var(--hero-soften-duration) var(--hero-soften-easing),
    transform var(--hero-soften-duration) var(--hero-soften-easing);
  will-change: opacity, transform;
}

.hero-slide.is-active .hero-slide__content {
  z-index: 4;
}

.hero-slide.is-softened:not(.is-copy-focused) .hero-slide__copy {
  opacity: 0.18;
  transform: translateX(-26px);
}

.hero-slide.is-softened:not(.is-copy-focused) .hero-slide__shade {
  opacity: 0.1;
}

.hero-slide:not(.is-active) .hero-slide__copy {
  transition: none;
}

.hero-slide__content h1,
.hero-slide__content h2 {
  max-width: 1120px;
  margin: 14px 0 10px;
  font-size: var(--hero-title-fit, clamp(68px, min(9.4vw, 15svh), 166px));
  font-weight: 950;
  letter-spacing: var(--hero-title-tracking, -0.075em);
  line-height: var(--hero-title-leading, 0.82);
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  text-transform: uppercase;
  word-break: normal;
}

.hero-slide__content h2 {
  max-width: 950px;
  font-size: var(--hero-title-fit, clamp(60px, min(8vw, 14svh), 136px));
}

.hero-slide__content h1 em,
.hero-slide__content h2 em,
.section-heading h2 em,
.manifesto h2 em,
.model-feature h2 em,
.platform-dialog h2 em,
.detail-hero h1 em,
.page-hero h1 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-slide__copy > p:not(.eyebrow):not(.hero-slide__kicker) {
  max-width: 480px;
  margin: 12px 0 26px;
  color: #d6d3cc;
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 22px);
}

.hero-slide__kicker {
  margin: 8px 0 17px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 26px);
  font-style: italic;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 25px;
  color: #d2d0ca;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-slide__meta span:not(:last-child)::after {
  margin-left: 18px;
  color: var(--acid);
  content: "/";
}

.hero-slide__actions {
  display: flex;
  max-width: 100%;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 30px;
  left: 0;
  display: grid;
  grid-template-columns: 42px 90px minmax(100px, 290px) 42px;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.hero__controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 239, 232, 0.38);
  background: rgba(5, 5, 5, 0.25);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.hero__controls button:hover {
  background: var(--acid);
  color: var(--ink);
}

.hero__count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero__count span:first-child { color: var(--acid); }
.hero__count i { width: 24px; height: 1px; background: rgba(242, 239, 232, 0.42); }
.hero__progress { height: 1px; overflow: hidden; background: rgba(242, 239, 232, 0.28); }
.hero__progress span { display: block; width: 0; height: 100%; background: var(--acid); }

.hero__side-note {
  position: absolute;
  z-index: 4;
  right: 21px;
  top: 50%;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(5, 5, 5, 0.16);
  background: var(--acid);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1;
  will-change: transform;
}

.ticker[data-ticker-ready] .ticker__track {
  animation: ticker var(--ticker-duration, 26s) linear infinite;
}

.ticker__group,
.ticker__set {
  display: flex;
  flex: none;
  align-items: center;
}

.ticker__set {
  gap: 26px;
  padding: 12px 26px 12px 0;
}

.ticker__set > * { flex: none; }
.ticker__track i { font-style: normal; }

.ticker__track a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 180ms ease, opacity 180ms ease;
}

.ticker__track a:hover,
.ticker__track a:focus-visible {
  text-decoration-color: currentColor;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker {
  to { transform: translate3d(var(--ticker-distance, -50%), 0, 0); }
}

.releases {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 66px;
}

.section-heading h2,
.manifesto h2,
.model-feature h2,
.page-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(66px, 9vw, 150px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.79;
}

.section-heading__note {
  margin: 0 0 3px;
  padding-left: 24px;
  border-left: 1px solid var(--acid);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.7;
}

.section-heading__note span {
  color: var(--acid);
}

.trailer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 18px;
}

.archive-subscribe {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 30px) 0 clamp(28px, 4vw, 52px);
}

.header-watch.archive-subscribe__button:not([hidden]) {
  display: inline-flex;
  min-width: min(100%, 270px);
  min-height: 56px;
  padding-inline: 30px;
  font-size: 11px;
}

.trailer-card {
  display: block;
  min-width: 0;
}

.trailer-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--graphite);
}

.trailer-card__media img,
.trailer-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, filter 280ms ease;
}

.trailer-card__media video {
  z-index: 1;
  opacity: 0;
}

.trailer-card.is-previewing video { opacity: 1; }
.trailer-card:hover .trailer-card__media img,
.trailer-card:hover .trailer-card__media video { transform: scale(1.035); }

.trailer-card__index {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  display: grid;
  width: 35px;
  height: 27px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trailer-card__play {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(242, 239, 232, 0.56);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.28);
  backdrop-filter: blur(6px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.trailer-card:hover .trailer-card__play,
.trailer-card.is-previewing .trailer-card__play {
  background: var(--acid);
  color: var(--ink);
  transform: scale(1.08);
}

.trailer-card__demo {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 15px;
  padding: 3px 7px;
  background: rgba(5, 5, 5, 0.76);
  color: #c5c2bb;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trailer-card__body {
  padding-top: 17px;
}

.trailer-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trailer-card__performers { min-width: 0; max-width: 72%; text-align: right; line-height: 1.45; }
.trailer-card__performers a { color: var(--paper); border-bottom: 1px solid rgba(255,240,0,.32); transition: color 160ms ease,border-color 160ms ease; }
.trailer-card__performers a:hover,
.trailer-card__performers a:focus-visible { color: var(--acid); border-color: currentColor; }
.trailer-card__performer-separator { padding: 0 4px; color: #62615e; }
.trailer-card h3 a { color: inherit; }

.trailer-card h3 {
  margin: 8px 0 13px;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: uppercase;
}

.platform-promo {
  position: relative;
  min-height: 620px;
  margin: 104px 0;
  overflow: hidden;
  background: var(--graphite);
}

.platform-promo__media,
.platform-promo__overlay {
  position: absolute;
  inset: 0;
}

.platform-promo__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-promo:hover .platform-promo__media { transform: scale(1.025); }

.platform-promo__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72) 44%, rgba(5, 5, 5, 0.1) 76%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.55), transparent 50%);
}

.platform-promo--scatbook .platform-promo__media { filter: saturate(0.4) contrast(1.3); }
.platform-promo--onlyfans .platform-promo__media { filter: saturate(0.82) contrast(1.05); }

.platform-promo__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 55%;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 6vw, 96px);
}

.platform-promo__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(242, 239, 232, 0.48);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.platform-promo h3 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-transform: uppercase;
}

.platform-promo h3 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.platform-promo__content > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 28px;
  color: #ccc9c3;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.releases__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.button--outline-large {
  width: min(520px, 100%);
  min-height: 76px;
  justify-content: space-between;
  padding: 0 28px;
  border-color: rgba(242, 239, 232, 0.42);
  background: transparent;
  font-size: 12px;
}

.button--outline-large span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 9px;
}

.button--outline-large:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button--outline-large:hover span {
  background: var(--ink);
  color: var(--acid);
}

.manifesto {
  padding-top: 130px;
  padding-bottom: 150px;
  border-top: 1px solid var(--line);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.manifesto h2 {
  font-size: clamp(56px, 7.7vw, 126px);
}

.manifesto__grid > div:last-child {
  padding-bottom: 4px;
}

.manifesto__lead {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.25;
}

.manifesto__lead + p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.model-feature {
  display: grid;
  width: var(--shell);
  min-height: 760px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  margin: 0 auto 140px;
  background: var(--acid);
  color: var(--ink);
}

.model-feature__image {
  min-width: 0;
  min-height: 680px;
  overflow: hidden;
}

.model-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.model-feature:not(.model-showcase):hover .model-feature__image img { filter: grayscale(0.15) contrast(1.05); transform: scale(1.025); }

.model-feature__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 90px);
}

.model-feature h2 {
  display: flex;
  max-width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: clamp(58px, 6.4vw, 108px);
  font-style: normal;
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .79;
  overflow: visible;
  overflow-wrap: normal;
  text-transform: uppercase;
  white-space: nowrap;
  word-break: normal;
}
.model-feature h2 > br {
  display: none;
}
.model-feature h2 .model-name__primary {
  max-width: 100%;
  flex: 0 0 auto;
  color: var(--ink);
  font: inherit;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.model-feature h2 .model-name__accent,
.model-feature h2 > em {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: .94em;
  font-style: italic;
  font-weight: 400;
  hyphens: none;
  letter-spacing: -.06em;
  line-height: .84;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}
.model-feature h2 > em:only-child {
  font-family: var(--sans);
  font-size: 1em;
  font-style: normal;
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .79;
}
.model-feature__copy > p:not(.eyebrow) {
  display: -webkit-box;
  max-width: 430px;
  margin: 28px 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.model-showcase {
  position: relative;
  display: block;
  overflow: hidden;
  background: transparent;
}

.model-showcase__viewport {
  display: grid;
  touch-action: pan-y;
}

.model-showcase__slide {
  --model-motion-ease: cubic-bezier(.22, 1, .36, 1);
  grid-area: 1 / 1;
  display: grid;
  width: 100%;
  height: 760px;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  background: var(--acid);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 440ms ease,
    visibility 0s linear 1120ms;
}

.model-showcase__slide .model-feature__image {
  clip-path: inset(0 7% 0 0);
  transform: translateX(-12px);
  transition:
    clip-path 880ms var(--model-motion-ease),
    transform 880ms var(--model-motion-ease);
}

.model-showcase__slide .model-feature__image img {
  backface-visibility: hidden;
  transform: scale(1.055);
  transform-origin: 48% 30%;
  transition:
    filter 720ms ease,
    transform 1400ms var(--model-motion-ease);
}

.model-showcase__slide .model-feature__copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 720ms var(--model-motion-ease);
}

.model-showcase__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.model-showcase__slide.is-active .model-feature__image {
  clip-path: inset(0);
  transform: none;
}

.model-showcase__slide.is-active .model-feature__image img {
  transform: scale(1);
}

.model-showcase__slide.is-active .model-feature__copy > * {
  opacity: 1;
  transform: none;
}

.model-showcase__slide.is-active .model-feature__copy > .eyebrow { transition-delay: 90ms; }
.model-showcase__slide.is-active .model-feature__copy > h2 { transition-delay: 150ms; }
.model-showcase__slide.is-active .model-feature__copy > p:not(.eyebrow) { transition-delay: 220ms; }
.model-showcase__slide.is-active .model-feature__copy > .text-link { transition-delay: 290ms; }

.model-showcase:hover .model-showcase__slide.is-active .model-feature__image img {
  filter: grayscale(0) contrast(1.04) saturate(1.06);
  transform: scale(1.03) translate3d(-.45%, -.25%, 0);
}

.model-showcase__side-controls {
  position: absolute;
  top: 50%;
  right: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.model-showcase__side-controls button {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(242, 239, 232, .45);
  background: rgba(5, 5, 5, .78);
  color: var(--paper);
  cursor: pointer;
  place-items: center;
  pointer-events: auto;
  font: inherit;
  font-size: 18px;
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.model-showcase__side-controls button:hover,
.model-showcase__side-controls button:focus-visible {
  border-color: var(--acid);
  background: var(--ink);
  color: var(--acid);
  transform: scale(1.06);
}

.model-showcase__controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: var(--ink);
  color: var(--paper);
}

.model-showcase__controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #3a3a38;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.model-showcase__controls button:hover,
.model-showcase__controls button:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.model-showcase__controls span { min-width: 64px; text-align: center; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.model-showcase__controls b { color: var(--acid); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.social-strip {
  padding: 68px 0 90px;
  border-top: 1px solid var(--line);
}

.social-strip--embedded { width: 100%; max-width: none; }

.social-strip__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.social-strip__links a {
  position: relative;
  display: flex;
  min-height: 108px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 320ms ease;
}

.social-strip__links a::before {
  position: absolute;
  inset: 0;
  border: 1px solid var(--acid);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.social-strip__links a > * { position: relative; z-index: 1; }

.social-strip__identity {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
}

.social-strip__icon {
  --social-icon-cutout: var(--ink);
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid #343434;
  color: var(--paper);
  transition: border-color 320ms ease, color 320ms ease, transform 320ms cubic-bezier(.2,.75,.25,1);
}

.social-strip__icon svg {
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.social-strip__icon svg.social-icon--solid { fill: currentColor; stroke: none; }

.social-strip__icon svg path,
.social-strip__icon svg rect,
.social-strip__icon svg circle { vector-effect: non-scaling-stroke; }
.social-strip__icon svg :is(.social-icon__dot, .social-icon__tile) { fill: currentColor; stroke: none; }
.social-strip__icon svg .social-icon__cutout { fill: var(--social-icon-cutout); stroke: none; }
.social-strip__arrow { transition: color 320ms ease, transform 320ms ease; }

.social-strip__links a:is(:hover, :focus-visible) { color: var(--acid); }
.social-strip__links a:is(:hover, :focus-visible)::before { opacity: 1; }
.social-strip__links a:is(:hover, :focus-visible) .social-strip__icon {
  border-color: var(--acid);
  color: var(--acid);
  transform: translateY(-2px) scale(1.06);
}
.social-strip__links a:is(:hover, :focus-visible) .social-strip__arrow { transform: translate(3px,-3px); }

.site-footer {
  padding: 90px 0 24px;
  background: var(--graphite);
}

.site-footer__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.site-footer__top img { width: min(390px, 45vw); height: auto; }
.site-footer__top > p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; line-height: 1.7; text-align: right; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.3fr 1.2fr;
  gap: 40px;
  padding: 55px 0 70px;
}

.site-footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.site-footer__grid a { color: #d8d5ce; font-size: 13px; }
.site-footer__grid a:hover { color: var(--acid); }
.site-footer__grid a.is-important { font-weight: 800; }
.site-footer__grid a.is-current { color: var(--acid); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__grid .menu-important-star { margin-left: 5px; }
.site-footer__grid p:not(.footer-label) { max-width: 240px; margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.footer-label { margin: 0 0 14px; color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: 0.16em; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.platform-dialog {
  width: min(720px, calc(100vw - 32px));
  padding: 52px;
  border: 1px solid rgba(242, 239, 232, 0.3);
  background: #0b0c0d;
  color: var(--paper);
}

.platform-dialog::backdrop {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
}

.platform-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
}

.platform-dialog h2 {
  margin: 18px 0 32px;
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.platform-dialog__options { display: grid; gap: 8px; }
.platform-dialog__options a { display: grid; grid-template-columns: 40px 1fr 1fr auto; align-items: center; gap: 15px; min-height: 92px; padding: 16px 20px; border: 1px solid var(--line); transition: background 180ms ease, color 180ms ease; }
.platform-dialog__options a:hover { background: var(--acid); color: var(--ink); }
.platform-dialog__options span { color: var(--acid); font-size: 9px; font-weight: 900; }
.platform-dialog__options a:hover span { color: var(--ink); }
.platform-dialog__options strong { font-size: 18px; }
.platform-dialog__options small { color: var(--muted); }
.platform-dialog__options a:hover small { color: #303030; }
.platform-dialog__options b { font-size: 20px; }

/* Secondary pages */
.inner-page { padding-top: var(--header-height); }
.inner-page .site-header { background: rgba(5, 5, 5, 0.94); }
.detail-hero { position: relative; min-height: 72svh; display: flex; align-items: flex-end; overflow: hidden; }
.detail-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62) saturate(0.78); }
.detail-hero::after { position: absolute; inset: 0; background: linear-gradient(0deg, var(--ink), transparent 74%), linear-gradient(90deg, rgba(5,5,5,.74), transparent 68%); content: ""; }
.detail-hero__content { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 70px; }
.detail-hero h1 { max-width: 1100px; margin: 16px 0 22px; font-size: var(--detail-title-size, clamp(58px, 8.5vw, 138px)); font-weight: 950; hyphens: none; letter-spacing: -0.075em; line-height: .96; overflow-wrap: normal; text-wrap: balance; word-break: normal; }
.detail-hero h1.is-title-fitted { line-height: 1.02; }
.detail-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; color: #cbc9c3; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.detail-content { padding: 90px 0 130px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: clamp(45px, 7vw, 110px); }
.video-frame {
  --player-buffered: 0%;
  --player-progress: 0%;
  --player-volume: 100%;
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  touch-action: manipulation;
}
.video-frame video { display: block; width: 100%; height: 100%; object-fit: contain; }
.video-player__center, .video-player__feedback, .video-player__controls { display: none; }
.video-frame.is-enhanced video { cursor: pointer; }
.video-frame.is-enhanced .video-player__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: clamp(66px, 7vw, 86px);
  height: clamp(66px, 7vw, 86px);
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-45%) scale(.88);
  visibility: hidden;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.84));
  transition: opacity .18s ease, transform .25s cubic-bezier(.22,1,.36,1), color .18s ease, visibility .18s;
}
.video-frame.is-enhanced .video-player__center .video-player__icon { width: clamp(48px,5.4vw,66px); height: clamp(48px,5.4vw,66px); }
.video-frame.is-enhanced .video-player__feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: clamp(66px,7vw,86px);
  height: clamp(66px,7vw,86px);
  place-items: center;
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(.8);
  visibility: hidden;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.84));
}
.video-frame.is-enhanced .video-player__feedback .video-player__icon { width: clamp(48px,5.4vw,66px); height: clamp(48px,5.4vw,66px); }
.video-frame.is-enhanced.is-pause-feedback .video-player__feedback {
  visibility: visible;
  animation: video-player-pause-feedback .52s ease-out both;
}
@keyframes video-player-pause-feedback {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.8); }
  18%, 68% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.08); }
}
.video-frame.is-enhanced .video-player__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: block;
  padding: 42px clamp(12px,2vw,24px) max(12px,env(safe-area-inset-bottom));
  background: linear-gradient(0deg,rgba(0,0,0,.94),rgba(0,0,0,.68) 48%,transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity .2s ease, transform .25s ease, visibility .2s;
}
.video-frame.is-enhanced.is-controls-visible .video-player__controls,
.video-frame.is-enhanced.is-keyboard-controls .video-player__controls {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.video-frame.is-enhanced.is-controls-visible .video-player__controls,
.video-frame.is-enhanced.is-keyboard-controls .video-player__controls { transform: none; }
.video-frame.is-enhanced:not(.is-playing).is-controls-visible .video-player__center,
.video-frame.is-enhanced:not(.is-playing).is-keyboard-controls .video-player__center,
.video-frame.is-enhanced.has-playback-error .video-player__center {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
  visibility: visible;
}
.video-player__timeline {
  position: relative;
  display: flex;
  height: 38px;
  align-items: center;
  cursor: pointer;
}
.video-player__timeline::before,
.video-player__timeline::after {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 99px;
  content: "";
  pointer-events: none;
  transition: height .15s ease;
}
.video-player__timeline::before {
  right: 0;
  background: linear-gradient(90deg,rgba(255,255,255,.48) 0 var(--player-buffered),rgba(255,255,255,.2) var(--player-buffered) 100%);
}
.video-player__timeline::after { z-index: 1; width: var(--player-progress); background: var(--acid); }
.video-player__timeline:hover::before,
.video-player__timeline:hover::after,
.video-player__timeline:focus-within::before,
.video-player__timeline:focus-within::after { height: 6px; }
.video-player__timeline input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 38px;
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.video-player__timeline input:disabled { cursor: wait; }
.video-player__timeline input::-webkit-slider-runnable-track { height: 6px; background: transparent; }
.video-player__timeline input::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5px;
  appearance: none;
  border: 2px solid #050505;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px rgba(213,255,0,.45);
}
.video-player__timeline input::-moz-range-track { height: 6px; background: transparent; }
.video-player__timeline input::-moz-range-progress { height: 6px; background: transparent; }
.video-player__timeline input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #050505;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px rgba(213,255,0,.45);
}
.video-player__timeline input:focus-visible { outline: 0; }
.video-player__timeline:has(input:focus-visible) { outline: 1px solid rgba(213,255,0,.72); outline-offset: 2px; }
.video-player__toolbar { display: flex; min-height: 38px; align-items: center; gap: clamp(6px,1.4vw,16px); }
.video-player__icon { display: block; width: 24px; height: 24px; fill: currentColor; }
.video-player__icon--pause,
.video-player__icon--muted,
.video-player__icon--collapse { display: none; }
.video-frame.is-playing .video-player__play .video-player__icon--play,
.video-frame.is-muted .video-player__icon--volume,
.video-frame.is-fullscreen .video-player__icon--expand { display: none; }
.video-frame.is-playing .video-player__play .video-player__icon--pause,
.video-frame.is-muted .video-player__icon--muted,
.video-frame.is-fullscreen .video-player__icon--collapse { display: block; }
.video-player__time {
  color: var(--paper);
  font: 800 10px/1 var(--sans);
  letter-spacing: .07em;
  white-space: nowrap;
}
.video-player__spacer { flex: 1; }
.video-player__control {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: color .16s ease, transform .16s ease;
}
.video-player__control:hover,
.video-player__control:focus-visible { background: transparent; color: var(--acid); outline: 0; transform: scale(1.08); }
.video-player__volume { display: flex; align-items: center; gap: 2px; }
.video-player__volume input {
  width: clamp(64px,8vw,92px);
  height: 34px;
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.video-player__volume input::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg,var(--paper) 0 var(--player-volume),rgba(255,255,255,.3) var(--player-volume) 100%);
}
.video-player__volume input::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -4px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
}
.video-player__volume input::-moz-range-track { height: 4px; border-radius: 99px; background: rgba(255,255,255,.3); }
.video-player__volume input::-moz-range-progress { height: 4px; border-radius: 99px; background: var(--paper); }
.video-player__volume input::-moz-range-thumb { width: 12px; height: 12px; border: 0; border-radius: 50%; background: var(--paper); }
.video-player__volume input:hover::-webkit-slider-runnable-track,
.video-player__volume input:focus-visible::-webkit-slider-runnable-track { background: linear-gradient(90deg,var(--acid) 0 var(--player-volume),rgba(255,255,255,.3) var(--player-volume) 100%); }
.video-player__volume input:hover::-webkit-slider-thumb,
.video-player__volume input:focus-visible::-webkit-slider-thumb { background: var(--acid); }
.video-player__volume input:focus-visible { outline: 1px solid rgba(213,255,0,.68); outline-offset: 2px; }
.video-player__center:hover,
.video-player__center:focus-visible { background: transparent!important; color: var(--acid)!important; outline: 0; transform: translate(-50%,-50%) scale(1.08)!important; }
.video-frame.has-playback-error .video-player__center { color: #ff796f; }
.video-frame:fullscreen { width: 100vw; height: 100vh; aspect-ratio: auto; }

.video-frame.is-enhanced.is-playing .video-player__center {
  opacity: 0!important;
  pointer-events: none!important;
  visibility: hidden!important;
}
.video-frame.is-enhanced.is-pause-feedback .video-player__center {
  opacity: 0!important;
  pointer-events: none!important;
  visibility: hidden!important;
}
.detail-copy { margin-top: 44px; }
.header-watch.detail-release-cta {
  display: inline-flex;
  min-height: 56px;
  margin: 0 0 30px;
  padding-inline: 28px;
  font-size: 11px;
}
.detail-copy h2 { max-width: 850px; margin: 0 0 24px; font-family: var(--serif); font-size: clamp(32px, 4vw, 58px); font-weight: 400; line-height: 1.05; }
.detail-copy p { max-width: 820px; color: #bbb9b3; font-family: var(--serif); font-size: 18px; line-height: 1.75; }
.detail-sidebar { padding-top: 4px; }
.detail-sidebar__block { padding: 26px 0; border-top: 1px solid var(--line); }
.detail-sidebar__block:last-child { border-bottom: 1px solid var(--line); }
.detail-sidebar__block p { margin: 0 0 6px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.detail-sidebar__block strong { font-size: 14px; }
.detail-performer-links a { color: var(--paper); text-decoration: underline; text-decoration-color: rgba(213,255,0,.45); text-decoration-thickness: 1px; text-underline-offset: 5px; transition: color 160ms ease,text-decoration-color 160ms ease; }
.detail-performer-links a:hover,.detail-performer-links a:focus-visible { color: var(--acid); text-decoration-color: var(--acid); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.tag-list span, .tag-list a { padding: 6px 9px; border: 1px solid var(--line); color: inherit; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tag-list a:hover, .tag-list a:focus-visible { border-color: var(--acid); color: var(--acid); }
.detail-sidebar .button { width: 100%; margin-top: 22px; }

.not-found-page {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(245,239,0,.13), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #050505 58%, #0d0d0b 100%);
}
.not-found-hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0,1.12fr) minmax(300px,.72fr);
  align-items: center;
  gap: clamp(24px,4vw,76px);
  padding-block: clamp(48px,7vh,96px);
}
.not-found-hero__content { position: relative; z-index: 3; width: min(800px,100%); }
.not-found-hero h1 {
  max-width: 800px;
  margin: 28px 0 34px;
  font-size: clamp(72px,8vw,138px);
  letter-spacing: -.075em;
  line-height: .78;
}
.not-found-hero h1 em { display: block; color: var(--acid); font-family: var(--serif); font-weight: 400; }
.not-found-hero__message { max-width: 580px; margin: 0 0 34px; color: #bbb9b3; font-family: var(--serif); font-size: clamp(18px,1.6vw,24px); line-height: 1.45; }
.not-found-hero__art {
  position: relative;
  z-index: 2;
  width: min(34vw,560px);
  height: min(calc(100svh - var(--header-height) - 48px),860px);
  justify-self: end;
  margin: 0;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.72)) drop-shadow(0 0 28px rgba(213,255,0,.1));
}
.not-found-hero__art img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: 50% 100%; }
.not-found-hero__code {
  position: absolute;
  top: 50%;
  right: -.04em;
  z-index: 1;
  color: rgba(213,255,0,.025);
  font-size: clamp(260px,39vw,680px);
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: .72;
  opacity: .36;
  pointer-events: none;
  text-shadow: 0 0 38px rgba(213,255,0,.16);
  transform: translateY(-50%);
  -webkit-text-stroke: clamp(1px,.12vw,2px) rgba(213,255,0,.78);
  user-select: none;
}

.page-hero { padding: 170px 0 100px; border-bottom: 1px solid var(--line); }
.page-hero p:last-child { max-width: 620px; margin: 30px 0 0 auto; color: var(--muted); font-family: var(--serif); font-size: 20px; }
.page-hero--join-team { padding-top: clamp(124px, 13vh, 145px); padding-bottom: clamp(70px, 8vh, 88px); }
.join-team-hero__lower {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(360px, 1.15fr);
  align-items: start;
  gap: clamp(54px, 8vw, 140px);
  margin-top: clamp(34px, 5vh, 54px);
}
.page-hero--join-team .join-team-hero__description {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}
.join-team-contacts { display: grid; margin: 0; padding: 0; list-style: none; }
.join-team-contact {
  display: grid;
  grid-template-columns: minmax(86px, .32fr) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding: 15px 2px 13px;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  transition: border-color 260ms ease, color 260ms ease;
}
.join-team-contacts li:first-child .join-team-contact { border-top: 1px solid var(--line); }
.join-team-contact span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.join-team-contact strong { min-width: 0; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(19px, 1.65vw, 27px); font-weight: 400; line-height: 1.1; }
.join-team-contact[href^="mailto:"] strong {
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: clamp(12px, 1.35vw, 22px);
  letter-spacing: -.025em;
}
.join-team-contact i { font-style: normal; transition: transform 260ms cubic-bezier(.2,.75,.25,1); }
.join-team-contact:is(:hover, :focus-visible) { border-color: var(--acid); color: var(--acid); }
.join-team-contact:is(:hover, :focus-visible) span { color: var(--acid); }
.join-team-contact:is(:hover, :focus-visible) i { transform: translate(3px,-3px); }
.page-hero--archive {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  background: radial-gradient(circle at 78% 18%, rgba(213,255,0,.055), transparent 34rem), #050505;
}
.page-hero--archive .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: brightness(.78) saturate(1.08) contrast(1.03);
  transform: scale(1.006);
}
.page-hero--archive .page-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.78) 39%, rgba(5,5,5,.28) 72%, rgba(5,5,5,.12) 100%),
    linear-gradient(0deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.12) 62%, rgba(5,5,5,.3) 100%);
  pointer-events: none;
  opacity: var(--hero-darkness, 1);
}
.page-hero--archive .page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(90px, 12vh, 150px);
  padding-bottom: clamp(54px, 8vh, 90px);
}
.page-hero--archive h1 {
  max-width: 1180px;
  margin: 18px 0 0;
  font-size: clamp(70px, 9vw, 150px);
  line-height: .8;
  text-shadow: 0 7px 38px rgba(0,0,0,.52);
}
.page-hero--archive p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--paper);
  font-size: clamp(18px,1.45vw,23px);
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0,0,0,.88);
}
.page-hero--archive:not(.has-media) .page-hero__wash { opacity: .38; }
.page-content { padding: 90px 0 130px; }
.page-empty { grid-column: 1 / -1; margin: 0; padding: 50px 0; color: var(--muted); font-family: var(--serif); font-size: 20px; }
.model-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 46px 18px; }
.model-card { display: grid; height: 100%; grid-template-rows: auto 1fr; color: var(--paper); }
.model-card__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #111; }
.model-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.02); transition: filter 420ms ease, transform 620ms cubic-bezier(.22,1,.36,1); }
.model-card__media > span { position: absolute; top: 12px; left: 12px; display: grid; width: 42px; height: 42px; place-items: center; background: var(--acid); color: var(--ink); font-size: 10px; font-weight: 950; }
.model-card__copy { display: flex; min-height: 260px; flex-direction: column; padding: 20px 0 0; }
.model-card__copy > p { margin: 0 0 8px; color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.model-card__copy h2 { margin: 0; font-size: clamp(30px,3.2vw,52px); letter-spacing: -.055em; line-height: .94; }
.model-card__profile-link { display: inline-flex; align-self: flex-start; gap: 24px; margin-top: auto; padding-top: 20px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: inherit; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.model-card__copy h2 a { color: inherit; }
.model-card:hover .model-card__media img { filter: saturate(1.1) contrast(1.03) brightness(1.03); transform: scale(1.03); }
.model-card:hover .model-card__profile-link { color: var(--acid); }
.fetish-card .model-card__media { aspect-ratio: 16 / 10; }
.fetish-card .model-card__copy { min-height: 250px; }
.fetish-card .model-card__copy > p:not(:first-child) {
  max-width: 36rem;
  margin: 16px 0 24px;
  color: #c9c7c1;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.model-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(213,255,0,.12), transparent 58%),
    #111;
}
.model-archive-filter { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 18px; margin: 0 0 34px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.model-archive-filter b { color: var(--acid); }
.model-archive-filter a { padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--paper); }
.model-archive-filter a:hover, .model-archive-filter a:focus-visible { color: var(--acid); }
.model-profile-hero { position: relative; min-height: 82svh; display: flex; align-items: flex-end; overflow: hidden; }
.model-profile-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: brightness(.58) saturate(.8); }
.model-profile-hero::after { position: absolute; inset: 0; background: linear-gradient(0deg,var(--ink),transparent 72%),linear-gradient(90deg,rgba(5,5,5,.68),transparent 72%); content: ""; }
.model-profile-hero__content { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 70px; }
.model-profile-hero h1 { max-width: 1100px; margin: 16px 0 0; font-size: clamp(64px,10vw,166px); font-weight: 950; letter-spacing: -.08em; line-height: .78; text-transform: uppercase; }
.model-profile-content { padding: 90px 0 130px; }
.model-profile-intro { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr); gap: clamp(45px,8vw,130px); align-items: start; }
.model-profile-intro h2 { display: flex; flex-direction: column; align-items: flex-start; margin: 14px 0 0; font-size: clamp(54px,7vw,112px); letter-spacing: -.07em; line-height: .8; }
.model-profile-intro h2 em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.model-profile-intro h2 .model-name__primary { font: inherit; }
.model-profile-intro h2 .model-name__accent { color: var(--acid); font-family: var(--serif); font-style: italic; font-weight: 400; }
.model-profile-intro > div:last-child > p { margin: 0 0 24px; color: #c9c7c1; font-family: var(--serif); font-size: clamp(19px,2vw,27px); line-height: 1.5; }
.model-profile-intro .text-link { margin-top: 34px; }
.model-profile-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.model-profile-actions .button { min-height: 54px; }
.model-profile-actions > span { color: #85847f; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.model-profile-trailers { margin-top: 100px; padding-top: 26px; border-top: 1px solid var(--line); }
.page-content.page-content--fetish-detail { padding-top: 0; }
.model-profile-trailers.fetish-detail__releases { margin-top: 0; padding-top: 0; border-top: 0; }
.model-profile-trailers__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 14px 0 34px; }
.model-profile-trailers__heading h2 { max-width: 1050px; margin: 0; font-size: clamp(38px,5vw,76px); letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
.model-profile-trailers__heading > span { flex: 0 0 auto; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.model-profile-gallery-wrap { margin-top: 100px; padding-top: 26px; border-top: 1px solid var(--line); }
.model-profile-gallery { width: 100%; min-height: 760px; margin: 28px auto 0; }
.model-profile-gallery__media { position: relative; isolation: isolate; background: #10100f; }
.model-profile-gallery__backdrop { position: absolute; inset: -28px; z-index: 0; width: calc(100% + 56px)!important; height: calc(100% + 56px)!important; object-fit: cover!important; filter: grayscale(1) blur(25px) brightness(.4) saturate(.72)!important; transform: scale(1.1)!important; }
.model-profile-gallery__image { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain!important; object-position: 50% 50%!important; filter: grayscale(1) contrast(1.04); transform: scale(1.045); }
.model-profile-gallery__copy { position: relative; z-index: 2; }
.model-profile-gallery__copy::before { position: absolute; top: clamp(28px,4vw,64px); right: clamp(28px,4vw,64px); width: 42px; height: 42px; border-top: 1px solid rgba(5,5,5,.42); border-right: 1px solid rgba(5,5,5,.42); content: ""; }
.model-profile-gallery .model-showcase__side-controls { display: none; }
.model-feature h2.model-profile-gallery__title { font-size: clamp(52px,5.6vw,96px); }
.model-feature h2.model-profile-gallery__title--compact { font-size: clamp(36px,3.75vw,64px); line-height: .86; }
.model-feature h2.model-profile-gallery__title--tight { font-size: clamp(28px,2.75vw,50px); line-height: .9; }
.model-profile-gallery .model-showcase__slide.is-active .model-profile-gallery__image { transform: scale(1); }
.model-profile-gallery .model-showcase__slide.is-active .model-profile-gallery__backdrop { filter: grayscale(.75) blur(25px) brightness(.44) saturate(.85)!important; transform: scale(1.065)!important; }
.model-profile-gallery:hover .model-showcase__slide.is-active .model-profile-gallery__image { filter: grayscale(0) contrast(1.04) saturate(1.05); transform: scale(1.012) translate3d(-.25%,-.15%,0); }
.model-profile-gallery:hover .model-showcase__slide.is-active .model-profile-gallery__backdrop { filter: grayscale(0) blur(25px) brightness(.48) saturate(1)!important; transform: scale(1.08)!important; }
.model-profile-gallery .model-showcase__controls { right: 22px; bottom: 22px; }

/* JUST ME / full-colour journal gallery */
.model-feature.just-me-gallery {
  width: var(--shell);
  min-height: 720px;
  margin: 88px auto 0;
  border: 1px solid rgba(213,255,0,.34);
  background: var(--acid);
}
.just-me-gallery .model-showcase__slide {
  height: 720px;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
}
.just-me-gallery__media {
  position: relative;
  isolation: isolate;
  background: #12110f;
}
.just-me-gallery__open {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  cursor: zoom-in;
}
.just-me-gallery .just-me-gallery__backdrop {
  position: absolute;
  z-index: 0;
  inset: -9%;
  width: 118%;
  height: 118%;
  object-fit: cover;
  filter: blur(28px) brightness(.48) saturate(1.28)!important;
  opacity: .94;
  transform: scale(1.06)!important;
}
.just-me-gallery .just-me-gallery__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1.2vw, 18px);
  object-fit: contain;
  object-position: 50% 50%;
  filter: none!important;
  transform: none!important;
}
.just-me-gallery .model-showcase__slide.is-active .just-me-gallery__image,
.just-me-gallery:hover .model-showcase__slide.is-active .just-me-gallery__image {
  filter: none!important;
  transform: none!important;
}
.just-me-gallery .model-showcase__slide.is-active .just-me-gallery__backdrop,
.just-me-gallery:hover .model-showcase__slide.is-active .just-me-gallery__backdrop {
  filter: blur(28px) brightness(.5) saturate(1.32)!important;
  transform: scale(1.06)!important;
}
.just-me-gallery__expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(5,5,5,.78);
  color: var(--acid);
  font-size: 19px;
  transition: border-color .25s ease, background-color .25s ease, color .25s ease, transform .25s ease;
}
.just-me-gallery__copy { position: relative; }
.just-me-gallery__copy::before {
  position: absolute;
  top: clamp(28px,4vw,58px);
  right: clamp(28px,4vw,58px);
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(5,5,5,.4);
  border-right: 1px solid rgba(5,5,5,.4);
  content: "";
}
.model-feature.just-me-gallery .just-me-gallery__title {
  max-width: 16ch;
  margin-top: 18px;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: .96;
  overflow-wrap: anywhere;
  white-space: normal;
}
.model-feature.just-me-gallery .just-me-gallery__title.is-medium {
  max-width: 18ch;
  font-size: clamp(29px, 3vw, 48px);
  line-height: 1;
}
.model-feature.just-me-gallery .just-me-gallery__title.is-long {
  max-width: 24ch;
  font-size: clamp(22px, 2.25vw, 36px);
  line-height: 1.08;
}
.model-feature.just-me-gallery .just-me-gallery__copy > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 26px 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.48;
  -webkit-line-clamp: 6;
}
.just-me-gallery__side-controls { right: 18px; left: 18px; }
.just-me-gallery__controls { right: 18px; bottom: 18px; }
.just-me-lightbox.is-single .onlyfans-lightbox__nav { display: none; }

@media (hover: hover) and (pointer: fine) {
  .just-me-gallery__open:hover .just-me-gallery__expand,
  .just-me-gallery__open:focus-visible .just-me-gallery__expand {
    border-color: var(--acid);
    background: var(--acid);
    color: #050505;
    transform: scale(1.06);
  }
  .just-me-gallery__open:focus-visible { outline: 3px solid var(--acid); outline-offset: -3px; }
}

.model-profile-royal-mark { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 9px 12px; border: 1px solid rgba(213,255,0,.62); background: rgba(5,5,5,.54); color: var(--paper); font-size: 9px; font-weight: 900; letter-spacing: .14em; backdrop-filter: blur(8px); }
.model-profile-royal-mark span, .model-profile-royal-mark b { color: var(--acid); }
.model-profile-hero--forest-whore::before { position: absolute; top: 0; bottom: 0; left: clamp(16px,3.2vw,64px); z-index: 2; width: 2px; background: linear-gradient(transparent 12%,var(--acid) 54%,transparent 92%); content: ""; opacity: .72; }
.model-profile-content--forest-whore .model-profile-gallery-wrap { position: relative; border-top-color: var(--acid); }
.model-profile-content--forest-whore .model-profile-gallery-wrap::before { position: absolute; top: -1px; left: 0; width: clamp(90px, 16vw, 210px); height: 2px; background: var(--acid); content: ""; }
.model-profile-content--forest-whore .model-profile-intro h2 .model-name__accent { text-shadow: 10px 8px 0 rgba(213, 255, 0, .12); }
.legal-sections { display: grid; gap: 75px; max-width: 900px; }
.legal-sections section { scroll-margin-top: 110px; }
.legal-sections h2 { margin: 0 0 20px; font-size: 34px; letter-spacing: -.04em; }
.legal-sections p { color: #b7b5af; font-family: var(--serif); font-size: 17px; line-height: 1.7; }
.onlyfans-page { overflow: clip; background: #050505; }
.onlyfans-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(213,255,0,.38);
  background: #080808;
}
.onlyfans-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: brightness(.82) saturate(1.12) contrast(1.02);
  transform: scale(1.006);
}
.onlyfans-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.79) 38%, rgba(5,5,5,.34) 67%, rgba(5,5,5,.12) 100%),
    linear-gradient(0deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.16) 63%, rgba(5,5,5,.24) 100%);
  pointer-events: none;
  opacity: var(--hero-darkness, 1);
}
.onlyfans-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: flex-end;
  padding-top: clamp(58px, 9vh, 104px);
  padding-bottom: clamp(42px, 6.5vh, 74px);
}
.onlyfans-hero__copy { width: min(980px, 100%); min-width: 0; }
.onlyfans-hero h1 {
  max-width: 980px;
  margin: 18px 0 26px;
  font-size: clamp(60px, 6.6vw, 112px);
  letter-spacing: -.075em;
  line-height: .78;
  text-shadow: 0 7px 38px rgba(0,0,0,.52);
}
.onlyfans-hero h1 em {
  display: block;
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}
.onlyfans-hero__bottom {
  display: grid;
  max-width: 680px;
  gap: 18px;
}
.onlyfans-hero__bottom > p {
  margin: 0;
  color: #f2efe8;
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.42;
  text-shadow: 0 2px 16px rgba(0,0,0,.86);
  text-wrap: balance;
}
.onlyfans-hero__subscribe {
  width: fit-content;
  min-width: 280px;
  justify-content: space-between;
  box-shadow: 0 18px 48px rgba(213,255,0,.18);
}
.onlyfans-gallery-section {
  position: relative;
  padding: 110px 0 150px;
}
.onlyfans-gallery-section__head {
  display: grid;
  grid-template-columns: 1fr minmax(230px, 360px);
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}
.onlyfans-gallery-section__head h2 {
  margin: 12px 0 0;
  font-size: clamp(54px, 7vw, 108px);
  letter-spacing: -.07em;
  line-height: .82;
}
.onlyfans-gallery-section__head h2 em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.onlyfans-gallery-section__head > p {
  margin: 0;
  color: #96938c;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}
.onlyfans-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.onlyfans-gallery-card {
  min-width: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform .48s cubic-bezier(.2,.75,.2,1), box-shadow .48s ease;
}
.onlyfans-gallery-card__open {
  display: grid;
  height: 100%;
  grid-template-rows: auto 126px;
  color: var(--paper);
  text-decoration: none;
}
.onlyfans-gallery-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 78% 18%, rgba(213,255,0,.17), transparent 28%),
    linear-gradient(145deg, #1a1714, #080808);
  transition: transform .48s cubic-bezier(.2,.75,.2,1), box-shadow .48s ease;
}
.onlyfans-gallery-card:nth-child(3n + 2) .onlyfans-gallery-card__media {
  background:
    radial-gradient(circle at 18% 82%, rgba(255,115,71,.16), transparent 30%),
    linear-gradient(145deg, #19120f, #080808);
}
.onlyfans-gallery-card:nth-child(3n) .onlyfans-gallery-card__media {
  background:
    radial-gradient(circle at 82% 74%, rgba(159,112,255,.16), transparent 30%),
    linear-gradient(145deg, #15111b, #080808);
}
.onlyfans-gallery-card__media::before {
  position: absolute;
  inset: -35% -65%;
  z-index: 3;
  content: "";
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.17) 49%, transparent 56%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-32%, 0, 0);
  transition: opacity .32s ease, transform .72s cubic-bezier(.2,.75,.2,1);
}
.onlyfans-gallery-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
  transition: border-color .45s ease, box-shadow .45s ease;
}
.onlyfans-gallery-card__backdrop {
  position: absolute;
  inset: -9%;
  width: 118%;
  height: 118%;
  object-fit: cover;
  filter: blur(24px) brightness(.5) saturate(1.24);
  transform: scale(1.05);
  transition: filter .7s ease, transform .9s cubic-bezier(.2,.75,.2,1);
}
.onlyfans-gallery-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  filter: saturate(1.03) contrast(1.015);
  transition: filter .55s ease;
}
.onlyfans-gallery-card__media i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  z-index: 5;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(5,5,5,.76);
  color: var(--acid);
  font-style: normal;
  opacity: .68;
  transform: none;
  transition: opacity .35s ease, transform .35s ease, background-color .35s ease, color .35s ease;
}
.onlyfans-gallery-card__copy {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,9,.86);
  transition: border-color .35s ease, background-color .35s ease;
}
.onlyfans-gallery-card__copy small {
  color: var(--acid);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}
.onlyfans-gallery-card__copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.onlyfans-gallery-card__open:focus-visible { outline: 3px solid var(--acid); outline-offset: 5px; }
.onlyfans-gallery-card__open:focus-visible .onlyfans-gallery-card__media i { opacity: 1; transform: none; }
.onlyfans-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3,3,3,.96);
  color: var(--paper);
}
.onlyfans-lightbox.is-fallback-open { position: fixed; inset: 0; z-index: 1000; display: block; }
.onlyfans-lightbox::backdrop { background: rgba(3,3,3,.88); backdrop-filter: blur(12px); }
.onlyfans-lightbox__panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  place-items: center;
  padding: 38px 110px;
}
.onlyfans-lightbox figure {
  display: grid;
  width: min(100%, 1500px);
  height: calc(100vh - 76px);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  margin: 0;
  touch-action: pan-y;
}
.onlyfans-lightbox__media { display: grid; min-height: 0; place-items: center; overflow: visible; }
.onlyfans-lightbox__media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity .25s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.onlyfans-lightbox__media img.is-changing { opacity: .18; transform: scale(.985); }
.onlyfans-lightbox figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 28px;
  min-height: 42px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.onlyfans-lightbox figcaption span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}
.onlyfans-lightbox figcaption strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}
.onlyfans-lightbox__close,
.onlyfans-lightbox__nav {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  background: #080808;
  color: var(--paper);
  cursor: pointer;
  font: 24px/1 var(--sans);
  transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}
.onlyfans-lightbox__close { top: 22px; right: 22px; }
.onlyfans-lightbox__nav { top: 50%; transform: translateY(-50%); }
.onlyfans-lightbox__nav--prev { left: 22px; }
.onlyfans-lightbox__nav--next { right: 22px; }
.onlyfans-lightbox__close:hover,
.onlyfans-lightbox__nav:hover,
.onlyfans-lightbox__close:focus-visible,
.onlyfans-lightbox__nav:focus-visible { border-color: var(--acid); background: var(--acid); color: #050505; outline: 0; }
.onlyfans-lightbox.just-me-lightbox {
  background: linear-gradient(180deg, rgba(3,3,3,.7), rgba(3,3,3,.8));
  backdrop-filter: blur(5px);
}
.onlyfans-lightbox.just-me-lightbox::backdrop {
  background: rgba(3,3,3,.36);
  backdrop-filter: blur(9px);
}
html.has-onlyfans-lightbox { overflow: hidden; }

@media (hover: hover) and (pointer: fine) {
  .onlyfans-gallery-card:hover { transform: translate3d(0, -9px, 0); box-shadow: 0 26px 70px rgba(0,0,0,.42); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__media { transform: translate3d(0, -2px, 0); box-shadow: 0 16px 42px rgba(0,0,0,.32); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__backdrop { filter: blur(18px) brightness(.62) saturate(1.5); transform: scale(1.1); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__image { filter: saturate(1.12) contrast(1.025) brightness(1.035); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__media::before { opacity: 1; transform: translate3d(32%, 0, 0); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__media::after { border-color: var(--acid); box-shadow: inset 0 0 0 1px var(--acid); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__media i { border-color: var(--acid); background: var(--acid); color: #050505; opacity: 1; transform: none; }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__copy { border-color: rgba(213,255,0,.5); background: rgba(213,255,0,.045); }
  .onlyfans-gallery-card__open:hover .onlyfans-gallery-card__copy strong { color: var(--acid); }
}

@media (max-height: 760px) and (min-width: 721px) {
  .onlyfans-hero__inner { padding-top: 38px; padding-bottom: 34px; }
  .onlyfans-hero h1 { margin: 14px 0 20px; font-size: clamp(54px, 6vw, 84px); }
  .onlyfans-hero__bottom { max-width: 640px; gap: 14px; }
  .onlyfans-hero__bottom > p { font-size: 17px; }
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 940px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .site-header__actions { grid-column: 2; }
  .trailer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-promo { margin: 76px 0; min-height: 560px; }
  .platform-promo__content { width: 66%; min-height: 560px; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__grid > div:last-child { max-width: 620px; margin-left: auto; }
  .model-feature { min-height: 650px; }
  .model-feature__image { min-height: 650px; }
  .model-showcase__slide { height: 650px; min-height: 650px; }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model-profile-intro { grid-template-columns: 1fr; }
  .social-strip__links { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .not-found-hero { grid-template-columns: minmax(0,1fr) minmax(250px,.62fr); gap: 18px; }
  .not-found-hero h1 { font-size: clamp(68px,9.5vw,106px); }
  .not-found-hero__art { width: min(38vw,460px); }
  .onlyfans-hero__copy { width: min(820px, 100%); }
  .onlyfans-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); --header-height: 70px; }
  .button { min-height: 50px; padding-inline: 18px; }
  .age-gate { padding: 12px; }
  .age-gate__panel { padding: 28px 20px 28px; }
  .age-gate__mark { width: 88px; height: 88px; }
  .age-gate__actions { grid-template-columns: 1fr; }
  .site-header { height: 70px; padding: 0 16px; }
  .site-header.is-scrolled, .menu-open .site-header { height: 64px; }
  .site-header__logo--desktop { display: none; }
  .site-header__logo--mobile {
    display: block;
    width: clamp(112px, 32vw, 120px);
    height: auto;
    object-fit: contain;
    object-position: left center;
  }
  .header-watch { display: none; }
  .site-header__actions { gap: 0; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-menu { padding: 90px 16px 24px; }
  .mobile-menu nav { margin: 20px 0 28px; }
  .mobile-menu nav a { grid-template-columns: 35px minmax(0, 1fr) 28px; min-height: 60px; font-size: clamp(34px, 12vw, 58px); }
  .hero { height: 82svh; min-height: 620px; max-height: 850px; }
  .hero-slide__media { object-position: 56% 44%; }
  .hero-slide--split .hero-slide__media { object-position: 51% 34%; }
  .hero-slide--hard .hero-slide__media { object-position: 49% 44%; }
  .hero-slide--soft .hero-slide__media { object-position: 55% 50%; }
  .hero-slide__content { padding-top: 90px; padding-bottom: 92px; }
  .hero-slide.is-softened:not(.is-copy-focused) .hero-slide__copy { transform: translateX(-14px); }
  .hero-slide__content h1, .hero-slide__content h2 { max-width: 100%; margin-top: 11px; font-size: var(--hero-title-fit, clamp(44px, min(12.2vw, 7.6svh), 58px)); line-height: var(--hero-title-leading, .9); }
  .hero-slide__content h2 { font-size: var(--hero-title-fit, clamp(41px, min(11.4vw, 7.2svh), 56px)); }
  .hero-slide__kicker { margin: 8px 0 12px; font-size: 15px; }
  .hero-slide__meta { margin-bottom: 16px; gap: 5px 10px; font-size: 8px; }
  .hero-slide__meta span:not(:last-child)::after { margin-left: 10px; }
  .hero-slide__actions { width: 100%; }
  .hero-slide__actions .button { flex: 1 1 calc(50% - 5px); padding-inline: 10px; font-size: 9px; }
  .hero-slide__actions .button:first-child { flex-basis: 100%; }
  .hero-slide__copy > p:not(.eyebrow):not(.hero-slide__kicker) { margin: 10px 0 20px; font-size: 15px; }
  .hero__controls { bottom: 20px; grid-template-columns: 36px 70px 1fr 36px; gap: 8px; }
  .hero__controls button { width: 36px; height: 36px; }
  .hero__side-note { display: none; }
  .ticker__track { font-size: 9px; }
  .ticker__set { gap: 20px; padding: 9px 20px 9px 0; }
  .releases { padding-top: 90px; padding-bottom: 90px; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading h2, .manifesto h2, .model-feature h2, .page-hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .section-heading__note { margin-top: 30px; }
  .trailer-grid { grid-template-columns: 1fr; gap: 38px; }
  .trailer-card h3 { font-size: 29px; }
  .archive-subscribe { padding: 4px 0 26px; }
  .header-watch.archive-subscribe__button:not([hidden]) { display: inline-flex; width: min(100%, 320px); min-height: 54px; }
  .platform-promo { min-height: 650px; margin: 66px 0; }
  .platform-promo__overlay { background: linear-gradient(0deg, rgba(5,5,5,.96), rgba(5,5,5,.58) 62%, rgba(5,5,5,.12)); }
  .platform-promo__media { object-position: 52% 36%; }
  .platform-promo--onlyfans .platform-promo__media { object-position: 55% 46%; }
  .platform-promo__content { width: 100%; min-height: 650px; justify-content: flex-end; padding: 28px 22px 34px; }
  .platform-promo h3 { font-size: clamp(48px, 15vw, 72px); }
  .platform-promo__content > p:not(.eyebrow) { font-size: 16px; }
  .manifesto { padding: 90px 0; }
  .manifesto__grid { gap: 42px; }
  .manifesto__lead { font-size: 24px; }
  .model-feature { grid-template-columns: 1fr; min-height: 0; margin-bottom: 90px; }
  .model-feature__image { min-height: 500px; }
  .model-feature__copy { min-height: 420px; padding: 34px 22px; }
  .model-showcase {
    --model-mobile-media-height: clamp(360px, 58svh, 520px);
  }
  .model-showcase__viewport { touch-action: pan-y; }
  .model-showcase__slide {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: var(--model-mobile-media-height) minmax(340px, auto);
  }
  .model-showcase .model-feature__image {
    width: 100%;
    height: var(--model-mobile-media-height);
    min-height: 0;
  }
  .model-showcase .model-feature__image img {
    object-position: 50% 24%;
    -webkit-user-drag: none;
    user-select: none;
  }
  .model-showcase .model-feature__copy {
    min-height: 340px;
    justify-content: flex-start;
    padding: 42px 22px 34px;
  }
  .model-showcase .model-feature__copy > p:not(.eyebrow) {
    margin: 20px 0;
    font-size: 18px;
    -webkit-line-clamp: 4;
  }
  .model-showcase__side-controls { display: none; }
  .model-showcase__controls {
    top: var(--model-mobile-media-height);
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .model-showcase__controls button { width: 38px; height: 38px; }
  .model-grid { grid-template-columns: 1fr; gap: 46px; }
  .model-card__copy h2 { font-size: 42px; }
  .fetish-card .model-card__copy { min-height: 230px; }
  .fetish-card .model-card__copy > p:not(:first-child) { margin-top: 14px; font-size: 17px; }
  .model-profile-hero { min-height: 72svh; }
  .model-profile-hero__content { padding-top: 120px; padding-bottom: 44px; }
  .model-profile-hero h1 { font-size: clamp(52px,16vw,82px); }
  .model-profile-content { padding: 64px 0 90px; }
  .model-profile-intro h2 { font-size: clamp(50px,15vw,76px); }
  .model-profile-gallery-wrap { margin-top: 70px; }
  .model-profile-trailers { margin-top: 70px; }
  .model-profile-trailers__heading { display: block; }
  .model-profile-trailers__heading > span { display: block; margin-top: 14px; }
  .model-profile-gallery { min-height: 0; }
  .model-profile-gallery__copy::before { top: 24px; right: 22px; }
  .model-profile-gallery .model-showcase__controls { top: var(--model-mobile-media-height); right: auto; bottom: auto; left: 50%; transform: translate(-50%,-50%); }
  .model-profile-royal-mark { margin-bottom: 16px; }
  .social-strip { padding: 54px 0 70px; }
  .social-strip__links { grid-template-columns: 1fr; }
  .social-strip__links a { min-height: 64px; }
  .site-footer { padding-top: 60px; }
  .site-footer__top { align-items: start; flex-direction: column; }
  .site-footer__top img { width: 240px; }
  .site-footer__top > p { text-align: left; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .site-footer__bottom { flex-direction: column; }
  .platform-dialog { padding: 42px 18px 22px; }
  .platform-dialog__options a { grid-template-columns: 28px 1fr auto; min-height: 82px; padding: 12px; }
  .platform-dialog__options small { display: none; }
  .detail-hero { min-height: 70svh; }
  .detail-hero__content { padding-top: 120px; padding-bottom: 44px; }
  .detail-hero h1 { font-size: var(--detail-title-size, clamp(48px, 15vw, 76px)); }
  .detail-content { padding: 60px 0 90px; }
  .header-watch.detail-release-cta { display: inline-flex; width: 100%; min-height: 54px; }
  .detail-sidebar { grid-template-columns: 1fr; }
  .not-found-page { overflow: hidden; }
  .not-found-hero { grid-template-columns: 1fr; align-items: flex-start; gap: 18px; padding-top: 104px; padding-bottom: 0; }
  .not-found-hero__content { width: 100%; }
  .not-found-hero h1 { max-width: 100%; margin: 22px 0 28px; font-size: clamp(58px,18vw,86px); line-height: .82; }
  .not-found-hero__message { max-width: 34rem; margin-bottom: 28px; font-size: 17px; }
  .not-found-hero__art { width: min(88vw,420px); height: auto; aspect-ratio: 2 / 3; justify-self: center; margin-top: 4px; }
  .not-found-hero__code { top: 76px; right: -.02em; bottom: auto; font-size: clamp(150px,52vw,260px); opacity: .28; transform: none; }
  .video-frame.is-enhanced .video-player__center { width: 58px; height: 58px; }
  .video-frame.is-enhanced .video-player__center .video-player__icon { width: 48px; height: 48px; }
  .video-frame.is-enhanced .video-player__feedback { width: 58px; height: 58px; }
  .video-frame.is-enhanced .video-player__feedback .video-player__icon { width: 48px; height: 48px; }
  .video-frame.is-enhanced .video-player__controls { padding: 24px 10px max(7px,env(safe-area-inset-bottom)); }
  .video-player__timeline, .video-player__timeline input { height: 44px; }
  .video-player__toolbar { min-height: 36px; gap: 2px; }
  .video-player__time { font-size: 9px; letter-spacing: .04em; }
  .video-player__control { width: 40px; height: 40px; flex-basis: 40px; padding: 9px; }
  .video-player__volume { gap: 0; }
  .video-player__volume input { width: clamp(52px,18vw,72px); height: 40px; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero p:last-child { margin-left: 0; font-size: 17px; }
  .page-hero--join-team { padding-top: 104px; padding-bottom: 58px; }
  .join-team-hero__lower { grid-template-columns: 1fr; gap: 30px; margin-top: 32px; }
  .page-hero--join-team .join-team-hero__description { margin: 0; font-size: 17px; }
  .join-team-contact { grid-template-columns: minmax(76px,.3fr) minmax(0,1fr) auto; gap: 12px; padding: 14px 0 12px; }
  .join-team-contact strong { font-size: clamp(18px,6vw,24px); }
  .join-team-contact[href^="mailto:"] strong { font-size: clamp(10px,3.5vw,15px); }
  .page-hero--archive { min-height: calc(100svh - var(--header-height)); padding: 0; }
  .page-hero--archive .page-hero__media { object-position: 50% 35%; filter: brightness(.7) saturate(1.06) contrast(1.03); }
  .page-hero--archive .page-hero__wash {
    background:
      linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.22)),
      linear-gradient(0deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.28) 68%, rgba(5,5,5,.38) 100%);
  }
  .page-hero--archive .page-hero__inner { min-height: calc(100svh - var(--header-height)); padding-top: 90px; padding-bottom: 40px; }
  .page-hero--archive h1 { font-size: clamp(54px, 17vw, 82px); }
  .page-hero--archive p:last-child { margin-top: 24px; font-size: 17px; }
  .onlyfans-hero { min-height: calc(100svh - var(--header-height)); }
  .onlyfans-hero__media { object-position: 54% 34%; filter: brightness(.72) saturate(1.08) contrast(1.02); }
  .onlyfans-hero__wash {
    background:
      linear-gradient(0deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.58) 58%, rgba(5,5,5,.22) 100%),
      linear-gradient(90deg, rgba(5,5,5,.7), rgba(5,5,5,.08));
  }
  .onlyfans-hero__inner { min-height: calc(100svh - var(--header-height)); align-items: flex-end; padding-top: 76px; padding-bottom: 28px; }
  .onlyfans-hero h1 { margin: 14px 0 20px; font-size: clamp(48px, 15vw, 70px); line-height: .8; }
  .onlyfans-hero__bottom { gap: 14px; }
  .onlyfans-hero__bottom > p { font-size: 16px; }
  .onlyfans-hero__subscribe { width: 100%; min-width: 0; }
  .onlyfans-gallery-section { padding: 80px 0 110px; }
  .onlyfans-gallery-section__head { grid-template-columns: 1fr; gap: 24px; }
  .onlyfans-gallery-grid { grid-template-columns: 1fr; gap: 34px; }
  .onlyfans-gallery-card__open { grid-template-rows: auto 112px; }
  .onlyfans-gallery-card__copy { min-height: 112px; }
  .onlyfans-lightbox__panel { padding: 72px 16px 88px; }
  .onlyfans-lightbox figure { height: calc(100svh - 160px); gap: 12px; }
  .onlyfans-lightbox figcaption { grid-template-columns: 1fr; gap: 7px; }
  .onlyfans-lightbox__close { top: 10px; right: 10px; }
  .onlyfans-lightbox__nav { top: auto; bottom: 14px; width: 52px; height: 52px; transform: none; }
  .onlyfans-lightbox__nav--prev { left: 16px; }
  .onlyfans-lightbox__nav--next { right: 16px; }

  /* A calmer mobile type scale keeps display text readable without losing impact. */
  .mobile-menu nav a { min-height: 56px; font-size: clamp(30px, 9.5vw, 42px); line-height: 1; }
  .hero-slide__content { padding-top: 86px; padding-bottom: 86px; }
  .hero-slide__content h1,
  .hero-slide__content h2 {
    margin: 8px 0;
    font-size: var(--hero-title-fit, clamp(40px, min(11.2vw, 7.2svh), 52px));
    line-height: var(--hero-title-leading, .92);
  }
  .hero-slide__content h2 { font-size: var(--hero-title-fit, clamp(38px, min(10.7vw, 6.9svh), 50px)); }
  .hero-slide__kicker { font-size: 14px; line-height: 1.35; }
  .hero-slide__copy > p:not(.eyebrow):not(.hero-slide__kicker) { font-size: 15px; line-height: 1.5; }

  .section-heading h2,
  .manifesto h2,
  .page-hero h1 { font-size: clamp(44px, 13vw, 62px); line-height: .9; }
  .section-heading { margin-bottom: 32px; }
  .section-heading__note { margin-top: 20px; }
  .releases { padding-top: 72px; padding-bottom: 72px; }
  .trailer-card h3 { margin: 8px 0 10px; font-size: 26px; line-height: 1.02; }
  .platform-promo { min-height: 580px; margin: 54px 0; }
  .platform-promo__content { min-height: 580px; padding: 24px 20px 30px; }
  .platform-promo h3 { font-size: clamp(42px, 12.5vw, 60px); line-height: .9; }
  .manifesto { padding-top: 72px; padding-bottom: 82px; }
  .manifesto__grid { gap: 30px; }
  .manifesto__lead { font-size: 21px; line-height: 1.35; }
  .model-feature { margin-bottom: 72px; }
  .model-feature h2 { font-size: clamp(42px, 12vw, 58px); line-height: .9; }
  .model-feature h2.model-profile-gallery__title { font-size: clamp(40px, 11vw, 54px); }
  .model-feature h2.model-profile-gallery__title--compact { font-size: clamp(33px, 9.2vw, 46px); line-height: .88; }
  .model-feature h2.model-profile-gallery__title--tight { font-size: clamp(27px, 7.4vw, 36px); line-height: .92; }
  .model-showcase__slide { grid-template-rows: var(--model-mobile-media-height) minmax(300px, auto); }
  .model-showcase .model-feature__copy { min-height: 300px; padding: 32px 20px 28px; }
  .model-showcase .model-feature__copy > p:not(.eyebrow) { margin: 18px 0; font-size: 17px; line-height: 1.45; }

  .page-hero:not(.page-hero--archive):not(.page-hero--join-team) { padding: 108px 0 58px; }
  .page-hero--join-team { padding-top: 96px; padding-bottom: 48px; }
  .page-hero > p:last-child { margin-top: 20px; font-size: 16px; line-height: 1.55; }
  .page-hero--join-team .join-team-hero__description { margin: 0; font-size: 16px; line-height: 1.55; }
  .page-content { padding: 64px 0 90px; }
  .page-hero--archive .page-hero__inner { padding-top: 82px; padding-bottom: 34px; }
  .page-hero--archive h1 { font-size: clamp(44px, 13vw, 64px); line-height: .9; }
  .page-hero--archive p:last-child { margin-top: 18px; font-size: 16px; line-height: 1.5; }

  .detail-hero__content { padding-top: 108px; padding-bottom: 36px; }
  .detail-hero h1 { font-size: var(--detail-title-size, clamp(44px, 13vw, 64px)); line-height: .94; }
  .detail-content { padding: 54px 0 84px; }
  .detail-copy { margin-top: 32px; }
  .detail-copy h2 { font-size: clamp(30px, 8.5vw, 42px); line-height: 1.1; }
  .detail-copy p { font-size: 17px; line-height: 1.62; }

  .model-card__copy { min-height: 220px; }
  .model-card__copy h2 { font-size: 36px; line-height: 1; }
  .model-profile-hero__content { padding-top: 108px; padding-bottom: 36px; }
  .model-profile-hero h1 { font-size: clamp(44px, 13vw, 66px); line-height: .9; }
  .model-profile-content { padding: 58px 0 84px; }
  .model-profile-intro h2 { font-size: clamp(40px, 12vw, 58px); line-height: .9; }
  .model-profile-intro > div:last-child > p { font-size: 17px; line-height: 1.55; }
  .model-profile-trailers,
  .model-profile-gallery-wrap { margin-top: 56px; }
  .model-profile-trailers__heading h2 { font-size: clamp(34px, 10vw, 48px); line-height: .96; }

  .join-team-hero__lower { gap: 24px; margin-top: 26px; }
  .join-team-contact { grid-template-columns: minmax(62px, .28fr) minmax(0, 1fr) auto; gap: 10px; }
  .join-team-contact strong { font-size: clamp(17px, 5vw, 21px); line-height: 1.2; }
  .join-team-contact[href^="mailto:"] strong { font-size: clamp(10px, 3.2vw, 14px); white-space: nowrap; }

  .legal-sections { gap: 48px; }
  .legal-sections h2 { margin-bottom: 14px; font-size: 28px; line-height: 1.08; }
  .legal-sections p { font-size: 16px; line-height: 1.65; }

  .onlyfans-hero h1 { margin: 10px 0 16px; font-size: clamp(42px, 13vw, 60px); line-height: .9; }
  .onlyfans-hero__bottom > p { font-size: 15px; line-height: 1.5; }
  .onlyfans-gallery-section { padding: 68px 0 92px; }
  .onlyfans-gallery-section__head { gap: 18px; margin-bottom: 32px; }
  .onlyfans-gallery-section__head h2 { font-size: clamp(42px, 13vw, 60px); line-height: .9; }
  .onlyfans-gallery-section__head > p { font-size: 16px; line-height: 1.55; }

  .just-me-card__copy { min-height: 210px; padding: 22px; }
  .just-me-card__title { margin: 18px 0 12px; font-size: clamp(25px, 7.4vw, 34px); line-height: 1.04; }
  .just-me-card__excerpt { font-size: 16px; line-height: 1.5; }
  .just-me-entry-hero__inner { padding-top: 82px; padding-bottom: 32px; }
  .just-me-entry-hero h1 { font-size: var(--detail-title-size, clamp(36px, 10.4vw, 52px)); line-height: .96; }
  .just-me-entry__excerpt { font-size: 17px; line-height: 1.48; }
  .just-me-entry { padding-top: 64px; padding-bottom: 82px; }
  .just-me-entry__paragraph { font-size: 17px; line-height: 1.65; }
  .just-me-entry__heading { font-size: clamp(32px, 9vw, 46px); line-height: 1.06; }
  h3.just-me-entry__heading { font-size: clamp(26px, 7vw, 34px); line-height: 1.1; }
  .just-me-entry__quote { font-size: 20px; line-height: 1.5; }

  .model-feature.just-me-gallery {
    --model-mobile-media-height: clamp(360px, 58svh, 520px);
    min-height: 0;
    margin-top: 60px;
  }
  .just-me-gallery .model-showcase__slide {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: var(--model-mobile-media-height) minmax(276px, auto);
  }
  .just-me-gallery .just-me-gallery__media { width: 100%; height: var(--model-mobile-media-height); min-height: 0; }
  .just-me-gallery .just-me-gallery__image { padding: 8px; object-position: 50% 50%; }
  .just-me-gallery .just-me-gallery__copy {
    min-height: 276px;
    justify-content: flex-start;
    padding: 32px 20px 28px;
  }
  .just-me-gallery__copy::before { top: 22px; right: 20px; width: 32px; height: 32px; }
  .model-feature.just-me-gallery .just-me-gallery__title { max-width: 18ch; margin-top: 14px; font-size: clamp(29px, 8vw, 40px); line-height: 1; }
  .model-feature.just-me-gallery .just-me-gallery__title.is-medium { max-width: 21ch; font-size: clamp(25px, 7vw, 35px); line-height: 1.04; }
  .model-feature.just-me-gallery .just-me-gallery__title.is-long { max-width: 28ch; font-size: clamp(20px, 5.7vw, 29px); line-height: 1.12; }
  .model-feature.just-me-gallery .just-me-gallery__copy > p:not(.eyebrow) { margin: 18px 0; font-size: 16px; line-height: 1.48; }
  .just-me-gallery__expand { right: 12px; bottom: 12px; width: 46px; height: 46px; }
  .just-me-gallery__controls { top: var(--model-mobile-media-height); right: auto; bottom: auto; left: 50%; transform: translate(-50%, -50%); }

  .platform-dialog h2 { font-size: clamp(38px, 11vw, 50px); line-height: .92; }
}

@media (hover: none), (pointer: coarse) {
  .model-showcase:hover .model-showcase__slide.is-active .model-feature__image img,
  .model-showcase .model-showcase__slide.is-active .model-feature__image img {
    filter: grayscale(0) contrast(1.04) saturate(1.04);
    transform: scale(1.01);
  }
}

@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; }
  .video-frame.is-pause-feedback .video-player__feedback { animation: none!important; opacity: 1; transform: translate(-50%,-50%); visibility: visible; }
  .hero-slide__media { transform: none !important; }
  .ticker__track { animation: none !important; transform: none !important; }
  .model-showcase__slide { transform: none !important; transition: none !important; }
  .model-showcase__slide .model-feature__image,
  .model-showcase__slide .model-feature__image img,
  .model-showcase__slide .model-feature__copy > * {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
