:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-secondary: #0d1830;
  --surface: rgba(9, 18, 34, 0.74);
  --surface-strong: rgba(15, 24, 44, 0.96);
  --border: rgba(151, 233, 255, 0.17);
  --text: #eef7ff;
  --muted: #98abc8;
  --teal: #74f8ff;
  --blue: #7b8cff;
  --pink: #ff5fd2;
  --green: #76ffb2;
  --danger: #ff7a98;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  --radius: 28px;
}

body[data-site-variant="adult"] {
  --bg: #13040a;
  --bg-secondary: #220813;
  --surface: rgba(21, 5, 11, 0.8);
  --surface-strong: rgba(31, 7, 16, 0.96);
  --border: rgba(255, 92, 122, 0.18);
  --text: #fff0f5;
  --muted: #c89bac;
  --teal: #ff677f;
  --blue: #b14cff;
  --pink: #ff4f8f;
  --green: #ff9d7a;
  --danger: #ff6f8b;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background-color: #08111d;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

body[data-site-variant="adult"] {
  background-color: #14040a;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(123, 140, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 95, 210, 0.2), transparent 30%),
    radial-gradient(circle at 70% 75%, rgba(116, 248, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #08111d, #102042, #0a1426, #1a1335, #08111d);
  background-size: 240% 240%;
  animation: ambientGradient 18s ease-in-out infinite, ambientHue 14s linear infinite;
  will-change: background-position, filter, transform;
  transform: translateZ(0);
  pointer-events: none;
  z-index: 0;
}

body[data-site-variant="adult"] .ambient-bg {
  background:
    radial-gradient(circle at top, rgba(177, 76, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 79, 143, 0.2), transparent 30%),
    radial-gradient(circle at 68% 72%, rgba(255, 103, 127, 0.16), transparent 24%),
    linear-gradient(135deg, #100208, #2b0915, #14030b, #3b0a20, #090105);
  background-size: 240% 240%;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 29, 0.05), rgba(8, 17, 29, 0.16));
  pointer-events: none;
  z-index: 1;
}

.app-shell,
.desktop-blocker,
.modal,
.toast {
  position: relative;
  z-index: 2;
}

button,
textarea {
  font: inherit;
  touch-action: manipulation;
}

.app-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  padding: calc(18px + env(safe-area-inset-top)) 16px calc(28px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.glass {
  background: linear-gradient(180deg, rgba(10, 20, 38, 0.88), rgba(8, 16, 28, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

body[data-site-variant="adult"] .glass {
  background: linear-gradient(180deg, rgba(32, 8, 18, 0.9), rgba(12, 3, 10, 0.78));
}

.hero-card,
.panel,
.modal__card {
  border-radius: var(--radius);
}

.hero-card {
  padding: 22px 18px 18px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -45px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(116, 248, 255, 0.24), transparent 68%);
  pointer-events: none;
}

body[data-site-variant="adult"] .hero-card::after {
  background: radial-gradient(circle, rgba(255, 79, 143, 0.24), transparent 68%);
}

.hero-topbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-btn--wide-action {
  grid-column: 1 / -1;
}

.hero-copy h1,
.panel__head h2,
.desktop-blocker h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.hero-title {
  font-size: 2.45rem;
}

.hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-copy p,
.panel__text,
.desktop-blocker p,
.modal__content p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--teal);
}

.stats-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-box,
.answer-box,
.question-card,
.decision-box {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box {
  padding: 12px;
}

.stat-box span,
.answer-box span {
  font-size: 0.8rem;
  color: var(--muted);
}

.stat-box strong {
  display: block;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--text);
}

.panel {
  padding: 18px 16px;
}

.panel__hint {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.gender-card {
  margin-top: 16px;
}

.gender-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.gender-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gender-btn {
  width: 100%;
  margin: 0;
  padding: 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.gender-btn__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.gender-btn__icon--female {
  color: #ff5ea8;
}

.gender-btn__icon--male {
  color: #39b7ff;
}

.gender-btn.is-selected {
  border-color: rgba(116, 248, 255, 0.34);
  background: linear-gradient(135deg, rgba(116, 248, 255, 0.12), rgba(123, 140, 255, 0.16));
  box-shadow: 0 0 22px rgba(116, 248, 255, 0.08);
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.78rem;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.status-dot.idle {
  color: var(--muted);
}

.status-dot.searching {
  color: var(--teal);
}

.status-dot.paired {
  color: var(--pink);
}

.primary-btn,
.ghost-btn,
.send-btn,
.icon-btn,
.mini-btn {
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.primary-btn,
.ghost-btn {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  margin-top: 14px;
  font-weight: 600;
}

.primary-btn {
  color: #051018;
  background: linear-gradient(135deg, var(--teal), #9fbeff 55%, #ffc2eb);
  box-shadow: 0 12px 30px rgba(116, 248, 255, 0.24);
}

body[data-site-variant="adult"] .primary-btn {
  color: #1c020a;
  background: linear-gradient(135deg, #ff5f72, #c34fff 56%, #ff8c7a);
  box-shadow: 0 12px 30px rgba(255, 95, 114, 0.24);
}

.ghost-btn,
.mini-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-btn {
  min-width: 0;
  min-height: 58px;
  padding: 14px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  width: 100%;
}

.mini-btn--lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mini-btn--lang-icon {
  width: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 18px;
  flex: 0 0 auto;
}

.mini-btn--accent {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 95, 210, 0.16), rgba(116, 248, 255, 0.12));
}

body[data-site-variant="adult"] .mini-btn--accent {
  background: linear-gradient(135deg, rgba(255, 79, 143, 0.22), rgba(177, 76, 255, 0.18));
  border-color: rgba(255, 92, 122, 0.22);
}

.lang-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(116, 248, 255, 0.12);
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.primary-btn:active,
.ghost-btn:active,
.send-btn:active,
.icon-btn:active,
.mini-btn:active {
  transform: scale(0.98);
}

.question-card {
  padding: 18px;
  margin: 14px 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.question-card-shell {
  position: relative;
}

.question-card-shell .question-card {
  margin-top: 14px;
  padding-top: 52px;
}

.question-creator-badge {
  position: absolute;
  top: 28px;
  right: 16px;
  z-index: 1;
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(238, 247, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
}

body[data-site-variant="adult"] .question-creator-badge {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 240, 245, 0.9);
}

.question-type-chip {
  margin: 14px 0 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 95, 210, 0.09);
  border: 1px solid rgba(255, 95, 210, 0.18);
  color: #ffd7f5;
  font-size: 0.82rem;
}

body[data-site-variant="adult"] .question-type-chip {
  background: rgba(255, 79, 143, 0.12);
  border-color: rgba(255, 79, 143, 0.24);
  color: #ffe0eb;
}

.live-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(116, 248, 255, 0.12);
  background: rgba(116, 248, 255, 0.06);
  color: #bdefff;
  font-size: 0.88rem;
  line-height: 1.4;
}

body[data-site-variant="adult"] .live-status {
  border-color: rgba(255, 103, 127, 0.2);
  background: rgba(255, 103, 127, 0.08);
  color: #ffd9e3;
}

.live-status--pink {
  border-color: rgba(255, 95, 210, 0.14);
  background: rgba(255, 95, 210, 0.07);
  color: #ffd4f4;
}

.live-status.is-active {
  box-shadow: 0 0 24px rgba(116, 248, 255, 0.12);
}

.input-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-input {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.text-input:focus {
  border-color: rgba(116, 248, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(116, 248, 255, 0.08);
}

textarea {
  width: 100%;
  resize: none;
  padding: 16px;
  font-size: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  min-height: 124px;
}

textarea:focus {
  border-color: rgba(116, 248, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(116, 248, 255, 0.08);
}

body[data-site-variant="adult"] .text-input:focus,
body[data-site-variant="adult"] textarea:focus {
  border-color: rgba(255, 103, 127, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 103, 127, 0.08);
}

textarea:disabled {
  opacity: 0.6;
}

.chat-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.ghost-btn--inline {
  width: auto;
  margin-top: 0;
  padding: 12px 16px;
  border-color: rgba(255, 122, 152, 0.18);
  color: #ffd2dc;
}

.answer-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.answer-box {
  padding: 16px;
}

.answer-box p {
  margin: 10px 0 0;
  line-height: 1.5;
}

.answer-box.stranger {
  border-color: rgba(255, 95, 210, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 95, 210, 0.06);
}

.decision-box {
  margin-top: 14px;
  padding: 16px;
}

.decision-box p {
  margin: 0;
  line-height: 1.5;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.button-row .primary-btn,
.button-row .ghost-btn {
  margin-top: 0;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

.messages {
  flex: 1;
  min-height: 260px;
  max-height: 48vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 2px 6px;
}

.message {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.message--me {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(116, 248, 255, 0.18), rgba(123, 140, 255, 0.18));
  border-color: rgba(116, 248, 255, 0.2);
}

body[data-site-variant="adult"] .message--me {
  background: linear-gradient(135deg, rgba(255, 103, 127, 0.2), rgba(177, 76, 255, 0.2));
  border-color: rgba(255, 103, 127, 0.22);
}

.message--them {
  align-self: flex-start;
}

.message-form {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-top: 10px;
}

.message-form textarea {
  min-height: 58px;
  max-height: 140px;
}

.send-btn {
  min-width: 88px;
  padding: 16px 14px;
  border-radius: 18px;
  color: #061019;
  font-weight: 700;
  background: linear-gradient(135deg, #8effd4, #7cc8ff);
}

body[data-site-variant="adult"] .send-btn {
  color: #1c020a;
  background: linear-gradient(135deg, #ff7b8d, #d261ff);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 122, 152, 0.12);
  color: var(--danger);
  font-size: 1.5rem;
  line-height: 1;
}

.pulse-ring {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(116, 248, 255, 0.65);
  animation: pulse 1.8s infinite;
}

body[data-site-variant="adult"] .pulse-ring {
  background: #ff5f72;
  box-shadow: 0 0 0 0 rgba(255, 95, 114, 0.65);
}

.toast {
  position: fixed;
  left: 50%;
  top: calc(12px + env(safe-area-inset-top));
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 398px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 28, 52, 0.96), rgba(36, 14, 54, 0.94));
  border: 1px solid rgba(116, 248, 255, 0.32);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 26px rgba(116, 248, 255, 0.12);
  color: var(--text);
  font-weight: 600;
  z-index: 70;
}

body[data-site-variant="adult"] .toast {
  background: linear-gradient(135deg, rgba(38, 8, 18, 0.96), rgba(44, 10, 36, 0.94));
  border-color: rgba(255, 95, 114, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 95, 114, 0.12);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 13, 0.7);
  backdrop-filter: blur(10px);
}

.modal__card {
  position: relative;
  width: min(100%, 390px);
  max-height: calc(100dvh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}

.modal__card--dashboard {
  max-height: min(82vh, 700px);
}

.modal__content {
  flex: 1;
  min-height: 0;
  margin-top: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.modal__content p:first-child {
  margin-top: 0;
}

.modal__hint {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.modal__hint--top {
  margin-top: 0;
  margin-bottom: 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid--languages {
  grid-template-columns: 1fr;
}

.choice-grid--two {
  margin-top: 10px;
}

.choice-chip {
  width: 100%;
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: center;
}

.choice-chip.is-selected {
  border-color: rgba(116, 248, 255, 0.45);
  background: linear-gradient(135deg, rgba(116, 248, 255, 0.16), rgba(123, 140, 255, 0.16));
  box-shadow: 0 0 24px rgba(116, 248, 255, 0.1);
}

body[data-site-variant="adult"] .choice-chip.is-selected,
body[data-site-variant="adult"] .gender-btn.is-selected {
  border-color: rgba(255, 103, 127, 0.42);
  background: linear-gradient(135deg, rgba(255, 103, 127, 0.16), rgba(177, 76, 255, 0.16));
  box-shadow: 0 0 24px rgba(255, 103, 127, 0.1);
}

.dashboard-stat,
.dashboard-history,
.dashboard-row {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-stat {
  padding: 14px 16px;
}

.dashboard-stat span,
.dashboard-label,
.history-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.dashboard-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
}

.dashboard-row {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.custom-add-box {
  margin-top: 18px;
}

.custom-add-question-fields {
  margin-top: 18px;
}

.custom-add-question-fields .input-label {
  margin-top: 14px;
}

.custom-add-topic-fields {
  margin-top: 18px;
}

.custom-add-topic-fields .input-label {
  margin-top: 14px;
}

.custom-add-topic-fields input,
.custom-add-topic-fields textarea {
  width: 100%;
}

.custom-add-topic-fields .text-input {
  min-height: 56px;
}

.custom-add-topic-fields textarea {
  min-height: 88px;
  padding: 14px 16px;
}

.custom-add-topic-fields textarea + textarea {
  margin-top: 12px;
}

.custom-add-creator-fields {
  margin-top: 18px;
}

.stars-paywall {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stars-paywall__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.stars-paywall__head strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.stars-package-box {
  margin-top: 14px;
}

.stars-package-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.stars-package-card {
  width: 100%;
  text-align: left;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.stars-package-card.is-selected {
  border-color: rgba(116, 248, 255, 0.4);
  background: linear-gradient(135deg, rgba(116, 248, 255, 0.14), rgba(123, 140, 255, 0.14));
  box-shadow: 0 0 22px rgba(116, 248, 255, 0.08);
}

body[data-site-variant="adult"] .stars-package-card.is-selected {
  border-color: rgba(255, 103, 127, 0.42);
  background: linear-gradient(135deg, rgba(255, 103, 127, 0.16), rgba(177, 76, 255, 0.14));
  box-shadow: 0 0 22px rgba(255, 103, 127, 0.09);
}

.stars-package-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.stars-package-card__title {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.35;
}

.stars-package-card__price {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 211, 92, 0.12);
  border: 1px solid rgba(255, 211, 92, 0.18);
  color: #ffd972;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-site-variant="adult"] .stars-package-card__price {
  background: rgba(255, 133, 92, 0.12);
  border-color: rgba(255, 133, 92, 0.2);
  color: #ffbf8c;
}

.stars-package-card__text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.stars-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  min-width: 86px;
  border-radius: 999px;
  background: rgba(255, 211, 92, 0.12);
  border: 1px solid rgba(255, 211, 92, 0.2);
  color: #ffd972;
  font-size: 0.82rem;
  font-weight: 700;
}

body[data-site-variant="adult"] .stars-badge {
  background: rgba(255, 133, 92, 0.12);
  border-color: rgba(255, 133, 92, 0.22);
  color: #ffbf8c;
}

.stars-paywall__actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.stars-paywall__actions .ghost-btn {
  margin-top: 0;
}

.stars-paywall__status {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.45;
}

.stars-paywall__status.is-warning {
  border-color: rgba(255, 211, 92, 0.18);
  background: rgba(255, 211, 92, 0.08);
  color: #ffe8aa;
}

.stars-paywall__status.is-success {
  border-color: rgba(116, 248, 255, 0.18);
  background: rgba(116, 248, 255, 0.08);
  color: #cbfbff;
}

body[data-site-variant="adult"] .stars-paywall__status.is-warning {
  border-color: rgba(255, 133, 92, 0.2);
  background: rgba(255, 133, 92, 0.09);
  color: #ffd8ba;
}

body[data-site-variant="adult"] .stars-paywall__status.is-success {
  border-color: rgba(255, 103, 127, 0.2);
  background: rgba(255, 103, 127, 0.08);
  color: #ffd3db;
}

.dashboard-row--top {
  border: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
}

.dashboard-value {
  margin: 6px 0 0;
  color: var(--text);
}

.dashboard-history {
  padding: 14px 16px;
  margin-top: 12px;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 260px;
  overflow-y: auto;
}

.history-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.history-item p {
  margin: 6px 0 10px;
  color: var(--text);
  line-height: 1.45;
}

.history-item p:last-child {
  margin-bottom: 0;
}

.history-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.history-item__title {
  margin: 8px 0 0;
  color: var(--text);
  line-height: 1.45;
}

.history-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.history-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.history-status--approved {
  border-color: rgba(116, 248, 255, 0.18);
  background: rgba(116, 248, 255, 0.08);
  color: #cbfbff;
}

.history-status--rejected {
  border-color: rgba(255, 122, 152, 0.2);
  background: rgba(255, 122, 152, 0.08);
  color: #ffd4de;
}

.history-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ghost-btn--danger {
  margin-top: 14px;
  border-color: rgba(255, 122, 152, 0.18);
  color: #ffd2dc;
}

.is-disabled,
.primary-btn:disabled,
.ghost-btn:disabled,
.mini-btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
}

.desktop-blocker {
  display: none;
}

.hidden {
  display: none !important;
}

@media (max-width: 420px) {
  .app-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-card {
    padding: 18px 14px 16px;
  }

  .hero-topbar {
    gap: 16px;
  }

  .hero-brand {
    align-items: flex-start;
  }

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

  .mini-btn {
    min-width: 0;
    width: 100%;
    min-height: 56px;
    font-size: 0.82rem;
  }

  .mini-btn--lang {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-title {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 0.95;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 248, 255, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(116, 248, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(116, 248, 255, 0);
  }
}

@keyframes ambientGradient {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 100% 0%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes ambientHue {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }

  50% {
    filter: hue-rotate(22deg) saturate(1.08);
  }

  100% {
    filter: hue-rotate(0deg) saturate(1);
  }
}

@media (min-width: 769px) {
  body {
    overflow: hidden;
  }

  body:not([data-site-variant="adult"]) .desktop-blocker {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.24) 0 50%, rgba(19, 4, 10, 0.24) 50% 100%),
      rgba(4, 8, 15, 0.34);
  }

  .desktop-blocker {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 32px;
    background: rgba(4, 8, 15, 0.34);
    backdrop-filter: blur(10px);
    z-index: 90;
  }

  .desktop-blocker__card {
    width: min(1220px, 100%);
    min-height: min(84vh, 780px);
    padding: 28px;
    display: grid;
    grid-template-rows: auto auto;
    gap: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: hidden;
  }

  body:not([data-site-variant="adult"]) .desktop-blocker__card {
    border-radius: 38px;
    background:
      linear-gradient(90deg, rgba(8, 17, 29, 0.86) 0 50%, rgba(20, 4, 10, 0.88) 50% 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
  }

  .desktop-blocker__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
  }

  .desktop-blocker__copy {
    padding-right: 16px;
  }

  body:not([data-site-variant="adult"]) .desktop-blocker__copy {
    padding: 0 16px 0 0;
  }

  .desktop-blocker__copy h1 {
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
    line-height: 0.95;
    max-width: 10ch;
  }

  .desktop-blocker__lead {
    font-size: 1rem;
    max-width: 30rem;
    margin-top: 14px;
  }

  .desktop-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }

  .desktop-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.8rem;
  }

  .desktop-cta-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(116, 248, 255, 0.08), rgba(255, 95, 210, 0.07));
    border: 1px solid rgba(116, 248, 255, 0.14);
    max-width: 34rem;
  }

  .desktop-cta-box strong {
    display: block;
    font-size: 0.94rem;
    font-family: "Space Grotesk", sans-serif;
  }

  .desktop-cta-box p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.9rem;
  }

  body:not([data-site-variant="adult"]) .desktop-cta-box {
    background: linear-gradient(90deg, rgba(116, 248, 255, 0.11) 0 50%, rgba(255, 103, 127, 0.11) 50% 100%);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .desktop-split-note {
    margin-top: 18px;
    max-width: 34rem;
    padding: 14px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  body:not([data-site-variant="adult"]) .desktop-split-note {
    background: linear-gradient(90deg, rgba(123, 140, 255, 0.08) 0 50%, rgba(177, 76, 255, 0.08) 50% 100%);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .desktop-split-note__label {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(116, 248, 255, 0.12);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  body:not([data-site-variant="adult"]) .desktop-split-note__label {
    background: linear-gradient(90deg, rgba(116, 248, 255, 0.16) 0 50%, rgba(255, 103, 127, 0.16) 50% 100%);
    color: #eef7ff;
  }

  .desktop-split-note p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.9rem;
  }

  .desktop-showcase {
    display: grid;
    gap: 16px;
  }

  body:not([data-site-variant="adult"]) .desktop-showcase {
    padding: 0;
  }

  .desktop-phone {
    display: flex;
    justify-content: center;
  }

  .desktop-phone__frame {
    width: min(330px, 100%);
    padding: 14px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    position: relative;
  }

  .desktop-phone__glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(123, 140, 255, 0.18), transparent 60%);
    pointer-events: none;
    filter: blur(18px);
  }

  .desktop-phone__screen {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    padding: 14px;
    background:
      radial-gradient(circle at top right, rgba(255, 95, 210, 0.16), transparent 30%),
      radial-gradient(circle at bottom left, rgba(116, 248, 255, 0.14), transparent 26%),
      linear-gradient(180deg, rgba(8, 17, 29, 0.98), rgba(10, 18, 34, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .desktop-phone__status,
  .desktop-phone__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.76rem;
  }

  .desktop-phone__card,
  .desktop-phone__bubble {
    margin-top: 12px;
    padding: 13px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .desktop-phone__label,
  .desktop-phone__bubble span {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    margin-bottom: 8px;
  }

  .desktop-phone__card p,
  .desktop-phone__bubble p {
    margin: 0;
    line-height: 1.45;
    font-size: 0.92rem;
  }

  .desktop-phone__answers {
    display: grid;
    gap: 8px;
    margin-top: 6px;
  }

  .desktop-phone__bubble--accent {
    background: linear-gradient(135deg, rgba(116, 248, 255, 0.12), rgba(123, 140, 255, 0.14));
    border-color: rgba(116, 248, 255, 0.16);
  }

  .desktop-adult-card {
    padding: 18px;
    border-radius: 30px;
    background:
      radial-gradient(circle at top right, rgba(177, 76, 255, 0.18), transparent 32%),
      radial-gradient(circle at left bottom, rgba(255, 103, 127, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(33, 8, 18, 0.92), rgba(13, 3, 10, 0.82));
    border: 1px solid rgba(255, 92, 122, 0.16);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  }

  body:not([data-site-variant="adult"]) .desktop-adult-card {
    background:
      linear-gradient(90deg, rgba(13, 25, 44, 0.62) 0 50%, rgba(34, 9, 18, 0.78) 50% 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }

  .desktop-adult-card__eyebrow {
    margin: 0;
    color: #ff96ac;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .desktop-adult-card h2 {
    margin: 10px 0 0;
    font-size: 1.45rem;
    line-height: 1.05;
    max-width: 16ch;
  }

  .desktop-adult-card > p {
    margin: 10px 0 0;
    color: #ddb3c0;
    line-height: 1.55;
    font-size: 0.92rem;
  }

  .desktop-adult-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .desktop-pill--adult {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 92, 122, 0.16);
    color: #fff0f5;
  }

  .desktop-adult-preview {
    margin-top: 16px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 92, 122, 0.14);
  }

  .desktop-adult-preview__label {
    display: block;
    margin-bottom: 8px;
    color: #ff96ac;
    font-size: 0.76rem;
  }

  .desktop-adult-preview p {
    margin: 0;
    color: #fff0f5;
    line-height: 1.45;
    font-size: 0.92rem;
  }

  .desktop-adult-card__link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff677f, #b14cff);
    color: #fff6fa;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(177, 76, 255, 0.28);
  }

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

  .desktop-info {
    min-height: 0;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .desktop-info h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
  }

  .desktop-info p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.88rem;
  }

  .desktop-info--wide {
    grid-column: 1 / -1;
  }

  body:not([data-site-variant="adult"]) .desktop-info {
    background: linear-gradient(90deg, rgba(10, 20, 38, 0.42) 0 50%, rgba(32, 8, 18, 0.42) 50% 100%);
    border-color: rgba(255, 255, 255, 0.1);
  }

  body:not([data-site-variant="adult"]) .desktop-info:nth-child(3) {
    background: linear-gradient(90deg, rgba(10, 20, 38, 0.42) 0 50%, rgba(32, 8, 18, 0.42) 50% 100%);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .app-shell {
    filter: blur(10px);
    pointer-events: none;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .desktop-blocker {
    padding: 20px;
  }

  .desktop-blocker__hero {
    grid-template-columns: 1fr;
  }

  .desktop-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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