@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fredoka:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --ink: #fff3f8;
  --ink-soft: #c9aebc;
  --cream: #090609;
  --blush: #1c0e15;
  --blush-deep: #351020;
  --pink: #ff65ad;
  --pink-hot: #ff2382;
  --pink-dark: #ff8abd;
  --gold: #d8af62;
  --gold-soft: #f2d99c;
  --gold-deep: #94662c;
  --white: #ffffff;
  --night: #090609;
  --night-soft: #11090d;
  --surface: #160c11;
  --surface-raised: #211019;
  --line: rgba(255, 176, 214, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --serif: "Fredoka", "Trebuchet MS", sans-serif;
  --serif-readable: "Fredoka", "Trebuchet MS", sans-serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

::selection {
  color: var(--night);
  background: var(--gold-soft);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pink-hot);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 6, 9, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  width: 235px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav__cta) {
  position: relative;
}

.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:not(.nav__cta):hover::after,
.nav a:not(.nav__cta):focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 12px 20px;
  color: var(--white);
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--pink-hot);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 35, 130, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 54%),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  top: -260px;
  right: -210px;
  border: 1px solid rgba(216, 175, 98, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 35, 130, 0.035), 0 0 0 160px rgba(255, 35, 130, 0.018);
}

.hero__grid {
  width: min(1320px, calc(100% - 48px));
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);
  grid-template-areas: "live copy";
  align-items: center;
  gap: clamp(34px, 4vw, 56px);
  padding-block: 58px 72px;
}

.hero__copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
}

.hero__live-stage {
  grid-area: live;
  width: 100%;
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold);
  font-size: 1rem;
}

.hero h1,
.section-heading h2,
.about h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.55rem, 5.3vw, 5.25rem);
  line-height: 0.9;
}

.hero__headline-top,
.hero h1 em {
  white-space: nowrap;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--pink-hot);
  font-style: italic;
}

.hero__lede {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--white);
  background: var(--pink-hot);
  box-shadow: 0 12px 28px rgba(242, 36, 127, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 18px 36px rgba(242, 36, 127, 0.32);
}

.button--quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  border-color: rgba(216, 175, 98, 0.58);
}

.button--outline {
  color: var(--white);
  border-color: rgba(216, 175, 98, 0.58);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.hero__note span {
  padding: 3px 7px;
  color: var(--gold-soft);
  border: 1px solid rgba(216, 175, 98, 0.48);
  border-radius: 5px;
  font-weight: 800;
}

.showcase {
  position: relative;
  min-height: 530px;
}

.showcase__halo {
  position: absolute;
  inset: 7% -3% 3% 5%;
  background: radial-gradient(circle at 50% 42%, rgba(255, 116, 175, 0.52), rgba(255, 199, 220, 0.2) 43%, transparent 70%);
  filter: blur(5px);
}

.profile-card {
  position: absolute;
  overflow: hidden;
  background: var(--surface);
  border: 9px solid var(--surface);
  border-radius: 220px 220px 30px 30px;
  box-shadow: var(--shadow);
}

.profile-card--back {
  width: 260px;
  height: 405px;
  top: 10px;
  right: -18px;
  opacity: 0.74;
  transform: rotate(9deg);
}

.profile-card--front {
  width: min(360px, 82%);
  height: 500px;
  left: 5px;
  bottom: 8px;
  transform: rotate(-3deg);
}

.profile-card__art {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.profile-card--front .profile-card__art {
  height: calc(100% - 82px);
  border-radius: 210px 210px 18px 18px;
}

.profile-card__art--rose {
  background:
    radial-gradient(circle at 52% 24%, #ffe7ef 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 52% 55%, #d53c78 0 29%, transparent 30%),
    linear-gradient(145deg, #8e1748, #fa72ad 58%, #ffc8da);
}

.profile-card__art--pearl {
  background:
    radial-gradient(circle at 48% 29%, #fff5f6 0 10.5%, transparent 11%),
    radial-gradient(ellipse at 48% 61%, #ff8ab5 0 29%, transparent 29.5%),
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.88) 0 2px, transparent 3px),
    linear-gradient(155deg, #ffddea, #f7619f 62%, #b91859);
}

.profile-card__art--pearl::after {
  content: "";
  position: absolute;
  inset: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 180px 180px 16px 16px;
}

.profile-card__sparkle {
  position: absolute;
  z-index: 2;
  top: 28%;
  right: 17%;
  color: var(--white);
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.profile-card__caption {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px 12px;
}

.profile-card__caption b,
.profile-card__caption small {
  display: block;
}

.profile-card__caption b {
  margin-bottom: 5px;
  font-size: 0.91rem;
}

.profile-card__caption small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.profile-card__arrow {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--night);
  border-radius: 50%;
}

.showcase__script {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 104px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  font-style: italic;
  line-height: 0.8;
  text-shadow: 0 3px 24px rgba(119, 14, 63, 0.45);
  transform: rotate(-8deg);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(3px);
}

.hero__glow--one {
  width: 250px;
  height: 250px;
  left: -130px;
  bottom: -100px;
  background: rgba(255, 153, 195, 0.25);
}

.hero__glow--two {
  width: 100px;
  height: 100px;
  left: 47%;
  top: 19%;
  background: rgba(255, 79, 157, 0.11);
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: #170a11;
  border-block: 1px solid rgba(255, 35, 130, 0.44);
}

.marquee__track {
  width: max-content;
  min-width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(24px, 4vw, 64px);
  padding-inline: 34px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
}

.marquee__track i {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72em;
  font-style: normal;
}

.giveme-reel {
  position: relative;
  height: clamp(230px, 19vw, 290px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--night-soft);
  border-bottom: 1px solid rgba(216, 175, 98, 0.22);
}

.giveme-reel::before,
.giveme-reel::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.giveme-reel::before {
  background:
    linear-gradient(90deg, rgba(7, 4, 6, 0.98), transparent 14%, transparent 86%, rgba(7, 4, 6, 0.98)),
    linear-gradient(180deg, rgba(7, 4, 6, 0.74), transparent 30%, transparent 70%, rgba(7, 4, 6, 0.82));
}

.giveme-reel::after {
  background: radial-gradient(ellipse at center, rgba(7, 4, 6, 0.18) 0 25%, rgba(7, 4, 6, 0.74) 59%, transparent 83%);
}

.giveme-reel__thumbs {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0.82;
  pointer-events: none;
}

.giveme-reel__track {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding-block: 15px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.giveme-reel__track--a {
  animation: giveme-reel-marquee-a var(--giveme-reel-duration, 58s) linear infinite;
}

.giveme-reel__track--b {
  animation: giveme-reel-marquee-b var(--giveme-reel-duration, 58s) linear infinite;
}

.giveme-reel__track img,
.giveme-reel__track--loading span {
  width: auto;
  height: 100%;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 175, 98, 0.36);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.52);
}

.giveme-reel__track img {
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.66);
}

.giveme-reel__track--loading {
  left: -5%;
  width: 110%;
  justify-content: center;
}

.giveme-reel__track--loading span {
  background: linear-gradient(135deg, var(--surface), #3a1324);
}

.giveme-reel__feature {
  position: relative;
  z-index: 4;
  width: min(500px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 36px 22px;
  color: var(--ink);
  background: rgba(12, 7, 10, 0.9);
  border: 1px solid rgba(216, 175, 98, 0.58);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62), inset 0 1px rgba(255, 255, 255, 0.04);
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.giveme-reel__feature:hover,
.giveme-reel__feature:focus-visible {
  border-color: var(--gold-soft);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7), 0 0 34px rgba(216, 175, 98, 0.12);
  transform: translateY(-3px);
}

.giveme-reel__feature img {
  width: min(400px, 100%);
  height: auto;
}

.giveme-reel__kicker,
.giveme-reel__caption {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.giveme-reel__kicker {
  color: var(--gold-soft);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
}

.giveme-reel__caption {
  color: var(--ink-soft);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

@keyframes giveme-reel-marquee-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-100%, 0, 0); }
}

@keyframes giveme-reel-marquee-b {
  from { transform: translate3d(100%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.discover {
  padding-block: 118px 132px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.live-models {
  margin-bottom: 74px;
}

.live-models__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.live-models__kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-models__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.live-models__status {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.live-stage {
  scroll-margin-top: 24px;
  margin-bottom: 26px;
  overflow: hidden;
  color: var(--white);
  background: #170f13;
  border: 1px solid rgba(216, 175, 98, 0.42);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42), 0 0 42px rgba(216, 175, 98, 0.075);
}

.live-stage__bar {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 25px;
  background:
    radial-gradient(circle at 90% -40%, rgba(255, 79, 157, 0.42), transparent 52%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.045), transparent 46%);
}

.live-stage__identity {
  min-width: 0;
}

.live-stage__status {
  margin: 0 0 4px;
  color: #ff86bb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-stage__identity h3 {
  margin: 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-stage__room-title {
  max-width: 690px;
  margin: 8px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-stage__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.live-stage__viewers {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.button--stage {
  min-height: 46px;
  padding: 11px 19px;
  color: var(--white);
  background: var(--pink-hot);
}

.live-stage__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 79, 157, 0.18), transparent 40%),
    #090608;
}

.live-stage__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-stage__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.live-stage__loading span {
  color: var(--gold);
  font-size: 2rem;
  animation: giveme-stage-pulse 1.4s ease-in-out infinite;
}

.live-stage__loading p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.live-stage__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.live-stage__fallback::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 15, 19, 0.28), rgba(23, 15, 19, 0.92));
}

.live-stage__fallback > img {
  position: absolute;
  z-index: -2;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  filter: blur(9px) saturate(0.7);
}

.live-stage__fallback-copy {
  display: grid;
  gap: 8px;
  max-width: 480px;
  padding: 28px;
}

.live-stage__fallback-copy strong {
  font-family: var(--serif-readable);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 400;
}

.live-stage__fallback-copy span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.live-models__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.live-models__grid.is-empty {
  grid-template-columns: 1fr;
}

.live-models__empty,
.live-models__noscript {
  margin: 0;
  padding: 30px;
  color: var(--ink-soft);
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}

.live-model-card {
  width: 100%;
  min-width: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  cursor: default;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.live-model-card:hover,
.live-model-card:focus-visible,
.live-model-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38), 0 0 24px rgba(255, 35, 130, 0.08);
}

.live-model-card.is-active {
  border-color: rgba(216, 175, 98, 0.78);
  box-shadow: 0 0 0 3px rgba(216, 175, 98, 0.13), 0 18px 40px rgba(0, 0, 0, 0.38);
}

.live-model-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.8) 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 82%, rgba(242, 36, 127, 0.3) 0 31%, transparent 31.5%),
    linear-gradient(145deg, var(--blush), var(--blush-deep));
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.live-model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.live-model-card:hover .live-model-card__image img,
.live-model-card:focus-visible .live-model-card__image img,
.live-model-card:focus-within .live-model-card__image img {
  transform: scale(1.035);
}

.live-model-card__status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(33, 21, 27, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.live-model-card__status--public {
  background: rgba(242, 36, 127, 0.92);
}

.live-model-card__copy {
  display: block;
  padding: 15px 16px 17px;
}

.live-model-card__copy > b,
.live-model-card__name {
  display: block;
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-model-card__name {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(216, 175, 98, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.live-model-card__name:hover,
.live-model-card__name:focus-visible {
  color: var(--gold-soft);
}

.live-model-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
}

.live-model-card__details small {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-model-card__details .live-model-card__viewers {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-weight: 700;
}

.live-model-card--loading {
  min-height: 264px;
  border-color: transparent;
  background: linear-gradient(100deg, var(--blush) 20%, #2b1420 40%, var(--blush) 60%);
  background-size: 220% 100%;
  animation: pink-card-loading 1.4s ease infinite;
}

.live-models__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.live-models__fallback a {
  display: block;
  padding: 7px 10px;
  background: var(--blush);
  border-radius: 999px;
  font-size: 0.76rem;
  text-decoration: none;
}

@keyframes pink-card-loading {
  to { background-position: -220% 0; }
}

@keyframes giveme-stage-pulse {
  50% { opacity: 0.4; transform: scale(0.82); }
}

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

.collection-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.collection-card::before,
.collection-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.collection-card::before {
  width: 240px;
  height: 240px;
  right: -60px;
  bottom: -70px;
  border: 1px solid currentColor;
  opacity: 0.16;
}

.collection-card::after {
  width: 120px;
  height: 120px;
  right: 22px;
  bottom: -36px;
  background: currentColor;
  opacity: 0.08;
}

.collection-card:hover,
.collection-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.collection-card--hot {
  color: var(--white);
  background: var(--pink-hot);
  border-color: transparent;
}

.collection-card--soft {
  background: var(--blush);
}

.collection-card--ink {
  color: var(--white);
  background: var(--surface-raised);
  border-color: transparent;
}

.collection-card__number {
  color: var(--gold-soft);
  font-family: var(--serif-readable);
  font-size: 1.35rem;
}

.collection-card__content {
  position: relative;
  z-index: 1;
}

.collection-card__content small,
.collection-card__content b {
  display: block;
}

.collection-card__content small {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.72;
  text-transform: uppercase;
}

.collection-card__content b {
  max-width: 240px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
}

.collection-card__arrow {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.about {
  color: var(--white);
  background: var(--night-soft);
  border-block: 1px solid var(--line);
}

.about__inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
  padding-block: 94px;
}

.about__mark {
  position: relative;
  display: grid;
  place-items: center;
}

.about__mark::before,
.about__mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(216, 175, 98, 0.26);
  border-radius: 50%;
}

.about__mark::before {
  width: 330px;
  height: 330px;
}

.about__mark::after {
  width: 260px;
  height: 260px;
}

.about__mark img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.26));
}

.about .eyebrow {
  color: #ff9bc5;
}

.about h2 {
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.about__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: #d8c9d0;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  color: #ff91bf;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.site-footer {
  padding-block: 70px 34px;
  color: var(--white);
  background: #070406;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(216, 175, 98, 0.34);
}

.brand--footer {
  filter: none;
}

.footer__top > p {
  margin: 0;
  font-family: var(--serif-readable);
  font-size: 1.5rem;
  text-align: center;
}

.footer__top .button {
  justify-self: end;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  gap: 30px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer__bottom p {
  margin: 0;
}

.model-profile-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 42px 92px;
  background:
    radial-gradient(circle at 84% 26%, rgba(255, 35, 130, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(216, 175, 98, 0.035), transparent 52%),
    var(--cream);
}

.model-profile-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  top: -320px;
  right: -180px;
  border: 1px solid rgba(216, 175, 98, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255, 35, 130, 0.025), 0 0 0 148px rgba(255, 35, 130, 0.012);
}

.model-profile-hero__glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  bottom: -210px;
  left: 12%;
  background: rgba(255, 35, 130, 0.1);
  border-radius: 50%;
  filter: blur(90px);
}

.model-profile-hero__inner {
  position: relative;
  z-index: 1;
}

.model-profile-hero__reel {
  --giveme-reel-duration: 120s;
  position: absolute;
  z-index: 0;
  inset: -12% -7%;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-6deg);
  transform-origin: center;
}

.model-profile-hero__reel::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 6, 9, 0.86), transparent 15%, transparent 85%, rgba(9, 6, 9, 0.86)),
    radial-gradient(ellipse at 44% 48%, transparent, rgba(9, 6, 9, 0.56) 74%),
    linear-gradient(180deg, rgba(9, 6, 9, 0.78), transparent 18%, transparent 78%, rgba(9, 6, 9, 0.9));
}

.model-profile-hero__reel .giveme-reel__track {
  top: 8%;
  bottom: auto;
  height: 42%;
  padding-block: 0;
}

.model-profile-hero__reel .giveme-reel__track--b {
  top: auto;
  bottom: 5%;
}

.model-profile-hero__reel .giveme-reel__track img {
  filter: saturate(0.88) contrast(1.04) brightness(0.68);
}

.model-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-breadcrumb a {
  color: var(--gold-soft);
  text-decoration: none;
}

.model-breadcrumb span[aria-hidden] {
  color: var(--pink);
}

.model-profile-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 5vw, 74px);
}

.model-profile-stage-wrap {
  position: relative;
  min-width: 0;
}

.model-profile-stage {
  position: relative;
  z-index: 1;
  margin: 0;
}

.model-profile-intro {
  min-width: 0;
}

.model-profile-intro h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5.3vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
  white-space: nowrap;
}

.model-profile-intro--long-name h1 {
  font-size: clamp(2.7rem, 4.15vw, 4.4rem);
}

.model-profile-intro--very-long-name h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.model-profile-intro--ultra-long-name h1 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.model-profile-intro h1 span {
  color: var(--pink-hot);
  font-family: var(--serif-readable);
  font-size: 0.56em;
  font-style: italic;
  vertical-align: 0.32em;
}

.model-profile-intro__dek {
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.model-profile-intro__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.model-profile-intro__note span {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(216, 175, 98, 0.44);
  border-radius: 50%;
  font-weight: 800;
}

.model-details {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  gap: 22px;
  padding-block: 104px;
}

.model-story-card,
.model-facts-card,
.model-links-card,
.model-sessions-card {
  padding: clamp(30px, 4vw, 54px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.model-story-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 35, 130, 0.12), transparent 35%),
    var(--surface);
}

.model-story-card::after {
  content: "✦";
  position: absolute;
  right: 34px;
  bottom: 18px;
  color: rgba(216, 175, 98, 0.14);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.model-story-card h2,
.model-facts-card h2,
.model-links-card h2,
.model-sessions-card h2,
.model-section-heading h2,
.model-more h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.model-story-card h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.model-story-card h2 em,
.model-section-heading h2 em {
  color: var(--pink);
  font-style: italic;
}

.model-story-card__copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 30px 0 0;
  color: #decbd4;
  font-size: 1.02rem;
  line-height: 1.82;
}

.model-story-card__aside,
.model-facts-card__empty,
.model-links-card__empty,
.model-sessions-card__empty {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.model-card-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-facts-card h2,
.model-links-card h2,
.model-sessions-card h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
  line-height: 1.03;
}

.model-facts-card dl {
  margin: 28px 0 0;
}

.model-facts-card dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding-block: 15px;
  border-top: 1px solid var(--line);
}

.model-facts-card dt {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.model-facts-card dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-readable);
  font-size: 1rem;
  line-height: 1.45;
}

.model-pulse {
  padding-block: 96px 104px;
  background:
    linear-gradient(180deg, rgba(255, 35, 130, 0.035), transparent 42%),
    var(--night-soft);
  border-block: 1px solid rgba(216, 175, 98, 0.18);
}

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

.model-section-heading h2 {
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.96;
}

.model-section-heading > p {
  max-width: 360px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.model-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-stat-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.model-stat-card--pink {
  background: linear-gradient(145deg, #54152f, #2d101e);
}

.model-stat-card--gold {
  background: linear-gradient(145deg, #362711, #1d160d);
  border-color: rgba(216, 175, 98, 0.28);
}

.model-stat-card span,
.model-stat-card small {
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-stat-card strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
}

.model-connections {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  padding-block: 104px;
}

.model-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.model-link-pill {
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.model-link-pill b {
  color: var(--gold);
}

.model-link-pill:hover,
.model-link-pill:focus-visible {
  background: rgba(255, 35, 130, 0.09);
  border-color: rgba(216, 175, 98, 0.55);
  transform: translateY(-2px);
}

.model-link-pill--live {
  color: var(--white);
  background: var(--pink-hot);
  border-color: transparent;
}

.model-link-pill--live b {
  color: var(--white);
}

.model-session-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.model-session-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-block: 15px;
  border-top: 1px solid var(--line);
}

.model-session-list time {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-session-list li > span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.model-session-list b {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--serif-readable);
  font-size: 0.93rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-session-list small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.model-more {
  padding-bottom: 120px;
}

.model-more .live-models__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "live";
    padding-top: 62px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .showcase {
    width: min(520px, 100%);
    margin: -10px auto 0;
  }

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

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

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

  .live-stage__actions {
    width: 100%;
    justify-content: space-between;
  }

  .collection-card {
    min-height: 230px;
  }

  .about__inner {
    grid-template-columns: 0.58fr 1.42fr;
  }

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

  .footer__top > p {
    display: none;
  }

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

  .footer__bottom p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .header__inner {
    min-height: 78px;
    gap: 14px;
  }

  .brand {
    width: 184px;
  }

  .nav > a:not(.nav__cta) {
    display: none;
  }

  .nav__cta {
    padding: 10px 16px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .hero__grid {
    min-height: auto;
    grid-template-areas:
      "live"
      "copy";
    gap: 50px;
    padding-block: 24px 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero__lede {
    margin-top: 24px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .showcase {
    min-height: 440px;
  }

  .profile-card--front {
    width: 76%;
    height: 420px;
  }

  .profile-card--back {
    width: 52%;
    height: 330px;
    right: 0;
  }

  .showcase__script {
    right: 0;
    bottom: 102px;
    font-size: 2.65rem;
  }

  .marquee__track span:nth-of-type(4),
  .marquee__track span:nth-of-type(5),
  .marquee__track i:nth-of-type(4),
  .marquee__track i:nth-of-type(5) {
    display: none;
  }

  .marquee__track {
    font-family: var(--serif-readable);
    letter-spacing: 0.01em;
  }

  .giveme-reel {
    height: 220px;
  }

  .giveme-reel__track {
    gap: 8px;
    padding-block: 12px;
  }

  .giveme-reel__track img,
  .giveme-reel__track--loading span {
    border-radius: 12px;
  }

  .giveme-reel__feature {
    width: calc(100% - 30px);
    gap: 10px;
    padding: 20px 22px 18px;
    border-radius: 20px;
  }

  .discover {
    padding-block: 82px 92px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 3.25rem;
  }

  .live-models {
    margin-bottom: 58px;
  }

  .live-models__heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .live-models__grid {
    grid-template-columns: 1fr;
  }

  .live-stage {
    border-radius: 20px;
  }

  .live-stage__bar {
    min-height: 0;
    gap: 18px;
    padding: 20px;
  }

  .live-stage__identity h3 {
    font-size: 2.3rem;
  }

  .live-stage__room-title {
    white-space: normal;
  }

  .live-stage__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button--stage {
    width: 100%;
  }

  .live-model-card__image {
    aspect-ratio: 16 / 10;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 78px;
    padding-block: 92px;
  }

  .about__mark img {
    width: 132px;
  }

  .about__mark::before {
    width: 250px;
    height: 250px;
  }

  .about__mark::after {
    width: 190px;
    height: 190px;
  }

  .about h2 {
    font-size: 3.25rem;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .footer__top {
    justify-items: start;
  }

  .footer__top .button {
    justify-self: stretch;
  }

  .footer__bottom p:last-child {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .model-profile-hero__grid,
  .model-details,
  .model-connections {
    grid-template-columns: 1fr;
  }

  .model-profile-intro {
    max-width: 720px;
  }

  .model-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .model-section-heading > p {
    max-width: 620px;
  }

  .model-more .live-models__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .model-profile-hero {
    padding-block: 20px 72px;
  }

  .model-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.64rem;
  }

  .model-profile-hero__grid {
    gap: 48px;
  }

  .model-profile-intro h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .model-profile-intro__dek {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .model-profile-intro__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .model-details,
  .model-connections {
    padding-block: 72px;
  }

  .model-story-card,
  .model-facts-card,
  .model-links-card,
  .model-sessions-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .model-story-card h2,
  .model-section-heading h2 {
    font-size: 3.1rem;
  }

  .model-story-card__copy {
    font-size: 0.95rem;
  }

  .model-story-card::after {
    right: 18px;
    font-size: 5rem;
  }

  .model-pulse {
    padding-block: 76px 82px;
  }

  .model-stat-grid {
    grid-template-columns: 1fr;
  }

  .model-stat-card {
    min-height: 180px;
  }

  .model-facts-card dl div {
    grid-template-columns: 82px 1fr;
  }

  .model-link-pill {
    width: 100%;
  }

  .model-session-list li {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .model-more {
    padding-bottom: 88px;
  }

  .model-more .live-models__grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .live-model-card--loading {
    animation: none;
  }

  .giveme-reel__track--a {
    animation: none;
  }

  .giveme-reel__track--b {
    display: none;
  }
}

/* giveme.pink: a dark playground with candy-pastel accents. */
:root {
  --ink: #fff8fd;
  --ink-soft: #cfc6df;
  --cream: #100d1d;
  --blush: #1a1530;
  --blush-deep: #292047;
  --pink: #ff91bd;
  --pink-hot: #ff5fa2;
  --pink-dark: #ffadd0;
  --gold: #ffe29a;
  --gold-soft: #fff0bd;
  --gold-deep: #c89b48;
  --lavender: #c9b8ff;
  --mint: #9ce8d1;
  --peach: #ffb79f;
  --white: #ffffff;
  --night: #100d1d;
  --night-soft: #151126;
  --surface: #19142b;
  --surface-raised: #241b3c;
  --line: rgba(213, 195, 255, 0.2);
  --shadow: 0 24px 70px rgba(4, 3, 12, 0.5);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 184, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 85% 28%, rgba(255, 145, 189, 0.08), transparent 34rem),
    var(--cream);
}

::selection {
  color: #171126;
  background: var(--mint);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(16, 13, 29, 0.86);
  border-color: rgba(201, 184, 255, 0.18);
}

.brand {
  width: 248px;
}

.nav a:not(.nav__cta)::after {
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--lavender), var(--mint));
  border-radius: 999px;
}

.nav__cta {
  color: #171126;
  background: var(--lavender);
  border-color: transparent;
  box-shadow: 4px 4px 0 var(--pink-hot);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  color: #171126;
  background: var(--mint);
  box-shadow: 2px 2px 0 var(--pink-hot);
}

.hero {
  min-height: 730px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 226, 154, 0.1), transparent 22rem),
    radial-gradient(circle at 57% 88%, rgba(156, 232, 209, 0.09), transparent 26rem),
    radial-gradient(circle at 7% 4%, rgba(201, 184, 255, 0.15), transparent 30rem),
    var(--cream);
}

.hero::before {
  border: 2px dashed rgba(201, 184, 255, 0.24);
  box-shadow: 0 0 0 76px rgba(255, 145, 189, 0.035), 0 0 0 154px rgba(156, 232, 209, 0.02);
}

.hero::after {
  content: "♡  ✦  ♡";
  position: absolute;
  z-index: -1;
  right: 4vw;
  bottom: 26px;
  color: rgba(255, 226, 154, 0.32);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.2em;
  transform: rotate(-8deg);
}

.hero h1,
.section-heading h2,
.about h2,
.model-profile-intro h1,
.model-section-heading h2,
.model-story-card h2 {
  letter-spacing: -0.055em;
}

.hero h1 {
  line-height: 0.93;
}

.hero h1 em,
.section-heading h2 em,
.model-story-card h2 em,
.model-section-heading h2 em {
  color: var(--pink);
  font-style: normal;
  text-shadow: 3px 3px 0 rgba(201, 184, 255, 0.24);
}

.eyebrow {
  color: var(--lavender);
}

.eyebrow span {
  color: var(--pink);
  font-size: 1.25rem;
}

.button {
  border-radius: 16px 24px 18px 26px;
}

.button--primary,
.button--stage {
  color: #171126;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  box-shadow: 5px 5px 0 rgba(201, 184, 255, 0.7);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--stage:hover,
.button--stage:focus-visible {
  box-shadow: 2px 2px 0 rgba(201, 184, 255, 0.85);
}

.button--quiet {
  border-color: rgba(156, 232, 209, 0.42);
  background: rgba(156, 232, 209, 0.07);
}

.hero__note span,
.model-profile-intro__note span {
  color: #171126;
  background: var(--gold);
  border-color: transparent;
  border-radius: 8px;
}

.live-stage {
  background: #171126;
  border: 2px solid rgba(201, 184, 255, 0.5);
  border-radius: 30px 22px 32px 24px;
  box-shadow: 10px 12px 0 rgba(255, 95, 162, 0.12), 0 28px 70px rgba(4, 3, 12, 0.5);
}

.live-stage__bar {
  background:
    radial-gradient(circle at 92% -60%, rgba(255, 145, 189, 0.5), transparent 54%),
    linear-gradient(110deg, rgba(201, 184, 255, 0.12), rgba(156, 232, 209, 0.04));
}

.live-stage__status {
  color: var(--mint);
}

.live-stage__viewers {
  color: var(--gold);
}

.live-stage__loading span {
  color: var(--pink);
}

.marquee {
  color: #171126;
  background: linear-gradient(90deg, var(--lavender), var(--pink), var(--peach), var(--gold), var(--mint));
  border: 0;
  transform: rotate(-0.45deg) scale(1.01);
}

.marquee__track {
  font-family: var(--serif);
  font-weight: 700;
}

.marquee__track i {
  color: #6e3e78;
}

.giveme-reel {
  background: #0b0914;
}

.giveme-reel::before,
.giveme-reel::after {
  background: linear-gradient(90deg, var(--cream), transparent);
}

.giveme-reel__track img,
.giveme-reel__track--loading span {
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px 14px 24px 16px;
  filter: saturate(0.85) contrast(1.03);
}

.giveme-reel__feature {
  color: var(--ink);
  background: rgba(24, 18, 43, 0.94);
  border: 2px solid var(--pink);
  border-radius: 28px 18px 30px 20px;
  box-shadow: 8px 9px 0 rgba(156, 232, 209, 0.58), 0 20px 60px rgba(4, 3, 12, 0.64);
  transform: rotate(-1.2deg);
}

.giveme-reel__feature:hover,
.giveme-reel__feature:focus-visible {
  box-shadow: 4px 5px 0 rgba(156, 232, 209, 0.7), 0 20px 60px rgba(4, 3, 12, 0.64);
  transform: rotate(0deg) translateY(-3px);
}

.giveme-reel__kicker {
  color: var(--mint);
}

.giveme-reel__caption {
  color: var(--gold-soft);
}

.discover {
  position: relative;
}

.discover::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  top: 70px;
  right: -90px;
  opacity: 0.34;
  background-image: radial-gradient(var(--lavender) 2px, transparent 2px);
  background-size: 22px 22px;
  transform: rotate(12deg);
}

.live-model-card {
  background: linear-gradient(150deg, rgba(36, 27, 60, 0.96), rgba(25, 20, 43, 0.96));
  border: 2px solid rgba(201, 184, 255, 0.22);
  border-radius: 24px 16px 28px 18px;
  box-shadow: 5px 6px 0 rgba(255, 145, 189, 0.08);
}

.live-model-card:nth-child(3n + 2) {
  border-color: rgba(156, 232, 209, 0.32);
}

.live-model-card:nth-child(3n) {
  border-color: rgba(255, 226, 154, 0.3);
}

.live-model-card:hover,
.live-model-card:focus-visible,
.live-model-card:focus-within {
  border-color: var(--pink);
  box-shadow: 3px 4px 0 rgba(201, 184, 255, 0.38), 0 20px 42px rgba(4, 3, 12, 0.46);
}

.live-model-card__status--public {
  color: #171126;
  background: var(--mint);
}

.collection-card {
  border: 2px solid transparent;
  border-radius: 30px 20px 32px 22px;
}

.collection-card--hot {
  color: #171126;
  background: linear-gradient(135deg, var(--pink), var(--peach));
}

.collection-card--soft {
  color: #171126;
  background: linear-gradient(135deg, var(--lavender), #e5dbff);
}

.collection-card--ink {
  color: #171126;
  background: linear-gradient(135deg, var(--mint), #c8f5e7);
}

.about {
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 184, 255, 0.2), transparent 25rem),
    radial-gradient(circle at 90% 10%, rgba(255, 145, 189, 0.13), transparent 24rem),
    #171126;
  border-block: 1px solid rgba(201, 184, 255, 0.2);
}

.about__mark::before {
  border: 2px dashed rgba(255, 226, 154, 0.48);
}

.about__mark::after {
  background: rgba(156, 232, 209, 0.12);
}

.text-link {
  color: var(--mint);
}

.site-footer {
  background: #0b0914;
}

.model-profile-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 145, 189, 0.15), transparent 25rem),
    radial-gradient(circle at 8% 70%, rgba(156, 232, 209, 0.09), transparent 24rem),
    var(--cream);
}

.model-profile-hero::before {
  border-color: rgba(201, 184, 255, 0.26);
  border-style: dashed;
}

.model-profile-intro h1 span,
.model-card-kicker,
.live-models__kicker {
  color: var(--mint);
}

.model-story-card,
.model-facts-card,
.model-links-card,
.model-sessions-card {
  background: linear-gradient(145deg, rgba(36, 27, 60, 0.92), rgba(25, 20, 43, 0.96));
  border: 2px solid rgba(201, 184, 255, 0.22);
  border-radius: 30px 20px 32px 22px;
}

.model-story-card {
  box-shadow: 8px 9px 0 rgba(255, 145, 189, 0.08);
}

.model-story-card::after {
  content: "♡";
  color: rgba(255, 145, 189, 0.12);
}

.model-facts-card {
  border-color: rgba(156, 232, 209, 0.28);
}

.model-pulse {
  background: #171126;
  border-block: 1px solid rgba(201, 184, 255, 0.18);
}

.model-stat-card {
  color: var(--ink);
  background: rgba(36, 27, 60, 0.94);
  border: 2px solid rgba(201, 184, 255, 0.24);
  border-radius: 28px 18px 30px 20px;
}

.model-stat-card--pink {
  color: #171126;
  background: var(--pink);
}

.model-stat-card--gold {
  color: #171126;
  background: var(--gold);
}

.model-link-pill--live {
  color: #171126;
  background: var(--pink);
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

  .brand {
    width: 196px;
  }

  .hero::after,
  .discover::before {
    display: none;
  }

  .giveme-reel__feature {
    transform: rotate(-0.5deg);
  }
}
