/* ==========================================================================
   Pink Video Chat — main stylesheet
   Design tokens live at the top; every color/type decision below derives
   from them. Keep additions consolidated here — no per-page override files.
   ========================================================================== */

:root {
  /* Color */
  --ink-plum: #1B0E17;
  --ink-plum-2: #2A1522;
  --signal-pink: #FF3D81;
  --sunset-coral: #FF7A59;
  --soft-orchid: #C9A3FF;
  --fog: #FFF3F6;
  --paper: #FFFFFF;
  --gradient-connection: linear-gradient(135deg, var(--signal-pink) 0%, var(--sunset-coral) 100%);
  --gradient-plum: linear-gradient(180deg, var(--ink-plum) 0%, var(--ink-plum-2) 100%);

  /* Type */
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --content-width: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* !important here specifically: Astra (the parent theme) generates its own
   inline dynamic CSS from its Customizer color settings, and that inline
   block commonly loads with higher priority than our enqueued stylesheet,
   winning the cascade tie and washing out the whole dark design with
   Astra's default light background. This guard rail guarantees our base
   colors always win regardless of Astra's own output order. */
html, body {
  background: var(--ink-plum) !important;
  color: var(--fog) !important;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 0.5em; line-height: 1.1; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
body.age-gate-active { overflow: hidden; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; width: auto; height: auto;
  background: var(--signal-pink); color: var(--paper); padding: 0.75em 1.25em;
  border-radius: var(--radius-sm); z-index: 999; clip: auto;
}
:focus-visible { outline: 2px solid var(--soft-orchid); outline-offset: 3px; }

/* ---------- Layout helpers ---------- */
.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
.section-inner--narrow { max-width: 780px; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.75rem); color: var(--ink-plum); }
.section-title--light { color: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--soft-orchid); margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--signal-pink); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--signal-pink);
  box-shadow: 0 0 0 0 rgba(255,61,129,0.6); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,61,129,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,61,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,61,129,0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.9em 1.6em; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.btn--primary {
  background: var(--gradient-connection); color: var(--paper);
  box-shadow: 0 10px 30px -8px rgba(255, 61, 129, 0.55);
}
.btn--primary:hover { box-shadow: 0 14px 34px -6px rgba(255, 61, 129, 0.7); }
.btn--large { padding: 1.1em 2em; font-size: 1.05rem; }
.btn__icon { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__icon { transform: translateX(4px); }

/* ---------- Cursor glow (desktop only, subtle) ---------- */
.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,129,0.14) 0%, rgba(255,61,129,0) 70%);
  pointer-events: none; transform: translate(-50%, -50%); z-index: 0;
  transition: opacity 0.4s ease; opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow.is-active { opacity: 1; }
}

/* ---------- Logo ---------- */
.site-logo { display: flex; align-items: center; gap: 0.65em; }
.site-logo__icon { width: 34px; height: 34px; flex-shrink: 0; overflow: visible; }
.site-logo__icon .logo-rect-back {
  fill: var(--soft-orchid); opacity: 0.55;
  transition: transform 0.4s var(--ease-out);
  transform-origin: center;
}
.site-logo__icon .logo-rect-front {
  fill: url(#logo-gradient);
  transition: transform 0.4s var(--ease-out);
  transform-origin: center;
}
.site-logo__icon .logo-dot {
  fill: var(--paper);
  animation: pulse-dot 2.2s infinite;
}
.site-logo:hover .logo-rect-back { transform: translate(-1.5px, 1.5px) rotate(-4deg); }
.site-logo:hover .logo-rect-front { transform: translate(1px, -1px) rotate(3deg); }

.site-logo__word {
  display: flex; flex-direction: column; line-height: 1;
}
.site-logo__word-main {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: var(--gradient-connection); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.01em;
}
.site-logo__word-tag {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.55; margin-top: 2px; display: inline-flex; align-items: center; gap: 0.4em;
}
.site-logo__word-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: #35D07F; animation: pulse-dot-small 2.2s infinite; flex-shrink: 0; }
@keyframes pulse-dot-small {
  0% { box-shadow: 0 0 0 0 rgba(53,208,127,0.55); }
  70% { box-shadow: 0 0 0 4px rgba(53,208,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,208,127,0); }
}
.site-footer .site-logo__word-main { -webkit-text-fill-color: var(--paper); background: none; }


.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink-plum);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6); }
.site-header__inner {
  max-width: var(--content-width); margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-nav__list { display: flex; gap: 1.75rem; }
.site-nav__list a {
  font-size: 0.95rem; font-weight: 500; opacity: 0.85;
  transition: opacity 0.2s ease;
}
.site-nav__list a:hover { opacity: 1; }
.site-header__cta { display: none; }
@media (min-width: 720px) { .site-header__cta { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 4rem 1.5rem 3rem; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 140%;
  background: radial-gradient(60% 60% at 30% 20%, rgba(255,61,129,0.22) 0%, transparent 60%),
              radial-gradient(50% 50% at 85% 30%, rgba(201,163,255,0.18) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1; max-width: var(--content-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
  padding-top: 3rem; padding-bottom: 3rem;
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.2rem); letter-spacing: -0.01em; color: var(--paper);
}
.hero__title-accent {
  display: block; background: var(--gradient-connection);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle { max-width: 44ch; font-size: 1.15rem; opacity: 0.82; }
.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; margin: 1.75rem 0 2.5rem; }
.hero__note { font-family: var(--font-mono); font-size: 0.78rem; opacity: 0.55; margin: 0; }

.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero__stat dt { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.55; margin-bottom: 0.35em; }
.hero__stat dd { margin: 0; font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--soft-orchid); }

/* Signature element: connection frames */
.hero__visual { display: flex; align-items: center; justify-content: center; }
.connection { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 0.85; }
.connection__frame {
  position: absolute; width: 56%; aspect-ratio: 3 / 4; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden; opacity: 0;
}
.connection__frame-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.connection__frame--a { left: 0; top: 6%; animation: frame-in-a 0.9s var(--ease-out) 0.15s forwards; }
.connection__frame--b { right: 0; bottom: 4%; animation: frame-in-b 0.9s var(--ease-out) 0.4s forwards; }
@keyframes frame-in-a { from { opacity: 0; transform: translate(-24px, -10px) scale(0.94); } to { opacity: 1; transform: translate(0,0) scale(1); } }
@keyframes frame-in-b { from { opacity: 0; transform: translate(24px, 10px) scale(0.94); } to { opacity: 1; transform: translate(0,0) scale(1); } }

.connection__avatar { position: absolute; inset: 0; }
.connection__avatar--a { background: radial-gradient(80% 80% at 50% 35%, rgba(255,122,89,0.4), rgba(27,14,23,0.55) 70%); }
.connection__avatar--b { background: radial-gradient(80% 80% at 50% 35%, rgba(201,163,255,0.4), rgba(27,14,23,0.55) 70%); }

.connection__pulse {
  position: absolute; bottom: 12px; left: 12px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--signal-pink); box-shadow: 0 0 0 0 rgba(255,61,129,0.6);
  animation: pulse-dot 1.8s infinite;
}
.connection__line {
  position: absolute; left: 22%; right: 22%; top: 42%; width: 56%; height: 40px;
  overflow: visible; opacity: 0; animation: line-in 0.6s ease 0.9s forwards;
}
.connection__line path {
  fill: none; stroke: var(--signal-pink);
  stroke-width: 2; stroke-dasharray: 6 8; stroke-linecap: round;
  animation: dash-move 1.6s linear infinite;
}
@keyframes dash-move { to { stroke-dashoffset: -28; } }
@keyframes line-in { to { opacity: 0.9; } }

.connection__badge {
  position: absolute; left: 50%; top: -6%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 0.35em 0.8em; border-radius: 999px; opacity: 0;
  animation: badge-in 0.5s ease 1.1s forwards;
}
@keyframes badge-in { to { opacity: 0.85; } }

.hero__scroll-cue {
  display: flex; justify-content: center; margin-top: 1rem; position: relative; z-index: 1;
}
.hero__scroll-cue span {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.28); border-radius: 999px;
  position: relative; display: block;
}
.hero__scroll-cue span::before {
  content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px;
  background: var(--signal-pink); border-radius: 999px; transform: translateX(-50%);
  animation: scroll-cue 1.6s ease infinite;
}
@keyframes scroll-cue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; top: 6px; } }

/* ---------- Features (light section) ---------- */
.features { background: var(--fog); color: var(--ink-plum); }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--paper); border-radius: var(--radius-md); padding: 1.8rem 1.5rem;
  box-shadow: 0 18px 40px -24px rgba(27,14,23,0.25);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -20px rgba(27,14,23,0.3); }
.feature-card__icon {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.feature-card__icon--pink { background: rgba(255,61,129,0.12); }
.feature-card__icon--coral { background: rgba(255,122,89,0.14); }
.feature-card__icon--orchid { background: rgba(201,163,255,0.18); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.feature-card p { font-size: 0.95rem; opacity: 0.75; margin: 0; }

/* ---------- How it works (dark section, real numbered sequence) ---------- */
.how-it-works { background: var(--gradient-plum); }
.steps { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps__item { position: relative; padding-left: 0; }
.steps__index {
  display: block; font-family: var(--font-mono); font-size: 0.9rem; color: var(--soft-orchid);
  margin-bottom: 0.75rem; letter-spacing: 0.06em;
}
.steps__item h3 { color: var(--paper); font-size: 1.25rem; }
.steps__item p { opacity: 0.72; font-size: 0.98rem; }
.how-it-works__cta { display: flex; justify-content: center; margin-top: 3rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); color: var(--ink-plum); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-more { text-align: center; margin-top: 2rem; }
.faq-more a { font-weight: 700; color: var(--signal-pink); transition: opacity 0.2s ease; }
.faq-more a:hover { opacity: 0.75; }
.faq-item {
  border: 1px solid rgba(27,14,23,0.1); border-radius: var(--radius-sm); padding: 1rem 1.25rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-body); list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--signal-pink); }
.faq-item[open] summary::after { content: '–'; }
.faq-item div { padding-top: 0.75rem; opacity: 0.78; }

/* ---------- Closing CTA band ---------- */
.closing-cta {
  position: relative; overflow: hidden;
  background: var(--gradient-plum);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.closing-cta::before {
  content: ''; position: absolute; inset: -40% 20% auto -20%; height: 180%;
  background: radial-gradient(50% 50% at 20% 30%, rgba(255,61,129,0.18) 0%, transparent 60%),
              radial-gradient(45% 45% at 90% 60%, rgba(201,163,255,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.closing-cta__inner {
  position: relative; z-index: 1; max-width: var(--content-width); margin: 0 auto;
  padding: 4rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
}
.closing-cta__inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--paper); margin: 0; max-width: 20ch;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-plum); }
.site-footer__inner { max-width: var(--content-width); margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }

.site-footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; } }

.site-footer__col--brand { max-width: 320px; }
.site-footer__brand { display: flex; align-items: center; gap: 0.6em; margin-bottom: 0.9rem; }
.site-footer__brand .site-logo__word-main {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: var(--gradient-connection); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-footer__tagline { font-size: 0.92rem; opacity: 0.65; margin-bottom: 1rem; }
.site-footer__status {
  display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-mono);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.55; margin: 0;
}

.site-footer__col-title {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--soft-orchid); margin: 0 0 1.1rem;
}
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a {
  position: relative; font-size: 0.92rem; opacity: 0.75;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}
.site-footer__list a::before {
  content: '→'; position: absolute; left: -1.1em; opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-4px); color: var(--signal-pink);
}
.site-footer__list a:hover { opacity: 1; padding-left: 1.1em; }
.site-footer__list a:hover::before { opacity: 1; transform: translateX(0); }

.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.75rem;
}
.site-footer__legal { opacity: 0.4; font-size: 0.8rem; margin: 0; }
.site-footer__top {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04); color: var(--fog); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.site-footer__top:hover { background: var(--gradient-connection); border-color: transparent; transform: translateY(-3px); }

/* Astra's own default "scroll to top" widget is hidden via a broader,
   guaranteed-last-word override in functions.php (pvc_last_word_overrides),
   since exact class/ID naming varies by Astra version. */

/* ---------- Generic page ---------- */
.generic-page { padding-top: 2rem; }
.generic-post__content { color: var(--fog); opacity: 0.9; }
.generic-post__content h2 { font-size: 1.5rem; margin-top: 2.2em; margin-bottom: 0.5em; color: var(--paper); }
.generic-post__content h2:first-child { margin-top: 0; }
.generic-post__content h3 { font-size: 1.15rem; margin-top: 1.6em; margin-bottom: 0.4em; color: var(--paper); }
.generic-post__content p { margin-bottom: 1.1em; line-height: 1.7; }
.generic-post__content ul, .generic-post__content ol {
  margin: 0 0 1.1em; padding-left: 1.4em; list-style: revert;
}
.generic-post__content li { margin-bottom: 0.5em; line-height: 1.6; }
.generic-post__content a { color: var(--signal-pink); text-decoration: underline; text-underline-offset: 2px; }
.generic-post__content strong { color: var(--paper); }
.generic-post__content .pvc-updated { font-family: var(--font-mono); font-size: 0.82rem; opacity: 0.55; margin-bottom: 2.5em; }

/* ---------- Contact Form 7 styling ---------- */
.wpcf7-form { margin-top: 2rem; }
.wpcf7-form p { margin-bottom: 1.4rem; }
.wpcf7-form label {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  color: var(--fog); margin-bottom: 0.5em;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
  color: var(--fog); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.wpcf7-form textarea { min-height: 160px; resize: vertical; }
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
  outline: none; border-color: var(--signal-pink); background: rgba(255,255,255,0.07);
}
.wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.9em 1.8em; border-radius: 999px; border: none; cursor: pointer;
  background: var(--gradient-connection); color: var(--paper);
  box-shadow: 0 10px 30px -8px rgba(255, 61, 129, 0.55);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.wpcf7-form input[type="submit"]:hover { box-shadow: 0 14px 34px -6px rgba(255, 61, 129, 0.7); }
.wpcf7-form input[type="submit"]:disabled { opacity: 0.6; cursor: wait; }
.wpcf7-spinner { margin-left: 0.5em; }
.wpcf7-not-valid-tip { color: var(--sunset-coral); font-size: 0.85rem; margin-top: 0.4em; }
.wpcf7-response-output {
  margin-top: 1.5rem !important; padding: 1em 1.25em; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.14); font-size: 0.9rem;
}

/* ---------- Chat page (full-bleed, no site header/footer) ---------- */
body.pvc-chat-fullscreen {
  margin: 0;
  overflow: hidden;
}
.pvc-chat-fullscreen__main {
  display: block;
  width: 100vw;
  height: 100dvh; /* dynamic viewport height handles mobile browser chrome correctly */
}
.pvc-chat-fullscreen__main iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Fallback for embed codes that render as something other than a literal
   <iframe> (a div-based widget, for example) — still fill the viewport. */
.pvc-chat-fullscreen__main > *:not(.pvc-chat-fullscreen__unconfigured) {
  width: 100%;
  height: 100%;
}
.pvc-chat-fullscreen__unconfigured {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
  color: var(--fog);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: radial-gradient(60% 60% at 30% 20%, rgba(255,61,129,0.25) 0%, transparent 60%),
              radial-gradient(50% 50% at 85% 80%, rgba(201,163,255,0.2) 0%, transparent 60%),
              var(--ink-plum);
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  position: relative; max-width: 440px; width: 100%; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.75rem 2.25rem 2.25rem;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
  animation: gate-in 0.6s var(--ease-out);
}
@keyframes gate-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.age-gate__mark {
  width: 56px; height: 56px; border-radius: 18px; margin: 0 auto 1.25rem;
  background: var(--gradient-connection);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--paper); font-size: 1.1rem;
}
.age-gate__title { color: var(--paper); font-size: 1.6rem; margin-bottom: 0.5rem; }
.age-gate__copy { opacity: 0.72; font-size: 0.98rem; max-width: 34ch; margin: 0 auto 1.75rem; }
.age-gate__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.age-gate__actions .btn--ghost {
  background: rgba(255,255,255,0.06); color: var(--fog); border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}
.age-gate__actions .btn--ghost:hover { background: rgba(255,255,255,0.1); }
.age-gate__legal { font-family: var(--font-mono); font-size: 0.7rem; opacity: 0.4; margin: 1.5rem 0 0; }

/* ---------- Who's online strip ---------- */
.presence { background: var(--fog); color: var(--ink-plum); padding-bottom: 0 !important; }
.presence .section-inner { padding-bottom: 3rem; }
.presence-strip { display: flex; align-items: center; gap: 0; margin-top: 2rem; flex-wrap: wrap; }
.presence-avatars { display: flex; }
.presence-avatar {
  width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--fog);
  margin-left: -14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--paper); font-size: 0.9rem;
  position: relative; box-shadow: 0 6px 16px -6px rgba(27,14,23,0.3);
}
.presence-avatar--1 { background: linear-gradient(135deg, #FF3D81, #FF7A59); }
.presence-avatar--2 { background: linear-gradient(135deg, #C9A3FF, #FF3D81); }
.presence-avatar--3 { background: linear-gradient(135deg, #FF7A59, #FFC15E); }
.presence-avatar--4 { background: linear-gradient(135deg, #6FE3C4, #C9A3FF); }
.presence-avatar--5 { background: linear-gradient(135deg, #FF3D81, #C9A3FF); }
.presence-avatar:first-child { margin-left: 0; }
.presence-avatar__dot {
  position: absolute; bottom: -1px; right: -1px; width: 12px; height: 12px; border-radius: 50%;
  background: #35D07F; border: 2px solid var(--fog);
}
.presence-copy { margin-left: 1.25rem; }
.presence-copy strong { font-family: var(--font-mono); color: var(--signal-pink); }
.presence-copy p { margin: 0; font-size: 0.95rem; opacity: 0.75; }

/* ---------- Trust & Safety ---------- */
.trust { background: var(--paper); color: var(--ink-plum); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 780px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-more { text-align: center; margin-top: 2rem; }
.trust-more a { font-weight: 700; color: var(--signal-pink); transition: opacity 0.2s ease; }
.trust-more a:hover { opacity: 0.7; }
.trust-card { padding: 1.5rem; border-radius: var(--radius-md); background: var(--fog); overflow: hidden; }
.trust-card__photo { width: 100%; height: 100px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; filter: saturate(1.2); }
.trust-card__row { display: flex; gap: 1rem; }
.trust-card__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-connection); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.trust-card h3 { font-size: 1rem; margin-bottom: 0.3em; }
.trust-card p { font-size: 0.9rem; opacity: 0.72; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--gradient-plum); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 780px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 1.75rem;
}
.testimonial-card__quote { font-size: 0.98rem; opacity: 0.85; margin-bottom: 1.25rem; }
.testimonial-card__who { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--paper);
}
.testimonial-card__name { font-size: 0.88rem; font-weight: 600; }
.testimonial-card__meta { font-size: 0.78rem; opacity: 0.55; font-family: var(--font-mono); }

/* ---------- Live pulse (equalizer, replaces marquee ticker) ---------- */
.pulse-strip { background: var(--ink-plum); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1rem 0; }
.pulse-strip__inner {
  max-width: var(--content-width); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.pulse-bars { display: flex; align-items: flex-end; gap: 4px; height: 26px; }
.pulse-bars span {
  width: 4px; border-radius: 2px; background: var(--gradient-connection);
  animation: bar-bounce 1.1s ease-in-out infinite;
}
.pulse-bars span:nth-child(1) { animation-delay: 0s; }
.pulse-bars span:nth-child(2) { animation-delay: 0.12s; }
.pulse-bars span:nth-child(3) { animation-delay: 0.24s; }
.pulse-bars span:nth-child(4) { animation-delay: 0.36s; }
.pulse-bars span:nth-child(5) { animation-delay: 0.48s; }
.pulse-bars span:nth-child(6) { animation-delay: 0.6s; }
.pulse-bars span:nth-child(7) { animation-delay: 0.72s; }
@keyframes bar-bounce { 0%, 100% { height: 6px; } 50% { height: 24px; } }
.pulse-strip__label {
  font-family: var(--font-mono); font-size: 0.82rem; opacity: 0.7; margin: 0;
  min-width: 220px; transition: opacity 0.4s ease;
}
.pulse-strip__label.is-fading { opacity: 0; }

/* ---------- Device shot (real photography, Ken Burns on reveal) ---------- */
.device-shot { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; }
.device-shot__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1) brightness(0.6); transform: scale(1.12);
  transition: transform 6s var(--ease-out);
}
.device-shot.is-visible .device-shot__img { transform: scale(1); }
.device-shot::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,14,23,0.25) 0%, rgba(27,14,23,0.92) 100%),
              linear-gradient(120deg, rgba(255,61,129,0.4), rgba(255,122,89,0.12));
  mix-blend-mode: multiply;
}
.device-shot__content { position: relative; z-index: 1; padding: 3.5rem 1.5rem; max-width: var(--content-width); margin: 0 auto; width: 100%; }
.device-shot__content h2 { color: var(--paper); font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 22ch; margin-bottom: 0.5em; }
.device-shot__content p { color: var(--fog); opacity: 0.8; max-width: 42ch; margin: 0; }

/* ---------- Chat bubble wall (replaces attributed testimonials) ---------- */
.bubble-wall { background: var(--gradient-plum); }
.bubble-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .bubble-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bubble-grid { grid-template-columns: repeat(3, 1fr); } }
.chat-bubble {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); border-bottom-left-radius: 4px;
  padding: 1rem 1.25rem; font-size: 0.95rem; opacity: 0.88;
  position: relative;
}
.chat-bubble:nth-child(even) {
  border-bottom-left-radius: var(--radius-md); border-bottom-right-radius: 4px;
  background: rgba(255,61,129,0.08); border-color: rgba(255,61,129,0.16);
}
.chat-bubble__meta {
  display: block; margin-top: 0.6em; font-family: var(--font-mono); font-size: 0.7rem; opacity: 0.45;
}
.bubble-wall__note { font-family: var(--font-mono); font-size: 0.72rem; opacity: 0.4; margin-top: 1.5rem; }


.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: flex; padding: 0.75rem 1rem; background: rgba(27,14,23,0.92);
  backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%); transition: transform 0.4s var(--ease-out);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn { width: 100%; justify-content: center; }
@media (min-width: 720px) { .mobile-cta-bar { display: none; } }


.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
