*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.grow {
  flex-grow: 1;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}

:root {
  --bg: #0a0a0f;
  --bg-1: #15151f;
  --bg-2: #1f1f2e;
  --bg-3: #2a2438;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.15);
  --text: #f0eef5;
  --text-2: #b8b4c4;
  --text-3: #82808f;
  --accent: #ff5fa4;
  --accent-2: #b366ff;
  --accent-soft: rgba(255, 95, 164, 0.15);
  --grad: linear-gradient(135deg, #ff5fa4, #b366ff);
  --radius: 12px;
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto,
    Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 99px;
  border: 1px solid var(--border-2);
  color: var(--text);
  transition: 0.18s;
  cursor: pointer;
}
.btn:hover {
  background: var(--bg-2);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-2);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo .dot {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 15px;
  color: var(--text-2);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 560px) {
  .nav {
    height: 58px;
  }
  .logo {
    font-size: 16px;
    gap: 7px;
  }
  .logo .dot {
    width: 23px;
    height: 23px;
    font-size: 13px;
  }
  .nav-cta .btn {
    font-size: 14px;
    padding: 9px 16px;
  }
}

.hero {
  position: relative;
  padding: 64px 0 40px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 520px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 95, 164, 0.16),
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.wall {
  position: absolute;
  inset: -30px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  pointer-events: none;
}
.wall .tile {
  border-radius: 12px;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.97);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.03);
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      ellipse 52% 46% at center,
      rgba(255, 95, 164, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 66% 72% at center,
      rgba(10, 10, 15, 0.95) 0%,
      rgba(10, 10, 15, 0.82) 44%,
      rgba(10, 10, 15, 0.5) 100%
    );
}
.hero .wrap {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .wall .tile {
    animation: none;
    opacity: 0.4;
  }
}
.hero .pill {
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 14ch;
  margin: 0 auto 18px;
}
.hero p.sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 60ch;
  margin: 0 auto 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.demo {
  max-width: 440px;
  margin: 38px auto 0;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  text-align: left;
  box-shadow: 0 24px 60px -20px rgba(255, 95, 164, 0.16);
}
.demo-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--border);
}
.demo-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.demo-head .nm {
  font-weight: 600;
  font-size: 15px;
}
.demo-head .st {
  font-size: 12px;
  color: #5fd6a4;
}
.demo-body {
  min-height: 188px;
  padding: 14px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.msg {
  max-width: 78%;
  padding: 9px 14px;
  border-radius: 16px;
  font-size: 14.5px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  animation: pop 0.32s forwards;
}
.msg.them {
  align-self: flex-start;
  background: var(--bg-3);
  border-bottom-left-radius: 5px;
}
.msg.me {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 5px;
  font-weight: 500;
}
.typing {
  align-self: flex-start;
  background: var(--bg-3);
  padding: 13px 16px;
  border-radius: 16px;
  border-bottom-left-radius: 5px;
  display: flex;
  gap: 5px;
}
.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-3);
  animation: blink 1.2s infinite;
}
.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes pop {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes blink {
  0%,
  60%,
  100% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }
}
.spot {
  max-width: 680px;
  margin: 40px auto 0;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  gap: 30px;
  align-items: center;
  text-align: left;
  box-shadow: 0 28px 70px -20px rgba(255, 95, 164, 0.18);
  transition: opacity 0.45s;
}
.spot .pic {
  width: 200px;
  height: 256px;
  flex: 0 0 auto;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
}
.spot .info {
  flex: 1;
  min-width: 0;
}
.spot .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 9px;
}
.spot .nm {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.spot .vq {
  font-size: 17px;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 54px;
}
.spot .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--grad);
  padding: 12px 22px;
  border-radius: 99px;
}
.spot-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.spot-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  transition: 0.25s;
}
.spot-dots i.on {
  background: var(--accent);
  width: 18px;
  border-radius: 99px;
}
@media (max-width: 560px) {
  .spot {
    padding: 16px;
    gap: 16px;
    flex-direction: row;
  }
  .spot .pic {
    width: 120px;
    height: 152px;
  }
  .spot .nm {
    font-size: 21px;
  }
  .spot .vq {
    font-size: 15px;
    min-height: auto;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 46px auto 0;
}
.stat {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 8px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 12.5px;
  color: var(--text-3);
}
@media (max-width: 560px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

section.blk {
  padding: 64px 0;
}
.sec-head {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 38px;
}
.sec-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 12px;
}
.sec-head p {
  color: var(--text-2);
  font-size: 17px;
}

.searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 26px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 12px 20px;
  color: var(--text-3);
  font-size: 15px;
}
.chips {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.chip {
  font-size: 13.5px;
  color: var(--text-2);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 16px;
  cursor: pointer;
  transition: 0.15s;
}
.chip:hover,
.chip.on {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card {
  display: block;
  color: inherit;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.18s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.card .ph {
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.card .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.card .ph .tag {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: 99px;
}
.card .meta {
  padding: 11px 13px;
}
.card .meta b {
  font-size: 15px;
  font-weight: 600;
}
.card .meta p {
  font-size: 12.5px;
  color: var(--text-3);
}
.card .meta .row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-2);
  margin-top: 9px;
}
.card .meta .q {
  font-style: italic;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph .reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(10, 10, 15, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: 0.2s;
}
.card:hover .ph .reveal {
  opacity: 1;
}
.reveal .bubble {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}
.mood {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-2);
  font-size: 14.5px;
}

.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .feats {
    grid-template-columns: 1fr;
  }
}
.feat {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
}
.feat .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feat h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat p {
  color: var(--text-2);
  font-size: 14.5px;
}
.guide-card {
  display: block;
  transition: 0.18s;
}
.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.guide-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.about {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.about h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 18px;
}
.about p {
  color: var(--text-2);
  font-size: 16.5px;
  margin-bottom: 14px;
}

.models {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.model {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 14.5px;
  color: var(--text-2);
}

.faq {
  max-width: 760px;
  margin: 0 auto;
}
.qa {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--bg-1);
  overflow: hidden;
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary .pm {
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: 0.2s;
}
.qa[open] summary .pm {
  transform: rotate(45deg);
}
.qa .a {
  padding: 0 22px 20px;
  color: var(--text-2);
  font-size: 15px;
}

.cta-band {
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 95, 164, 0.1),
    rgba(179, 102, 255, 0.07)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
}
.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--text-2);
  margin-bottom: 24px;
  font-size: 17px;
}

.page {
  padding: 56px 0 24px;
}
.page h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.1;
}
.page .lede {
  color: var(--text-2);
  font-size: 18px;
  max-width: 62ch;
  margin-bottom: 8px;
}
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 48px;
}
.prose h2 {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 36px 0 12px;
}
.prose h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.prose p {
  color: var(--text-2);
  font-size: 16.5px;
  margin-bottom: 14px;
}
.prose ul {
  color: var(--text-2);
  font-size: 16.5px;
  margin: 0 0 14px 22px;
}
.prose li {
  margin-bottom: 7px;
}
.prose a {
  color: var(--accent);
}
.muted {
  color: var(--text-3);
  font-size: 14px;
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .posts {
    grid-template-columns: 1fr;
  }
}
.post {
  display: block;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.18s;
}
.post:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.post .ph {
  aspect-ratio: 16/9;
  background: var(--grad);
  opacity: 0.85;
}
.post .body {
  padding: 16px 18px;
}
.post .tag {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.post h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 8px;
  line-height: 1.3;
}
.post p {
  color: var(--text-3);
  font-size: 14px;
}
.soon {
  display: inline-block;
  font-size: 12px;
  color: var(--text-3);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px 10px;
  margin-top: 10px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
  margin-top: 32px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 32px;
}
.foot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 520px;
}
.foot-tags a {
  font-size: 13px;
  color: var(--text-3);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 13px;
}
.foot-tags a:hover {
  color: var(--text-2);
}
.foot-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-3);
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.foot-legal a:hover {
  color: var(--text-2);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}
.quote {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
}
.quote .stars {
  color: #ffc847;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.quote p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  flex: 0 0 auto;
}
.quote .who b {
  font-size: 14px;
  display: block;
}
.quote .who span {
  font-size: 12px;
  color: var(--text-3);
}
.lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lead p {
  color: var(--text-2);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* AI sex chat landing page */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/assets/fonts/plus-jakarta-sans-latin-wght-normal.woff2')
    format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
.sex-page {
  font-family: 'Plus Jakarta Sans', var(--font);
}
.sex-page main {
  overflow: hidden;
}
.sex-page .eyebrow {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.sex-hero {
  position: relative;
  padding: 72px 0 58px;
}
.sex-hero::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  right: -180px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(179, 102, 255, 0.18),
    rgba(255, 95, 164, 0.07) 42%,
    transparent 70%
  );
  pointer-events: none;
}
.sex-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 70px;
}
.sex-hero-copy h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 850;
  margin: 18px 0 22px;
  max-width: 12ch;
}
.sex-hero-copy > p {
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.72;
  max-width: 58ch;
}
.sex-hero-copy .hero-cta {
  justify-content: flex-start;
  margin: 28px 0 0;
}
.sex-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  color: var(--text-3);
  font-size: 13px;
}
.sex-hero-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sex-hero-notes span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grad);
}
.sex-scene-card {
  position: relative;
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 430px;
  color: var(--text);
  background: linear-gradient(
    145deg,
    rgba(31, 31, 46, 0.98),
    rgba(18, 18, 27, 0.98)
  );
  border: 1px solid var(--border-2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 36px 100px -46px rgba(255, 95, 164, 0.55);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.sex-scene-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 95, 164, 0.42);
  box-shadow: 0 42px 110px -42px rgba(255, 95, 164, 0.7);
}
.sex-scene-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.sex-scene-image {
  position: relative;
  min-height: 430px;
}
.sex-scene-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(24, 24, 36, 0.95)),
    linear-gradient(0deg, rgba(10, 10, 15, 0.42), transparent 50%);
}
.sex-scene-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 52% center;
  object-position: 52% center;
}
.sex-scene-label {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(10, 10, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.sex-scene-chat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 26px 12px;
}
.sex-scene-person {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.sex-scene-person span {
  font-size: 23px;
  font-weight: 750;
}
.sex-scene-person small {
  font-size: 12px;
  color: #72dbb0;
}
.sex-bubble {
  font-size: 13.5px;
  line-height: 1.48;
  padding: 10px 13px;
  border-radius: 15px;
  margin-bottom: 10px;
  max-width: 94%;
}
.sex-bubble-user {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.sex-bubble-character {
  align-self: flex-start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
}
.sex-scene-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.sex-scene-action span {
  color: var(--accent);
  font-size: 18px;
}

.sex-character-section {
  padding: 36px 0 78px;
}
.sex-section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 26px;
}
.sex-section-intro > div {
  max-width: 600px;
}
.sex-section-intro h2 {
  font-size: clamp(27px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 820;
}
.sex-section-intro > p {
  max-width: 460px;
  color: var(--text-2);
  font-size: 16px;
}
.sex-character-strip .card {
  border-radius: 20px;
  background: linear-gradient(180deg, var(--bg-1), rgba(21, 21, 31, 0.78));
}
.sex-character-strip .card .ph {
  aspect-ratio: 4/5;
}
.sex-character-strip .card .meta {
  padding: 14px 15px 16px;
}
.sex-character-strip .card .meta b {
  font-size: 16px;
}
.sex-character-strip .card .meta .q {
  font-size: 13px;
  margin-top: 2px;
}

.sex-capabilities {
  position: relative;
  padding: 92px 0 104px;
  border-top: 1px solid var(--border);
  background: radial-gradient(
      circle at 15% 0,
      rgba(255, 95, 164, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 100%,
      rgba(179, 102, 255, 0.08),
      transparent 34%
    );
}
.sex-cap-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.sex-cap-heading h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.sex-cap-heading p {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--text-2);
  font-size: 16.5px;
  line-height: 1.72;
}
.sex-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sex-cap-card {
  position: relative;
  min-height: 378px;
  display: grid;
  grid-template-rows: auto 96px 1fr;
  align-content: start;
  gap: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(31, 31, 46, 0.94),
    rgba(18, 18, 27, 0.92)
  );
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.sex-cap-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
}
.sex-cap-card::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -105px;
  top: -115px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 95, 164, 0.16),
    transparent 68%
  );
  pointer-events: none;
}
.sex-cap-card:nth-child(even)::after {
  background: radial-gradient(
    circle,
    rgba(179, 102, 255, 0.18),
    transparent 68%
  );
}
.sex-cap-num {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  background: rgba(255, 95, 164, 0.09);
  color: #ff8cbc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.sex-cap-visual {
  position: relative;
  z-index: 1;
  height: 82px;
  margin: 14px 0 24px;
}
.sex-cap-copy {
  position: relative;
  z-index: 1;
}
.sex-cap-card h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 760;
}
.sex-cap-card p {
  margin-top: 9px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.62;
}
.sex-cap-profiles {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 10, 15, 0.36);
}
.sex-profile-faces {
  display: flex;
  flex-shrink: 0;
}
.sex-profile-faces img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 2px solid #262635;
  border-radius: 15px;
}
.sex-profile-faces img + img {
  margin-left: -14px;
}
.sex-profile-lines {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.sex-profile-lines b {
  font-size: 12px;
}
.sex-profile-lines span {
  color: var(--text-3);
  font-size: 10.5px;
  white-space: nowrap;
}
.sex-cap-relationship {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.sex-cap-relationship span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.55);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.sex-cap-relationship i {
  width: 13px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
}
.sex-cap-relationship em {
  padding: 7px 9px;
  border-radius: 99px;
  background: rgba(179, 102, 255, 0.12);
  color: #d5b8ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}
.sex-cap-pacing {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 10, 15, 0.34);
}
.sex-cap-pacing > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 9px;
}
.sex-cap-pacing span {
  color: var(--text-3);
  font-size: 9.5px;
}
.sex-cap-pacing i {
  position: relative;
  height: 5px;
  border-radius: 99px;
  background: #2b2b3b;
  overflow: hidden;
}
.sex-cap-pacing i::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: var(--grad);
}
.sex-cap-pacing small {
  justify-self: end;
  padding: 4px 7px;
  border-radius: 99px;
  background: rgba(255, 95, 164, 0.1);
  color: #ff8cbc;
  font-size: 9px;
}
.sex-cap-models {
  background: radial-gradient(
      circle at 100% 0,
      rgba(179, 102, 255, 0.18),
      transparent 42%
    ),
    linear-gradient(145deg, rgba(31, 31, 46, 0.96), rgba(18, 18, 27, 0.92));
}
.sex-cap-model-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid rgba(179, 102, 255, 0.22);
  border-radius: 16px;
  background: rgba(10, 10, 15, 0.36);
}
.sex-cap-model-switch > div {
  display: grid;
  gap: 4px;
}
.sex-cap-model-switch small {
  color: var(--text-3);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-cap-model-switch b {
  font-size: 12px;
}
.sex-cap-model-switch > span {
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-size: 9px;
  font-weight: 750;
}
.sex-model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}
.sex-model-chips span {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: rgba(10, 10, 15, 0.45);
  color: var(--text-3);
  font-size: 10.5px;
  font-weight: 650;
}
.sex-cap-builder {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 10, 15, 0.34);
}
.sex-cap-builder img {
  width: 64px;
  height: 68px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
.sex-cap-builder > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.sex-cap-builder b {
  grid-column: 1/-1;
  font-size: 11px;
}
.sex-cap-builder span {
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(179, 102, 255, 0.09);
  color: var(--text-3);
  font-size: 8.5px;
}
.sex-cap-builder span:last-child {
  grid-column: 1/-1;
}
.sex-cap-story {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 7px 9px;
  padding-left: 2px;
}
.sex-cap-story span {
  width: -moz-max-content;
  width: max-content;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(10, 10, 15, 0.38);
  color: var(--text-2);
  font-size: 9px;
  font-weight: 650;
}
.sex-cap-story span:last-child {
  border-color: rgba(255, 95, 164, 0.28);
  background: rgba(255, 95, 164, 0.08);
  color: #ff9cc4;
}
.sex-cap-story i {
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  opacity: 0.7;
}

.sex-product-proof {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(
      circle at 0 50%,
      rgba(179, 102, 255, 0.08),
      transparent 34%
    ),
    var(--bg);
}
.sex-product-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}
.sex-product-heading > div {
  max-width: 720px;
}
.sex-product-heading h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.042em;
  font-weight: 820;
  max-width: 17ch;
}
.sex-product-heading > p {
  max-width: 470px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.68;
}
.sex-product-layout {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}
.sex-product-window,
.sex-plan-panel {
  border: 1px solid var(--border-2);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(31, 31, 46, 0.96),
    rgba(15, 15, 23, 0.96)
  );
  box-shadow: 0 36px 90px -68px rgba(179, 102, 255, 0.9);
  overflow: hidden;
}
.sex-product-bar {
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.52);
}
.sex-product-bar > span {
  font-size: 11px;
  color: var(--text-2);
  font-weight: 700;
}
.sex-product-bar > em {
  justify-self: end;
  color: var(--text-3);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-window-dots {
  display: flex;
  gap: 6px;
}
.sex-window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5fa4;
}
.sex-window-dots i:nth-child(2) {
  background: #b366ff;
}
.sex-window-dots i:nth-child(3) {
  background: #6bd6ac;
}
.sex-product-body {
  min-height: 472px;
  display: grid;
  grid-template-columns: 185px 1fr;
}
.sex-product-roster {
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.33);
}
.sex-product-roster-label {
  display: block;
  margin: 0 8px 13px;
  color: var(--text-3);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sex-product-roster > button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  margin-bottom: 5px;
  color: var(--text);
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.16s,
    border-color 0.16s,
    transform 0.16s;
}
.sex-product-roster > button:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.025);
}
.sex-product-roster > button.active {
  border-color: rgba(255, 95, 164, 0.22);
  background: rgba(255, 95, 164, 0.08);
}
.sex-product-roster img {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.sex-product-roster > button > span {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.sex-product-roster b {
  font-size: 10.5px;
}
.sex-product-roster small {
  font-size: 8.5px;
  color: var(--text-3);
  white-space: nowrap;
}
.sex-product-chat {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px 20px 20px;
  background: radial-gradient(
    circle at 100% 0,
    rgba(255, 95, 164, 0.09),
    transparent 36%
  );
}
.sex-product-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.sex-product-chat-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sex-product-chat-head img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
.sex-product-chat-head > div > span {
  display: grid;
  gap: 2px;
}
.sex-product-chat-head b {
  font-size: 12px;
}
.sex-product-chat-head small {
  font-size: 9px;
  color: #72dbb0;
}
.sex-product-chat-head button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(10, 10, 15, 0.42);
  color: var(--text);
  font-family: inherit;
}
.sex-product-chat-head button small {
  color: var(--text-3);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sex-product-chat-head button b {
  font-size: 9px;
}
.sex-product-chat-head button span {
  color: var(--accent);
}
.sex-product-messages {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px 2px;
}
.sex-product-messages > div {
  align-self: flex-start;
  max-width: 78%;
}
.sex-product-messages > div.from-user {
  align-self: flex-end;
}
.sex-product-messages small {
  display: block;
  margin: 0 0 4px 5px;
  color: var(--text-3);
  font-size: 8.5px;
}
.sex-product-messages .from-user small {
  text-align: right;
  margin-right: 5px;
}
.sex-product-messages p {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  background: rgba(21, 21, 31, 0.88);
  font-size: 11px;
  line-height: 1.5;
}
.sex-product-messages .from-user p {
  border: 0;
  border-radius: 14px 14px 4px 14px;
  background: var(--grad);
  color: #fff;
}
.sex-product-input {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(10, 10, 15, 0.48);
  color: var(--text-3);
  font-size: 10px;
  transition:
    border-color 0.18s,
    background 0.18s;
}
.sex-product-input:hover {
  border-color: rgba(255, 95, 164, 0.35);
  background: rgba(255, 95, 164, 0.045);
}
.sex-product-input i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-style: normal;
}
.sex-plan-panel {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: radial-gradient(
      circle at 100% 0,
      rgba(179, 102, 255, 0.2),
      transparent 38%
    ),
    linear-gradient(145deg, rgba(31, 25, 39, 0.98), rgba(18, 18, 27, 0.96));
}
.sex-plan-panel h2 {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.sex-plan-panel > p {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.65;
}
.sex-plan-options {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}
.sex-plan-options > div {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(10, 10, 15, 0.35);
}
.sex-plan-options span {
  color: #ff8cbc;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-plan-options strong {
  font-size: 13px;
}
.sex-plan-options small {
  color: var(--text-3);
  font-size: 10.5px;
  line-height: 1.45;
}
.sex-plan-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: auto;
}
.sex-plan-actions .btn {
  padding: 11px 18px;
  font-size: 12px;
}
.sex-plan-link {
  color: var(--text);
  font-size: 11px;
  font-weight: 750;
}
.sex-plan-link span {
  color: var(--accent);
  font-size: 15px;
}
.sex-plan-note {
  display: block;
  margin-top: 15px;
  color: var(--text-3);
  font-size: 9px;
  line-height: 1.45;
}

.sex-mode-section {
  position: relative;
  padding: 88px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
      120deg,
      rgba(255, 95, 164, 0.045),
      transparent 35%
    ),
    linear-gradient(300deg, rgba(179, 102, 255, 0.06), transparent 45%);
}
.sex-mode-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}
.sex-mode-copy > h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 830;
  max-width: 15ch;
}
.sex-mode-copy > p {
  color: var(--text-2);
  font-size: 16.5px;
  max-width: 56ch;
  margin-top: 17px;
}
.sex-mode-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.sex-mode-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(21, 21, 31, 0.72);
  transition: 0.18s;
}
.sex-mode-list article:hover {
  transform: translateX(4px);
  border-color: var(--border-2);
  background: var(--bg-1);
}
.sex-mode-list article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  padding-top: 4px;
}
.sex-mode-list h3 {
  font-size: 17px;
  font-weight: 750;
  margin-bottom: 3px;
}
.sex-mode-list p {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.sex-mode-stage {
  position: relative;
  min-height: 460px;
  padding: 48px;
  border: 1px solid var(--border-2);
  border-radius: 30px;
  background: radial-gradient(
      circle at 90% 10%,
      rgba(179, 102, 255, 0.2),
      transparent 36%
    ),
    radial-gradient(circle at 0 100%, rgba(255, 95, 164, 0.13), transparent 40%),
    var(--bg-1);
  box-shadow: 0 30px 80px -50px rgba(179, 102, 255, 0.7);
}
.sex-stage-kicker {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--accent-soft);
  color: #ff8cbc;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sex-mode-stage h3 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 20px 0 12px;
}
.sex-mode-stage > p {
  color: var(--text-2);
  font-size: 15.5px;
}
.sex-stage-thread {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px 18px;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(10, 10, 15, 0.38);
}
.sex-stage-thread span {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-stage-thread strong {
  font-size: 13px;
  font-weight: 650;
}
.sex-mode-stage .sex-stage-note {
  font-size: 13px;
  color: var(--text-3);
}

.sex-compare {
  padding: 104px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(21, 21, 31, 0.36), transparent);
}
.sex-compare-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.sex-compare-copy h2 {
  font-size: clamp(32px, 4.1vw, 49px);
  line-height: 1.07;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.sex-compare-copy > p {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.72;
}
.sex-compare-copy .sex-compare-note {
  padding-left: 15px;
  border-left: 2px solid var(--accent);
  color: var(--text-3);
  font-size: 13.5px;
}
.sex-compare-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-2);
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-1);
  box-shadow: 0 34px 90px -60px rgba(179, 102, 255, 0.75);
}
.sex-compare-side {
  padding: 34px 30px;
}
.sex-compare-side + .sex-compare-side {
  border-left: 1px solid var(--border);
}
.sex-compare-side-character {
  background: radial-gradient(
      circle at 100% 0,
      rgba(255, 95, 164, 0.16),
      transparent 40%
    ),
    linear-gradient(145deg, rgba(31, 25, 39, 0.98), rgba(21, 21, 31, 0.96));
}
.sex-compare-label {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-compare-side-character .sex-compare-label {
  border-color: rgba(255, 95, 164, 0.28);
  background: rgba(255, 95, 164, 0.08);
  color: #ff8cbc;
}
.sex-compare-side h3 {
  margin: 19px 0 23px;
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: -0.025em;
}
.sex-compare-side ul {
  list-style: none;
}
.sex-compare-side li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.sex-compare-side li b {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sex-compare-side li span {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.48;
}
.sex-prompt-example {
  margin-top: 24px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(10, 10, 15, 0.4);
}
.sex-prompt-example small {
  display: block;
  margin-bottom: 7px;
  color: var(--text-3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-prompt-example p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

.sex-how {
  padding: 82px 0 48px;
}
.sex-steps {
  position: relative;
}
.sex-steps .step {
  min-height: 190px;
  padding: 25px;
  background: linear-gradient(145deg, var(--bg-1), rgba(21, 21, 31, 0.55));
}
.sex-steps .step p {
  font-size: 14px;
}

.sex-scenarios {
  padding: 44px 0 88px;
}
.sex-scenario-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.sex-scenario-grid article {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(31, 31, 46, 0.9),
    rgba(21, 21, 31, 0.86)
  );
  overflow: hidden;
}
.sex-scenario-grid article::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -100px;
  bottom: -120px;
  background: radial-gradient(
    circle,
    rgba(179, 102, 255, 0.18),
    transparent 70%
  );
}
.sex-scenario-grid .sex-scenario-main {
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  min-height: 456px;
  background: linear-gradient(
      145deg,
      rgba(255, 95, 164, 0.13),
      rgba(21, 21, 31, 0.85) 48%
    ),
    var(--bg-1);
}
.sex-scenario-preview {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  padding: 20px;
  border: 1px solid rgba(255, 95, 164, 0.18);
  border-radius: 18px;
  background: rgba(10, 10, 15, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.sex-scenario-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 15px;
}
.sex-scenario-preview-top span {
  color: var(--text-3);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sex-scenario-preview-top em {
  padding: 5px 8px;
  border-radius: 99px;
  background: rgba(255, 95, 164, 0.1);
  color: #ff8cbc;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}
.sex-scenario-message {
  max-width: 78%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 13px 13px 13px 4px;
  background: var(--bg-1);
}
.sex-scenario-message + .sex-scenario-message {
  margin-top: 9px;
}
.sex-scenario-message-last {
  margin-left: auto;
  border-radius: 13px 13px 4px 13px;
  background: rgba(179, 102, 255, 0.1);
}
.sex-scenario-message small {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 8.5px;
  font-weight: 700;
}
.sex-scenario-message p {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text);
}
.sex-scenario-grid article > span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.sex-scenario-grid h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(21px, 2.5vw, 31px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 12px 0 10px;
}
.sex-scenario-grid p {
  position: relative;
  z-index: 1;
  color: var(--text-2);
  font-size: 15px;
  max-width: 54ch;
}
.sex-scenario-grid strong {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  color: #fff;
  font-size: 14px;
}

.sex-quality {
  padding: 0 0 88px;
}
.sex-quality-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}
.sex-quality-card,
.sex-privacy-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
  background: var(--bg-1);
}
.sex-quality-card h2,
.sex-privacy-card h2 {
  font-size: clamp(25px, 3.2vw, 37px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.sex-quality-card ul {
  list-style: none;
  display: grid;
  gap: 0;
}
.sex-quality-card li {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.sex-quality-card li strong {
  font-size: 14px;
}
.sex-quality-card li span {
  color: var(--text-2);
  font-size: 13.5px;
}
.sex-privacy-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: radial-gradient(
      circle at 90% 10%,
      rgba(255, 95, 164, 0.14),
      transparent 35%
    ),
    linear-gradient(145deg, var(--bg-1), rgba(24, 20, 31, 0.9));
}
.sex-privacy-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  font-size: 27px;
  margin-bottom: auto;
}
.sex-privacy-card > p {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 25px;
}
.sex-guide-links {
  display: grid;
  gap: 9px;
}
.sex-guide-links a {
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(10, 10, 15, 0.35);
  font-size: 13px;
  font-weight: 650;
}
.sex-guide-links a span {
  color: var(--accent);
}

.sex-final {
  padding: 0 0 48px;
}
.sex-final-cta {
  padding: 68px 28px;
  background: radial-gradient(
      circle at 50% -20%,
      rgba(255, 95, 164, 0.24),
      transparent 44%
    ),
    linear-gradient(135deg, rgba(255, 95, 164, 0.08), rgba(179, 102, 255, 0.08));
}
.sex-final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.sex-faq-wrap {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 72px;
  align-items: start;
  padding: 88px 0 30px;
}
.sex-faq-title h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.sex-faq-wrap .faq {
  max-width: none;
  width: 100%;
}

@media (max-width: 900px) {
  .sex-hero {
    padding: 52px 0 40px;
  }
  .sex-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .sex-hero-copy h1 {
    max-width: 15ch;
  }
  .sex-scene-card {
    max-width: 680px;
    min-height: 360px;
  }
  .sex-scene-image {
    min-height: 360px;
  }
  .sex-section-intro {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .sex-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sex-product-heading {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
  .sex-product-layout {
    grid-template-columns: 1fr;
  }
  .sex-plan-panel {
    min-height: 430px;
  }
  .sex-mode-layout,
  .sex-quality-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sex-mode-copy > h2 {
    max-width: 18ch;
  }
  .sex-mode-stage {
    min-height: auto;
  }
  .sex-compare-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .sex-privacy-icon {
    margin-bottom: 40px;
  }
  .sex-faq-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 600px) {
  .sex-hero {
    padding: 36px 0 28px;
  }
  .sex-hero-grid {
    gap: 26px;
  }
  .sex-hero-copy h1 {
    font-size: 39px;
    margin: 15px 0 17px;
  }
  .sex-hero-copy > p {
    font-size: 16px;
    line-height: 1.64;
  }
  .sex-hero-copy .hero-cta {
    margin-top: 21px;
  }
  .sex-hero-notes {
    margin-top: 16px;
    gap: 6px 14px;
    font-size: 12px;
  }
  .sex-scene-card {
    grid-template-columns: 42% 58%;
    min-height: 285px;
    border-radius: 22px;
  }
  .sex-scene-image {
    min-height: 285px;
  }
  .sex-scene-label {
    left: 10px;
    top: 10px;
    font-size: 9px;
  }
  .sex-scene-chat {
    padding: 18px 14px 16px 7px;
  }
  .sex-scene-person {
    margin-bottom: 13px;
  }
  .sex-scene-person span {
    font-size: 19px;
  }
  .sex-bubble {
    font-size: 11.5px;
    padding: 8px 10px;
    margin-bottom: 7px;
  }
  .sex-scene-action {
    font-size: 11.5px;
    margin-top: 10px;
    padding-top: 10px;
  }
  .sex-character-section {
    padding: 32px 0 60px;
  }
  .sex-section-intro {
    margin-bottom: 20px;
  }
  .sex-section-intro h2 {
    font-size: 29px;
  }
  .sex-section-intro > p {
    font-size: 14.5px;
  }
  .sex-character-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .sex-character-strip .card .ph {
    aspect-ratio: 4/4.6;
  }
  .sex-character-strip .card .meta {
    padding: 11px 12px 13px;
  }
  .sex-character-strip .card .meta b {
    font-size: 14px;
  }
  .sex-character-strip .card .meta .q {
    font-size: 11px;
    line-height: 1.45;
  }
  .sex-character-strip .card .tag {
    font-size: 9px;
    padding: 4px 7px;
  }
  .sex-capabilities {
    padding: 67px 0 74px;
  }
  .sex-cap-heading {
    margin-bottom: 27px;
    text-align: left;
  }
  .sex-cap-heading h2 {
    font-size: 36px;
  }
  .sex-cap-heading p {
    font-size: 14.5px;
  }
  .sex-cap-grid {
    grid-template-columns: 1fr;
  }
  .sex-cap-card {
    min-height: auto;
    grid-template-rows: auto 92px auto;
    padding: 23px;
  }
  .sex-cap-visual {
    margin: 13px 0 22px;
  }
  .sex-product-proof {
    padding: 68px 0;
  }
  .sex-product-heading {
    margin-bottom: 24px;
  }
  .sex-product-heading h2 {
    font-size: 35px;
  }
  .sex-product-heading > p {
    font-size: 14.5px;
  }
  .sex-product-window,
  .sex-plan-panel {
    border-radius: 22px;
  }
  .sex-product-bar {
    grid-template-columns: 1fr auto;
    padding: 0 15px;
  }
  .sex-product-bar > span {
    display: none;
  }
  .sex-product-body {
    min-height: 445px;
    grid-template-columns: 1fr;
  }
  .sex-product-roster {
    display: flex;
    gap: 6px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
  }
  .sex-product-roster-label {
    display: none;
  }
  .sex-product-roster > button {
    width: auto;
    min-width: -moz-max-content;
    min-width: max-content;
    margin: 0;
    padding: 7px;
  }
  .sex-product-roster img {
    width: 31px;
    height: 31px;
  }
  .sex-product-roster small {
    display: none;
  }
  .sex-product-chat {
    padding: 15px;
  }
  .sex-product-chat-head button small {
    display: none;
  }
  .sex-product-messages > div {
    max-width: 88%;
  }
  .sex-product-messages p {
    font-size: 10.5px;
  }
  .sex-plan-panel {
    min-height: auto;
    padding: 28px 22px;
  }
  .sex-plan-panel h2 {
    font-size: 28px;
  }
  .sex-plan-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .sex-mode-section {
    padding: 64px 0;
  }
  .sex-mode-layout {
    gap: 28px;
  }
  .sex-mode-copy > h2 {
    font-size: 34px;
  }
  .sex-mode-list article {
    grid-template-columns: 30px 1fr;
    padding: 14px;
  }
  .sex-mode-stage {
    padding: 28px 22px;
    border-radius: 23px;
  }
  .sex-mode-stage h3 {
    font-size: 27px;
  }
  .sex-stage-thread {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px;
  }
  .sex-stage-thread strong {
    margin-bottom: 9px;
  }
  .sex-compare {
    padding: 72px 0;
  }
  .sex-compare-copy h2 {
    font-size: 35px;
  }
  .sex-compare-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .sex-compare-side {
    padding: 27px 22px;
  }
  .sex-compare-side + .sex-compare-side {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .sex-how {
    padding: 62px 0 34px;
  }
  .sex-steps {
    grid-template-columns: 1fr;
  }
  .sex-steps .step {
    min-height: auto;
  }
  .sex-scenarios {
    padding: 34px 0 68px;
  }
  .sex-scenario-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .sex-scenario-grid .sex-scenario-main {
    grid-row: auto;
    min-height: 350px;
  }
  .sex-scenario-grid article {
    min-height: 220px;
    padding: 25px;
  }
  .sex-scenario-preview {
    margin-bottom: 34px;
    padding: 16px;
  }
  .sex-quality {
    padding-bottom: 68px;
  }
  .sex-quality-card,
  .sex-privacy-card {
    padding: 27px 22px;
    border-radius: 22px;
  }
  .sex-quality-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .sex-final-cta {
    padding: 52px 20px;
  }
  .sex-faq-wrap {
    padding: 65px 0 18px;
  }
}
