/* ============================================================
   Before, Stay or Go — Design System v9 "Therapeutic Clarity"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

:root {
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --warm-900:  #1a120a;
  --warm-800:  #2c1f0e;
  --warm-700:  #3d2c14;
  --warm-500:  #7a5c30;
  --warm-400:  #a07840;
  --warm-200:  #d4b896;
  --warm-100:  #ede0cc;
  --warm-50:   #faf4eb;
  --warm-20:   #fdf9f3;
  --amber:     #d4760a;
  --amber-lt:  #f09030;
  --stay:      #5a9e78;
  --unclear:   #b8942a;
  --go:        #c05a5a;
  --card-bg:   rgba(253,248,240,0.94);
  --card-border:rgba(180,148,100,0.20);
  --card-shadow:
    0 2px 4px rgba(26,18,10,0.05),
    0 8px 24px rgba(26,18,10,0.12),
    0 32px 72px rgba(26,18,10,0.18);
  --preview-bg: rgba(38,26,10,0.97);
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  28px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{height:100%;scroll-behavior:smooth;}
body{
  min-height:100%;
  font-family:var(--font-sans);
  background:#1a120a;
  color:var(--warm-900);
  -webkit-font-smoothing:antialiased;
}
body::before{display:none!important;}
button{font-family:var(--font-sans);cursor:pointer;border:none;background:none;}
.app{position:relative;}
.screen{width:100%;}
.hidden{display:none!important;}

@keyframes fadeUp{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes pulseGlow{
  0%,100%{box-shadow:0 6px 28px rgba(212,118,10,0.42),inset 0 1px 0 rgba(255,255,255,0.20);}
  50%{box-shadow:0 8px 44px rgba(212,118,10,0.65),inset 0 1px 0 rgba(255,255,255,0.26);}
}

/* ══ HOME ══ */
/* ════════════════════════════════════════════
   HOME SCREEN v3 — Fully integrated
   Zdjęcie fullscreen, tekst zintegrowany
════════════════════════════════════════════ */

#screen-home {
  position: fixed;
  inset: 0;
  height: 100dvh;
  overflow: hidden;
  /* Zdjęcie — wyśrodkowane na parze */
  background:
    url('assets/hero-bg.webp') center 35% / cover no-repeat,
    linear-gradient(160deg, #1a0e06 0%, #0a0705 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
#screen-home.hidden { display: none !important; z-index: -1 !important; }

/* Gradient — ciemny u góry, przezroczysty w środku, bardzo ciemny u dołu */
#screen-home::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,2,1,0.78) 0%,
      rgba(4,2,1,0.30) 18%,
      rgba(4,2,1,0)    38%,
      rgba(4,2,1,0)    52%,
      rgba(4,2,1,0.55) 68%,
      rgba(4,2,1,0.88) 82%,
      rgba(4,2,1,0.97) 100%
    );
  pointer-events: none;
  z-index: 0;
}

/* Wszystkie dzieci nad gradientem */
#screen-home > * { position: relative; z-index: 1; }

/* ── GÓRA: logo ── */
.home-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(44px, 8vh, 68px);
  gap: 1px;
  animation: homeFadeDown 0.7s ease forwards;
}
.home-logo-before {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 2.8vw, 17px);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.home-logo-main {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
  line-height: 1;
}
.home-logo-or {
  font-size: 0.60em;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-serif);
  font-style: italic;
}
.home-logo-go { color: var(--amber); }

/* ── ŚRODEK: rotujące hasła — oś okna ── */
.home-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Wyśrodkowane w osi okna — okno zaczyna się ok 20% od góry ekranu */
  padding: 0 clamp(40px,9vw,72px);
  text-align: center;
}
.home-rotating-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 6.5vw, 36px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.38;
  max-width: 280px;
  letter-spacing: 0.01em;
  /* Wielowarstwowy cień — czytelny na każdym tle */
  text-shadow:
    0 0  4px rgba(0,0,0,0.95),
    0 2px 8px rgba(0,0,0,0.90),
    0 4px 20px rgba(0,0,0,0.75),
    0 8px 40px rgba(0,0,0,0.50);
  transition: opacity 0.42s ease, transform 0.42s ease;
  opacity: 0;
  transform: translateY(10px);
}
.home-rt-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.home-rt-hidden {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
}

/* ── DÓŁ: headline + CTA ── */
.home-bottom {
  width: 100%;
  padding: 0 clamp(22px,5.5vw,40px) clamp(28px,6vh,50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  animation: homeFadeUp 0.8s 0.10s ease both;
}

.home-sub {
  font-size: clamp(13px, 2.2vw, 15px);
  color: rgba(255,255,255,0.38);
  line-height: 1.60;
  margin: 0 0 6px;
  max-width: 300px;
}

#startBtn {
  width: min(380px, 88vw);
  padding: 19px 28px;
  font-size: clamp(15.5px, 2.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 50px;
  background: linear-gradient(160deg, var(--amber-lt) 0%, var(--amber) 100%);
  color: #fff;
  box-shadow:
    0 8px 28px rgba(212,118,10,0.50),
    0 2px 8px rgba(0,0,0,0.50);
  animation: pulseGlow 3.2s ease-in-out infinite;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s, box-shadow 0.12s;
}
#startBtn:active {
  transform: scale(0.97);
  animation: none;
}

.home-trust {
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.07em;
  margin: 0;
}

/* Animacje */
@keyframes homeFadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes homeFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tablet — więcej przestrzeni, mniejszy gradient */
@media (min-width: 600px) {
  #screen-home::before {
    background:
      linear-gradient(to bottom,
        rgba(4,2,1,0.65) 0%,
        rgba(4,2,1,0.15) 20%,
        rgba(4,2,1,0)    40%,
        rgba(4,2,1,0)    55%,
        rgba(4,2,1,0.60) 72%,
        rgba(4,2,1,0.92) 100%
      );
  }
  .home-headline { font-size: 32px; }
}


/* ══ BG SCREENS ══ */
.bg-screen{
  position:relative;min-height:100dvh;
  display:flex;flex-direction:column;align-items:center;
  padding:0 16px 60px;
  animation:fadeIn 0.30s ease;
}
.bg-screen::before{
  content:"";position:fixed;inset:0;z-index:0;
  background-size:cover;background-position:center top;background-repeat:no-repeat;
  pointer-events:none;
}
.bg-screen::after{
  content:"";position:fixed;inset:0;z-index:0;
  background:rgba(12,6,2,0.30);pointer-events:none;
}
.bg-screen>*{position:relative;z-index:1;}
#screen-quiz.bg-screen::before    {background-image:url('assets/questions-bg.webp');}
#screen-report.bg-screen::before,
#paywall.bg-screen::before,
#fullreport.bg-screen::before     {background-image:url('assets/hero-bg.webp');}

/* ══ LOGO ══ */
.screen-logo{
  display:block;text-align:center;
  margin:clamp(18px,3.5vh,32px) auto clamp(12px,2vh,20px);
  line-height:1;
  filter:drop-shadow(0 3px 18px rgba(0,0,0,0.60));
  animation:fadeUp 0.50s ease both;
}
.logo-before{
  display:block;font-family:var(--font-serif);font-style:italic;
  font-size:clamp(19px,3.2vw,29px);color:rgba(255,255,255,0.90);
  margin-bottom:2px;letter-spacing:0.03em;
}
.logo-stay{font-size:clamp(26px,4.8vw,42px);font-weight:800;color:#fff;letter-spacing:-0.01em;text-shadow:0 2px 14px rgba(0,0,0,0.45);}
.logo-or{font-size:clamp(15px,2.6vw,23px);font-weight:300;color:rgba(255,255,255,0.82);font-style:italic;}
.logo-go{font-size:clamp(26px,4.8vw,42px);font-weight:800;font-style:italic;color:#f0b040;text-shadow:0 2px 14px rgba(0,0,0,0.40);}

/* ══ KARTA ══ */
.parchment{
  width:min(680px,100%);
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--radius-xl);
  box-shadow:var(--card-shadow);
  overflow:hidden;
  animation:fadeUp 0.50s 0.08s ease both;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

/* ══ QUIZ ══ */
#screen-quiz{justify-content:center;padding-top:0;}
#screen-quiz .parchment{margin-bottom:14px;}

.topbar{
  display:flex;align-items:center;gap:12px;
  padding:clamp(16px,3vh,26px) clamp(20px,5vw,32px) 16px;
  border-bottom:1px solid rgba(180,148,100,0.14);
  margin-bottom:20px;
}
.progress{flex:1;height:5px;background:rgba(180,148,100,0.18);border-radius:999px;overflow:visible;}
.progress-bar{
  height:100%;
  background:linear-gradient(90deg,var(--amber-lt),var(--amber));
  border-radius:999px;position:relative;
  transition:width 0.50s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 0 10px rgba(212,118,10,0.45);
}
.progress-text{font-size:12px;font-weight:700;color:var(--warm-400);min-width:36px;text-align:right;letter-spacing:0.04em;}

.label{ display:none; }
.question{
  font-family:var(--font-sans);
  font-size:clamp(19px,3.6vw,27px);
  font-weight:700;
  color:var(--warm-900);
  line-height:1.32;
  padding:0 clamp(20px,5vw,32px);
  margin-bottom:8px;
}
.helper{
  font-size:13.5px;color:var(--warm-500);
  padding:0 clamp(20px,5vw,32px);
  margin-bottom:18px;
  font-style:italic;
}
.choices{
  display:grid;gap:9px;
  padding:0 clamp(20px,5vw,32px);
}
.choice{
  width:100%;text-align:left;
  padding:clamp(13px,2.2vh,17px) clamp(16px,3vw,20px);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,0.52);
  border:1.5px solid rgba(180,148,100,0.26);
  color:var(--warm-800);
  font-size:clamp(14px,2.1vw,16px);
  font-weight:500;line-height:1.35;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
  transition:background 0.14s,border-color 0.14s,transform 0.09s,box-shadow 0.14s;
}
/* Hover tylko na urządzeniach z prawdziwym kursorem — nie na dotykowych */
@media (hover: hover) {
  .choice:hover {
    background: rgba(255,255,255,0.85);
    border-color: rgba(180,148,100,0.52);
    box-shadow: 0 2px 10px rgba(26,18,10,0.07);
  }
}
/* Active — zawsze, ale krótko */
.choice:active { transform: scale(0.99); background: rgba(255,255,255,0.85); }
/* Focus — tylko klawiatura, nie dotyk */
.choice:focus { outline: none; }
.choice:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.choice.selected{
  background:rgba(212,118,10,0.09);
  border-color:var(--amber);
  color:var(--warm-900);font-weight:600;
  box-shadow:0 0 0 3px rgba(212,118,10,0.10);
}
.quiz-hint{
  text-align:center;font-size:12.5px;color:var(--warm-400);
  padding:14px clamp(20px,5vw,32px) 0;
  font-style:italic;
}
.actions{
  display:flex;gap:10px;
  padding:14px clamp(20px,5vw,32px) clamp(16px,3vh,26px);
}
.primary{
  padding:12px 22px;border-radius:var(--radius-sm);
  background:linear-gradient(160deg,var(--amber-lt),var(--amber));
  color:#fff;font-size:14.5px;font-weight:700;
  box-shadow:0 3px 12px rgba(212,118,10,0.28);
  transition:transform 0.1s,box-shadow 0.1s;
}
.primary:disabled{opacity:0.36;cursor:not-allowed;}
.primary:not(:disabled):active{transform:scale(0.98);}
.secondary{
  padding:12px 18px;border-radius:var(--radius-sm);
  border:1.5px solid rgba(180,148,100,0.36);
  color:var(--warm-500);font-size:14.5px;font-weight:600;
  transition:border-color 0.14s,color 0.14s;
}
.secondary:hover{border-color:var(--warm-400);color:var(--warm-700);}

.quiz-disclaimer{
  width:min(680px,100%);text-align:center;
  font-size:14px;color:rgba(255,255,255,0.80);line-height:1.65;
  padding:0 20px;text-shadow:0 1px 8px rgba(0,0,0,0.80);
  font-weight:400;
}

/* ══ RAPORT ══ */
#screen-report,#paywall,#fullreport{padding-top:0;justify-content:flex-start;}

.report-header{
  background:linear-gradient(160deg,var(--warm-800) 0%,var(--warm-900) 100%);
  padding:clamp(22px,4vh,34px) clamp(22px,5vw,40px) clamp(18px,3.5vh,28px);
  text-align:center;position:relative;overflow:hidden;
}
.report-header::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 80% 55% at 50% 0%,rgba(212,118,10,0.13) 0%,transparent 70%);
}
.report-header-title{
  font-size:11px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;
  color:rgba(212,180,120,0.55);margin-bottom:10px;
}
.report-header-state{
  font-family:var(--font-sans);
  font-size:clamp(28px,5.5vw,42px);font-weight:800;
  color:#f0c060;letter-spacing:0.06em;
  text-shadow:0 2px 20px rgba(240,192,96,0.22);
  line-height:1.1;
}
.report-title{display:none!important;}

.report-meter-section{
  padding:clamp(16px,2.8vh,24px) clamp(22px,5vw,40px) clamp(12px,2.2vh,18px);
  background:var(--warm-20);
  border-bottom:1px solid rgba(180,148,100,0.16);
}
.leaning-meter{margin-bottom:12px;}
.meter-labels{display:flex;justify-content:space-between;font-size:10px;font-weight:800;letter-spacing:0.12em;color:var(--warm-400);margin-bottom:8px;}
.meter-track{
  position:relative;height:8px;border-radius:999px;
  background:linear-gradient(90deg,rgba(90,158,120,0.22) 0%,rgba(184,148,42,0.22) 40%,rgba(192,90,90,0.22) 100%);
  border:1px solid rgba(180,148,100,0.18);
}
.meter-dot{
  position:absolute;top:50%;transform:translate(-50%,-50%);
  width:16px;height:16px;border-radius:50%;
  background:var(--amber);border:3px solid #fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.22);
  transition:left 0.6s cubic-bezier(0.4,0,0.2,1);
}
.meter-dot.stay{background:var(--stay);}
.meter-dot.unclear{background:var(--unclear);}
.meter-dot.go{background:var(--go);}
.meter-stats{display:flex;gap:8px;flex-wrap:wrap;}
.stat-pill{
  display:inline-flex;align-items:center;gap:5px;
  padding:4px 11px;border-radius:999px;
  background:rgba(255,255,255,0.65);border:1px solid rgba(180,148,100,0.20);
  font-size:12px;font-weight:600;color:var(--warm-700);
}
.stat-dot{width:7px;height:7px;border-radius:50%;}
.stat-dot.stay{background:var(--stay);}
.stat-dot.unclear{background:var(--unclear);}
.stat-dot.go{background:var(--go);}

#reportBody{
  padding: 0;
  background: var(--warm-50);
}
/* ════════════════════════════════════════════
   FREE REPORT — Reveal design
   Strategia: pokaż stan, urwij przed wyjaśnieniem
════════════════════════════════════════════ */

/* Wrapper */
.free-report.fr-reveal {
  padding: 0;
}

/* ── Wielkie ujawnienie stanu ── */
.fr-state-reveal {
  padding: clamp(28px,5vh,44px) clamp(24px,5vw,36px) clamp(24px,4vh,36px);
  background: linear-gradient(160deg, #1e1408 0%, #120d06 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fr-state-reveal::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% -5%, rgba(210,155,60,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.fr-state-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(210,155,60,0.50);
  margin-bottom: 12px;
  position: relative;
}
.fr-state-name {
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #f0c060;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  text-shadow: 0 2px 24px rgba(210,155,60,0.30);
}
.fr-state-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 2.8vw, 19px);
  color: rgba(255,255,255,0.75);
  line-height: 1.60;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
}

/* ── Wskaźniki stanów ── */
.fr-signals {
  display: flex;
  justify-content: center;
  gap: 6px 18px;
  flex-wrap: wrap;
  padding: 16px clamp(16px,4vw,28px);
  background: rgba(255,255,255,0.60);
  border-bottom: 1px solid rgba(180,148,100,0.14);
}
.fr-signal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--warm-400);
}
.fr-signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(180,148,100,0.25);
  border: 1.5px solid rgba(180,148,100,0.30);
  flex-shrink: 0;
}
.fr-signal-dot.active {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 6px rgba(212,118,10,0.50);
}
.fr-signal:has(.fr-signal-dot.active) {
  color: var(--amber);
  font-weight: 700;
}

/* ── Zablokowane pozycje ── */
.fr-tease {
  padding: clamp(20px,3.5vh,28px) clamp(20px,4.5vw,32px);
  background: var(--warm-50);
}
.fr-tease-intro {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-400);
  margin-bottom: 14px;
}
.fr-tease-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px clamp(20px,4.5vw,32px);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(180,148,100,0.12);
  margin-bottom: 0;
}
.fr-tease-item:last-child { border-bottom: none; }
.fr-tease-icon {
  font-size: 18px;
  flex-shrink: 0;
  filter: grayscale(0.3);
  line-height: 1.3;
}
.fr-tease-item div {
  font-size: 14px;
  line-height: 1.60;
  color: var(--warm-700);
}
.fr-tease-item strong {
  color: var(--warm-900);
  font-weight: 700;
}

/* ── Brama płatności ── */
.fr-gate {
  padding: clamp(20px,3.5vh,28px) clamp(20px,4.5vw,32px);
  background: linear-gradient(180deg, var(--warm-50) 0%, rgba(237,222,198,0.97) 100%);
  border-top: 1px solid rgba(180,148,100,0.16);
  text-align: center;
}
.fr-gate-text {
  font-size: 14px;
  color: var(--warm-500);
  line-height: 1.65;
  margin-bottom: 4px;
}
.fr-gate-price {
  font-size: 13px;
  color: var(--warm-400);
  margin-bottom: 0;
}
.fr-gate-price strong {
  color: var(--amber);
  font-weight: 800;
  font-size: 15px;
}

/* Stare klasy zachowane dla kompatybilności */
.free-state,.state-map,.free-section-title,
.rsi-row,.report-lede,.report-block,
.full-report-preview { display: none !important; }

.report-cta-section{
  padding:clamp(22px,4vh,34px) clamp(22px,5vw,40px) clamp(24px,4.5vh,38px);
  background:linear-gradient(180deg,var(--warm-50) 0%,rgba(237,222,198,0.96) 100%);
  border-top:1px solid rgba(180,148,100,0.20);
  text-align:center;
}
.report-cta-eyebrow{
  font-size:10.5px;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--amber);margin-bottom:10px;
}
.report-cta-headline{
  font-family:var(--font-sans);
  font-size:clamp(22px,4.2vw,30px);font-weight:800;
  color:var(--warm-900);line-height:1.20;
  margin-bottom:10px;letter-spacing:-0.02em;
}
.report-cta-sub{
  font-size:14.5px;color:var(--warm-500);line-height:1.65;
  margin:0 auto 24px;max-width:360px;
}
.report-unlock-btn{
  display:block;width:100%;max-width:400px;
  margin:0 auto 14px;padding:19px 28px;
  font-size:clamp(16px,3vw,19px);font-weight:700;letter-spacing:0.01em;
  border-radius:50px;
  background:linear-gradient(160deg,var(--amber-lt) 0%,var(--amber) 100%);
  color:#fff;
  animation:pulseGlow 3s ease-in-out infinite;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
  transition:transform 0.12s;
}
.report-unlock-btn:active{transform:scale(0.98);animation:none;}
.report-trust-row{
  display:flex;justify-content:center;gap:clamp(10px,2.5vw,22px);
  margin-bottom:14px;flex-wrap:wrap;
}
.report-trust-item{
  font-size:12px;color:var(--warm-500);font-weight:600;
  display:flex;align-items:center;gap:4px;
}
.report-trust-item::before{content:"✓";color:var(--stay);font-weight:900;}
.report-restart-btn{
  font-size:12.5px;color:rgba(122,92,48,0.42);
  text-decoration:underline;text-underline-offset:3px;
  display:block;margin:0 auto;padding:6px;
  transition:color 0.14s;
}
.report-restart-btn:hover{color:var(--warm-500);}

.report-fine{display:none;}

/* ══ TABLET (768px+) ══ */
@media(min-width:768px){
  .bg-screen{padding:0 28px 64px;}
  .logo-before{font-size:25px;} .logo-stay,.logo-go{font-size:38px;} .logo-or{font-size:21px;}
  .parchment{width:min(720px,100%);}
  #screen-quiz{justify-content:center;}
  .question{font-size:25px;}
  .choices:not(:has(.choice:nth-child(5))){grid-template-columns:1fr 1fr;}
  .choice{font-size:15.5px;}
  .report-header{padding:30px 42px 26px;}
  .report-header-state{font-size:38px;}
  .report-meter-section{padding:20px 42px 16px;}
  #reportBody{padding:26px 42px 0;}
  .full-report-preview{padding:26px 42px 22px;}
  .report-cta-section{padding:30px 42px 34px;}
  .report-lede{font-size:19px!important;}
  .report-block div{font-size:15px;}
  .frp-item div{font-size:15px;}
}

/* ══ TABLET LANDSCAPE / DESKTOP (1024px+) ══ */
@media(min-width:1024px){
  .screen-logo{margin:24px auto 18px;}
  .logo-before{font-size:28px;} .logo-stay,.logo-go{font-size:44px;} .logo-or{font-size:24px;}
  .parchment{width:min(780px,88vw);}
  .choices{grid-template-columns:1fr!important;}
  .choice{font-size:16.5px;padding:17px 22px;}
  #screen-report .parchment{width:min(840px,88vw);}
  #reportBody .free-report{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-items:start;}
  #reportBody .free-report .rsi-row,
  #reportBody .free-report .report-lede{grid-column:1/-1;}
  .report-header{padding:34px 50px 28px;} .report-header-state{font-size:42px;}
  .report-meter-section{padding:22px 50px 18px;}
  #reportBody{padding:30px 50px 0;}
  .full-report-preview{padding:30px 50px 26px;}
  .report-cta-section{padding:34px 50px 38px;}
  .report-cta-headline{font-size:28px;}
  .report-unlock-btn{font-size:19px;max-width:440px;}
  .home-cta-wrap{width:min(420px,50vw);}
  #startBtn{font-size:21px;padding:22px 36px;}
}

/* ══ DUŻY DESKTOP (1280px+) ══ */
@media(min-width:1280px){
  .parchment{width:min(860px,84vw);}
  #screen-report .parchment{width:min(900px,84vw);}
  .report-lede{font-size:21px!important;}
  .report-cta-headline{font-size:31px;}
}

/* ══ LANDSCAPE TELEFON ══ */
@media(max-height:520px) and (orientation:landscape){
  .screen-logo{margin:7px auto;}
  .logo-before{font-size:14px;} .logo-stay,.logo-go{font-size:22px;}
  .question{font-size:16px;}
  .choice{padding:10px 16px;font-size:13.5px;}
  .topbar{padding-top:12px;padding-bottom:12px;margin-bottom:12px;}
  .report-header{padding:14px 22px;}
}

/* ══ MISC ══ */
button:focus-visible{outline:2px solid var(--amber);outline-offset:3px;}
::selection{background:rgba(212,118,10,0.18);color:var(--warm-900);}

/* ════════════════════════════════════════════
   SHARE SCREEN — 9:16 viral card
════════════════════════════════════════════ */

/* Pełny ekran — wycentrowany */
#screen-share {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: #0e0806;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 16px 24px;
  z-index: 200;
  animation: fadeIn 0.3s ease;
}

/* Karta — proporcje 9:16, max pasuje na ekran */
.share-card {
  position: relative;
  width: min(360px, calc(100dvh * 9 / 16 - 32px), calc(100vw - 32px));
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 36px 28px 32px;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.3),
    0 24px 64px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);
}

/* Dynamiczne tło per-stan — zmieniane przez JS */
.share-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: background 0.4s ease;
}

/* Stany kolorystyczne */
.share-bg.state-suspension {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(140,160,200,0.35) 0%, transparent 60%),
    linear-gradient(170deg, #1a2235 0%, #0e1520 40%, #12100e 100%);
}
.share-bg.state-false-comfort {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(180,155,80,0.30) 0%, transparent 60%),
    linear-gradient(170deg, #221a0a 0%, #16120a 40%, #0e0c08 100%);
}
.share-bg.state-escape {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(160,100,80,0.30) 0%, transparent 60%),
    linear-gradient(170deg, #221210 0%, #160e0c 40%, #0e0a08 100%);
}
.share-bg.state-chaos {
  background:
    radial-gradient(ellipse 100% 60% at 30% 10%, rgba(180,100,40,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 70% 80%, rgba(100,60,120,0.20) 0%, transparent 55%),
    linear-gradient(170deg, #1e1408 0%, #120e0c 40%, #0c0a10 100%);
}

/* Texture overlay */
.share-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  mix-blend-mode: screen;
}

.share-card > * { position: relative; z-index: 2; }

/* Logo na karcie */
.share-logo {
  text-align: center;
  line-height: 1.1;
}
.share-logo-before {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 4vw, 18px);
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.share-logo-main {
  display: block;
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 800;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.01em;
}
.share-logo-or {
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 0.75em;
}

/* Główny wynik — centrum karty */
.share-result-wrap {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.share-result-label {
  font-size: clamp(10px, 2.5vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
}
.share-state {
  font-size: clamp(44px, 11vw, 56px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
  /* Kolor per-stan nadawany przez JS */
}
.share-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 3.5vw, 17px);
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  max-width: 240px;
  text-align: center;
}

/* Meter */
.share-meter-wrap {
  width: 100%;
  padding: 0 4px;
}
.share-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: clamp(9px, 2.2vw, 11px);
  font-weight: 700;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 8px;
}
.share-meter-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: visible;
}
.share-meter-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.share-meter-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.90);
  box-shadow: 0 0 12px rgba(255,255,255,0.25);
  transition: left 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* Cytat */
.share-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(12px, 3vw, 14px);
  color: rgba(255,255,255,0.45);
  line-height: 1.60;
  padding: 16px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Zaproszenie i URL */
.share-cta-text {
  font-size: clamp(13px, 3.2vw, 16px);
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 6px;
}
.share-url {
  font-size: clamp(10px, 2.5vw, 12px);
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 4px;
}

/* Przyciski poza kartą */
.share-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  margin-top: 16px;
}
.share-btn-primary {
  width: 100%;
  padding: 17px 24px;
  border-radius: 50px;
  background: linear-gradient(160deg, var(--amber-lt), var(--amber));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(212,118,10,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  touch-action: manipulation;
  transition: transform 0.1s;
}
.share-btn-primary:active { transform: scale(0.98); }
.share-btn-icon {
  font-size: 18px;
  line-height: 1;
}
.share-btn-secondary {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.14s;
}
.share-btn-secondary:hover { color: rgba(255,255,255,0.70); }

/* Kolory stanu na karcie share */
.share-state.state-suspension { color: #a0c0e8; }
.share-state.state-false-comfort { color: #e8c870; }
.share-state.state-escape { color: #e89070; }
.share-state.state-chaos { color: #f0a848; }

.share-meter-dot.state-suspension,
.share-meter-fill.state-suspension { background: #a0c0e8; }
.share-meter-dot.state-false-comfort,
.share-meter-fill.state-false-comfort { background: #e8c870; }
.share-meter-dot.state-escape,
.share-meter-fill.state-escape { background: #e89070; }
.share-meter-dot.state-chaos,
.share-meter-fill.state-chaos { background: #f0a848; }

/* Tablet / desktop — większa karta */
@media (min-width: 768px) {
  .share-card {
    width: min(400px, calc(100dvh * 9 / 16 - 64px));
  }
}

/* Przycisk "Share your result" w raporcie — nad CTA */
.open-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  padding: 15px 24px;
  border-radius: 50px;
  border: 2px solid rgba(180,148,100,0.35);
  background: rgba(255,255,255,0.55);
  color: var(--warm-700);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.15s, border-color 0.15s, transform 0.10s;
  touch-action: manipulation;
}
.open-share-btn:hover {
  background: rgba(255,255,255,0.80);
  border-color: rgba(180,148,100,0.60);
}
.open-share-btn:active { transform: scale(0.98); }
.osb-icon {
  color: var(--amber);
  font-size: 14px;
}

/* ════════════════════════════════════════════
   WAITLIST — "Coming Soon"
════════════════════════════════════════════ */
#screen-waitlist { justify-content: center; }

.wl-card {
  width: min(520px, 100%);
  padding: 0;
}

.wl-top {
  padding: clamp(28px,5vh,44px) clamp(24px,5vw,40px) clamp(22px,4vh,36px);
  text-align: center;
  border-bottom: 1px solid rgba(180,148,100,0.16);
}

.wl-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,118,10,0.10);
  border: 1px solid rgba(212,118,10,0.22);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.wl-headline {
  font-family: var(--font-sans);
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 800;
  color: var(--warm-900);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.wl-sub {
  font-size: 15px;
  color: var(--warm-500);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto;
}

/* Formularz */
.wl-form {
  padding: clamp(22px,4vh,34px) clamp(24px,5vw,40px) clamp(16px,3vh,26px);
}

.wl-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.wl-input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(180,148,100,0.32);
  background: rgba(255,255,255,0.70);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--warm-900);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.wl-input::placeholder { color: var(--warm-400); }
.wl-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,118,10,0.12);
  background: #fff;
}
.wl-input.error {
  border-color: var(--go);
  box-shadow: 0 0 0 3px rgba(192,90,90,0.10);
}

.wl-submit {
  padding: 15px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--amber-lt), var(--amber));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,118,10,0.35);
  transition: transform 0.1s, opacity 0.15s;
  flex-shrink: 0;
}
.wl-submit:active { transform: scale(0.97); }
.wl-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.wl-privacy {
  font-size: 12px;
  color: var(--warm-400);
  text-align: center;
  font-style: italic;
}

/* Sukces */
.wl-success {
  padding: clamp(28px,5vh,44px) clamp(24px,5vw,40px);
  text-align: center;
}
.wl-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(90,158,120,0.12);
  border: 2px solid rgba(90,158,120,0.35);
  color: var(--stay);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.wl-success-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--warm-800);
  line-height: 1.6;
}

/* Powrót */
.wl-back {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--warm-400);
  border-top: 1px solid rgba(180,148,100,0.14);
  transition: color 0.14s, background 0.14s;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.wl-back:hover { color: var(--warm-600); background: rgba(180,148,100,0.05); }

/* Mobile — input i przycisk pionowo */
@media (max-width: 400px) {
  .wl-input-wrap { flex-direction: column; }
  .wl-submit { width: 100%; padding: 16px; }
}

/* ════════════════════════════════════════════
   PŁATNY RAPORT — paid-report
════════════════════════════════════════════ */
.pr-loading, .pr-error {
  text-align: center;
  padding: 60px 24px;
  font-size: 16px;
  color: var(--warm-500);
  font-style: italic;
}
.pr-error { color: var(--go); }

.paid-report {
  font-family: var(--font-sans);
}

/* Nagłówek */
.pr-header {
  background: linear-gradient(160deg, var(--warm-800), var(--warm-900));
  padding: clamp(24px,4vh,36px) clamp(24px,5vw,40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pr-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%,
    rgba(212,118,10,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.pr-header-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(212,180,120,0.55);
  margin-bottom: 10px; position: relative;
}
.pr-header-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px,3vw,20px);
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

/* Sekcje */
.pr-sections {
  padding: clamp(24px,4vh,36px) clamp(24px,5vw,40px);
  background: var(--warm-50);
}

.pr-section {
  padding: clamp(20px,3.5vh,28px) clamp(20px,4vw,28px);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(180,148,100,0.18);
  border-radius: var(--radius-md);
  margin-bottom: 0;
}

/* Otwarcie — wyróżnione */
.pr-opening {
  background: rgba(212,118,10,0.06);
  border-color: rgba(212,118,10,0.20);
}

/* Zamknięcie — wyróżnione */
.pr-closing {
  background: linear-gradient(135deg,
    rgba(90,158,120,0.06) 0%,
    rgba(255,255,255,0.70) 100%);
  border-color: rgba(90,158,120,0.22);
}

.pr-section-title {
  font-size: clamp(15px,2.5vw,17px);
  font-weight: 800;
  color: var(--warm-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.pr-p {
  font-size: clamp(15px,2.2vw,16.5px);
  line-height: 1.80;
  color: var(--warm-800);
  margin-bottom: 12px;
}
.pr-p:last-child { margin-bottom: 0; }

/* Separator między sekcjami */
.pr-divider {
  height: 1px;
  background: rgba(180,148,100,0.14);
  margin: 16px 0;
  position: relative;
}
.pr-divider::before {
  content: "·  ·  ·";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--warm-50);
  padding: 0 12px;
  font-size: 11px;
  color: rgba(160,120,60,0.35);
  letter-spacing: 0.15em;
}

/* Footer */
.pr-footer {
  padding: clamp(20px,3.5vh,28px) clamp(24px,5vw,40px);
  text-align: center;
  border-top: 1px solid rgba(180,148,100,0.16);
  background: linear-gradient(180deg, var(--warm-50), rgba(237,222,198,0.95));
}
.pr-footer-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: rgba(122,92,48,0.40);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pr-restart {
  font-size: 13px;
  color: rgba(122,92,48,0.40);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.14s;
}
.pr-restart:hover { color: var(--warm-500); }

/* Tablet */
@media (min-width: 768px) {
  .pr-sections { padding: 32px 44px; }
  .pr-section { padding: 26px 30px; }
  .pr-section-title { font-size: 18px; }
  .pr-p { font-size: 16.5px; }
  .pr-header { padding: 32px 44px; }
}

/* ── Ikonki w płatnym raporcie ── */
.pr-section-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
}
.pr-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
  filter: saturate(0.85);
}
.pr-section-head .pr-section-title {
  margin-bottom: 0;
}


/* ════════════════════════════════════════════
   PAID REPORT — pełnoekranowy, premium
════════════════════════════════════════════ */

.fullreport-body {
  width: 100%;
  min-height: 100dvh;
}

.paid-report-v2 {
  font-family: var(--font-sans);
  background: #0c0806;
  min-height: 100dvh;
  width: 100%;
}

/* ── HERO nagłówek ── */
.prv2-hero {
  position: relative;
  min-height: 52vw;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px,8vh,72px) clamp(24px,6vw,60px) clamp(32px,6vh,56px);
  overflow: hidden;
  background: linear-gradient(170deg, #1e1408 0%, #120d06 50%, #0c0806 100%);
}
.prv2-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(210,150,60,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(140,80,120,0.10) 0%, transparent 55%);
  pointer-events: none;
}
/* Grain */
.prv2-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  mix-blend-mode: screen;
}
.prv2-hero > * { position: relative; z-index: 1; }

.prv2-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 2.5vw, 17px);
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.prv2-logo strong {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 800;
  color: rgba(255,255,255,0.40);
}
.prv2-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(210,150,60,0.55);
  margin-bottom: 14px;
}
.prv2-variant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.prv2-variant-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e89050;
  display: inline-block;
}
.prv2-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.50;
  margin-bottom: 0;
  max-width: 500px;
}
.prv2-headline em {
  font-style: normal;
  font-weight: 700;
  color: #f0c060;
}

/* Separator wave */
.prv2-wave {
  width: 100%;
  line-height: 0;
  background: #0c0806;
  overflow: hidden;
}
.prv2-wave svg { display: block; width: 100%; }

/* ── Sekcje ── */
.prv2-sections {
  background: #f7f1e7;
  padding: clamp(8px,2vw,16px) clamp(12px,3vw,24px) clamp(24px,4vh,40px);
  max-width: 780px;
  margin: 0 auto;
}

/* Każda sekcja */
.prs-block {
  position: relative;
  margin-bottom: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(26,18,10,0.06), 0 4px 16px rgba(26,18,10,0.08);
  /* animacja */
  opacity: 0;
  transform: translateY(14px);
}
.prs-block.prs-animate {
  animation: prsFadeUp 0.55s ease forwards;
}
@keyframes prsFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Kolorowy pasek na górze każdej sekcji */
.prs-bar {
  height: 3px;
  background: var(--accent, #c8a05a);
  width: 100%;
}

/* Wnętrze sekcji */
.prs-inner {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0;
  padding: clamp(18px,3vw,26px) clamp(18px,3.5vw,28px) clamp(18px,3vw,26px) clamp(14px,2.5vw,20px);
}

/* Lewa kolumna: numer + ikona */
.prs-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  gap: 10px;
}
.prs-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--accent, #c8a05a);
  opacity: 0.70;
  line-height: 1;
}
.prs-icon {
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1;
  filter: saturate(0.78);
}

/* Prawa kolumna: treść */
.prs-content { }
.prs-title {
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 800;
  color: #1a120a;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--accent, rgba(200,160,90,0.30));
}
.prs-p {
  font-size: clamp(14.5px, 2.1vw, 16px);
  line-height: 1.82;
  color: #3d2c14;
  margin-bottom: 9px;
}
.prs-p:last-child { margin-bottom: 0; }
.prs-p:first-child { font-weight: 500; color: #1a120a; }

/* Otwarcie — złote tło */
.prs-opening {
  background: linear-gradient(135deg, rgba(210,160,70,0.09), #fff 55%);
}
.prs-opening .prs-title { border-bottom-color: rgba(210,150,60,0.40); }

/* Zamknięcie — zielonkawe tło */
.prs-closing {
  background: linear-gradient(135deg, rgba(80,140,110,0.08), #fff 55%);
}
.prs-closing .prs-title { border-bottom-color: rgba(80,140,110,0.35); }

/* ── Dark footer ── */
.prv2-footer {
  background: linear-gradient(180deg, #0c0806 0%, #080604 100%);
  padding: clamp(28px,5vh,44px) clamp(24px,5vw,40px);

  text-align: center;
  position: relative;
}
.prv2-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210,160,70,0.25), transparent);
}
.prv2-footer-ornament {
  font-size: 20px;
  color: rgba(210,160,70,0.35);
  letter-spacing: 0.20em;
  margin-bottom: 12px;
}
.prv2-footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 2.4vw, 17px);
  color: rgba(255,255,255,0.40);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 20px;
}
.prv2-footer-quote strong {
  color: rgba(255,255,255,0.65);
  font-style: normal;
}
.prv2-footer-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-bottom: 18px;
}
.prv2-restart {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 6px;
  transition: color 0.14s;
}
.prv2-restart:hover { color: rgba(255,255,255,0.50); }

/* Loading / error */
.pr-loading {
  padding: 80px 24px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-size: 16px;
}
.pr-error {
  padding: 80px 24px;
  text-align: center;
  color: #e07a5f;
  font-size: 15px;
}

/* ── Tablet / Desktop ── */
@media (min-width: 768px) {
  .prv2-sections { padding: 20px 32px 48px; }
  .prs-inner { grid-template-columns: 64px 1fr; padding: 26px 32px 26px 24px; }
  .prs-icon { font-size: 32px; }
  .prs-title { font-size: 18px; }
  .prs-p { font-size: 16px; }
}
@media (min-width: 1024px) {
  .prv2-sections { max-width: 860px; padding: 24px 40px 56px; }
  .prs-inner { grid-template-columns: 72px 1fr; }
  .prv2-hero { max-height: 420px; }
}

/* ── Task callout ── */
.prs-task {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.03);
  border-left: 3px solid var(--accent, #c8a05a);
  border-radius: 0 10px 10px 0;
}
.prs-task-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #c8a05a);
  margin-bottom: 6px;
}
.prs-task-text {
  font-size: clamp(13.5px, 2vw, 15px);
  line-height: 1.70;
  color: #3d2c14;
  font-style: italic;
}

/* ── Fix: ukryj selected podczas auto-advance ── */
.choices.advancing .choice.selected {
  opacity: 0.45;
  transform: scale(0.98);
  transition: opacity 0.15s, transform 0.15s;
}

/* ── Większy tytuł sekcji (prośba użytkownika) ── */
@media (max-width: 767px) {
  .prs-title { font-size: 16px; }
  .prs-p { font-size: 15px; }
  .prs-p-first { font-size: 15.5px; }
}

/* ── Gate note ── */
.fr-gate-note {
  font-size: 12px;
  color: var(--warm-300);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════
   DONUT CHART — Signal Analysis
════════════════════════════════════════════ */

.dc-wrap {
  margin: 0;
  background: var(--warm-50);
  border: none;
  border-top: 1px solid rgba(180,148,100,0.14);
  border-radius: 0;
  overflow: hidden;
}

.dc-header {
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(180,148,100,0.10);
  background: linear-gradient(135deg, #1a120a 0%, #251808 100%);
}
.dc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(210,155,60,0.60);
  margin-bottom: 4px;
}
.dc-title {
  font-size: clamp(15px,3vw,18px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.dc-body {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(16px,3vh,22px) clamp(20px,4vw,28px) clamp(14px,2.5vh,20px);
  background: var(--warm-50);
}

/* SVG Donut */
.dc-chart-wrap {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  position: relative;
}
.dc-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* Animacja draw-on */
.dc-arc {
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dc-arc.dc-arc-animate {
  opacity: 1;
  animation: dcDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.dc-arc-stay    { animation-delay: 0.1s !important; }
.dc-arc-neutral { animation-delay: 0.3s !important; }
.dc-arc-go      { animation-delay: 0.5s !important; }

@keyframes dcDraw {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Tekst w środku donut */
.dc-center-num {
  font-size: 15px;
  font-weight: 900;
  fill: var(--warm-900);
  font-family: var(--font-sans);
  dominant-baseline: auto;
  transform: rotate(90deg);
  transform-origin: 54px 54px;
}
.dc-center-label {
  font-size: 7.5px;
  font-weight: 600;
  fill: var(--warm-400);
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  dominant-baseline: auto;
  transform: rotate(90deg);
  transform-origin: 54px 54px;
}

/* Legenda */
.dc-legend {
  flex: 1;
  min-width: 0;
}
.dc-leg-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.dc-leg-item:last-child { margin-bottom: 0; }
.dc-leg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dc-leg-label {
  font-size: 12.5px;
  color: var(--warm-600);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dc-leg-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--warm-900);
}
.dc-leg-n {
  font-size: 11px;
  color: var(--warm-300);
  margin-left: 1px;
}
.dc-leg-divider {
  height: 1px;
  background: rgba(180,148,100,0.14);
  margin: 6px 0;
}
.dc-leg-clarity .dc-leg-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--warm-700);
}
.dc-leg-clarity .dc-leg-val {
  font-size: 12.5px;
}

/* Nota pod wykresem */
.dc-note {
  font-size: 12.5px;
  font-style: italic;
  color: var(--warm-400);
  line-height: 1.60;
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(180,148,100,0.10);
}

/* Tablet */
@media (min-width: 480px) {
  .dc-chart-wrap { width: 120px; height: 120px; }
  .dc-leg-label { font-size: 13px; }
}

/* ════════════════════════════════════════════
   LEGAL — Modal, checkbox, stopka
════════════════════════════════════════════ */

/* ── Stopka ── */
.legal-footer {
  display: none !important; /* Linki są przy przycisku płatności — stopka zbędna */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  padding: 8px 16px 10px;
  background: rgba(10,7,4,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: rgba(255,255,255,0.20);
}
.legal-footer-sep { opacity: 0.30; }
.legal-link {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.14s;
}
.legal-link:hover { color: rgba(255,255,255,0.65); }

/* ── Checkbox zgody ── */
.legal-consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  padding: 12px 0 4px;
  width: 100%;
  max-width: 380px;
}
.legal-consent-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--amber);
  cursor: pointer;
}
.legal-consent-text {
  font-size: 12px;
  line-height: 1.60;
  color: var(--warm-500);
}
.legal-link-inline {
  font-size: 12px;
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  display: inline;
}
.legal-link-inline:hover { opacity: 0.80; }

/* Przycisk wyłączony dopóki nie zaznaczony checkbox */
.report-unlock-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  animation: none !important;
  box-shadow: none !important;
}

/* ── Modal ── */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
}
.legal-modal.hidden { display: none; }

.legal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
}

.legal-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  max-height: 82dvh;
  background: #faf4eb;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalUp 0.30s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes modalUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(180,148,100,0.18);
  background: #fff;
  flex-shrink: 0;
}
.legal-modal-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--warm-900);
  letter-spacing: -0.01em;
}
.legal-modal-close {
  font-size: 18px;
  color: var(--warm-400);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.legal-modal-close:hover {
  background: rgba(180,148,100,0.12);
  color: var(--warm-800);
}

.legal-modal-body {
  overflow-y: auto;
  padding: 20px 22px 32px;
  -webkit-overflow-scrolling: touch;
}
.legal-modal-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--warm-900);
  margin-bottom: 4px;
}
.legal-modal-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--warm-900);
  margin: 18px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-modal-body p, .legal-modal-body li {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--warm-700);
  margin-bottom: 8px;
}
.legal-modal-body ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.legal-modal-body strong { color: var(--warm-900); }
.legal-modal-body a { color: var(--amber); text-decoration: underline; }
.ld-date {
  font-size: 12px !important;
  color: var(--warm-300) !important;
  margin-bottom: 14px !important;
}

/* Desktop — modal w centrum */
@media (min-width: 640px) {
  .legal-modal { align-items: center; padding: 24px; }
  .legal-modal-box {
    border-radius: 16px;
    max-height: 80dvh;
  }
}

/* Stopka usunięta — linki tylko przy przycisku płatności */

/* ════════════════════════════════════════════
   PAID REPORT — Signal Chart & Separators
════════════════════════════════════════════ */

/* ── Wykres słupkowy ── */
.sc-wrap {
  background: #fff;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
  border-top: 1px solid rgba(180,148,100,0.14);
  border-bottom: 1px solid rgba(180,148,100,0.14);
}

.sc-header {
  padding: clamp(18px,3.5vh,26px) clamp(20px,4vw,28px) 14px;
  background: linear-gradient(135deg, #1a120a 0%, #251808 100%);
}
.sc-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(210,155,60,0.60);
  margin-bottom: 4px;
}
.sc-title {
  font-size: clamp(16px,3vw,20px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.sc-dominant {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1.5px solid;
  border-radius: 50px;
  padding: 5px 12px;
}
.sc-dominant-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Słupki */
.sc-bars {
  padding: clamp(16px,3vh,24px) clamp(20px,4vw,28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #faf4eb;
}
.sc-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--warm-700);
  width: 110px;
  flex-shrink: 0;
}
.sc-track {
  flex: 1;
  height: 10px;
  background: rgba(180,148,100,0.14);
  border-radius: 50px;
  overflow: hidden;
}
.sc-fill {
  height: 100%;
  border-radius: 50px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.sc-fill.sc-animated { /* JS dodaje po renderze */ }
.sc-stat {
  display: flex;
  align-items: baseline;
  gap: 3px;
  width: 52px;
  flex-shrink: 0;
  text-align: right;
  justify-content: flex-end;
}
.sc-stat strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--warm-900);
}
.sc-n {
  font-size: 11px;
  color: var(--warm-300);
}

/* Nota pod wykresem */
.sc-note {
  font-size: 13px;
  color: var(--warm-500);
  line-height: 1.65;
  padding: 12px clamp(20px,4vw,28px) 16px;
  background: #faf4eb;
  border-top: 1px solid rgba(180,148,100,0.12);
}
.sc-note strong { color: var(--warm-800); }

/* ── Kolorowe separatory między sekcjami ── */
.prs-separator {
  display: flex;
  align-items: center;
  padding: 4px clamp(20px,4vw,32px);
}
.prs-sep-line {
  display: block;
  width: 48px;
  height: 2.5px;
  border-radius: 2px;
  opacity: 0.55;
  margin: 0 auto;
}

/* Animacja słupków — uruchamiana przez JS */
@keyframes barGrow {
  from { width: 0 !important; }
}

/* ═══ JĘZYK ═══ */
.lang-switch {
  position: absolute;
  top: 16px; right: 20px;
  display: flex; align-items: center; gap: 6px;
  z-index: 10;
}
.lang-btn {
  background: none; border: none;
  font-size: 0.75em; font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  cursor: pointer; padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}
.lang-btn--active { color: #c8a05a; }
.lang-sep { color: rgba(255,255,255,0.15); font-size: 0.7em; }

/* ═══ BRANCH SCREEN ═══ */
#screen-branch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
}

.branch-inner {
  padding: 0 20px 48px;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 480px; margin: 0 auto; width: 100%;
}

.branch-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15em; font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.branch-btn {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  position: relative;
}

.branch-btn:active { transform: scale(0.975); }

.branch-btn--doubts {
  border-color: rgba(200,160,90,0.25);
}
.branch-btn--doubts:hover, .branch-btn--doubts:active {
  background: rgba(200,160,90,0.08);
  border-color: rgba(200,160,90,0.5);
}

.branch-btn--happy {
  border-color: rgba(200,100,100,0.25);
}
.branch-btn--happy:hover, .branch-btn--happy:active {
  background: rgba(200,100,100,0.08);
  border-color: rgba(200,100,100,0.5);
}

/* Ikona po lewej — kolorowy pasek */
.branch-btn-icon {
  font-size: 1.9em;
  flex-shrink: 0;
  width: 76px;
  height: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.branch-btn--doubts .branch-btn-icon {
  background: linear-gradient(135deg, rgba(200,160,90,0.15) 0%, rgba(200,160,90,0.05) 100%);
  border-right: 1px solid rgba(200,160,90,0.15);
}

.branch-btn--happy .branch-btn-icon {
  background: linear-gradient(135deg, rgba(220,100,100,0.15) 0%, rgba(220,100,100,0.05) 100%);
  border-right: 1px solid rgba(220,100,100,0.15);
}

.branch-btn-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 16px;
}

.branch-btn-text strong {
  font-size: 1.2em; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

.branch-btn--doubts .branch-btn-text strong { color: #e8c87a; }
.branch-btn--happy .branch-btn-text strong { color: #f0a0a0; }

.branch-btn-text span {
  font-size: 0.88em;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.branch-btn-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1em;
  padding-right: 18px;
  flex-shrink: 0;
}

.branch-back {
  background: none; border: none;
  color: rgba(255,255,255,0.2); font-size: 0.8em;
  cursor: pointer; text-align: center; padding: 8px;
  margin-top: 4px;
}

/* ═══ HAPPY RESULT ═══ */
.happy-result-wrap { min-height: 100dvh; background: #f5f0e8; }
.happy-result-hero {
  background: #1a0e06;
  padding: 48px 24px 36px;
  text-align: center;
}
.hr-logo { font-size: 0.75em; color: rgba(255,255,255,0.3); margin-bottom: 12px; letter-spacing: 0.05em; }
.hr-label { font-size: 0.65em; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.hr-hearts { display: flex; justify-content: center; gap: 4px; margin-bottom: 16px; }
.hr-score { font-size: 4em; font-weight: 700; line-height: 1; margin-bottom: 12px; }
.hr-score span { font-size: 0.35em; opacity: 0.6; }
.hr-tier {
  display: inline-block; border: 1.5px solid;
  border-radius: 20px; padding: 5px 20px;
  font-size: 0.9em; font-weight: 700; letter-spacing: 0.04em;
}
.happy-result-body { padding: 28px 24px 48px; }
.hr-headline { font-size: 1.3em; font-weight: 700; color: #2c1f0e; margin-bottom: 12px; }
.hr-summary { font-size: 0.9em; line-height: 1.65; color: #5a4a3a; margin-bottom: 24px; }
.hr-bars { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.hr-bar-row {}
.hr-bar-label { font-size: 0.7em; color: #8a7a6a; display: block; margin-bottom: 4px; }
.hr-bar-track { height: 5px; background: rgba(0,0,0,0.07); border-radius: 3px; overflow: hidden; }
.hr-bar-fill { height: 100%; border-radius: 3px; transition: width 0.8s ease; }
.hr-actions { display: flex; flex-direction: column; gap: 12px; }
.hr-share-btn {
  background: #c8a05a; color: #fff; border: none;
  border-radius: 12px; padding: 16px; font-size: 1em; font-weight: 600;
  cursor: pointer; width: 100%;
}
.hr-deep-btn {
  background: #1a0e06; color: #c8a05a; border: none;
  border-radius: 12px; padding: 16px; font-size: 0.95em; font-weight: 600;
  cursor: pointer; width: 100%;
}
.hr-retake-btn {
  background: transparent; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px; padding: 14px; font-size: 0.9em; color: #5a4a3a;
  cursor: pointer; width: 100%;
}
.hr-back-btn {
  background: none; border: none; color: rgba(0,0,0,0.3);
  font-size: 0.82em; cursor: pointer; padding: 8px; text-align: center;
}
