/* ========================================================
   APPRIL · Diagnóstico de Agenda Blindada
   discovery.css — wizard typeform + landing + resultado
   ======================================================== */

:root {
  /* Brand */
  --coral:       #FE345C;
  --coral-700:   #DB1E44;
  --coral-50:    #FFF0F3;
  --coral-100:   #FFE1E8;

  --green:       #0E8A5F;
  --green-700:   #066F4B;
  --green-50:    #E8F4EE;
  --green-100:   #D1EBDD;

  --wa:          #25D366;
  --wa-700:      #1EBD5B;

  /* Neutrals */
  --ink:         #0A0E14;
  --ink-2:       #1E2A38;
  --ink-soft:    #3A4858;
  --muted:       #6B7280;
  --muted-2:     #9AA3AE;
  --line:        #E5E9EE;
  --line-soft:   #EEF1F4;
  --paper:       #FFFFFF;
  --paper-soft:  #FAFAF7;
  --paper-warm:  #F6F4EF;
  --paper-dark:  #0A0E14;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,14,20,.04);
  --shadow:    0 1px 2px rgba(10,14,20,.04), 0 12px 28px -16px rgba(10,14,20,.16);
  --shadow-lg: 0 1px 3px rgba(10,14,20,.05), 0 30px 60px -22px rgba(10,14,20,.28);
  --shadow-coral: 0 14px 38px -16px rgba(254,52,92,.45);
  --shadow-green: 0 14px 38px -16px rgba(14,138,95,.4);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --container: 1180px;
}

:root[data-density="compact"] {
  --pad-y: 64px;
}
:root:not([data-density="compact"]) {
  --pad-y: 96px;
}

* , *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; cursor: pointer; background: transparent; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--coral); color: #fff; }

/* ===================== Tokens texto ===================== */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.025em; line-height: 1.05; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(36px, 5.6vw, 72px); letter-spacing: -.035em; }
h2 { font-size: clamp(28px, 3.6vw, 48px); }
h3 { font-size: clamp(20px, 1.8vw, 26px); }
p  { margin: 0; text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow.green { color: var(--green); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ===================== Botones ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600; font-size: 15px;
  height: 52px; padding: 0 24px;
  border-radius: 14px;
  white-space: nowrap;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--coral); color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn--primary:hover { background: var(--coral-700); }
.btn--green {
  background: var(--green); color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--green:hover { background: var(--green-700); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-soft); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 14px 32px -14px rgba(37,211,102,.6); }
.btn--wa:hover { background: var(--wa-700); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; }
.btn--lg { height: 60px; font-size: 16px; padding: 0 28px; border-radius: 16px; }
.btn--block { width: 100%; }

/* ===================== Nav ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; font-size: 18px; }
.nav__logo img { height: 22px; }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__back { color: var(--muted); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.nav__back:hover { color: var(--ink); }

/* ===================== Landing ===================== */
.lp-hero {
  padding: 28px 0 56px;
  background:
    radial-gradient(800px 320px at 80% -10%, var(--coral-50), transparent 60%),
    var(--paper);
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .lp-hero { padding: 20px 0 32px; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 28px; }
}
.lp-hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--muted); font-weight: 500;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-hero__pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 4px var(--green-50); }
.lp-hero h1 { margin-top: 18px; font-size: clamp(34px, 5.6vw, 70px); line-height: 0.98; }
.lp-hero h1 .mark {
  background: linear-gradient(180deg, transparent 60%, var(--coral-100) 60%);
  padding: 0 4px;
}
.lp-hero__sub {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 56ch;
}
.lp-hero__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.lp-hero__meta {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; row-gap: 8px; column-gap: 18px;
  color: var(--muted); font-size: 13px;
}
.lp-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.lp-hero__meta svg { width: 14px; height: 14px; color: var(--green); }

.lp-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, #0A0E14 0%, #1E2A38 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.lp-hero__visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(360px 220px at 78% 10%, rgba(254,52,92,.25), transparent 60%),
    radial-gradient(360px 220px at 12% 90%, rgba(14,138,95,.22), transparent 65%);
  pointer-events: none;
}

/* Shield card — the big promise */
.lp-hero__shield {
  position: absolute;
  top: 28px; left: 28px;
  background: linear-gradient(160deg, var(--coral) 0%, var(--coral-700) 100%);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 38px -12px rgba(254,52,92,.55);
  display: flex; flex-direction: column; gap: 2px;
  z-index: 4;
  max-width: 58%;
}
.lp-hero__shieldLab {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.lp-hero__shieldVal {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
  line-height: 1;
}
.lp-hero__shieldNote {
  font-size: 11px; color: rgba(255,255,255,.85); margin-top: 4px;
}

/* Calendar mockup */
.lp-hero__cal {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.5);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 2;
}
.lp-hero__calHead {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.lp-hero__calHead > span:first-child {
  color: var(--muted); font-weight: 500;
}
.lp-hero__calOk {
  color: var(--green); font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.lp-hero__calOk::before {
  content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 999px;
}
.lp-hero__calGrid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.lp-hero__calCell {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 4px 10px;
  border-radius: 8px;
  background: var(--paper-soft);
}
.lp-hero__calCell.s-ok { background: var(--green-50); }
.lp-hero__calCell.s-risk { background: var(--coral-50); }
.lp-hero__calCell.s-empty { background: var(--paper-soft); opacity: .55; }
.lp-hero__calDay {
  font-size: 10px; font-weight: 700; color: var(--muted);
}
.lp-hero__calCell.s-ok .lp-hero__calDay { color: var(--green); }
.lp-hero__calCell.s-risk .lp-hero__calDay { color: var(--coral); }
.lp-hero__calDots {
  display: flex; gap: 2px;
  height: 10px; align-items: center;
}
.lp-hero__calDots span {
  width: 4px; height: 4px; border-radius: 999px;
  background: rgba(0,0,0,.15);
}
.lp-hero__calCell.s-ok .lp-hero__calDots span { background: var(--green); }
.lp-hero__calCell.s-risk .lp-hero__calDots span { background: var(--coral); opacity: .6; }
.lp-hero__calCell.s-risk .lp-hero__calDots span:nth-child(2) { opacity: 1; }
.lp-hero__calCell.s-empty .lp-hero__calDots span { background: transparent; border: 1px dashed rgba(0,0,0,.2); width: 4px; height: 4px; }

/* Floating chips */
.lp-hero__chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.45);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  animation: floatY 7s var(--ease) infinite;
}
.lp-hero__chip .ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--paper-soft); color: var(--muted);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 13px;
}
.lp-hero__chip .ico.green { background: var(--green-50); color: var(--green); }
.lp-hero__chip .ico.coral { background: var(--coral-50); color: var(--coral); font-weight: 700; }
.lp-hero__chip > div > div:first-child { font-weight: 700; line-height: 1.1; }
.lp-hero__chip .muted { color: var(--muted); font-weight: 400; font-size: 11px; margin-top: 2px; }
.lp-hero__chip--time {
  top: 36%; right: 12px;
  animation-delay: -2s;
}
.lp-hero__chip--peace {
  top: 52%; right: 18px;
  animation-delay: -4s; animation-direction: reverse;
}

.lp-hero__legend {
  position: absolute;
  top: 8px; right: 12px;
  font-size: 10px; color: rgba(255,255,255,.45);
  z-index: 2;
}

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

/* On mobile, simplify */
@media (max-width: 880px) {
  .lp-hero__visual {
    aspect-ratio: 5/4;
    padding: 20px;
  }
  .lp-hero__shield { top: 20px; left: 20px; padding: 12px 14px; max-width: 65%; }
  .lp-hero__cal { bottom: 20px; left: 20px; right: 20px; padding: 12px; }
  .lp-hero__chip--alert { display: none; }
  .lp-hero__chip--time { top: 28%; right: 12px; }
  .lp-hero__chip--peace { top: 48%; right: 16px; }
}

/* Pain section */
.lp-pain { padding: var(--pad-y) 0; background: var(--paper-soft); }
.lp-pain__head { max-width: 680px; }
.lp-pain__grid {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 1000px) { .lp-pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lp-pain__grid { grid-template-columns: 1fr; } }
.lp-pain__card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.lp-pain__card:hover { transform: translateY(-3px); border-color: var(--coral); }
.lp-pain__card .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--coral-50); color: var(--coral);
  display: grid; place-items: center;
}
.lp-pain__card p { font-weight: 500; color: var(--ink); }

/* Positioning */
.lp-pos { padding: var(--pad-y) 0; }
.lp-pos__head { max-width: 720px; }
.lp-pos__cols {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .lp-pos__cols { grid-template-columns: 1fr; } }
.lp-pos__col {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
}
.lp-pos__col.appril {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff; border-color: transparent;
}
.lp-pos__col.appril h3 { color: #fff; }
.lp-pos__col.appril .lp-pos__role { color: var(--coral); }
.lp-pos__role {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.lp-pos__col h3 { margin-top: 12px; }
.lp-pos__col p { margin-top: 12px; color: inherit; opacity: .85; }

/* CTA strip antes del wizard */
.lp-cta {
  padding: 56px 0; text-align: center;
  border-top: 1px solid var(--line-soft);
}
.lp-cta h2 { max-width: 720px; margin: 0 auto; }
.lp-cta .btn { margin-top: 24px; }

/* ===================== Wizard ===================== */
.wizard {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.wizard.is-open { display: flex; }

.wizard__top {
  height: 64px; flex-shrink: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.95);
  position: sticky; top: 0; z-index: 5;
}
.wizard__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.wizard__logo img { height: 20px; }
.wizard__progress {
  flex: 1;
  display: flex; align-items: center; gap: 12px;
}
.wizard__bar {
  flex: 1; height: 6px; border-radius: 999px; background: var(--line);
  overflow: hidden;
}
.wizard__bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-700) 100%);
  border-radius: 999px;
  transition: width .5s var(--ease-out);
}
.wizard__count {
  font-size: 13px; color: var(--muted); font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 56px; text-align: right;
}
.wizard__close {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.wizard__close:hover { background: var(--paper-soft); color: var(--ink); }

.wizard__body {
  flex: 1;
  display: flex; flex-direction: column;
}
.wizard__stage {
  flex: 1;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 48px 24px 120px;
}
@media (max-width: 720px) {
  .wizard__stage { padding: 24px 20px 100px; }
}

.wizard__step {
  width: 100%;
  max-width: 640px;
  display: flex; flex-direction: column; gap: 28px;
  animation: stepIn .45s var(--ease-out);
}
@keyframes stepIn {
  from { transform: translateY(16px); }
  to   { transform: translateY(0); }
}
.wizard__step.is-leaving {
  animation: stepOut .25s var(--ease) forwards;
}
@keyframes stepOut {
  to { opacity: 0; transform: translateY(-16px); }
}

.wizard__chip {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--coral-50);
  color: var(--coral);
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.wizard__chip .num { font-variant-numeric: tabular-nums; opacity: .7; }

.wizard__q {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700; letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink);
}
.wizard__sub {
  font-size: 17px; color: var(--muted); line-height: 1.5;
  max-width: 56ch;
}

/* Options grid */
.opts {
  display: flex; flex-direction: column; gap: 10px;
}
.opt {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-size: 16px; font-weight: 500; color: var(--ink);
  transition: border-color .15s var(--ease), background .15s var(--ease), transform .12s var(--ease), box-shadow .15s var(--ease);
}
.opt:hover {
  border-color: var(--ink);
  background: var(--paper-soft);
}
.opt.is-selected {
  border-color: var(--coral);
  background: var(--coral-50);
  box-shadow: var(--shadow-coral);
}
.opt__key {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: var(--paper-soft);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  color: var(--muted);
}
.opt.is-selected .opt__key {
  border-color: var(--coral);
  background: #fff;
  color: var(--coral);
}
.opt__label { flex: 1; }
.opt__check {
  width: 24px; height: 24px; border-radius: 999px;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: transparent;
  transition: all .2s var(--ease);
}
.opt.is-selected .opt__check {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}
.opt__check svg { width: 14px; height: 14px; }
.opt__check--multi { border-radius: 6px; }

.wizard__qhint {
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 4px;
}

/* Number input */
.numfield {
  display: flex; align-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 8px 18px;
  transition: border-color .2s var(--ease);
}
.numfield:focus-within { border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-50); }
.numfield__prefix { color: var(--muted); font-weight: 600; margin-right: 12px; }
.numfield input {
  flex: 1; height: 56px; border: 0; outline: 0; background: transparent;
  font-size: 22px; font-weight: 700; letter-spacing: -.02em;
}

/* Microcopy after answer */
.micro {
  display: flex; gap: 12px;
  padding: 16px;
  background: var(--paper-soft);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 14px;
}
.micro__ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px; background: var(--coral); color: #fff;
  display: grid; place-items: center; font-size: 12px;
}

/* Validator */
.validator {
  padding: 28px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 12px;
}

/* Reveal (mini-recompensa Fogg) */
.reveal {
  padding: 36px 32px;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reveal::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 65%);
  opacity: .35;
}
.reveal__eye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral);
  position: relative; z-index: 1;
}
.reveal__lab {
  margin-top: 10px;
  color: rgba(255,255,255,.65);
  font-size: 14px; font-weight: 500;
  position: relative; z-index: 1;
}
.reveal__val {
  margin-top: 6px;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  position: relative; z-index: 1;
}
.reveal__sub {
  margin-top: 14px;
  color: rgba(255,255,255,.75);
  font-size: 15px; line-height: 1.5;
  position: relative; z-index: 1;
}
.reveal__note {
  margin-top: 4px;
  color: var(--coral);
  font-size: 13px; font-weight: 600;
  position: relative; z-index: 1;
}
.validator__eye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green);
}
.validator h3 { font-size: 22px; line-height: 1.2; }
.validator p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.validator__src {
  font-size: 12px; color: var(--muted); margin-top: 4px; font-style: italic;
}

/* Bottom nav */
.wizard__nav {
  position: sticky; bottom: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,.95);
  border-top: 1px solid var(--line-soft);
}
.wizard__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted);
  font-size: 14px; font-weight: 500;
  padding: 10px 14px; border-radius: 10px;
  transition: background .2s, color .2s;
}
.wizard__back:hover { background: var(--paper-soft); color: var(--ink); }
.wizard__back[disabled] { opacity: .3; pointer-events: none; }
.wizard__next { /* uses .btn classes */ }

/* Intro/welcome screen */
.intro {
  display: flex; flex-direction: column; gap: 28px;
  text-align: left;
}
.intro h1 { font-size: clamp(32px, 4.4vw, 56px); }
.intro__meta { color: var(--muted); font-size: 14px; display: inline-flex; gap: 14px; }
.intro__meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Preliminary result screen */
.prelim { display: flex; flex-direction: column; gap: 20px; }
/* Preliminary result preview */
.prelim__preview {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 8px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.prelim__previewRow {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.prelim__previewRow:last-child { border-bottom: 0; }
.prelim__previewLab {
  color: rgba(255,255,255,.6);
  font-size: 13px; font-weight: 500;
}
.prelim__previewVal {
  color: #fff;
  font-size: 15px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.prelim__previewRow.blur .prelim__previewVal {
  filter: blur(6px);
  user-select: none;
}
.prelim__previewRow.blur::after {
  content: "🔒";
  font-size: 12px;
  opacity: .5;
}
.prelim__notes { display: flex; flex-direction: column; gap: 12px; }
.prelim__note {
  padding: 18px;
  background: var(--paper-soft);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 15px;
}

/* Contact form */
.contact { display: flex; flex-direction: column; gap: 14px; }
.contact__row { display: flex; flex-direction: column; gap: 6px; }
.contact__label { font-size: 13px; font-weight: 600; color: var(--ink); }
.contact__label .opt-tag { color: var(--muted); font-weight: 400; }
.contact__input {
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  height: 52px; padding: 0 16px; font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.contact__input:focus { outline: 0; border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-50); }
.contact__phone {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
}
.contact__country {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  height: 52px; padding: 0 12px; cursor: pointer;
}
.contact__country select {
  appearance: none; -webkit-appearance: none;
  border: 0; outline: 0; background: transparent;
  font-size: 15px;
  padding-right: 18px;
  cursor: pointer;
  flex: 1;
}
.contact__country__flag { font-size: 18px; }
.contact__consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
  padding: 12px 0;
}
.contact__consent input { margin-top: 3px; accent-color: var(--coral); }
.contact__hint { font-size: 12px; color: var(--muted); }

/* ===================== Resultado ===================== */
.result {
  min-height: 100vh;
  padding: 64px 0 120px;
  background:
    radial-gradient(900px 360px at 50% -80px, var(--coral-50), transparent 60%),
    var(--paper);
}
.result__inner { max-width: 920px; margin: 0 auto; padding: 0 24px; }

.result__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.result__head h1 { font-size: clamp(32px, 4.4vw, 52px); }

.result__levelcard {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.result__levelcard::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,52,92,.35), transparent 60%);
}
@media (max-width: 760px) {
  .result__levelcard { grid-template-columns: 1fr; padding: 28px; }
}
.result__levelhead { position: relative; z-index: 1; }
.result__levelhead .eyebrow { color: var(--coral); }
.result__levelhead h2 { color: #fff; margin-top: 10px; }
.result__levelhead p { color: rgba(255,255,255,.7); margin-top: 14px; font-size: 15px; }

.result__progress {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.result__progress__steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.result__progress__step {
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.result__progress__step.is-active { background: var(--coral); }
.result__progress__step.is-target { background: var(--green); }
.result__progress__labels {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  font-size: 10px; color: rgba(255,255,255,.55);
  text-align: center; line-height: 1.2;
}
.result__progress__labels span.is-active { color: #fff; font-weight: 600; }
.result__progress__labels span.is-target { color: var(--green); font-weight: 600; }
.result__progress__cap {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.result__progress__cap strong { color: #fff; }

.result__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 760px) { .result__grid { grid-template-columns: 1fr; } }

.result__metric {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 6px;
}
.result__metric__lab { color: var(--muted); font-size: 13px; font-weight: 500; }
.result__metric__val {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.result__metric.green .result__metric__val { color: var(--green); }
.result__metric.coral .result__metric__val { color: var(--coral); }
.result__metric__note { color: var(--muted); font-size: 12px; line-height: 1.5; }

.result__block { margin-top: 36px; }
.result__block h3 { font-size: 22px; margin-bottom: 14px; }
.result__block p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

.result__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.result__table th, .result__table td {
  padding: 14px 18px; text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.result__table tr:last-child td { border-bottom: 0; }
.result__table th { background: var(--paper-soft); color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.result__table td.num { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.result__table tr.total td { background: var(--ink); color: #fff; border-bottom: 0; }
.result__table tr.total td.num { color: var(--coral); }

.scenarios {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 600px) { .scenarios { grid-template-columns: 1fr; } }
.scenario {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.scenario.mid { border-color: var(--green); background: var(--green-50); }
.scenario__lab { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.scenario__val { margin-top: 6px; font-size: 24px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.scenario__note { margin-top: 4px; color: var(--ink-soft); font-size: 13px; }

.recos {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.reco {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--paper-soft);
  border-radius: 12px;
  font-size: 15px; color: var(--ink-soft);
}
.reco__ico {
  flex-shrink: 0; margin-top: 1px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
}
.reco__ico svg { width: 12px; height: 12px; }

/* Mini ranking */
.miniranking { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.miniranking__row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.miniranking__rank {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--coral); color: #fff;
  font-weight: 700;
  display: grid; place-items: center;
}
.miniranking__row p { flex: 1; font-weight: 500; font-size: 14px; }
.miniranking__weight {
  font-size: 12px; color: var(--muted); font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Appril callout */
.appril-call {
  margin-top: 36px;
  padding: 32px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 14px;
}
.appril-call h3 { color: #fff; font-size: 24px; }
.appril-call p { color: rgba(255,255,255,.75); font-size: 15px; }
.appril-call strong { color: #fff; }

/* Final CTAs */
.finalcta {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
}
.finalcta__text { color: var(--ink-soft); font-size: 16px; }
.finalcta__buttons { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 720px) {
  .finalcta__buttons { flex-direction: row; flex-wrap: wrap; }
  .finalcta__buttons .btn { flex: 1; min-width: 200px; }
}
.finalcta__share {
  display: flex; justify-content: center;
  margin-top: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.finalcta__share button {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.finalcta__share button:hover { color: var(--coral); }

/* ===================== Tweaks panel customization ===================== */
.tweak-color-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

/* Mobile-first tweaks */
@media (max-width: 720px) {
  .wizard__chip { font-size: 11px; padding: 4px 10px; }
  .opt { padding: 16px 18px; font-size: 15px; }
  .wizard__nav { padding: 12px 16px; }
  .result { padding: 32px 0 80px; }
  .result__levelcard { padding: 24px; }
  .lp-pos__col { padding: 24px; }
  .nav { padding: 0 4px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============ Result: answer literal ============ */
.r-answer {
  padding: 28px 32px;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.r-answer::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 240px; height: 240px; border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.25) 0%, transparent 60%);
}
.r-answer__lab {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative; z-index: 1;
}
.r-answer__val {
  font-size: clamp(40px, 7vw, 64px); font-weight: 800; letter-spacing: -.03em;
  line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.r-answer__val small {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); margin-left: 6px;
  letter-spacing: 0;
}
.r-answer__note {
  margin-top: 8px;
  color: rgba(255,255,255,.9);
  font-size: 14px; line-height: 1.55;
  position: relative; z-index: 1;
}

/* ============ Gift 4 — Cost (light, like gift_nivel) ============ */
.gift--cost {
  background: linear-gradient(160deg, var(--paper) 0%, var(--coral-50) 100%);
  border: 1px solid var(--coral-100);
}
.gift--cost .gift__eye { color: var(--coral); }
.gift--cost .gift__title { color: var(--ink); }
.gift__costChip {
  background: #fff;
  border: 1px solid var(--coral-100);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  align-self: stretch;
}
.gift__costChip span:first-child {
  color: var(--muted); font-size: 13px; font-weight: 500;
}
.gift__costChip strong {
  color: var(--coral);
  font-size: clamp(32px, 5vw, 44px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gift__costPer {
  font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 6px; letter-spacing: 0;
}

/* Hide old wizard__count since we now show section · paso de */
.wizard__count { display: none; }

/* ====================================================================
   v2 — Header minimal, Gifts, LevelBar, Preliminary cards, Result cards
   ==================================================================== */

/* Minimal top brand on landing */
.lp-mini {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 0;
}
.lp-mini__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-mini__brand { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex-shrink: 1; }
.lp-mini__title {
  font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .lp-mini__title { font-size: 12px; }
}
.lp-mini__by { font-size: 12px; color: var(--muted); }
.lp-mini__by a { color: var(--coral); font-weight: 600; }
.lp-mini__back { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.lp-mini__back:hover { color: var(--ink); }

/* Wizard top: brand block */
.wizard__brand { display: flex; flex-direction: column; gap: 0; min-width: 0; }
.wizard__brandTitle {
  font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wizard__brandBy { font-size: 11px; color: var(--muted); }
@media (max-width: 600px) {
  .wizard__brandTitle { font-size: 12px; }
  .wizard__brandBy { display: none; }
}

/* Wizard chip green variant */
.wizard__chip--green { background: var(--green-50); color: var(--green); }

/* Pain cards (sin icons en esta versión) */
.lp-pain__card { padding: 22px; display: flex; align-items: center; min-height: 96px; }
.lp-pain__card p { font-size: 16px; }

/* ============ LevelBar (5 niveles) ============ */
.levelbar { display: flex; flex-direction: column; gap: 8px; }
.levelbar__steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  position: relative;
}
.levelbar__step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}
.levelbar__step::before {
  content: ""; position: absolute; top: 5px; left: 50%; right: -50%;
  height: 2px; background: rgba(255,255,255,.12); z-index: 0;
}
.levelbar__step:last-child::before { display: none; }
.levelbar__dot {
  width: 14px; height: 14px; border-radius: 999px;
  background: rgba(255,255,255,.18);
  position: relative; z-index: 1;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.levelbar__step.is-current .levelbar__dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(254,52,92,.25);
  transform: scale(1.15);
}
.levelbar__step.is-target .levelbar__dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(14,138,95,.25);
}
.levelbar__label {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.levelbar__step.is-current .levelbar__label { color: #fff; font-weight: 700; }
.levelbar__step.is-target  .levelbar__label { color: var(--green); font-weight: 600; }

/* light backgrounds: ajustes para que se vea bien sobre claro */
.gift--level .levelbar__step::before { background: var(--line); }
.gift--level .levelbar__dot { background: var(--line); }
.gift--level .levelbar__label { color: var(--muted); }
.gift--level .levelbar__step.is-current .levelbar__label { color: var(--ink); }

/* ============ Gifts — TODOS con look-and-feel coral claro (como gift_nivel) ============ */
.gift {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px 28px;
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--paper) 0%, var(--coral-50) 100%);
  border: 1px solid var(--coral-100);
  color: var(--ink);
}
.gift__eye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  position: relative; z-index: 1;
  color: var(--coral);
}
.gift__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.15;
  position: relative; z-index: 1;
  color: var(--ink);
}
.gift__note {
  font-size: 13px; line-height: 1.55;
  margin-top: 4px;
  color: var(--muted);
  position: relative; z-index: 1;
}

/* Gift 1 — Level */
.gift--level {}
.gift__levelChip {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: #fff; padding: 12px 18px; border-radius: 14px;
  border: 1px solid var(--coral-100);
  font-size: 14px; color: var(--muted);
  align-self: flex-start;
}
.gift__levelChip strong {
  color: var(--coral); font-weight: 700; font-size: 16px;
  letter-spacing: -.01em;
}
.gift__ctxCopy { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* Gift 2 — Money (light, no dark dramatic) */
.gift--money {}
.gift__metric {
  font-size: clamp(44px, 8vw, 64px); font-weight: 800; letter-spacing: -.035em;
  line-height: .95; color: var(--coral);
  font-variant-numeric: tabular-nums;
  position: relative; z-index: 1;
  margin-top: 4px;
}
.gift__metricLab { color: var(--muted); font-size: 14px; position: relative; z-index: 1; }
.gift__breakdown {
  margin-top: 4px;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--coral-100);
  border-radius: 14px;
  padding: 4px 0;
  position: relative; z-index: 1;
}
.gift__breakRow {
  display: flex; justify-content: space-between;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.gift__breakRow:last-child { border-bottom: 0; }
.gift__breakRow strong { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }

/* Gift 3 — Time */
.gift--time {}
.gift__pairgrid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 540px) { .gift__pairgrid { grid-template-columns: 1fr; } }
.gift__pair {
  background: #fff;
  border: 1px solid var(--coral-100);
  border-radius: var(--r);
  padding: 20px;
}
.gift__pair--coral { grid-column: 1 / -1; background: var(--coral-50); border-color: var(--coral-100); }
.gift__pairVal {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em;
  color: var(--coral); font-variant-numeric: tabular-nums; line-height: 1;
}
.gift__pairLab { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* Gift 4 — Cost */
.gift--cost {}
.gift__costChip {
  background: #fff;
  border: 1px solid var(--coral-100);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.gift__costChip span:first-child { color: var(--muted); font-size: 13px; font-weight: 500; }
.gift__costChip strong {
  color: var(--coral);
  font-size: clamp(32px, 5vw, 44px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gift__costPer { font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 6px; letter-spacing: 0; }

/* Gift WIN — Recompensa emocional (light, pills coral) */
.gift--win { align-items: center; text-align: center; }
.gift--win .gift__title { font-size: clamp(24px, 3vw, 32px); }
.gift__winIco {
  width: 72px; height: 72px; border-radius: 999px;
  background: var(--coral-50);
  color: var(--coral);
  display: grid; place-items: center;
}
.gift__winBody {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}
.gift__winTags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 0;
  padding: 0;
}
.gift__winTags span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--coral-100);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 12px -6px rgba(254,52,92,.2);
}

/* ============ Preliminary gain frame (B.J. Fogg motivation) ============ */
.prelim__gain {
  padding: 32px 28px;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.prelim__gain::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px; border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.25) 0%, transparent 60%);
}
.prelim__gainEye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative; z-index: 1;
}
.prelim__gainQ {
  margin-top: 10px;
  font-size: clamp(18px, 2vw, 22px); font-weight: 600; line-height: 1.25;
  color: #fff;
  position: relative; z-index: 1;
}
.prelim__gainVal {
  font-size: clamp(48px, 9vw, 80px); font-weight: 800; letter-spacing: -.035em;
  line-height: .95; color: #fff;
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.prelim__gainSub {
  margin-top: 12px;
  font-size: 16px; line-height: 1.5;
  color: rgba(255,255,255,.9);
  position: relative; z-index: 1;
}
.prelim__gainSub strong { color: #fff; font-weight: 700; }
.prelim__gainNote {
  margin-top: 8px;
  font-size: 12px; color: rgba(255,255,255,.7);
  position: relative; z-index: 1;
}

/* ============ Preliminary cards (4 cards) ============ */
.prelim__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 540px) { .prelim__cards { grid-template-columns: 1fr; } }
.prelim__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.prelim__cardLab { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.prelim__cardVal {
  font-size: clamp(20px, 2.2vw, 24px); font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.prelim__cardVal small { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 4px; }

/* contact error + invalid hint */
.contact__error {
  padding: 12px 14px;
  background: var(--coral-50);
  color: var(--coral-700);
  border: 1px solid var(--coral-100);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.contact__hint.is-error { color: var(--coral); }

/* ============ Result dashboard (cards) ============ */
.result__sub { color: var(--muted); font-size: 16px; max-width: 56ch; }
.r-levelcard {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.r-levelcard::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 999px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 65%);
  opacity: .3;
}
.r-levelcard__top { position: relative; z-index: 1; }
.r-levelcard__eye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral);
}
.r-levelcard__top h2 { color: #fff; margin-top: 8px; font-size: clamp(28px, 4vw, 42px); }
.r-levelcard__top p { color: rgba(255,255,255,.65); margin-top: 6px; font-size: 14px; }
.r-levelcard__desc { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.55; position: relative; z-index: 1; }
@media (max-width: 600px) { .r-levelcard { padding: 24px; } }

.r-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 540px) { .r-grid { grid-template-columns: 1fr; } }
.r-metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.r-metric__lab { color: var(--muted); font-size: 13px; font-weight: 600; }
.r-metric__val {
  font-size: clamp(28px, 3.8vw, 36px); font-weight: 800; letter-spacing: -.025em;
  color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.1;
}
.r-metric__note { color: var(--muted); font-size: 12px; line-height: 1.5; }
.r-metric--coral .r-metric__val { color: var(--coral); }
.r-metric--ink {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
.r-metric--ink .r-metric__lab { color: rgba(255,255,255,.55); }
.r-metric--ink .r-metric__val { color: #fff; }
.r-metric--ink .r-metric__note { color: rgba(255,255,255,.55); }
.r-metric.is-muted .r-metric__val { color: var(--muted); font-size: 20px; font-weight: 600; }

.r-emocard {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.r-emocard__eye { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.r-emocard h3 { font-size: 20px; line-height: 1.25; color: var(--ink); }
.r-emocard p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.r-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.r-card__eye { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.r-card h3 { font-size: 22px; line-height: 1.2; }
.r-bullets { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.r-bullet {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--paper-soft);
  border-radius: 12px;
  font-size: 14px; color: var(--ink-soft);
}
.r-bullet__ico {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
}
.r-bullet__ico svg { width: 12px; height: 12px; }

.r-appril {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.r-appril__eye { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.r-appril p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.55; }
.r-appril strong { color: #fff; }

.r-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.r-cta h3 { font-size: 22px; line-height: 1.2; }

/* ============ How Appril helps (solution cards) ============ */
.r-howcard {
  background: linear-gradient(160deg, var(--paper) 0%, var(--paper-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.r-howcard__eye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral);
}
.r-howcard h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.r-howcard__sub {
  color: var(--ink-soft); font-size: 15px; line-height: 1.55;
  max-width: 64ch;
}
.r-howcard__tagline {
  display: inline-block; align-self: flex-start;
  padding: 8px 14px; border-radius: 100px;
  background: var(--coral-50); color: var(--coral);
  font-size: 13px; font-weight: 700;
  margin-top: 4px;
}
.r-howcard__cta {
  margin-top: 20px;
}
.r-howcard__ctaRow {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
@media (max-width: 639px) {
  .r-howcard__ctaRow { flex-direction: column; align-items: stretch; }
}

/* WhatsApp CTA en verde de marca */
.r-cta--wa.btn {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.r-cta--wa.btn:hover {
  background: #1EBE5B;
  border-color: #1EBE5B;
}
.r-cta--wa.r-cta__tertiary {
  color: #1EBE5B;
  text-decoration-color: rgba(30,190,91,.4);
}
.r-cta--wa.r-cta__tertiary:hover {
  color: #169c4a;
  text-decoration-color: #169c4a;
}
.r-howcard__close {
  margin-top: 16px;
  padding: 18px 22px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg);
  font-size: 14px; font-weight: 500; line-height: 1.55;
}

.r-howgrid {
  margin-top: 12px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}
@media (max-width: 900px) { .r-howgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .r-howgrid { grid-template-columns: 1fr; } }

.r-how {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.r-how:hover { transform: translateY(-2px); border-color: var(--coral); }
.r-how__top { display: flex; align-items: center; gap: 10px; }
.r-how__ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--coral-50); color: var(--coral);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
}
.r-how h4 {
  margin: 0;
  font-size: 14px; font-weight: 700; color: var(--ink);
  letter-spacing: -.005em; line-height: 1.25;
}
.r-how__desc {
  color: var(--ink-soft); font-size: 13px; line-height: 1.5;
}
.r-how__pain {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--green); font-size: 12px; font-weight: 600;
  line-height: 1.4;
}
.r-cta__text { color: var(--ink-soft); font-size: 15px; }
.r-cta__buttons {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .r-cta__buttons { flex-direction: row; flex-wrap: wrap; }
  .r-cta__buttons .btn { flex: 1; min-width: 200px; }
}
.r-cta__share {
  display: flex; justify-content: center;
  margin-top: 8px;
  border-top: 1px dashed var(--line); padding-top: 16px;
}
.r-cta__share button {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.r-cta__share button:hover { color: var(--coral); }

/* Result section spacing override */
.result__inner { display: flex; flex-direction: column; gap: 20px; }
.result__inner .result__head { gap: 12px; }
.result__inner > * + * { margin-top: 0; }

/* Footer landing */
.lp-footer {
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  text-align: center;
  color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--line-soft);
}
.lp-footer a { color: var(--coral); font-weight: 600; }
.lp-footer__url { color: var(--muted-2); font-size: 12px; }

/* Hero pill — más limpio */
.lp-hero__pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 100px;
  background: var(--coral-50); border: 1px solid var(--coral-100);
  font-size: 12px; color: var(--coral); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}

/* Hero meta — minimal */
.lp-hero__meta {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; column-gap: 10px; row-gap: 4px;
  color: var(--muted); font-size: 13px;
}
.lp-hero__meta span { font-weight: 500; }


/* ============ Escenarios de mejora ============ */
.r-scen {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
}
.r-scen__eye {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral);
}
.r-scen h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2; letter-spacing: -.02em;
}
.r-scen__sub {
  color: var(--ink-soft); font-size: 14px; line-height: 1.55;
  max-width: 64ch;
}
.r-scen__group {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.r-scen__groupLab {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink);
}
.r-scen__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .r-scen__grid { grid-template-columns: 1fr; }
}
.r-scen__card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.r-scen__card--ink {
  background: var(--paper-warm);
  border-color: var(--line);
}
.r-scen__card--coral {
  background: var(--coral-50);
  border-color: var(--coral-100);
}
.r-scen__cardTag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.r-scen__card--coral .r-scen__cardTag { color: var(--coral-700); }
.r-scen__cardPct {
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
}
.r-scen__cardVal {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--ink);
  margin-top: 2px;
}
.r-scen__cardVal small {
  font-size: 13px; font-weight: 500; color: var(--muted);
  margin-left: 4px;
}
.r-scen__card--coral .r-scen__cardVal { color: var(--coral-700); }


/* ============================================================
   RESPONSIVO + ANIMACIONES
   ============================================================ */

/* --- Botones: que el texto largo no se salga en móvil --- */
@media (max-width: 520px) {
  .btn {
    white-space: normal;
    line-height: 1.2;
    height: auto;
    min-height: 52px;
    padding: 12px 18px;
    text-align: center;
  }
  .btn--lg {
    min-height: 60px;
    padding: 14px 20px;
    font-size: 15px;
  }
  .r-cta__buttons .btn,
  .finalcta__buttons .btn {
    width: 100%;
  }
}

/* --- Evitar scroll horizontal global --- */
html, body { overflow-x: hidden; }
.result, .result__inner { max-width: 100%; }
.wizard__stage { max-width: 100%; }

/* --- Container más ajustado en móvil --- */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .wizard__stage { padding: 24px 16px 100px; }
  .result__inner { padding: 24px 16px 100px; }
}

/* --- Texto largo no overflow --- */
.btn, .opt__label, .r-how h4, .r-metric__lab, .r-metric__val,
.r-scen__cardVal, .gift__title, .wizard__q {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* --- Result level card: look claro estilo gift_nivel --- */
.r-levelcard {
  background: linear-gradient(160deg, var(--paper) 0%, var(--coral-50) 100%);
  border: 1px solid var(--coral-100);
  color: var(--ink);
}
.r-levelcard::before { display: none; }
.r-levelcard__top h2 { color: var(--ink); }
.r-levelcard__top p { color: var(--muted); }
.r-levelcard__desc { color: var(--ink-soft); }
.r-levelcard .levelbar__step::before { background: var(--line); }
.r-levelcard .levelbar__dot { background: var(--line); }
.r-levelcard .levelbar__label { color: var(--muted); }
.r-levelcard .levelbar__step.is-current .levelbar__label { color: var(--ink); }
.r-levelcard__chip {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: #fff; padding: 12px 18px; border-radius: 14px;
  border: 1px solid var(--coral-100);
  color: var(--ink-soft); font-size: 14px;
  align-self: flex-start;
  max-width: 100%;
}
.r-levelcard__chip strong {
  color: var(--coral); font-weight: 700; font-size: 16px;
  letter-spacing: -.01em;
}

/* ============================================================
   ANIMACIONES (sutiles, con propósito)
   ============================================================ */

/* Easing premium */
:root {
  --ease-out-soft: cubic-bezier(.22, .61, .36, 1);
}

/* Fade + slide entrada para preguntas y pasos */
@keyframes appril-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes appril-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes appril-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}
@keyframes appril-bar-fill {
  from { width: 0%; }
}

.wizard__step {
  animation: appril-fade-up .22s var(--ease-out-soft) both;
}
.gift, .validator, .intro {
  animation: appril-fade-up .26s var(--ease-out-soft) both;
}
.r-levelcard, .r-answer, .r-grid > *, .r-emocard,
.r-howcard, .r-card, .r-scen, .r-cta {
  animation: appril-fade-up .32s var(--ease-out-soft) both;
}
.r-grid > *:nth-child(1) { animation-delay: .04s; }
.r-grid > *:nth-child(2) { animation-delay: .12s; }
.r-grid > *:nth-child(3) { animation-delay: .20s; }
.r-grid > *:nth-child(4) { animation-delay: .28s; }
.r-emocard   { animation-delay: .10s; }
.r-howcard   { animation-delay: .14s; }
.r-card      { animation-delay: .18s; }
.r-scen      { animation-delay: .22s; }
.r-cta       { animation-delay: .26s; }

/* How-grid cards entran progresivamente */
.r-howgrid .r-how {
  animation: appril-fade-up .28s var(--ease-out-soft) both;
}
.r-howgrid .r-how:nth-child(1) { animation-delay: .04s; }
.r-howgrid .r-how:nth-child(2) { animation-delay: .12s; }
.r-howgrid .r-how:nth-child(3) { animation-delay: .20s; }
.r-howgrid .r-how:nth-child(4) { animation-delay: .28s; }
.r-howgrid .r-how:nth-child(5) { animation-delay: .36s; }
.r-howgrid .r-how:nth-child(6) { animation-delay: .44s; }

/* Scen cards entran progresivamente */
.r-scen__grid .r-scen__card {
  animation: appril-fade-up .26s var(--ease-out-soft) both;
}
.r-scen__grid .r-scen__card:nth-child(1) { animation-delay: .06s; }
.r-scen__grid .r-scen__card:nth-child(2) { animation-delay: .14s; }
.r-scen__grid .r-scen__card:nth-child(3) { animation-delay: .22s; }

/* Feedback al seleccionar opción */
.opt.is-selected {
  animation: appril-pop .18s var(--ease-out-soft);
}
.opt__check {
  transition: transform .15s var(--ease-out-soft), opacity .15s var(--ease-out-soft);
}

/* Levelbar: barra de fondo se rellena suave */
.levelbar__fill, .levelbar__progress {
  animation: appril-bar-fill .9s var(--ease-out-soft) both;
}

/* Numeros calculados (count-up usa JS, acá solo fade-in) */
.countup {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Respetar prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Levelbar: los puntos aparecen secuencialmente */
@keyframes appril-dot-in {
  from { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  to   { transform: scale(1); opacity: 1; }
}
.levelbar__dot {
  animation: appril-dot-in .35s var(--ease-out-soft) both;
}
.levelbar__step:nth-child(1) .levelbar__dot { animation-delay: .05s; }
.levelbar__step:nth-child(2) .levelbar__dot { animation-delay: .18s; }
.levelbar__step:nth-child(3) .levelbar__dot { animation-delay: .31s; }
.levelbar__step:nth-child(4) .levelbar__dot { animation-delay: .44s; }
.levelbar__step:nth-child(5) .levelbar__dot { animation-delay: .57s; }
.levelbar__step.is-current .levelbar__dot {
  animation: appril-dot-in .45s var(--ease-out-soft) both,
             appril-pulse 1.6s var(--ease-out-soft) 1s 2;
}
@keyframes appril-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(254,52,92,.25); }
  50%      { box-shadow: 0 0 0 8px rgba(254,52,92,.12); }
}


/* ============ CTA con jerarquía (primary / secondary / tertiary) ============ */
.r-cta__fomo {
  margin-top: 4px;
  padding: 14px 18px;
  background: var(--coral-50);
  border-left: 3px solid var(--coral);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  font-style: italic;
}

.r-cta__primary {
  margin-top: 12px;
  background: var(--coral); color: #fff;
  box-shadow: 0 18px 38px -16px rgba(254,52,92,.55);
}
.r-cta__primary:hover { background: var(--coral-700); }
.r-cta__primary span { font-weight: 700; }

.r-cta__row {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
@media (min-width: 640px) {
  .r-cta__row {
    flex-direction: row; align-items: center;
    gap: 16px;
  }
}
.r-cta__secondary {
  height: 48px;
  padding: 0 18px;
  font-size: 14px; font-weight: 600;
}
@media (min-width: 640px) {
  .r-cta__secondary { flex: 0 0 auto; }
}
@media (max-width: 639px) {
  .r-cta__secondary { width: 100%; }
}

.r-cta__tertiary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 13.5px; font-weight: 500;
  color: var(--muted);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
  padding: 8px 4px;
}
.r-cta__tertiary:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}
@media (max-width: 639px) {
  .r-cta__tertiary { width: 100%; padding: 12px 8px; }
}

/* ── PDF download button ─────────────────────────────── */
.r-pdf {
  display: flex; justify-content: center;
  margin: 8px 0 4px;
}
.r-pdf__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  background: none; border: none; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--line);
  padding: 6px 4px;
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.r-pdf__btn:hover { color: var(--ink); text-decoration-color: var(--ink); }
.r-pdf__btn svg { flex-shrink: 0; }

/* ── Print header (hidden on screen, visible in PDF) ─── */
.pdf-print-header { display: none; }

/* ── @media print ────────────────────────────────────── */
@media print {
  @page { margin: 18mm 16mm; size: A4; }

  body { background: #fff !important; }

  /* Show Appril header only in print */
  .pdf-print-header {
    display: flex !important;
    align-items: center; gap: 12px;
    margin-bottom: 24px; padding-bottom: 12px;
    border-bottom: 2px solid #FE345C;
  }
  .pdf-print-header__logo {
    font-size: 22px; font-weight: 800; color: #FE345C; letter-spacing: -0.4px;
  }
  .pdf-print-header__sub {
    font-size: 13px; color: #666;
  }

  /* Hide everything except the result */
  .lp-mini, .lp-hero, .lp-pain, .lp-pos, .lp-cta, .lp-footer,
  .tweaks-panel, .wizard,
  .r-cta, .r-cta__share, .r-pdf, .r-howcard__cta,
  .wizard__back { display: none !important; }

  /* Keep result cards readable */
  .result { padding: 0 !important; }
  .result__inner { padding: 0 !important; max-width: 100% !important; }
  .r-metric, .r-levelcard, .r-emocard, .r-howcard, .r-card, .r-scen { break-inside: avoid; }
}
