    :root {
      --black: #080510;
      --gold: #C9A227;
      --wine: #4A0E2E;
      --purple: #1E0B3B;
      --pearl: #F5F0E8;
      --muted: rgba(245, 240, 232, 0.74);
      --glass: rgba(30, 11, 59, 0.58);
      --shadow: rgba(201, 162, 39, 0.3);
    }

    * {
      box-sizing: border-box;
    }

    html {
      min-height: 100%;
      background: var(--black);
    }

    body {
      min-height: 100vh;
      margin: 0;
      color: var(--pearl);
      font-family: "EB Garamond", serif;
      font-size: 17px;
      background:
        radial-gradient(circle at 20% 10%, rgba(74, 14, 46, 0.34), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(30, 11, 59, 0.5), transparent 28%),
        linear-gradient(180deg, #080510 0%, #110719 48%, #080510 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(245, 240, 232, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 240, 232, 0.018) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(circle at center, black, transparent 78%);
      z-index: 0;
    }

    h1,
    h2,
    h3,
    .card-name,
    .title-font {
      font-family: "Cinzel Decorative", serif;
      letter-spacing: 0;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    button,
    a.button {
      appearance: none;
      border: 1px solid var(--gold);
      border-radius: 999px;
      background: rgba(8, 5, 16, 0.18);
      color: var(--gold);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.86rem;
      font-weight: 700;
      line-height: 1.3;
      min-height: 48px;
      padding: 13px 22px;
      text-align: center;
      text-decoration: none;
      transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    }

    button:hover,
    a.button:hover,
    button:focus-visible,
    a.button:focus-visible {
      background: var(--gold);
      color: #080510;
      box-shadow: 0 0 22px rgba(201, 162, 39, 0.36);
      transform: translateY(-1px);
      outline: none;
    }

    button[disabled] {
      cursor: wait;
      opacity: 0.5;
      pointer-events: none;
    }

    .stars {
      position: fixed;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .star {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      animation: twinkle linear infinite, drift 18s ease-in-out infinite alternate;
      will-change: opacity, transform;
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.2; }
      45% { opacity: 0.8; }
      70% { opacity: 0.36; }
    }

    @keyframes drift {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(16px, -24px, 0); }
    }

    .progress-shell {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: rgba(245, 240, 232, 0.08);
      z-index: 20;
    }

    .progress-bar {
      height: 100%;
      width: 5%;
      background: linear-gradient(90deg, var(--wine), var(--gold));
      box-shadow: 0 0 16px rgba(201, 162, 39, 0.48);
      transition: width 500ms ease;
    }

    .app {
      isolation: isolate;
      min-height: 100vh;
      position: relative;
      z-index: 1;
    }

    .screen {
      display: none;
      min-height: 100vh;
      padding: 64px 20px 56px;
    }

    .screen.active {
      display: block;
      animation: screenFade 520ms ease both;
    }

    @keyframes screenFade {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .wrap {
      margin: 0 auto;
      max-width: 1040px;
      width: 100%;
    }

    .narrow {
      max-width: 760px;
      text-align: center;
    }

    .kicker {
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 14px;
      text-transform: uppercase;
    }

    .hero-title {
      color: var(--pearl);
      font-size: clamp(2rem, 7vw, 3.25rem);
      line-height: 1.12;
      margin-bottom: 18px;
      text-shadow: 0 0 28px rgba(201, 162, 39, 0.18);
    }

    .screen-title {
      color: var(--pearl);
      font-size: clamp(1.8rem, 5vw, 2.45rem);
      line-height: 1.16;
      margin-bottom: 16px;
      text-align: center;
    }

    .subtitle {
      color: rgba(245, 240, 232, 0.88);
      font-size: clamp(1.16rem, 3.2vw, 1.38rem);
      font-style: italic;
      line-height: 1.6;
      margin: 0 auto 22px;
      max-width: 720px;
      text-align: center;
    }

    .body-copy {
      color: rgba(245, 240, 232, 0.82);
      font-size: clamp(1.12rem, 2.2vw, 1.22rem);
      line-height: 1.72;
      margin: 0 auto 28px;
      max-width: 720px;
      text-align: center;
    }

    .compact-copy {
      font-size: clamp(1.04rem, 2vw, 1.12rem);
      line-height: 1.48;
      margin-bottom: 12px;
      max-width: 620px;
    }

    .social-proof {
      color: rgba(245, 240, 232, 0.55);
      font-size: 0.98rem;
      margin-top: 18px;
      text-align: center;
    }

    .mystic-eye {
      height: 82px;
      margin: 0 auto 28px;
      position: relative;
      width: 132px;
    }

    .mystic-eye::before {
      animation: eyeOpen 3.4s ease-in-out infinite;
      background: radial-gradient(circle, rgba(201, 162, 39, 0.16), rgba(201, 162, 39, 0.02));
      border: 2px solid var(--gold);
      border-radius: 100% 0;
      box-shadow: 0 0 34px rgba(201, 162, 39, 0.22), inset 0 0 24px rgba(201, 162, 39, 0.12);
      content: "";
      inset: 14px 12px;
      position: absolute;
      transform: rotate(45deg) scaleY(0.22);
      transform-origin: center;
    }

    .mystic-eye::after {
      animation: pupilGlow 3.4s ease-in-out infinite;
      background: radial-gradient(circle, var(--gold) 0 22%, #080510 24% 48%, rgba(201, 162, 39, 0.62) 50% 54%, transparent 56%);
      border-radius: 50%;
      content: "";
      height: 34px;
      left: 49px;
      position: absolute;
      top: 25px;
      width: 34px;
    }

    @keyframes eyeOpen {
      0%, 18% { transform: rotate(45deg) scaleY(0.18); }
      45%, 82% { transform: rotate(45deg) scaleY(1); }
      100% { transform: rotate(45deg) scaleY(0.18); }
    }

    @keyframes pupilGlow {
      0%, 20%, 100% { opacity: 0.15; transform: scale(0.75); }
      46%, 82% { opacity: 1; transform: scale(1); }
    }

    .topic-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: 34px;
    }

    .topic-card {
      background: linear-gradient(180deg, rgba(30, 11, 59, 0.86), rgba(74, 14, 46, 0.34));
      border: 1px solid rgba(201, 162, 39, 0.4);
      border-radius: 18px;
      color: var(--pearl);
      cursor: pointer;
      min-height: 228px;
      padding: 22px 18px;
      text-align: left;
      transition: border 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    }

    .topic-card:hover,
    .topic-card:focus-visible {
      border-color: var(--gold);
      box-shadow: 0 0 26px rgba(201, 162, 39, 0.2);
      transform: translateY(-3px);
      outline: none;
    }

    .topic-card svg {
      color: var(--gold);
      height: 34px;
      margin-bottom: 14px;
      width: 34px;
    }

    .topic-card h3 {
      color: var(--gold);
      font-size: 1.02rem;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .topic-card p {
      color: rgba(245, 240, 232, 0.76);
      font-size: 1rem;
      line-height: 1.44;
      margin-bottom: 0;
    }

    .quiz-shell {
      margin: 32px auto 0;
      max-width: 780px;
    }

    .quiz-step {
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 14px;
      text-align: center;
      text-transform: uppercase;
    }

    .quiz-question {
      color: var(--pearl);
      font-family: "Cinzel Decorative", serif;
      font-size: clamp(1.5rem, 4.6vw, 2rem);
      line-height: 1.32;
      margin: 0 auto 14px;
      max-width: 720px;
      text-align: center;
    }

    .quiz-guidance {
      color: rgba(245, 240, 232, 0.84);
      font-size: clamp(1.12rem, 2.8vw, 1.24rem);
      font-style: normal;
      line-height: 1.66;
      margin: 0 auto 24px;
      max-width: 680px;
      text-align: center;
    }

    .quiz-options {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 22px;
    }

    .quiz-option {
      appearance: none;
      background: linear-gradient(180deg, rgba(30, 11, 59, 0.84), rgba(74, 14, 46, 0.32));
      border: 1px solid rgba(201, 162, 39, 0.38);
      border-radius: 18px;
      color: var(--pearl);
      cursor: pointer;
      display: block;
      font-family: "EB Garamond", serif;
      line-height: normal;
      min-height: 138px;
      padding: 18px;
      text-align: left;
      transition: border 220ms ease, box-shadow 220ms ease, transform 220ms ease;
      width: 100%;
    }

    .quiz-option:hover,
    .quiz-option:focus-visible {
      background: linear-gradient(180deg, rgba(30, 11, 59, 0.9), rgba(74, 14, 46, 0.42));
      border-color: var(--gold);
      color: var(--pearl);
      box-shadow: 0 0 26px rgba(201, 162, 39, 0.2);
      transform: translateY(-3px);
      outline: none;
    }

    .quiz-option strong {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.96rem;
      line-height: 1.35;
      margin-bottom: 8px;
    }

    .quiz-option span {
      color: rgba(245, 240, 232, 0.84);
      display: block;
      font-size: 1.06rem;
      line-height: 1.52;
    }

    .quiz-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 26px;
    }

    .quiz-dot {
      background: rgba(245, 240, 232, 0.2);
      border-radius: 999px;
      height: 6px;
      width: 28px;
    }

    .quiz-dot.is-active {
      background: var(--gold);
      box-shadow: 0 0 16px rgba(201, 162, 39, 0.42);
    }

    .human-panel {
      background: linear-gradient(180deg, rgba(30, 11, 59, 0.58), rgba(8, 5, 16, 0.68));
      border: 1px solid rgba(201, 162, 39, 0.32);
      border-radius: 20px;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
      margin: 28px auto;
      max-width: 780px;
      padding: 24px;
      text-align: center;
    }

    .name-input {
      background: rgba(8, 5, 16, 0.48);
      border: 1px solid rgba(201, 162, 39, 0.46);
      border-radius: 999px;
      color: var(--pearl);
      display: block;
      font-family: "EB Garamond", serif;
      font-size: 1.14rem;
      margin: 22px auto 18px;
      max-width: 420px;
      min-height: 52px;
      padding: 12px 20px;
      text-align: center;
      width: 100%;
    }

    .name-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 22px rgba(201, 162, 39, 0.22);
      outline: none;
    }

    .name-input::placeholder {
      color: rgba(245, 240, 232, 0.5);
    }

    .human-note {
      color: rgba(245, 240, 232, 0.84);
      font-size: clamp(1.08rem, 2.8vw, 1.18rem);
      font-style: normal;
      line-height: 1.68;
      margin: 18px auto 0;
      max-width: 680px;
    }

    .listener-response {
      animation: readingReveal 420ms ease both;
      margin: 0 auto;
      max-width: 660px;
    }

    .listener-response .quiz-step {
      margin-bottom: 18px;
    }

    .summary-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 18px;
      text-align: left;
    }

    .summary-item {
      background: rgba(30, 11, 59, 0.44);
      border: 1px solid rgba(201, 162, 39, 0.24);
      border-radius: 16px;
      padding: 16px;
    }

    .summary-item strong {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.76rem;
      line-height: 1.35;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .summary-item span {
      color: rgba(245, 240, 232, 0.86);
      font-size: 1.06rem;
      line-height: 1.5;
    }

    .tarologa-signature {
      align-items: center;
      display: flex;
      gap: 18px;
      margin-top: 22px;
      text-align: left;
    }

    .signature-mark {
      align-items: center;
      background: radial-gradient(circle, rgba(201, 162, 39, 0.2), rgba(74, 14, 46, 0.32));
      border: 1px solid rgba(201, 162, 39, 0.48);
      border-radius: 50%;
      color: var(--gold);
      display: flex;
      flex: 0 0 74px;
      font-family: "Cinzel Decorative", serif;
      font-size: 1.6rem;
      height: 74px;
      justify-content: center;
      overflow: hidden;
      width: 74px;
    }

    .signature-mark img {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .tarologa-signature strong {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.95rem;
      margin-bottom: 5px;
    }

    .tarologa-signature p {
      color: rgba(245, 240, 232, 0.84);
      font-size: 1.06rem;
      line-height: 1.58;
      margin-bottom: 0;
    }

    .shuffle-wrap {
      height: 166px;
      margin: 24px auto 32px;
      position: relative;
      width: min(330px, 88vw);
    }

    .mini-card {
      animation: shuffleCard 3s ease-in-out infinite;
      border-radius: 12px;
      height: 136px;
      left: 50%;
      position: absolute;
      top: 15px;
      transform-origin: center;
      width: 82px;
    }

    .mini-card:nth-child(1) { animation-delay: 0ms; }
    .mini-card:nth-child(2) { animation-delay: 160ms; }
    .mini-card:nth-child(3) { animation-delay: 320ms; }

    @keyframes shuffleCard {
      0%, 100% { transform: translateX(-50%) rotate(0deg); }
      25% { transform: translateX(-132px) rotate(-14deg); }
      50% { transform: translateX(-50%) rotate(9deg); }
      75% { transform: translateX(50px) rotate(14deg); }
    }

    .ritual-progress {
      border: 1px solid rgba(201, 162, 39, 0.35);
      border-radius: 999px;
      color: var(--gold);
      display: inline-flex;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 28px;
      padding: 9px 16px;
    }

    .tarot-grid {
      align-items: start;
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      margin: 34px auto 24px;
      max-width: 1060px;
      min-height: 254px;
      perspective: 1200px;
    }

    .tarot-card {
      aspect-ratio: 0.58;
      background: transparent;
      border: 0;
      border-radius: 12px;
      color: inherit;
      cursor: pointer;
      display: block;
      font: inherit;
      min-height: 0;
      min-width: 0;
      padding: 0;
      perspective: 1000px;
      position: relative;
      transition: opacity 420ms ease, transform 700ms ease, filter 420ms ease;
      width: 100%;
    }

    .tarot-card[disabled] {
      opacity: 1;
      pointer-events: none;
    }

    .tarot-card:hover,
    .tarot-card:focus-visible {
      background: transparent;
      box-shadow: none;
      color: inherit;
      outline: none;
      transform: none;
    }

    .tarot-card:not(.is-selected):not(.is-faded):hover,
    .tarot-card:not(.is-selected):not(.is-faded):focus-visible {
      transform: translateY(-2px);
    }

    .tarot-card .float-layer {
      animation: cardFloat 3s ease-in-out infinite;
      display: block;
      height: 100%;
      width: 100%;
    }

    .tarot-card .card-inner {
      display: block;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.7s ease;
      width: 100%;
    }

    .tarot-card.is-flipped .card-inner {
      transform: rotateY(180deg);
    }

    .tarot-card.is-selected {
      cursor: default;
      transform: scale(1.3) translateY(18px);
      z-index: 5;
    }

    .tarot-grid.has-selection {
      grid-template-columns: minmax(128px, 168px);
      justify-content: center;
      min-height: 340px;
    }

    .tarot-grid.has-selection .tarot-card.is-selected {
      grid-column: 1 / -1;
      justify-self: center;
    }

    .tarot-card.is-selected:hover,
    .tarot-card.is-selected:focus-visible {
      transform: scale(1.3) translateY(18px);
    }

    .tarot-card.is-faded {
      opacity: 0;
      pointer-events: none;
      transform: scale(0.86);
    }

    .tarot-card.is-loading .card-back::before {
      animation: loadingPulse 900ms ease-in-out infinite alternate;
      box-shadow: 0 0 22px rgba(201, 162, 39, 0.32);
    }

    .tarot-card:nth-child(2n) .float-layer { animation-delay: 200ms; }
    .tarot-card:nth-child(3n) .float-layer { animation-delay: 420ms; }
    .tarot-card:nth-child(4n) .float-layer { animation-delay: 640ms; }

    @keyframes cardFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes loadingPulse {
      from { opacity: 0.42; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1.02); }
    }

    .card-face {
      backface-visibility: hidden;
      border-radius: 12px;
      height: 100%;
      inset: 0;
      overflow: hidden;
      position: absolute;
      width: 100%;
    }

    .card-back {
      background:
        radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.18) 0 16%, transparent 17%),
        repeating-linear-gradient(45deg, rgba(201, 162, 39, 0.34) 0 2px, transparent 2px 11px),
        repeating-linear-gradient(-45deg, rgba(245, 240, 232, 0.09) 0 2px, transparent 2px 13px),
        linear-gradient(135deg, #1E0B3B, #4A0E2E);
      border: 2px solid var(--gold);
      box-shadow: inset 0 0 0 7px rgba(8, 5, 16, 0.6), 0 12px 28px rgba(0, 0, 0, 0.36);
    }

    .card-back::before,
    .card-back::after {
      border: 1px solid rgba(201, 162, 39, 0.65);
      border-radius: 50%;
      content: "";
      inset: 18%;
      position: absolute;
    }

    .card-back::after {
      border-radius: 12px;
      inset: 10px;
      transform: rotate(45deg) scale(0.72);
    }

    .card-front {
      background: #140914;
      border: 2px solid rgba(201, 162, 39, 0.9);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
      transform: rotateY(180deg);
    }

    .card-front img {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .image-fallback {
      align-items: center;
      background:
        radial-gradient(circle at 50% 20%, rgba(201, 162, 39, 0.18), transparent 32%),
        linear-gradient(160deg, rgba(74, 14, 46, 0.92), rgba(30, 11, 59, 0.96));
      color: var(--gold);
      display: none;
      flex-direction: column;
      font-family: "Cinzel Decorative", serif;
      gap: 12px;
      height: 100%;
      justify-content: center;
      line-height: 1.35;
      padding: 18px;
      text-align: center;
      width: 100%;
    }

    .image-fallback span:first-child {
      font-size: clamp(1.2rem, 6vw, 2.1rem);
    }

    .card-front.has-fallback img {
      display: none;
    }

    .card-front.has-fallback .image-fallback {
      display: flex;
    }

    .reading-panel {
      animation: readingReveal 650ms ease both;
      background: linear-gradient(180deg, rgba(30, 11, 59, 0.58), rgba(8, 5, 16, 0.68));
      border: 1px solid rgba(201, 162, 39, 0.32);
      border-radius: 20px;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
      margin: 42px auto 0;
      max-width: 760px;
      padding: 26px;
      text-align: center;
    }

    .reading-panel.is-hidden {
      display: none;
    }

    @keyframes readingReveal {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .card-name {
      color: var(--gold);
      font-size: clamp(1.45rem, 5vw, 2rem);
      margin-bottom: 10px;
    }

    .keywords {
      color: rgba(201, 162, 39, 0.86);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.74rem;
      font-weight: 700;
      line-height: 1.7;
      margin-bottom: 18px;
      text-transform: uppercase;
    }

    .interpretation {
      color: rgba(245, 240, 232, 0.88);
      font-size: clamp(1.12rem, 2.4vw, 1.22rem);
      font-style: normal;
      line-height: 1.72;
      margin-bottom: 24px;
    }

    .delayed-button {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 500ms ease, transform 500ms ease;
    }

    .delayed-button.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .bridge-visual {
      align-items: center;
      display: grid;
      gap: 20px;
      grid-template-columns: 120px 1fr 120px;
      margin: 34px auto;
      max-width: 540px;
    }

    .tiny-card {
      border: 1px solid var(--gold);
      border-radius: 10px;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.38);
      min-height: 168px;
      overflow: hidden;
    }

    .tiny-card img {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .gold-arrow {
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      height: 1px;
      position: relative;
    }

    .gold-arrow::after {
      border-bottom: 7px solid transparent;
      border-left: 11px solid var(--gold);
      border-top: 7px solid transparent;
      content: "";
      position: absolute;
      right: -2px;
      top: -6px;
    }

    .mystery-mark {
      align-items: center;
      background: radial-gradient(circle, rgba(201, 162, 39, 0.16), rgba(30, 11, 59, 0.84));
      border: 1px solid rgba(201, 162, 39, 0.6);
      border-radius: 50%;
      color: var(--gold);
      display: flex;
      font-family: "Cinzel Decorative", serif;
      font-size: 3rem;
      height: 120px;
      justify-content: center;
      margin: 0 auto;
      width: 120px;
    }

    .truth-timer {
      border: 1px solid rgba(201, 162, 39, 0.4);
      border-radius: 999px;
      height: 15px;
      margin: 26px auto 20px;
      max-width: 460px;
      overflow: hidden;
      padding: 2px;
    }

    .truth-timer span {
      animation: timerFill 10s linear forwards;
      background: linear-gradient(90deg, var(--wine), var(--gold));
      border-radius: 999px;
      display: block;
      height: 100%;
      width: 0%;
    }

    @keyframes timerFill {
      to { width: 100%; }
    }

    .final-reading {
      margin-top: 34px;
      position: relative;
    }

    .blurred-reading {
      filter: blur(4px);
      max-height: 230px;
      overflow: hidden;
      user-select: none;
    }

    .offer-overlay {
      align-items: center;
      background: linear-gradient(180deg, rgba(8, 5, 16, 0.6), rgba(8, 5, 16, 0.94));
      border: 1px solid rgba(201, 162, 39, 0.38);
      border-radius: 18px;
      display: flex;
      flex-direction: column;
      inset: 82px 0 0;
      justify-content: center;
      padding: 26px;
      position: absolute;
      text-align: center;
    }

    .offer-overlay h3 {
      color: var(--gold);
      font-size: clamp(1.25rem, 5vw, 1.72rem);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .offer-overlay p {
      color: rgba(245, 240, 232, 0.85);
      font-size: clamp(1.05rem, 2.5vw, 1.16rem);
      line-height: 1.62;
      margin-bottom: 14px;
      max-width: 650px;
    }

    .plans-grid {
      display: grid;
      gap: 22px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin: 34px auto 26px;
      max-width: 980px;
    }

    .plan-card {
      background: linear-gradient(180deg, rgba(30, 11, 59, 0.86), rgba(74, 14, 46, 0.42));
      border: 1px solid rgba(201, 162, 39, 0.44);
      border-radius: 20px;
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 24px;
      position: relative;
    }

    .badge {
      align-self: flex-start;
      background: rgba(201, 162, 39, 0.16);
      border: 1px solid rgba(201, 162, 39, 0.58);
      border-radius: 999px;
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.7rem;
      font-weight: 700;
      margin-bottom: 16px;
      padding: 7px 11px;
    }

    .plan-card h3 {
      color: var(--pearl);
      font-size: 1.42rem;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .price {
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 2.18rem;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .plan-card ul {
      color: rgba(245, 240, 232, 0.86);
      font-size: 1.08rem;
      line-height: 1.56;
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
    }

    .plan-card li {
      margin-bottom: 10px;
      padding-left: 24px;
      position: relative;
    }

    .plan-card li::before {
      color: var(--gold);
      content: "✦";
      left: 0;
      position: absolute;
      top: 0;
    }

    .plan-card .button {
      margin-top: auto;
      width: 100%;
    }

    .offer-notes {
      color: rgba(245, 240, 232, 0.84);
      font-size: 1.08rem;
      line-height: 1.66;
      margin: 18px auto 0;
      max-width: 780px;
      text-align: center;
    }

    .offer-notes li {
      margin-bottom: 8px;
    }

    .offer-notes strong {
      color: var(--gold);
      font-weight: 600;
    }

    .toast {
      animation: toastIn 420ms ease both, toastOut 420ms ease 3.6s forwards;
      background: rgba(8, 5, 16, 0.94);
      border: 1px solid rgba(201, 162, 39, 0.62);
      border-radius: 16px;
      bottom: 22px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
      color: var(--pearl);
      font-size: 1rem;
      max-width: min(360px, calc(100vw - 32px));
      padding: 14px 16px;
      position: fixed;
      right: 18px;
      z-index: 30;
    }

    @keyframes toastIn {
      from { opacity: 0; transform: translateX(26px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes toastOut {
      to { opacity: 0; transform: translateX(26px); }
    }

    .chosen-row {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 30px auto;
      max-width: 620px;
    }

    .chosen-card {
      text-align: center;
    }

    .chosen-card img {
      border: 1px solid var(--gold);
      border-radius: 12px;
      display: block;
      margin-bottom: 10px;
      width: 100%;
    }

    .chosen-card span {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.8rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .chat-shell {
      background: rgba(8, 5, 16, 0.86);
      border: 1px solid rgba(201, 162, 39, 0.28);
      border-radius: 22px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
      display: flex;
      flex-direction: column;
      margin: 0 auto;
      max-width: 620px;
      min-height: calc(100vh - 112px);
      overflow: hidden;
      width: min(100%, 620px);
    }

    .chat-header {
      align-items: center;
      background: rgba(16, 8, 26, 0.94);
      border-bottom: 1px solid rgba(201, 162, 39, 0.16);
      display: flex;
      gap: 12px;
      padding: 14px 16px;
    }

    .chat-back {
      border-radius: 50%;
      font-family: "EB Garamond", serif;
      font-size: 1.7rem;
      min-height: 38px;
      padding: 0;
      width: 38px;
    }

    .chat-avatar {
      border: 1px solid rgba(201, 162, 39, 0.46);
      border-radius: 50%;
      flex: 0 0 42px;
      height: 42px;
      overflow: hidden;
      width: 42px;
    }

    .chat-avatar img {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .chat-person {
      flex: 1;
      min-width: 0;
    }

    .chat-person strong {
      color: var(--pearl);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.94rem;
      line-height: 1.2;
    }

    .chat-person span {
      color: rgba(91, 219, 139, 0.9);
      display: block;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    .chat-person span.is-typing {
      color: var(--gold);
    }

    .chat-plan {
      background: rgba(201, 162, 39, 0.16);
      border: 1px solid rgba(201, 162, 39, 0.42);
      border-radius: 999px;
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 7px 10px;
    }

    .chat-date {
      border-bottom: 1px solid rgba(245, 240, 232, 0.06);
      color: rgba(245, 240, 232, 0.44);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      padding: 12px 14px;
      text-align: center;
      text-transform: uppercase;
    }

    .chat-messages {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 10px;
      min-height: 420px;
      overflow-y: auto;
      padding: 14px 14px;
    }

    .chat-row {
      align-items: flex-end;
      display: flex;
      gap: 8px;
      max-width: 88%;
    }

    .chat-row.helena {
      align-self: flex-start;
      max-width: min(86%, 430px);
    }

    .chat-row.cliente {
      align-self: flex-end;
      justify-content: flex-end;
      max-width: min(74%, 360px);
    }

    .chat-bubble-avatar {
      border: 1px solid rgba(201, 162, 39, 0.38);
      border-radius: 50%;
      flex: 0 0 30px;
      height: 30px;
      overflow: hidden;
      width: 30px;
    }

    .chat-bubble-avatar img {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .chat-bubble {
      display: block;
      border-radius: 16px;
      font-size: 1rem;
      height: auto;
      line-height: 1.48;
      max-width: 100%;
      min-height: 0;
      padding: 10px 12px;
      text-align: left;
      white-space: normal;
      width: fit-content;
    }

    .chat-bubble.helena {
      background: rgba(30, 11, 59, 0.86);
      border: 1px solid rgba(201, 162, 39, 0.12);
      color: rgba(245, 240, 232, 0.9);
    }

    .chat-bubble.cliente {
      background: linear-gradient(135deg, rgba(194, 91, 0, 0.98), rgba(230, 123, 0, 0.96));
      border: 1px solid rgba(255, 176, 60, 0.26);
      color: #fff7ea;
    }

    .chat-typing-bubble {
      align-items: center;
      background: rgba(30, 11, 59, 0.86);
      border: 1px solid rgba(201, 162, 39, 0.12);
      border-radius: 16px;
      display: inline-flex;
      gap: 4px;
      min-height: 38px;
      padding: 10px 14px;
    }

    .chat-typing-bubble span {
      animation: typingPulse 1.2s infinite ease-in-out;
      background: rgba(245, 240, 232, 0.72);
      border-radius: 50%;
      display: block;
      height: 6px;
      width: 6px;
    }

    .chat-typing-bubble span:nth-child(2) {
      animation-delay: 0.16s;
    }

    .chat-typing-bubble span:nth-child(3) {
      animation-delay: 0.32s;
    }

    @keyframes typingPulse {
      0%,
      80%,
      100% {
        opacity: 0.34;
        transform: translateY(0);
      }

      40% {
        opacity: 1;
        transform: translateY(-3px);
      }
    }

    .chat-time {
      color: rgba(245, 240, 232, 0.38);
      display: block;
      font-size: 0.76rem;
      line-height: 1;
      margin-top: 7px;
      text-align: right;
    }

    .chat-row.system,
    .chat-row.options,
    .chat-row.locked {
      align-self: center;
      max-width: 96%;
      width: 100%;
    }

    .chat-system-note {
      color: rgba(196, 146, 255, 0.94);
      font-size: 0.98rem;
      font-style: italic;
      line-height: 1.45;
      margin: 16px auto 10px;
      max-width: 340px;
      text-align: center;
    }

    .chat-system-note strong {
      color: var(--gold);
      display: block;
      font-size: 1.28rem;
      font-style: normal;
      line-height: 1;
      margin-bottom: 8px;
    }

    .chat-quick-options {
      display: grid;
      gap: 8px;
      margin: 6px auto 8px;
      max-width: 360px;
      width: 100%;
    }

    .chat-quick-options button {
      background: rgba(24, 14, 20, 0.92);
      border: 1px solid rgba(230, 123, 0, 0.62);
      border-radius: 10px;
      color: #ffe86c;
      font-family: Arial, sans-serif;
      font-size: 0.94rem;
      min-height: 46px;
      padding: 10px 14px;
      text-transform: none;
      width: 100%;
    }

    .chat-quick-options button:hover {
      background: rgba(230, 123, 0, 0.18);
      transform: translateY(-1px);
    }

    .chat-locked-card {
      background: linear-gradient(145deg, rgba(34, 22, 79, 0.96), rgba(77, 10, 94, 0.96));
      border: 1px solid rgba(255, 153, 0, 0.72);
      border-radius: 14px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
      margin: 12px auto 8px;
      max-width: 380px;
      overflow: hidden;
      padding: 20px 20px 22px;
      position: relative;
      width: 100%;
    }

    .chat-locked-card::after {
      border: 7px solid rgba(255, 153, 0, 0.3);
      border-radius: 14px;
      content: "";
      height: 48px;
      position: absolute;
      right: 24px;
      top: 54px;
      width: 58px;
    }

    .chat-locked-card::before {
      border: 7px solid rgba(255, 153, 0, 0.3);
      border-bottom: 0;
      border-radius: 22px 22px 0 0;
      content: "";
      height: 34px;
      position: absolute;
      right: 38px;
      top: 32px;
      width: 30px;
    }

    .chat-lock-kicker {
      color: #ffb000;
      display: block;
      font-family: Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .chat-locked-card h3 {
      color: #fff7ea;
      font-family: "EB Garamond", serif;
      font-size: 1.58rem;
      line-height: 1.05;
      margin: 0 74px 14px 0;
    }

    .chat-locked-card p {
      color: rgba(245, 240, 232, 0.82);
      font-family: Arial, sans-serif;
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0 0 14px;
    }

    .chat-lock-list {
      border-bottom: 1px solid rgba(245, 240, 232, 0.08);
      border-top: 1px solid rgba(245, 240, 232, 0.08);
      display: grid;
      gap: 9px;
      margin: 16px 0;
      padding: 12px 0;
    }

    .chat-lock-list span {
      color: #fff7ea;
      font-family: Arial, sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .chat-lock-list span::before {
      color: #ffb000;
      content: "›";
      margin-right: 9px;
    }

    .chat-lock-offer {
      margin: 14px 0 12px;
      text-align: center;
    }

    .chat-lock-offer strong {
      color: #fff7ea;
      display: block;
      font-family: Arial, sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
      text-transform: uppercase;
    }

    .chat-lock-offer span {
      color: rgba(245, 240, 232, 0.62);
      display: block;
      font-family: Arial, sans-serif;
      font-size: 0.82rem;
      line-height: 1.35;
    }

    .chat-lock-offer b {
      color: #ffb000;
      font-size: 1.06rem;
    }

    .chat-locked-card a,
    .chat-checkout-button {
      align-items: center;
      background: linear-gradient(135deg, #ffab00, #ff7a00);
      border: 0;
      border-radius: 10px;
      color: #211009;
      display: flex;
      font-family: Arial, sans-serif;
      font-size: 0.86rem;
      font-weight: 900;
      justify-content: center;
      letter-spacing: 0.05em;
      min-height: 46px;
      text-decoration: none;
      text-transform: uppercase;
      width: 100%;
    }

    .chat-checkout-button:hover,
    .chat-checkout-button:focus-visible {
      background: linear-gradient(135deg, #ffc02e, #ff8c1a);
      box-shadow: 0 0 22px rgba(255, 153, 0, 0.34);
      color: #211009;
    }

    .chat-lock-safe {
      color: rgba(245, 240, 232, 0.5) !important;
      font-size: 0.72rem !important;
      margin: 12px 0 0 !important;
      text-align: center;
    }

    body.checkout-open {
      overflow: hidden;
    }

    .checkout-modal {
      align-items: center;
      display: none;
      inset: 0;
      justify-content: center;
      padding: 18px;
      position: fixed;
      z-index: 1000;
    }

    .checkout-modal.is-visible {
      display: flex;
    }

    .checkout-modal-backdrop {
      backdrop-filter: blur(7px);
      background: rgba(4, 2, 10, 0.84);
      inset: 0;
      position: absolute;
    }

    .checkout-modal-dialog {
      background: #0b0712;
      border: 1px solid rgba(201, 162, 39, 0.5);
      border-radius: 14px;
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
      display: flex;
      flex-direction: column;
      height: min(780px, calc(100dvh - 36px));
      max-width: 520px;
      overflow: hidden;
      position: relative;
      width: min(100%, 520px);
      z-index: 1;
    }

    .checkout-modal-header {
      align-items: center;
      background: rgba(16, 8, 26, 0.98);
      border-bottom: 1px solid rgba(201, 162, 39, 0.18);
      display: flex;
      flex: 0 0 auto;
      gap: 12px;
      justify-content: space-between;
      padding: 12px 14px;
    }

    .checkout-modal-header strong {
      color: var(--pearl);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.88rem;
      line-height: 1.25;
    }

    .checkout-modal-header span {
      color: rgba(245, 240, 232, 0.56);
      display: block;
      font-family: Arial, sans-serif;
      font-size: 0.72rem;
      margin-top: 2px;
    }

    .checkout-modal-close {
      border-radius: 50%;
      flex: 0 0 38px;
      font-family: Arial, sans-serif;
      font-size: 1.55rem;
      font-weight: 400;
      min-height: 38px;
      padding: 0;
      width: 38px;
    }

    .checkout-modal-frame {
      background: #fff;
      border: 0;
      flex: 1 1 auto;
      min-height: 0;
      width: 100%;
    }

    .checkout-modal-loading {
      align-items: center;
      background: #0b0712;
      display: flex;
      flex-direction: column;
      inset: 63px 0 0;
      justify-content: center;
      position: absolute;
      transition: opacity 180ms ease, visibility 180ms ease;
      z-index: 2;
    }

    .checkout-modal-loading.is-hidden {
      opacity: 0;
      visibility: hidden;
    }

    .checkout-modal-loading.is-error span {
      display: none;
    }

    .checkout-modal-loading.is-error p {
      color: #ffd27a;
      max-width: 330px;
      padding: 0 18px;
      text-align: center;
    }

    .checkout-modal-loading span {
      animation: checkoutSpin 0.8s linear infinite;
      border: 3px solid rgba(201, 162, 39, 0.2);
      border-radius: 50%;
      border-top-color: var(--gold);
      height: 34px;
      width: 34px;
    }

    .checkout-modal-loading p {
      color: rgba(245, 240, 232, 0.72);
      font-size: 0.92rem;
      margin: 12px 0 0;
    }

    @keyframes checkoutSpin {
      to { transform: rotate(360deg); }
    }

    .chat-extra {
      border-top: 1px solid rgba(245, 240, 232, 0.06);
      padding: 0 16px 12px;
    }

    .chat-card-options {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 10px;
    }

    .chat-card-choice {
      border-radius: 14px;
      min-height: 116px;
      padding: 12px;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .chat-input-row {
      align-items: center;
      background: rgba(16, 8, 26, 0.96);
      border-top: 1px solid rgba(201, 162, 39, 0.16);
      display: flex;
      gap: 10px;
      padding: 12px;
    }

    .chat-input-row textarea {
      background: rgba(8, 5, 16, 0.64);
      border: 1px solid rgba(201, 162, 39, 0.28);
      border-radius: 20px;
      color: var(--pearl);
      flex: 1;
      font-family: "EB Garamond", serif;
      font-size: 1.05rem;
      line-height: 1.35;
      max-height: 124px;
      min-height: 46px;
      min-width: 0;
      overflow-y: auto;
      padding: 11px 16px;
      resize: none;
    }

    .chat-input-row textarea:focus {
      border-color: var(--gold);
      outline: none;
    }

    .chat-input-row button {
      min-height: 46px;
      padding: 10px 16px;
    }

    .chat-disclaimer {
      color: rgba(245, 240, 232, 0.42);
      font-size: 0.82rem;
      line-height: 1.45;
      margin: 0;
      padding: 0 16px 12px;
      text-align: center;
    }

    .specialist-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 28px;
    }

    .specialist-card {
      background: rgba(16, 8, 26, 0.72);
      border: 1px solid rgba(201, 162, 39, 0.24);
      border-radius: 16px;
      color: var(--pearl);
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 100%;
      padding: 18px;
      text-align: left;
    }

    .specialist-card.is-recommended {
      border-color: rgba(201, 162, 39, 0.74);
      box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.16), 0 18px 46px rgba(0, 0, 0, 0.28);
    }

    .specialist-top {
      align-items: center;
      display: flex;
      gap: 12px;
    }

    .specialist-avatar,
    .avatar-initial {
      align-items: center;
      background: rgba(201, 162, 39, 0.16);
      border: 1px solid rgba(201, 162, 39, 0.38);
      border-radius: 50%;
      color: var(--gold);
      display: flex;
      flex: 0 0 46px;
      font-family: "Cinzel Decorative", serif;
      font-size: 1.08rem;
      font-weight: 700;
      height: 46px;
      justify-content: center;
      overflow: hidden;
      width: 46px;
    }

    .specialist-avatar img,
    .avatar-initial img {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .specialist-card h3 {
      color: var(--pearl);
      font-family: "Cinzel Decorative", serif;
      font-size: 1rem;
      line-height: 1.2;
      margin: 0 0 4px;
    }

    .specialist-card p {
      color: rgba(245, 240, 232, 0.76);
      font-size: 1.02rem;
      line-height: 1.48;
      margin: 0;
    }

    .specialist-area {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .specialist-badge {
      align-self: flex-start;
      background: rgba(91, 219, 139, 0.12);
      border: 1px solid rgba(91, 219, 139, 0.28);
      border-radius: 999px;
      color: rgba(130, 239, 169, 0.96);
      font-size: 0.82rem;
      padding: 5px 9px;
    }

    .specialist-card button {
      margin-top: auto;
      width: 100%;
    }

    .quiet-access-button,
    .member-back-button {
      background: transparent;
      border-color: rgba(245, 240, 232, 0.22);
      color: rgba(245, 240, 232, 0.76);
      margin-top: 12px;
    }

    .quiet-access-button {
      min-height: 42px;
      padding: 9px 18px;
    }

    .member-access-panel {
      background: rgba(12, 7, 22, 0.72);
      border: 1px solid rgba(201, 162, 39, 0.28);
      border-radius: 8px;
      display: grid;
      gap: 10px;
      margin: 28px auto 0;
      max-width: 520px;
      padding: 24px;
      text-align: left;
    }

    .member-access-panel label {
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .member-access-panel input {
      background: rgba(5, 3, 12, 0.78);
      border: 1px solid rgba(201, 162, 39, 0.3);
      border-radius: 8px;
      color: var(--pearl);
      font-family: Arial, sans-serif;
      font-size: 1rem;
      min-height: 48px;
      padding: 11px 13px;
      width: 100%;
    }

    .member-code-step {
      display: grid;
      gap: 10px;
      margin-top: 8px;
    }

    .member-code-step.is-hidden,
    .member-area-content.is-hidden {
      display: none;
    }

    .member-feedback {
      color: rgba(245, 240, 232, 0.74);
      font-family: Arial, sans-serif;
      font-size: 0.88rem;
      line-height: 1.5;
      margin: 4px 0 0;
    }

    .member-feedback.is-error {
      color: #ffbc9a;
    }

    .member-feedback.is-success {
      color: #8ee5aa;
    }

    .member-wrap {
      max-width: 1040px;
    }

    .member-page-header,
    .member-section-heading {
      align-items: center;
      display: flex;
      gap: 18px;
      justify-content: space-between;
      text-align: left;
    }

    .member-page-header .screen-title {
      margin: 4px 0 0;
      text-align: left;
    }

    .member-eyebrow {
      color: var(--gold);
      display: block;
      font-family: Arial, sans-serif;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .member-chat-button {
      flex: 0 0 auto;
    }

    .member-loading {
      color: rgba(245, 240, 232, 0.68);
      font-size: 1.08rem;
      padding: 64px 0;
      text-align: center;
    }

    .member-loading.is-hidden {
      display: none;
    }

    .member-summary-band {
      border-bottom: 1px solid rgba(201, 162, 39, 0.18);
      border-top: 1px solid rgba(201, 162, 39, 0.18);
      display: grid;
      gap: 16px;
      grid-template-columns: minmax(0, 1fr) auto;
      margin: 28px 0 0;
      padding: 22px 0;
      text-align: left;
    }

    .member-summary-band h3,
    .member-section h3 {
      color: var(--pearl);
      font-family: "Cinzel Decorative", serif;
      font-size: 1.18rem;
      line-height: 1.3;
      margin: 4px 0 8px;
    }

    .member-summary-band p {
      color: rgba(245, 240, 232, 0.74);
      font-size: 1.02rem;
      line-height: 1.5;
      margin: 0;
    }

    .member-summary-cards {
      align-items: center;
      display: flex;
      gap: 6px;
    }

    .member-summary-cards img {
      border: 1px solid rgba(201, 162, 39, 0.36);
      border-radius: 6px;
      height: 76px;
      object-fit: cover;
      width: 50px;
    }

    .member-section {
      border-bottom: 1px solid rgba(245, 240, 232, 0.08);
      padding: 30px 0;
      text-align: left;
    }

    .member-specialists {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      margin-top: 18px;
    }

    .member-specialist {
      background: rgba(12, 7, 22, 0.64);
      border: 1px solid rgba(201, 162, 39, 0.2);
      border-radius: 8px;
      color: var(--pearl);
      min-height: 148px;
      padding: 12px 8px;
      text-align: center;
      width: 100%;
    }

    .member-specialist.is-active {
      border-color: rgba(201, 162, 39, 0.82);
      box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.18);
    }

    .member-specialist img {
      border-radius: 50%;
      height: 54px;
      object-fit: cover;
      width: 54px;
    }

    .member-specialist strong,
    .member-specialist span {
      display: block;
    }

    .member-specialist strong {
      font-family: "Cinzel Decorative", serif;
      font-size: 0.76rem;
      margin-top: 8px;
    }

    .member-specialist span {
      color: rgba(245, 240, 232, 0.62);
      font-family: Arial, sans-serif;
      font-size: 0.68rem;
      line-height: 1.3;
      margin-top: 4px;
      text-transform: none;
    }

    .member-tools {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 18px;
    }

    .member-tools button {
      align-items: flex-start;
      background: rgba(30, 11, 59, 0.52);
      border-color: rgba(201, 162, 39, 0.24);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      min-height: 98px;
      padding: 15px;
      text-align: left;
      text-transform: none;
      width: 100%;
    }

    .member-tools button strong {
      color: var(--gold);
      font-family: "Cinzel Decorative", serif;
      font-size: 0.8rem;
      line-height: 1.3;
    }

    .member-tools button span {
      color: rgba(245, 240, 232, 0.72);
      font-family: Arial, sans-serif;
      font-size: 0.84rem;
      line-height: 1.45;
      margin-top: 7px;
    }

    .member-reports {
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }

    .member-report {
      background: rgba(8, 5, 16, 0.58);
      border-left: 2px solid var(--gold);
      padding: 18px;
    }

    .member-report h4 {
      color: var(--pearl);
      font-family: "Cinzel Decorative", serif;
      font-size: 1rem;
      line-height: 1.35;
      margin: 0 0 12px;
    }

    .member-report h5 {
      color: var(--gold);
      font-family: Arial, sans-serif;
      font-size: 0.82rem;
      margin: 16px 0 6px;
      text-transform: uppercase;
    }

    .member-report p,
    .member-report li {
      color: rgba(245, 240, 232, 0.8);
      font-size: 1rem;
      line-height: 1.58;
    }

    .member-report ul,
    .member-report ol {
      margin: 8px 0 0;
      padding-left: 20px;
    }

    .chat-paid-actions {
      display: grid;
      gap: 8px;
      grid-template-columns: 1fr 1fr;
      margin-top: 10px;
    }

    .chat-paid-actions button {
      border-radius: 8px;
      font-size: 0.72rem;
      min-height: 40px;
      padding: 8px 10px;
      width: 100%;
    }

    .chat-avatar {
      position: relative;
    }

    .chat-avatar .avatar-initial {
      display: none;
      flex-basis: 100%;
      height: 100%;
      width: 100%;
    }

    .chat-avatar.has-initial img {
      display: none;
    }

    .chat-avatar.has-initial .avatar-initial {
      display: flex;
    }

    .chat-bubble-avatar.has-initial {
      align-items: center;
      background: rgba(201, 162, 39, 0.16);
      color: var(--gold);
      display: flex;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.76rem;
      font-weight: 700;
      justify-content: center;
    }

    .chat-bubble-avatar.has-initial img {
      display: none;
    }

    .chat-reading-strip {
      background: rgba(8, 5, 16, 0.62);
      border: 1px solid rgba(201, 162, 39, 0.18);
      border-radius: 14px;
      margin-top: 10px;
      padding: 10px;
    }

    .chat-reading-strip strong {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.74rem;
      line-height: 1.25;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .chat-card-strip {
      display: grid;
      gap: 8px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .chat-mini-card {
      align-items: center;
      background: rgba(30, 11, 59, 0.66);
      border: 1px solid rgba(201, 162, 39, 0.18);
      border-radius: 10px;
      display: flex;
      gap: 8px;
      min-width: 0;
      padding: 7px;
    }

    .chat-mini-card img {
      border-radius: 6px;
      flex: 0 0 28px;
      height: 42px;
      object-fit: cover;
      width: 28px;
    }

    .chat-mini-card span {
      color: rgba(245, 240, 232, 0.86);
      font-size: 0.78rem;
      line-height: 1.18;
      min-width: 0;
    }

    .chat-pay-card {
      background: linear-gradient(135deg, rgba(201, 162, 39, 0.16), rgba(74, 14, 46, 0.34));
      border: 1px solid rgba(201, 162, 39, 0.34);
      border-radius: 14px;
      margin-top: 10px;
      padding: 12px;
    }

    .chat-pay-card p {
      color: rgba(245, 240, 232, 0.84);
      font-size: 0.96rem;
      line-height: 1.42;
      margin: 0 0 10px;
    }

    .chat-pay-card .button {
      display: block;
      font-size: 0.82rem;
      min-height: 42px;
      padding: 11px 12px;
      text-align: center;
      width: 100%;
    }

    .admin-stats {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin: 28px 0;
    }

    .admin-stat,
    .admin-list,
    .admin-detail {
      background: rgba(8, 5, 16, 0.6);
      border: 1px solid rgba(201, 162, 39, 0.24);
      border-radius: 18px;
      padding: 16px;
    }

    .admin-stat strong {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 1.5rem;
      margin-bottom: 4px;
    }

    .admin-stat span {
      color: rgba(245, 240, 232, 0.72);
      font-size: 1rem;
    }

    .admin-layout {
      display: grid;
      gap: 18px;
      grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    }

    .admin-list {
      max-height: 620px;
      overflow-y: auto;
    }

    .admin-conversation {
      background: rgba(30, 11, 59, 0.42);
      border: 1px solid rgba(201, 162, 39, 0.16);
      border-radius: 14px;
      color: var(--pearl);
      cursor: pointer;
      margin-bottom: 10px;
      padding: 12px;
      text-align: left;
      width: 100%;
    }

    .admin-conversation strong {
      color: var(--gold);
      display: block;
      font-family: "Cinzel Decorative", serif;
      font-size: 0.85rem;
      margin-bottom: 6px;
    }

    .admin-conversation span {
      color: rgba(245, 240, 232, 0.72);
      display: block;
      font-size: 0.95rem;
      line-height: 1.42;
    }

    .admin-chat-log {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 16px;
      max-height: 420px;
      overflow-y: auto;
    }

    .admin-chat-log .chat-bubble {
      max-width: 92%;
    }

    .center {
      text-align: center;
    }

    .mt {
      margin-top: 24px;
    }

    @media (max-width: 980px) {
      .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .tarot-grid {
        gap: 14px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 640px;
      }
    }

    @media (max-width: 720px) {
      .screen {
        padding: 54px 16px 42px;
      }

      .topic-grid,
      .quiz-options,
      .summary-grid,
      .plans-grid {
        grid-template-columns: 1fr;
      }

      .topic-card {
        min-height: auto;
      }

      .quiz-option {
        min-height: auto;
      }

      .tarologa-signature {
        align-items: flex-start;
      }

      .tarot-grid {
        gap: 12px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 420px;
      }

      .tarot-card.is-selected {
        transform: scale(1.12) translateY(12px);
      }

      .tarot-card.is-selected:hover,
      .tarot-card.is-selected:focus-visible {
        transform: scale(1.12) translateY(12px);
      }

      .tarot-grid.has-selection {
        grid-template-columns: minmax(118px, 148px);
        min-height: 290px;
      }

      .reading-panel {
        margin-top: 30px;
        padding: 20px;
      }

      .bridge-visual {
        grid-template-columns: 86px 1fr 86px;
      }

      .tiny-card {
        min-height: 126px;
      }

      .mystery-mark {
        font-size: 2.2rem;
        height: 86px;
        width: 86px;
      }

      .chosen-row {
        gap: 12px;
      }

      .chat-shell {
        border-radius: 0;
        min-height: calc(100vh - 96px);
        width: 100%;
      }

      .chat-messages {
        min-height: 360px;
      }

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

      .member-specialists {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 430px) {
      button,
      a.button {
        border-radius: 20px;
        font-size: 0.82rem;
        line-height: 1.38;
        padding: 12px 16px;
        width: 100%;
      }

      .hero-title {
        font-size: 2.05rem;
        line-height: 1.18;
      }

      .screen-title {
        font-size: 1.78rem;
        line-height: 1.22;
      }

      .subtitle,
      .quiz-guidance,
      .body-copy,
      .human-note,
      .interpretation,
      .offer-notes {
        font-size: 1.1rem;
        line-height: 1.68;
      }

      .quiz-question {
        font-size: 1.48rem;
        line-height: 1.34;
      }

      .quiz-option {
        padding: 18px 16px;
      }

      .quiz-option strong {
        font-size: 0.98rem;
      }

      .quiz-option span,
      .summary-item span,
      .tarologa-signature p {
        font-size: 1.06rem;
        line-height: 1.56;
      }

      .human-panel,
      .reading-panel {
        padding: 20px 18px;
      }

      .tarot-grid {
        gap: 10px;
        min-height: 366px;
      }

      .keywords {
        font-size: 0.68rem;
      }

      .offer-overlay {
        inset: 72px 0 0;
        padding: 18px;
      }

      .offer-overlay p {
        font-size: 1.04rem;
        line-height: 1.56;
      }

      #tela15 {
        padding: 0;
      }

      #tela15 .chat-shell {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
        max-width: none;
        min-height: 100dvh;
        width: 100%;
      }

      .chat-header {
        gap: 10px;
        padding: 10px 12px;
      }

      .chat-avatar {
        flex-basis: 38px;
        height: 38px;
        width: 38px;
      }

      .chat-person strong {
        font-size: 0.86rem;
      }

      .chat-person span {
        font-size: 0.88rem;
      }

      .chat-plan {
        font-size: 0.64rem;
        padding: 6px 8px;
      }

      .chat-date {
        font-size: 0.58rem;
        letter-spacing: 0.04em;
        padding: 8px 10px;
      }

      .chat-messages {
        gap: 8px;
        min-height: 0;
        padding: 12px 10px;
      }

      .chat-bubble {
        border-radius: 14px;
        font-size: 1rem;
        line-height: 1.43;
        padding: 9px 11px;
      }

      .chat-row {
        gap: 7px;
        max-width: 94%;
      }

      .chat-bubble-avatar {
        flex-basis: 26px;
        height: 26px;
        width: 26px;
      }

      .chat-back {
        flex: 0 0 38px;
        width: 38px;
      }

      .chat-card-options {
        grid-template-columns: 1fr;
      }

      .chat-input-row {
        align-items: flex-end;
        gap: 8px;
        padding: 10px;
      }

      .chat-input-row button {
        flex: 0 0 auto;
        min-width: 78px;
        padding: 10px 13px;
        width: auto;
      }

      .chat-input-row textarea {
        border-radius: 18px;
        font-size: 1rem;
        max-height: 110px;
        min-height: 44px;
        padding: 10px 13px;
      }

      .chat-extra {
        padding: 0 10px 8px;
      }

      .chat-quick-options {
        max-width: 100%;
      }

      .chat-locked-card {
        border-radius: 13px;
        max-width: none;
        padding: 18px 16px 20px;
      }

      .chat-locked-card h3 {
        font-size: 1.36rem;
        margin-right: 68px;
      }

      .chat-locked-card p {
        font-size: 0.86rem;
      }

      .chat-locked-card::after {
        right: 18px;
      }

      .chat-locked-card::before {
        right: 32px;
      }

      .checkout-modal {
        align-items: stretch;
        padding: 0;
      }

      .checkout-modal-dialog {
        border: 0;
        border-radius: 0;
        height: 100dvh;
        max-width: none;
        width: 100%;
      }

      .checkout-modal-header {
        padding: 10px 12px;
      }

      .chat-disclaimer {
        font-size: 0.74rem;
        padding: 0 12px 9px;
      }

      .specialist-grid {
        grid-template-columns: 1fr;
        margin-top: 22px;
      }

      .specialist-card {
        border-radius: 14px;
        padding: 15px;
      }

      .specialist-card p {
        font-size: 1rem;
        line-height: 1.43;
      }

      .chat-reading-strip {
        padding: 8px;
      }

      .chat-card-strip {
        gap: 6px;
      }

      .chat-mini-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 6px;
      }

      .chat-mini-card img {
        height: 38px;
        width: 26px;
      }

      .chat-mini-card span {
        font-size: 0.72rem;
      }

      .member-page-header {
        align-items: flex-start;
        flex-direction: column;
      }

      .member-chat-button {
        width: 100%;
      }

      .member-summary-band {
        grid-template-columns: 1fr;
      }

      .member-summary-cards {
        justify-content: flex-start;
      }

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

      .member-tools,
      .chat-paid-actions {
        grid-template-columns: 1fr;
      }

      .member-access-panel {
        padding: 18px 15px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
      }
    }
