:root {
  --ink: #08090b;
  --ink-soft: #101216;
  --panel: #15171c;
  --panel-lift: #1b1e24;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --paper: #f6f2ea;
  --text: #f7f7f4;
  --muted: #a7aab3;
  --muted-warm: #cbc3b5;
  --pink: #ff2ebb;
  --blue: #00b2ff;
  --lime: #d7ff64;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% -8%, rgba(255, 46, 187, 0.11), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(0, 178, 255, 0.1), transparent 34rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 178, 255, 0.75);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.93);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: auto;
}

.brand__divider {
  width: 1px;
  height: 23px;
  background: var(--line-strong);
}

.brand__edition {
  color: var(--muted-warm);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #c9cad0;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(120deg, var(--pink), #c946ec 55%, var(--blue));
  box-shadow: 0 14px 34px rgba(255, 46, 187, 0.18);
}

.button--primary:hover {
  border-color: transparent;
  background: linear-gradient(120deg, #ff52c7, #d059ef 55%, #2bbfff);
}

.button--fanvue {
  border-color: transparent;
  background: #f5f2ea;
  color: #111217;
  box-shadow: 0 15px 45px rgba(255, 255, 255, 0.09);
}

.button--fanvue:hover {
  border-color: transparent;
  background: #fff;
}

.button__arrow {
  display: inline-block;
  font-size: 1rem;
  transition: transform 160ms ease;
}

.button:hover .button__arrow {
  transform: translateX(3px);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted-warm);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  content: "";
}

.display-title {
  max-width: 910px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7.7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.display-title em {
  background: linear-gradient(100deg, #fff 5%, #ecbddc 42%, #9bdbff 82%);
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.hero-intro {
  padding: clamp(72px, 10vw, 140px) 0 68px;
}

.hero-intro__row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 54px;
}

.hero-intro__aside {
  padding-bottom: 4px;
}

.hero-intro__aside p {
  margin: 0 0 24px;
  color: #b8bbc4;
  font-size: 1.02rem;
}

.pilot-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9dbe0;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.pilot-note__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(215, 255, 100, 0.09);
}

.feature-stage {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-stage__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.feature-stage__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(7, 8, 10, 0.72));
  content: "";
  pointer-events: none;
}

.feature-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-stage:hover .feature-stage__media img {
  transform: scale(1.025);
}

.feature-stage__index {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(9, 10, 12, 0.45);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.feature-stage__caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.feature-stage__caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-stage__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(34px, 5vw, 66px);
  background:
    radial-gradient(circle at 100% 0, rgba(0, 178, 255, 0.12), transparent 50%),
    linear-gradient(160deg, #17191f, #101216 68%);
}

.feature-stage__kicker {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.feature-stage h2 {
  margin: 24px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.creator-handle {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-stage__quote {
  margin: 48px 0 36px;
  color: #dbdce1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px;
  color: #c6c8cf;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.feature-stage__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.feature-stage__footer small {
  max-width: 140px;
  color: #858993;
  font-size: 0.69rem;
  line-height: 1.45;
}

.directory-section {
  padding: 110px 0 120px;
}

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

.section-heading h2,
.story-heading {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.discovery-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: #9b9ea8;
  font-size: 0.76rem;
  font-weight: 780;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: rgba(255, 255, 255, 0.26);
  background: #f5f2ea;
  color: #101116;
}

.search-field {
  position: relative;
  width: min(100%, 310px);
}

.search-field input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 42px 0 17px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  outline: 0;
}

.search-field input::placeholder {
  color: #777b85;
}

.search-field input:focus {
  border-color: rgba(0, 178, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 178, 255, 0.09);
}

.search-field::after {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #777b85;
  content: "⌕";
  transform: translateY(-52%);
}

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

.creator-card {
  position: relative;
  grid-column: span 4;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease;
}

.creator-card:nth-child(4),
.creator-card:nth-child(5) {
  grid-column: span 6;
  min-height: 560px;
}

.creator-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.27);
}

.creator-card[hidden] {
  display: none;
}

.creator-card__image {
  position: absolute;
  inset: 0;
}

.creator-card__image::after {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(transparent, rgba(6, 7, 9, 0.94));
  content: "";
}

.creator-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.creator-card:hover .creator-card__image img {
  transform: scale(1.04);
}

.creator-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 26px;
}

.creator-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.creator-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.creator-card p {
  margin: 0;
  color: #cacbd0;
  font-size: 0.86rem;
}

.creator-card__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.42);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.empty-state {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 54px 24px;
  color: var(--muted);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.partnership-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2eee5;
  color: #111216;
}

.partnership-band__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.partnership-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.partnership-band__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.partnership-step {
  min-height: 180px;
  border-left: 1px solid rgba(17, 18, 22, 0.18);
  padding: 10px 18px;
}

.partnership-step strong {
  display: block;
  margin-bottom: 38px;
  color: #6b6570;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.partnership-step span {
  display: block;
  font-size: 1.03rem;
  font-weight: 780;
  line-height: 1.3;
}

.site-footer {
  padding: 58px 0 70px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__links a {
  color: #a2a5ae;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #696d76;
  font-size: 0.7rem;
}

/* Profile page */
.profile-hero {
  padding: 38px 0 54px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  color: #777b84;
  font-size: 0.75rem;
  font-weight: 720;
}

.breadcrumbs a {
  color: #a7aab2;
  text-decoration: none;
}

.profile-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #121419;
  box-shadow: var(--shadow);
}

.profile-hero__image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.profile-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.profile-hero__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  content: "";
  pointer-events: none;
}

.profile-hero__feature {
  position: absolute;
  top: 24px;
  left: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(9, 10, 12, 0.48);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.profile-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(38px, 5vw, 72px);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 46, 187, 0.15), transparent 34%),
    radial-gradient(circle at 14% 92%, rgba(0, 178, 255, 0.12), transparent 33%),
    #121419;
}

.profile-hero h1 {
  margin: 24px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7.4vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.83;
}

.profile-hero__dek {
  max-width: 520px;
  margin: 28px 0 0;
  color: #c5c7ce;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.profile-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.profile-fact span {
  display: block;
  margin-bottom: 4px;
  color: #737781;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-fact strong {
  color: #e2e3e7;
  font-size: 0.77rem;
}

.profile-story {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 90px;
  padding: 110px 0;
}

.profile-story__index {
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-story__content {
  max-width: 820px;
}

.profile-story__lede {
  margin: 0 0 34px;
  color: #eff0f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.profile-story__columns {
  columns: 2;
  column-gap: 50px;
  color: #aeb1b9;
  font-size: 0.98rem;
}

.profile-story__columns p {
  margin: 0 0 1.15em;
}

.profile-gallery {
  padding: 0 0 120px;
}

.profile-gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.profile-gallery__heading p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 330px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0;
  background: var(--panel);
  cursor: zoom-in;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 420px);
}

.gallery-grid--four .gallery-item:first-child {
  grid-row: auto;
}

.gallery-grid--four .gallery-item img {
  object-position: 50% 30%;
}

.gallery-grid--four .gallery-item:nth-child(2) img,
.gallery-grid--four .gallery-item:nth-child(3) img {
  object-position: 50% 45%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 220ms ease;
}

.gallery-item:first-child img {
  object-position: 50% 23%;
}

.gallery-item:hover img {
  filter: brightness(0.86);
  transform: scale(1.025);
}

.gallery-item__label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover .gallery-item__label,
.gallery-item:focus-visible .gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}

.creator-quote {
  margin-bottom: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 46, 187, 0.17), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(0, 178, 255, 0.16), transparent 31%),
    #14161b;
  text-align: center;
}

.creator-quote__inner {
  max-width: 950px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 30px;
}

.creator-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.4vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.creator-quote cite {
  display: block;
  margin-top: 28px;
  color: #898d97;
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fanvue-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
  border-radius: var(--radius-lg);
  padding: clamp(46px, 7vw, 90px);
  background: var(--paper);
  color: #111217;
}

.fanvue-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.fanvue-panel__content p {
  margin: 0 0 25px;
  color: #565861;
  font-size: 1rem;
}

.fanvue-panel .button--fanvue {
  background: #111217;
  color: #fff;
}

.fanvue-panel .button--fanvue:hover {
  background: #262831;
}

.affiliate-disclosure {
  display: block;
  margin-top: 14px;
  color: #8a8b91;
  font-size: 0.66rem;
  line-height: 1.45;
}

.related-section {
  padding-bottom: 110px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.related-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  text-decoration: none;
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms ease;
}

.related-card:hover img {
  transform: scale(1.035);
}

.related-card__body {
  padding: 19px 20px 22px;
}

.related-card__body span {
  color: #7e828c;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(5, 6, 8, 0.94);
  backdrop-filter: blur(16px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Real-creator pilot system */
.pilot-review-bar {
  border-bottom: 1px solid rgba(215, 255, 100, 0.18);
  padding: 9px 20px;
  background: #11140f;
  color: #dfffa0;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.pilot-review-bar span {
  color: #8f9685;
}

.theme-aria {
  --creator-a: #6e35f0;
  --creator-b: #ff4daa;
  --creator-c: #51c9ff;
  --creator-ink: #160b2f;
}

.theme-alexis {
  --creator-a: #d22f86;
  --creator-b: #f0a84b;
  --creator-c: #ffd3ec;
  --creator-ink: #2a0b1c;
}

.theme-kaya {
  --creator-a: #02b8ce;
  --creator-b: #7357ff;
  --creator-c: #b8fff1;
  --creator-ink: #061d27;
}

.theme-lana {
  --creator-a: #ff735c;
  --creator-b: #f1b63d;
  --creator-c: #ffd3b6;
  --creator-ink: #32100a;
}

.theme-kaia {
  --creator-a: #af194e;
  --creator-b: #34205f;
  --creator-c: #ff6a88;
  --creator-ink: #210811;
}

.theme-witches {
  --creator-a: #25a674;
  --creator-b: #7045df;
  --creator-c: #a6ffc5;
  --creator-ink: #071d16;
}

.identity-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--creator-c) 58%, transparent), transparent 25%),
    radial-gradient(circle at 82% 70%, color-mix(in srgb, var(--creator-b) 80%, transparent), transparent 36%),
    linear-gradient(145deg, var(--creator-a), var(--creator-ink) 68%);
}

.identity-art::before,
.identity-art::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.identity-art::before {
  z-index: -1;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50% 50% 44% 56% / 54% 42% 58% 46%;
  box-shadow:
    0 0 0 56px rgba(255, 255, 255, 0.035),
    0 0 0 118px rgba(255, 255, 255, 0.018);
  transform: rotate(-14deg);
}

.identity-art::after {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.13) 36%, transparent 37%),
    linear-gradient(transparent 72%, rgba(5, 6, 8, 0.64));
  mix-blend-mode: screen;
}

.identity-art__monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 24vw, 17rem);
  letter-spacing: -0.09em;
  line-height: 0.7;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translate(-53%, -54%);
}

.identity-art__handle,
.identity-art__pending {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.identity-art__handle {
  right: 26px;
  bottom: 25px;
}

.identity-art__pending {
  top: 25px;
  left: 25px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(8, 9, 11, 0.36);
  backdrop-filter: blur(10px);
}

.pilot-profile .profile-hero__image::after {
  z-index: 3;
}

.creator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-photo.creator-photo--aria {
  object-position: 50% 36%;
  scale: 1.08;
}

.creator-photo.creator-photo--kaya {
  object-position: 27% 34%;
  scale: 1.52;
  transform-origin: 27% 34%;
}

.creator-photo.creator-photo--lana {
  object-position: 50% 25%;
  scale: 1.32;
  transform-origin: 50% 25%;
}

.creator-photo.creator-photo--kaia {
  object-position: 50% 29%;
  scale: 1.34;
  transform-origin: 50% 29%;
}

.creator-photo.creator-photo--witches {
  object-position: 50% 36%;
  scale: 1.1;
}

.pilot-profile .profile-hero__content {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--creator-b) 20%, transparent), transparent 34%),
    radial-gradient(circle at 14% 92%, color-mix(in srgb, var(--creator-a) 18%, transparent), transparent 33%),
    #121419;
}

.verified-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: #8c9099;
  font-size: 0.72rem;
  font-weight: 720;
}

.verified-line::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 255, 100, 0.08);
  content: "";
}

.partner-insight {
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 100, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(215, 255, 100, 0.07), rgba(255, 255, 255, 0.025));
}

.partner-insight__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 15px 20px;
  color: #dfffa0;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-insight__top span:last-child {
  color: #74796d;
}

.partner-insight__grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
}

.partner-metric {
  min-height: 138px;
  border-right: 1px solid var(--line);
  padding: 24px 22px;
}

.partner-metric:last-child {
  border-right: 0;
}

.partner-metric span {
  display: block;
  margin-bottom: 8px;
  color: #777c85;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-metric strong {
  display: block;
  color: #f3f4f1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.partner-metric p {
  max-width: 520px;
  margin: 0;
  color: #b5b8bf;
  font-size: 0.86rem;
}

.approval-story .profile-story__lede {
  max-width: 740px;
}

.approval-story__note {
  margin-top: 28px;
  border-left: 2px solid var(--lime);
  padding: 4px 0 4px 18px;
  color: #777b84;
  font-size: 0.76rem;
}

.media-placeholder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 16px;
}

.media-placeholder {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  background:
    radial-gradient(circle at 20% 22%, color-mix(in srgb, var(--creator-c) 35%, transparent), transparent 25%),
    radial-gradient(circle at 72% 66%, color-mix(in srgb, var(--creator-b) 32%, transparent), transparent 33%),
    #14161b;
}

.media-placeholder:first-child {
  grid-row: 1 / 3;
}

.media-placeholder::before {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.media-placeholder__label {
  position: relative;
  z-index: 1;
}

.media-placeholder__label span,
.media-placeholder__label strong {
  display: block;
}

.media-placeholder__label span {
  margin-bottom: 5px;
  color: #777c85;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.media-placeholder__label strong {
  color: #f0f1ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.creator-card__identity,
.related-card__identity {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.creator-card__identity .identity-art__monogram {
  font-size: clamp(7rem, 16vw, 12rem);
}

.creator-card__insight {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.creator-card__insight span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 5px 8px;
  color: #e0e1e4;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.related-card__identity {
  position: relative;
  aspect-ratio: 4 / 3;
}

.related-card__identity .identity-art__monogram {
  font-size: clamp(5.4rem, 12vw, 8rem);
}

.related-card__identity .identity-art__pending,
.related-card__identity .identity-art__handle {
  font-size: 0.53rem;
}

/* Launch-ready creator presentation */
.consumer-profile .profile-hero {
  padding-top: 38px;
}

.consumer-profile .profile-hero__content {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--creator-b) 20%, transparent), transparent 34%),
    radial-gradient(circle at 14% 92%, color-mix(in srgb, var(--creator-a) 18%, transparent), transparent 33%),
    #121419;
}

.consumer-profile .profile-hero__feature {
  background: rgba(9, 10, 12, 0.56);
}

.consumer-profile .profile-story__index {
  color: var(--creator-c);
}

.creator-source-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #868a94;
  font-size: 0.71rem;
  font-weight: 720;
}

.creator-source-line::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--creator-c);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--creator-c) 10%, transparent);
  content: "";
}

.finished-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  grid-template-rows: repeat(2, 270px);
  gap: 16px;
}

.finished-gallery__image,
.finished-gallery__link {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.finished-gallery__image:first-child {
  grid-row: 1 / 3;
}

.finished-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.finished-gallery__image:hover img {
  filter: brightness(0.88);
  transform: scale(1.025);
}

.finished-gallery__caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finished-gallery__image::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(6, 7, 9, 0.76));
  content: "";
  pointer-events: none;
}

.finished-gallery__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--creator-b) 28%, transparent), transparent 45%),
    #16181e;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.finished-gallery__link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.finished-gallery__link span {
  color: #8d919b;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.finished-gallery__link strong {
  max-width: 250px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.finished-gallery__link b {
  color: #fff;
  font-size: 1.3rem;
}

.creator-banner--kaya {
  object-position: 84% 42%;
  scale: 1.28;
  transform-origin: 84% 42%;
}

.creator-banner--lana {
  object-position: 52% 36%;
  scale: 1.5;
  transform-origin: 52% 36%;
}

.creator-banner--kaia {
  object-position: 75% 24%;
  scale: 1.65;
  transform-origin: 75% 24%;
}

.creator-banner--witches {
  object-position: 61% 48%;
  scale: 1.12;
}

@media (max-width: 1040px) {
  .hero-intro__row,
  .profile-story,
  .partnership-band__inner,
  .fanvue-panel {
    gap: 48px;
  }

  .partner-insight__grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-metric:nth-child(2) {
    border-right: 0;
  }

  .partner-metric:last-child {
    grid-column: 1 / 3;
    border-top: 1px solid var(--line);
  }

  .finished-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 280px;
  }

  .finished-gallery__image:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .feature-stage {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .creator-card {
    grid-column: span 6;
  }

  .creator-card:nth-child(5) {
    grid-column: span 12;
  }

  .profile-hero__grid {
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__divider,
  .brand__edition,
  .site-nav .nav-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    background: #121419;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 10px;
    padding: 13px 14px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-intro {
    padding-top: 70px;
  }

  .hero-intro__row,
  .feature-stage,
  .partnership-band__inner,
  .profile-hero__grid,
  .profile-story,
  .fanvue-panel {
    grid-template-columns: 1fr;
  }

  .hero-intro__aside {
    max-width: 560px;
  }

  .display-title {
    font-size: clamp(3.4rem, 14vw, 6.4rem);
  }

  .feature-stage__media,
  .profile-hero__image {
    min-height: 620px;
  }

  .feature-stage__body,
  .profile-hero__content {
    min-height: 560px;
  }

  .section-heading,
  .profile-gallery__heading {
    align-items: start;
    flex-direction: column;
  }

  .discovery-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .partnership-band__steps {
    grid-template-columns: 1fr;
  }

  .partnership-step {
    min-height: auto;
    border-top: 1px solid rgba(17, 18, 22, 0.18);
    border-left: 0;
    padding: 18px 0;
  }

  .partnership-step strong {
    margin-bottom: 10px;
  }

  .profile-story {
    padding: 82px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 530px 300px;
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-grid--four {
    grid-template-rows: repeat(2, 360px);
  }

  .gallery-grid--four .gallery-item:first-child {
    grid-column: auto;
  }

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

  .related-card:last-child {
    display: none;
  }
}

@media (max-width: 600px) {
  .pilot-review-bar {
    padding-inline: 12px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .hero-intro {
    padding: 54px 0 40px;
  }

  .display-title {
    font-size: clamp(3.25rem, 17vw, 5.1rem);
    line-height: 0.92;
  }

  .feature-stage,
  .profile-hero__grid {
    border-radius: 22px;
  }

  .feature-stage__media,
  .profile-hero__image {
    min-height: 520px;
  }

  .feature-stage__body,
  .profile-hero__content {
    min-height: 0;
    padding: 32px 24px;
  }

  .feature-stage h2 {
    font-size: 3.65rem;
  }

  .feature-stage__quote {
    margin: 34px 0 30px;
  }

  .feature-stage__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-stage__footer small {
    max-width: none;
  }

  .directory-section {
    padding: 78px 0 84px;
  }

  .creator-card,
  .creator-card:nth-child(4),
  .creator-card:nth-child(5) {
    grid-column: span 12;
    min-height: 480px;
  }

  .partnership-band__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .site-footer__top,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-hero {
    padding-top: 22px;
  }

  .profile-hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .profile-hero__facts {
    grid-template-columns: 1fr;
  }

  .partner-insight__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .partner-insight__grid {
    grid-template-columns: 1fr;
  }

  .partner-metric,
  .partner-metric:nth-child(2),
  .partner-metric:last-child {
    grid-column: auto;
    min-height: 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .partner-metric:first-child {
    border-top: 0;
  }

  .media-placeholder-grid {
    display: flex;
    flex-direction: column;
  }

  .media-placeholder {
    min-height: 260px;
  }

  .finished-gallery {
    display: flex;
    flex-direction: column;
  }

  .finished-gallery__image,
  .finished-gallery__link {
    min-height: 350px;
  }

  .finished-gallery__link {
    min-height: 270px;
  }

  .profile-story {
    gap: 24px;
    padding: 72px 0;
  }

  .profile-story__columns {
    columns: 1;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-item {
    min-height: 410px;
  }

  .gallery-item__label {
    opacity: 1;
    transform: none;
  }

  .creator-quote,
  .fanvue-panel {
    margin-bottom: 82px;
    border-radius: 22px;
  }

  .fanvue-panel {
    padding: 48px 25px;
  }

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

  .related-card:last-child {
    display: block;
  }

  .lightbox {
    padding: 14px;
  }
}

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