:root {
  --adult-bg: #090608;
  --adult-bg-soft: #120b10;
  --adult-panel: #171014;
  --adult-line: rgba(255, 228, 235, 0.12);
  --adult-text: #fff5f5;
  --adult-muted: #bca9af;
  --adult-red: #f05568;
  --adult-red-bright: #ff6679;
  --adult-wine: #7f2037;
  --adult-pink: #ef87a3;
  --adult-plum: #6d4269;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--adult-text);
  background: var(--adult-bg);
}

body::selection {
  color: #fff;
  background: var(--adult-red);
}

.container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.shell {
  width: 100%;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(1280px, calc(100% - 48px));
  height: 84px;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  backdrop-filter: none;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brandLogo {
  border-radius: 7px;
  box-shadow: 0 0 22px rgba(240, 85, 104, 0.22);
}

.navlinks {
  gap: 8px;
  color: rgba(255, 245, 245, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.navlinks a {
  padding: 9px 11px;
  border-radius: 3px;
}

.navlinks a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav > .btn.outline {
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 3px;
  color: #fff;
  background: rgba(14, 7, 10, 0.2);
  font-size: 0.84rem;
  backdrop-filter: blur(10px);
}

.nav > .btn.outline:hover {
  border-color: var(--adult-red-bright);
  background: rgba(240, 85, 104, 0.14);
}

.adultHero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  overflow: hidden;
  background: #0c080b;
}

.adultHeroArt,
.adultHeroShade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.adultHeroArt {
  object-fit: cover;
  object-position: 57% center;
}

.adultHeroShade {
  background:
    linear-gradient(90deg, rgba(6, 4, 6, 0.95) 0%, rgba(6, 4, 6, 0.84) 33%, rgba(6, 4, 6, 0.26) 60%, rgba(6, 4, 6, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 3, 5, 0.3) 0%, transparent 48%, rgba(5, 3, 5, 0.72) 100%);
}

.adultHeroInner {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(1280px, calc(100% - 48px));
  margin: 72px auto 44px;
}

.adultEyebrow,
.sectionKicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #e8bdc7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adultEyebrow span {
  display: inline-grid;
  width: 34px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  color: #fff;
  background: var(--adult-red);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.adultHero h1,
.adultSection h2,
.adultFinal h2 {
  color: var(--adult-text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.adultHero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.9rem, 7.4vw, 7.25rem);
  line-height: 0.89;
}

.adultHero h1 em,
.adultSection h2 span,
.adultFinal h2 em {
  color: var(--adult-pink);
  font-weight: 400;
}

.adultLead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 244, 246, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.68;
}

.adultOffer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 620px;
  margin-top: 24px;
  padding: 12px 15px;
  border-left: 2px solid var(--adult-red);
  color: #e7d7dc;
  background: rgba(12, 7, 10, 0.56);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.adultOffer svg {
  width: 19px;
  color: var(--adult-pink);
}

.adultOffer strong {
  color: #fff;
}

.adultActions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.adultBtn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.91rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.adultBtn svg {
  width: 17px;
  height: 17px;
}

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

.adultBtn--primary {
  color: #fff;
  background: linear-gradient(135deg, #d93854, #f05d70 58%, #d83c62);
  box-shadow: 0 18px 38px rgba(214, 48, 77, 0.25);
}

.adultBtn--primary:hover {
  box-shadow: 0 22px 48px rgba(214, 48, 77, 0.36);
}

.adultBtn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(10, 6, 8, 0.34);
  backdrop-filter: blur(10px);
}

.adultBtn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.07);
}

.adultProof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 23px 0 0;
  padding: 0;
  color: rgba(255, 241, 244, 0.63);
  font-size: 0.78rem;
  list-style: none;
}

.adultProof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.adultProof svg {
  width: 15px;
  height: 15px;
  color: var(--adult-pink);
}

.heroChatTease {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 74px;
  width: min(360px, 30vw);
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(16, 9, 13, 0.77);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.heroChatHead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 0.8rem;
}

.heroChatHead > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.heroChatHead small {
  color: #d799a8;
  font-size: 0.67rem;
  font-weight: 700;
}

.heroChatHead > svg {
  width: 17px;
  color: var(--adult-pink);
}

.heroChatAvatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--adult-red), var(--adult-plum));
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.heroChatTease p {
  margin: 16px 0 12px;
  color: rgba(255, 247, 249, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.heroChatTyping {
  display: flex;
  gap: 4px;
}

.heroChatTyping i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #dca1af;
  animation: adultTyping 1.2s ease-in-out infinite;
}

.heroChatTyping i:nth-child(2) { animation-delay: 140ms; }
.heroChatTyping i:nth-child(3) { animation-delay: 280ms; }

@keyframes adultTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.adultScroll {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adultScroll svg {
  width: 14px;
  animation: adultScroll 1.8s ease-in-out infinite;
}

@keyframes adultScroll {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.adultSection {
  position: relative;
  padding: clamp(82px, 9vw, 138px) 24px;
  border-top: 1px solid var(--adult-line);
}

.adultWrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.adultSection h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.adultIntro {
  background:
    radial-gradient(circle at 80% 10%, rgba(122, 34, 64, 0.13), transparent 33%),
    var(--adult-bg);
}

.adultIntroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 70px;
  align-items: end;
}

.adultIntroCopy {
  padding-bottom: 6px;
}

.adultIntroCopy p,
.sectionHeading > p:last-child,
.chatPlaygroundCopy > p,
.privacyCopy > p,
.roadmapGrid > div:first-child > p:last-child,
.faqGrid > div:first-child > p {
  margin: 0;
  color: var(--adult-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
}

.textLink svg { width: 15px; }

.compareGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  border: 1px solid var(--adult-line);
}

.compareCard {
  padding: clamp(28px, 4vw, 50px);
}

.compareCard + .compareCard {
  border-left: 1px solid var(--adult-line);
}

.compareCard--muted {
  color: #95848a;
  background: rgba(255, 255, 255, 0.015);
}

.compareCard--hot {
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 85, 104, 0.15), transparent 42%),
    rgba(70, 20, 34, 0.14);
}

.compareLabel {
  margin-bottom: 27px;
  color: #d6c4c9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.compareLabel span { color: var(--adult-pink); }

.compareCard ul,
.privacyCopy ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compareCard li,
.privacyCopy li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.91rem;
  line-height: 1.45;
}

.compareCard li svg,
.privacyCopy li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.compareCard--muted svg { color: #765d65; }
.compareCard--hot svg,
.privacyCopy li svg { color: var(--adult-red-bright); }

.chatPlayground {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(80, 22, 42, 0.23), transparent 45%),
    #100a0e;
}

.chatPlayground::after {
  position: absolute;
  top: -150px;
  left: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(216, 56, 86, 0.12);
  filter: blur(100px);
  content: "";
}

.chatPlaygroundGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.chatStage {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.4);
}

.chatWindow {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(133, 47, 82, 0.16), transparent 31%),
    #0c090b;
}

.chatWindowTop {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5d9dd;
  font-size: 0.8rem;
}

.chatWindowTop > div,
.chatWindowTop > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatWindowTop > span {
  color: #b8929d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatWindowTop svg { width: 14px; }

.onlineDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69d996;
  box-shadow: 0 0 0 4px rgba(105, 217, 150, 0.1);
}

.chatMessages {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  gap: 17px;
  justify-content: flex-end;
  padding: 28px 21px;
}

.message {
  max-width: 82%;
}

.message[hidden] { display: none; }

.message span {
  display: block;
  margin: 0 0 6px 3px;
  color: #b18c98;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message p {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px 12px 12px 12px;
  color: #f3e9ec;
  background: #171014;
  font-size: 0.86rem;
  line-height: 1.55;
}

.message--you {
  align-self: flex-end;
}

.message--you span { text-align: right; }

.message--you p {
  border-radius: 12px 3px 12px 12px;
  border-color: rgba(240, 85, 104, 0.23);
  background: rgba(115, 31, 53, 0.35);
}

.chatChoices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 18px 14px;
}

.chatChoices button {
  padding: 9px 12px;
  border: 1px solid rgba(239, 135, 163, 0.2);
  border-radius: 2px;
  color: #dcbfc7;
  background: rgba(239, 135, 163, 0.05);
  font: inherit;
  font-size: 0.71rem;
  font-weight: 750;
  cursor: pointer;
  transition: 160ms ease;
}

.chatChoices button:hover,
.chatChoices button.is-active {
  border-color: rgba(240, 85, 104, 0.7);
  color: #fff;
  background: rgba(240, 85, 104, 0.16);
}

.chatComposer {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px 18px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #725f65;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.76rem;
}

.chatComposer svg { width: 17px; color: var(--adult-red); }

.chatPlaygroundCopy h2 { margin-bottom: 25px; }

.chatMiniFacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--adult-line);
  background: var(--adult-line);
}

.chatMiniFacts span {
  display: grid;
  min-height: 92px;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 10px;
  color: #d9c9ce;
  background: #100a0e;
  font-size: 0.68rem;
  text-align: center;
}

.chatMiniFacts svg { width: 20px; color: var(--adult-pink); }

.featureSection {
  background:
    radial-gradient(circle at 0% 60%, rgba(111, 46, 102, 0.12), transparent 30%),
    var(--adult-bg);
}

.sectionHeading {
  max-width: 720px;
  margin-bottom: 62px;
}

.sectionHeading h2 { margin-bottom: 24px; }

.sectionHeading--center {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sectionHeading--center .sectionKicker { justify-content: center; }

.dlcShowcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 70px;
}

.dlcPoster {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--adult-line);
  background: #0c080b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.dlcPoster img {
  display: block;
  width: 100%;
  height: auto;
}

.dlcPoster--chat {
  margin-top: 84px;
}

.dlcPoster figcaption,
.privacyPoster figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e7d9dd;
  background: rgba(9, 6, 8, 0.78);
  font-size: 0.72rem;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}

.dlcPoster figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--adult-pink);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featureEditorial {
  display: grid;
  gap: 1px;
  border: 1px solid var(--adult-line);
  background: var(--adult-line);
}

.featureLead,
.featureSplit,
.featurePair {
  background: #0d090b;
}

.featureLead {
  position: relative;
  min-height: 360px;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 40%, rgba(200, 44, 76, 0.22), transparent 25%),
    linear-gradient(105deg, #0d090b 52%, #170b11);
}

.featureLead::after {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(240, 85, 104, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(240, 85, 104, 0.035),
    0 0 0 72px rgba(240, 85, 104, 0.025);
  transform: translateY(-50%);
  content: "";
}

.featureNumber {
  margin-bottom: 40px;
  color: #775a63;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.featureIcon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(240, 85, 104, 0.28);
  color: var(--adult-red-bright);
  background: rgba(240, 85, 104, 0.06);
}

.featureIcon svg { width: 20px; }

.featureEditorial h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.featureEditorial p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--adult-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.featureTags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.featureTags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c6afb6;
  font-size: 0.68rem;
  font-weight: 750;
}

.featureSplit {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 480px;
}

.featureVisual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #070708;
}

.featureVisual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(13, 9, 11, 0.88));
  content: "";
}

.featureVisual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.videoBadge {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1e6e9;
  background: rgba(7, 6, 7, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.videoBadge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #63dc94;
  box-shadow: 0 0 12px rgba(99, 220, 148, 0.65);
}

.featureSplitCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.featurePair {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
}

.featurePair blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(240, 85, 104, 0.4);
  color: #dbc5cc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.featurePair blockquote span {
  display: block;
  height: 40px;
  color: var(--adult-red);
  font-size: 3rem;
}

.privacySection {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%, rgba(100, 51, 97, 0.18), transparent 35%),
    #100b0f;
}

.privacyGrid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.privacyCopy h2 { margin-bottom: 25px; }
.privacyCopy ul { margin-top: 32px; }

.privacyPoster {
  position: relative;
  width: min(510px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #070913;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
}

.privacyPoster img {
  display: block;
  width: 100%;
  height: auto;
}

.privacyPoster figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e4d8dd;
}

.privacyPoster figcaption svg {
  width: 18px;
  flex: 0 0 auto;
  color: #9cbcff;
}

.privacyVisual {
  position: relative;
  display: grid;
  min-height: 510px;
  align-content: center;
  justify-items: center;
  isolation: isolate;
}

.privacyVisual::before,
.privacyVisual::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(239, 135, 163, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

.privacyVisual::after {
  width: 470px;
  height: 470px;
  border-color: rgba(239, 135, 163, 0.07);
}

.privacyLock {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(240, 85, 104, 0.35);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #f16c7f, #9d2846 70%);
  box-shadow: 0 0 55px rgba(230, 66, 93, 0.28);
}

.privacyLock svg { width: 29px; height: 29px; }

.privacyMode {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  width: min(330px, 90%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(17, 10, 14, 0.84);
  backdrop-filter: blur(12px);
}

.privacyMode > span,
.privacyMode > svg {
  grid-row: 1 / 3;
  align-self: center;
  justify-self: start;
}

.privacyMode > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--adult-red);
  font-size: 0.68rem;
  font-weight: 900;
}

.privacyMode > svg { width: 24px; color: #c992a5; }

.privacyMode strong { font-size: 0.84rem; }
.privacyMode small { margin-top: 3px; color: #997e87; font-size: 0.67rem; }

.privacyDivider {
  display: flex;
  width: min(330px, 90%);
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  color: #755b65;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacyDivider span { height: 1px; flex: 1; background: rgba(255, 255, 255, 0.1); }
.privacyDivider em { font-style: normal; }

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

.privacyOrb--one { top: 26%; left: 24%; width: 80px; height: 80px; background: rgba(222, 51, 86, 0.2); }
.privacyOrb--two { right: 19%; bottom: 22%; width: 110px; height: 110px; background: rgba(112, 66, 119, 0.2); }

.scenarioSection { background: var(--adult-bg); }

.scenarioList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--adult-line);
  border-bottom: 1px solid var(--adult-line);
}

.scenarioList article {
  position: relative;
  min-height: 320px;
  padding: 35px;
}

.scenarioList article + article { border-left: 1px solid var(--adult-line); }

.scenarioTime {
  display: block;
  margin-bottom: 55px;
  color: #745a63;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
}

.scenarioList svg { width: 24px; color: var(--adult-red); }

.scenarioList h3 {
  margin: 21px 0 13px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 400;
}

.scenarioList p {
  margin: 0;
  color: var(--adult-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.stepsSection {
  background:
    linear-gradient(180deg, rgba(107, 34, 56, 0.09), transparent 36%),
    #100a0e;
}

.adultSteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.adultSteps li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 35px 30px;
  border-top: 1px solid var(--adult-line);
  border-bottom: 1px solid var(--adult-line);
}

.adultSteps li + li { border-left: 1px solid var(--adult-line); }

.adultSteps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 85, 104, 0.3);
  color: var(--adult-pink);
  font-family: Georgia, "Times New Roman", serif;
}

.adultSteps strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.adultSteps p {
  margin: 9px 0 0;
  color: #9f8a91;
  font-size: 0.78rem;
  line-height: 1.55;
}

.stepsAction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
}

.stepsAction > span {
  color: #b69da5;
  font-size: 0.75rem;
  font-weight: 750;
}

.adultStoreSection {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(205, 50, 82, 0.16), transparent 34%),
    #0b0709;
}

.adultStoreHead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: end;
  margin-bottom: 52px;
}

.adultStoreHead h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.adultStoreHead > p {
  margin: 0 0 5px;
  color: var(--adult-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.adultItchGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--adult-line);
  background: var(--adult-line);
}

.adultItchCard {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: #100b0e;
}

.adultItchCard--dlc {
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 85, 104, 0.13), transparent 38%),
    #150b10;
}

.adultItchCardHead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 20px;
}

.adultItchCardHead > span {
  padding: 5px 7px;
  border: 1px solid rgba(240, 85, 104, 0.28);
  color: var(--adult-pink);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adultItchCardHead > div {
  display: grid;
  gap: 4px;
}

.adultItchCardHead strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.adultItchCardHead small {
  color: #947c84;
  font-size: 0.66rem;
}

.adultItchCardHead > svg {
  width: 21px;
  color: var(--adult-red-bright);
}

.adultItchFrame {
  width: 100%;
  max-width: 552px;
  min-height: 167px;
  overflow: hidden;
}

.adultItchFrame iframe {
  display: block;
  width: 100%;
  height: 167px;
  border: 0;
}

.adultStoreNote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #8f767f;
  font-size: 0.7rem;
  text-align: center;
}

.adultStoreNote svg {
  width: 15px;
  color: var(--adult-pink);
}

.roadmapSection {
  background:
    radial-gradient(circle at 0% 100%, rgba(124, 54, 116, 0.14), transparent 32%),
    var(--adult-bg);
}

.roadmapGrid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.roadmapGrid h2 { margin-bottom: 27px; }

.roadmapTrack {
  position: relative;
  display: grid;
  gap: 0;
}

.roadmapTrack::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 12px;
  width: 1px;
  background: linear-gradient(var(--adult-red), rgba(255, 255, 255, 0.1));
  content: "";
}

.roadmapItem {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  gap: 3px 20px;
  padding: 25px 0;
}

.roadmapItem > span {
  z-index: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 11px;
  height: 11px;
  margin-left: 7px;
  border: 2px solid #6c555e;
  border-radius: 50%;
  background: var(--adult-bg);
}

.roadmapItem--live > span {
  border-color: var(--adult-red-bright);
  background: var(--adult-red);
  box-shadow: 0 0 0 6px rgba(240, 85, 104, 0.1), 0 0 20px rgba(240, 85, 104, 0.45);
}

.roadmapItem small {
  color: #826b73;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmapItem--live small { color: var(--adult-pink); }
.roadmapItem strong { color: #eadde1; font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; font-weight: 400; }

.faqSection { background: #100a0e; }

.faqGrid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(55px, 10vw, 140px);
}

.faqGrid > div:first-child h2 {
  margin-bottom: 23px;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
}

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

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

.adultFaq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #f1e6e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  cursor: pointer;
  list-style: none;
}

.adultFaq summary::-webkit-details-marker { display: none; }
.adultFaq summary svg { width: 18px; flex: 0 0 auto; color: var(--adult-red); transition: transform 180ms ease; }
.adultFaq details[open] summary svg { transform: rotate(45deg); }

.adultFaq details p {
  max-width: 680px;
  margin: -5px 40px 28px 0;
  color: var(--adult-muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

.adultFinal {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--adult-line);
  background:
    radial-gradient(circle at 50% 50%, rgba(176, 44, 75, 0.2), transparent 36%),
    linear-gradient(180deg, #0a0709, #13080d);
  text-align: center;
}

.adultFinal::before,
.adultFinal::after {
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(240, 85, 104, 0.13);
  border-radius: 50%;
  content: "";
}

.adultFinal::after {
  width: 780px;
  height: 780px;
  border-color: rgba(240, 85, 104, 0.06);
}

.adultFinalGlow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(225, 52, 84, 0.15);
  filter: blur(80px);
}

.adultFinalInner {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
}

.adultFinal .adultEyebrow { justify-content: center; }

.adultFinal h2 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.84;
}

.adultFinalInner > p:not(.adultLegal) {
  max-width: 610px;
  margin: 28px auto 0;
  color: #c2aeb4;
  font-size: 1rem;
  line-height: 1.65;
}

.adultActions--center { justify-content: center; }

.adultLegal {
  margin: 26px 0 0;
  color: #745e66;
  font-size: 0.66rem;
}

.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--adult-line);
  background: var(--adult-bg);
}

@media (max-width: 980px) {
  .nav { width: calc(100% - 36px); }
  .adultHero { min-height: 840px; }
  .adultHeroInner { width: calc(100% - 36px); }
  .adultHeroArt { object-position: 61% center; }
  .adultHeroShade {
    background:
      linear-gradient(90deg, rgba(6, 4, 6, 0.94) 0%, rgba(6, 4, 6, 0.75) 44%, rgba(6, 4, 6, 0.14) 100%),
      linear-gradient(180deg, rgba(5, 3, 5, 0.25), transparent 45%, rgba(5, 3, 5, 0.8));
  }
  .adultHero h1 { font-size: clamp(3.7rem, 10vw, 6.2rem); }
  .heroChatTease { right: 24px; bottom: 70px; width: min(330px, 38vw); }
  .adultIntroGrid,
  .chatPlaygroundGrid,
  .privacyGrid,
  .roadmapGrid,
  .faqGrid,
  .adultStoreHead,
  .adultItchGrid { grid-template-columns: 1fr; }
  .adultIntroGrid { gap: 32px; }
  .chatPlaygroundGrid,
  .privacyGrid,
  .roadmapGrid,
  .faqGrid { gap: 55px; }
  .chatStage { order: 2; }
  .featureSplit { grid-template-columns: 1fr; }
  .featureVisual::after { background: linear-gradient(180deg, transparent 72%, rgba(13, 9, 11, 0.88)); }
  .featurePair { grid-template-columns: 1fr; gap: 40px; }
  .scenarioList,
  .adultSteps { grid-template-columns: 1fr; }
  .scenarioList article { min-height: 250px; }
  .scenarioList article + article,
  .adultSteps li + li { border-left: 0; border-top: 0; }
  .adultSteps li { border-top: 1px solid var(--adult-line); border-bottom: 0; }
  .adultSteps li:last-child { border-bottom: 1px solid var(--adult-line); }
}

@media (max-width: 720px) {
  .nav { height: 68px; }
  .nav > .btn.outline { min-height: 38px; padding: 8px 11px; font-size: 0.72rem; }
  .brand span { display: none; }
  .adultHero {
    min-height: 900px;
    align-items: end;
  }
  .adultHeroArt {
    height: 54%;
    object-position: 67% center;
  }
  .adultHeroShade {
    background:
      linear-gradient(180deg, rgba(6, 4, 6, 0.18) 0%, rgba(6, 4, 6, 0.22) 34%, rgba(6, 4, 6, 0.98) 57%, #090608 100%),
      linear-gradient(90deg, rgba(6, 4, 6, 0.5), transparent);
  }
  .adultHeroInner {
    align-self: end;
    margin: 0 auto 47px;
  }
  .adultHero h1 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .adultLead { font-size: 0.96rem; }
  .adultOffer { align-items: flex-start; font-size: 0.8rem; }
  .adultActions { display: grid; }
  .adultBtn { width: 100%; }
  .heroChatTease,
  .adultScroll { display: none; }
  .adultProof { gap: 10px 17px; font-size: 0.7rem; }
  .adultSection { padding: 78px 18px; }
  .adultSection h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .adultIntroGrid { gap: 27px; }
  .compareGrid { grid-template-columns: 1fr; margin-top: 48px; }
  .compareCard + .compareCard { border-top: 1px solid var(--adult-line); border-left: 0; }
  .chatStage { padding: 6px; }
  .chatWindow { min-height: 520px; }
  .chatMessages { min-height: 300px; padding: 22px 14px; }
  .message { max-width: 92%; }
  .chatChoices { padding: 0 12px 12px; }
  .chatComposer { margin: 0 12px 12px; }
  .chatMiniFacts { grid-template-columns: 1fr; }
  .chatMiniFacts span { grid-template-columns: 22px 1fr; min-height: 58px; align-items: center; justify-items: start; text-align: left; }
  .sectionHeading { margin-bottom: 42px; }
  .dlcShowcase { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .dlcPoster--chat { margin-top: 0; }
  .featureLead::after { right: -90px; opacity: 0.6; }
  .featureVisual { min-height: 320px; }
  .featurePair { padding: 35px 26px; }
  .featurePair blockquote { font-size: 1.06rem; }
  .privacyPoster { width: min(520px, 100%); }
  .scenarioList article { min-height: 0; padding: 30px 20px; }
  .scenarioTime { margin-bottom: 35px; }
  .adultSteps li { grid-template-columns: 42px 1fr; padding: 28px 16px; }
  .stepsAction { flex-direction: column; }
  .roadmapGrid { gap: 42px; }
  .adultStoreHead { gap: 26px; margin-bottom: 38px; }
  .adultItchCard { padding: 20px 12px; }
  .adultItchCardHead { grid-template-columns: auto 1fr; }
  .adultItchCardHead > svg { display: none; }
  .faqGrid { gap: 35px; }
  .adultFinal { min-height: 650px; }
  .adultFinal h2 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .adultFinal::before { width: 390px; height: 390px; }
  .adultFinal::after { width: 560px; height: 560px; }
  .footer { width: calc(100% - 36px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .heroChatTyping i,
  .adultScroll svg { animation: none; }
  .adultBtn { transition: none; }
}
