/* skip link */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;z-index:9999;}
.skip-link:focus{position:fixed;left:1rem;top:1rem;width:auto;height:auto;padding:.65rem 1rem;background:#6883f8;color:#fff;border-radius:.5rem;font-weight:600;}

/* Diagnóstico Express — editorial Multipropri (G4 / Mouts / Liberta bar) */

:root {
  --mp-blue: #6883f8;
  --mp-lime: #cedc42;
  --mp-bg: #000d10;
  --mp-charcoal: #0b1418;
  --mp-pink: #dc1178;
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.58);
  --text: #f4f7fb;
  --danger: #ff6b7a;
  --warn: #ffa502;
  --ok: #00e676;
  --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.diag {
  margin: 0;
  min-height: 100dvh;
  color: var(--text);
  font-family: var(--font-body);
  background: var(--mp-bg);
  -webkit-font-smoothing: antialiased;
}

.hero-plane {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 12% -10%, rgba(104, 131, 248, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 92% 8%, rgba(206, 220, 66, 0.1), transparent 45%),
    radial-gradient(ellipse 50% 50% at 70% 90%, rgba(104, 131, 248, 0.04), transparent 50%),
    linear-gradient(168deg, #000d10 0%, #0b1418 42%, #000d10 100%);
}

.hero-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* ——— Landing: one composition first viewport ——— */
.landing {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.landing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000d10;
}
.landing__bg-photo {
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(115deg, rgba(0, 13, 16, 0.92) 0%, rgba(0, 13, 16, 0.78) 38%, rgba(0, 13, 16, 0.94) 100%),
    url("../img/heroes/landing-hospitality.jpg") center/cover no-repeat;
  transform: scale(1.06);
  animation: landingKen 28s ease-in-out infinite alternate;
}
@supports (background-image: url("x.webp")) {
  .landing__bg-photo {
    background-image:
      linear-gradient(115deg, rgba(0, 13, 16, 0.92) 0%, rgba(0, 13, 16, 0.78) 38%, rgba(0, 13, 16, 0.94) 100%),
      url("../img/heroes/landing-hospitality.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing__bg-photo { animation: none; transform: none; inset: 0; }
}
@keyframes landingKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

.landing__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    rgba(0, 13, 16, 0.28),
    radial-gradient(ellipse 55% 45% at 75% 40%, rgba(104, 131, 248, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 30% at 15% 85%, rgba(206, 220, 66, 0.05), transparent 55%);
}

.landing__nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.25rem, 4vw, 3rem);
}

.landing__logo {
  height: 28px;
  width: auto;
  display: block;
}

.landing__nav-name {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.landing__logo-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}

.landing__logo-fallback em {
  font-style: normal;
  color: var(--mp-lime);
}

.landing__hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem clamp(1.25rem, 5vw, 4.5rem) 3.5rem;
  max-width: 42rem;
}

.landing__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1rem;
}

.landing__brand span {
  color: var(--mp-blue);
  letter-spacing: 0.08em;
}

.landing__h1 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.85rem, 5.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
}

.landing__h1 em {
  font-style: normal;
  color: var(--mp-lime);
}

.landing__lead {
  margin: 1.2rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.landing__cta {
  margin-top: 2rem;
}

.landing__below {
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1.25rem, 5vw, 4.5rem) 3.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 13, 16, 0.92) 18%, var(--mp-bg));
  border-top: 1px solid var(--line);
}

.landing__below-inner {
  width: min(720px, 100%);
}

.landing__trust {
  margin: 0;
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ——— Shared chrome ——— */
.diag-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(1.75rem, 5vh, 3.5rem) 0 4rem;
}
.diag-wrap--wide {
  width: min(1180px, calc(100% - 2.5rem));
}
.diag-lead--wide {
  max-width: 46rem;
}
@media (max-width: 720px) {
  .diag-wrap,
  .diag-wrap--wide {
    width: calc(100% - 1.5rem);
  }
}

.diag-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.diag-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-lime);
}

.diag-h1 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
}

.diag-h1 em {
  font-style: normal;
  color: var(--mp-blue);
}

.diag-h1--md {
  font-size: clamp(1.35rem, 3.6vw, 1.85rem);
  font-weight: 600;
}

.diag-lead {
  margin: 1.1rem 0 0;
  max-width: 38rem;
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  line-height: 1.55;
  color: var(--muted);
}

.diag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 1.75rem;
}

.diag-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.diag-cta,
.diag-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--mp-lime);
  color: #0b1020;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 34px rgba(206, 220, 66, 0.2);
}

.diag-cta:hover,
.diag-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.diag-cta:focus-visible,
.diag-btn-primary:focus-visible,
.scale-opt:focus-visible,
.diag-input:focus-visible,
.diag-select:focus-visible,
.diag-textarea:focus-visible {
  outline: 2px solid var(--mp-lime);
  outline-offset: 3px;
}

.diag-meta {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.diag-field {
  margin: 0 0 1rem;
}

.diag-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.diag-input,
.diag-select,
.diag-textarea {
  display: block;
  width: 100%;
  min-height: 2.95rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.7rem 1rem;
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.diag-textarea {
  min-height: 6rem;
  resize: vertical;
}

.diag-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23ffffff99' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.diag-input:focus,
.diag-select:focus,
.diag-textarea:focus {
  border-color: var(--mp-lime);
  box-shadow: 0 0 0 3px rgba(206, 220, 66, 0.22);
}

.diag-input::placeholder,
.diag-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.diag-error {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
  font-size: 0.88rem;
}

/* ——— Progress sticky (below chrome) ——— */
:root {
  --diag-chrome-h: 3.25rem;
}
.diag-progress {
  position: sticky;
  top: var(--diag-chrome-h);
  z-index: 25;
  padding: 0.85rem clamp(0.75rem, 3vw, 1.5rem) 0.7rem;
  background: rgba(0, 13, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.diag-progress__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.diag-progress__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.diag-progress__row strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.diag-bar {
  margin-top: 0.55rem;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.diag-bar > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #aebb32, var(--mp-lime));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ——— Scale options (Liberta-like thumb cards) ——— */
.scale-grid {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .scale-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
  .scale-grid--compact .scale-opt:nth-child(4),
  .scale-grid--compact .scale-opt:nth-child(5),
  .scale-grid--compact .scale-opt:nth-child(6) {
    grid-column: span 1;
  }
}

.scale-opt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--card);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 3.6rem;
  -webkit-tap-highlight-color: transparent;
}

.scale-opt:hover {
  border-color: rgba(104, 131, 248, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.scale-opt.selected {
  border-color: var(--mp-lime);
  background: rgba(206, 220, 66, 0.14);
  box-shadow: 0 0 0 1px rgba(206, 220, 66, 0.3);
}

.scale-opt__label {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.scale-opt.selected .scale-opt__label {
  color: #fff;
}

.scale-opt__check {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}

.scale-opt.selected .scale-opt__check {
  border-color: var(--mp-lime);
  background: var(--mp-lime);
}

.scale-opt.selected .scale-opt__check::after {
  content: "";
  width: 0.35rem;
  height: 0.6rem;
  border: solid #0b1020;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.diag-context {
  margin: 1.15rem 0 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(104, 131, 248, 0.22);
  background: rgba(104, 131, 248, 0.08);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.diag-context__label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-blue);
}

.diag-chrome {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--diag-chrome-h);
  padding: 0.75rem clamp(0.75rem, 3vw, 1.5rem);
  background: rgba(0, 13, 16, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.diag-chrome__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  color: #fff;
}

.diag-chrome__brand img {
  height: 22px;
  width: auto;
  display: block;
}

.diag-chrome__meta {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

.diag-chrome__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.diag-chrome__back:hover {
  border-color: rgba(104, 131, 248, 0.45);
  color: #fff;
}

.diag-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.diag-brand-row img {
  height: 28px;
  width: auto;
}

.diag-brand-row__soma {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.result-score__value {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
}

/* ——— Result cinematic ——— */
.result-hero {
  text-align: left;
}

.result-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.result-score__card {
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: var(--card-strong);
}

.result-score__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.result-score__value {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mp-blue);
}

.result-score__card--fit .result-score__value {
  color: var(--mp-lime);
}

.radar-panel {
  margin: 0 0 2rem;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: var(--card);
}

.radar-wrap {
  display: flex;
  justify-content: center;
  overflow: visible;
}

.radar-wrap svg {
  width: min(100%, 340px);
  height: auto;
  overflow: visible;
}

.radar-label {
  font-family: var(--font-body);
  font-size: 9.5px;
  fill: rgba(255, 255, 255, 0.72);
}

.dim-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dim-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.dim-row:last-child {
  border-bottom: 0;
}

.dim-bar {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: -0.15rem;
}

.dim-bar > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #aebb32, var(--mp-lime));
}

.eixo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .eixo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.eixo-card {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.eixo-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.gate {
  margin: 0.55rem 0;
  padding: 0.95rem 1.05rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.12);
  font-size: 0.9rem;
  line-height: 1.4;
}

.gate--warn {
  border-color: rgba(255, 165, 2, 0.4);
  background: rgba(255, 165, 2, 0.1);
}

.gate__title {
  font-weight: 700;
  color: #fecaca;
}

.gate--warn .gate__title {
  color: #ffd59a;
}

.cta-panel {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(206, 220, 66, 0.32);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(206, 220, 66, 0.1), transparent 55%),
    var(--card-strong);
}

.fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-up-delay {
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

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

.diag-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

.diag-check input {
  margin-top: 0.2rem;
  accent-color: var(--mp-lime);
}

@media (max-width: 640px) {
  .diag-wrap {
    width: min(100%, calc(100% - 1.25rem));
  }
  .result-score {
    grid-template-columns: 1fr;
  }
}

/* ——— Wave 3: public diagnosis maturity ——— */
.landing__logo {
  height: clamp(34px, 5vw, 48px);
}

.landing__hero-logo {
  width: min(260px, 62vw);
  height: auto;
  margin: 0 0 1.5rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.28));
}

.landing__signal {
  position: relative;
  width: min(20rem, 72vw);
  height: 2px;
  margin-top: 2.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.landing__signal span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--mp-lime), transparent);
  animation: signalSweep 2.8s ease-in-out infinite;
}

.landing__signal i {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--mp-lime);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: signalPulse 2s ease-out infinite;
}

@keyframes signalSweep {
  0% { transform: translateX(-110%); opacity: 0; }
  20%, 70% { opacity: 1; }
  100% { transform: translateX(330%); opacity: 0; }
}

@keyframes signalPulse {
  0% { box-shadow: 0 0 0 0 rgba(206, 220, 66, 0.5); }
  70%, 100% { box-shadow: 0 0 0 14px rgba(206, 220, 66, 0); }
}

.scale-opt__key {
  display: inline-grid;
  flex: 0 0 1.65rem;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.scale-opt.selected .scale-opt__key {
  border-color: rgba(206, 220, 66, 0.45);
  color: var(--mp-lime);
}

.scale-opt.is-submitting {
  transform: scale(0.985);
  border-color: var(--mp-lime);
  background: rgba(206, 220, 66, 0.13);
}

.diag-error--inline {
  margin-top: -1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0.75rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem -0.5rem 0;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 13, 16, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.sticky-cta__hint {
  padding-left: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.sticky-cta .diag-cta {
  flex: 0 0 auto;
}

/* Tom Select inherits diagnosis surface */
.diag .ts-wrapper {
  width: 100%;
}

.diag .ts-control,
.diag .ts-wrapper.single.input-active .ts-control {
  min-height: 2.95rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: #fff;
  padding: 0.7rem 2.4rem 0.7rem 1rem;
}

.diag .ts-wrapper.focus .ts-control {
  border-color: var(--mp-lime);
  box-shadow: 0 0 0 3px rgba(206, 220, 66, 0.22);
}

.diag .ts-control input,
.diag .ts-control .item {
  color: #fff;
  font: inherit;
}

.diag .ts-dropdown {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #111d21;
  color: #fff;
}

.diag .ts-dropdown .option {
  padding: 0.75rem 1rem;
}

.diag .ts-dropdown .active {
  background: rgba(104, 131, 248, 0.2);
  color: #fff;
}

.completion-moment {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(206, 220, 66, 0.28);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(206, 220, 66, 0.11), rgba(104, 131, 248, 0.08));
}

.completion-moment__ring {
  display: grid;
  flex: 0 0 2.8rem;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--mp-lime);
  border-radius: 50%;
  color: var(--mp-lime);
  animation: completionPop 0.65s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}

.completion-moment__ring svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.completion-moment strong,
.completion-moment span {
  display: block;
}

.completion-moment strong {
  color: #fff;
  font-size: 0.95rem;
}

.completion-moment div > span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@keyframes completionPop {
  from { opacity: 0; transform: scale(0.4) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.radar-shape {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: radarDraw 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.radar-point {
  opacity: 0;
  animation: radarPointIn 0.35s ease 1.25s forwards;
}

@keyframes radarDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes radarPointIn {
  to { opacity: 1; }
}

.gate__status {
  margin-bottom: 0.25rem;
  color: var(--danger);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gate--warn .gate__status {
  color: var(--warn);
}

.gates-clear {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 1rem;
  background: rgba(0, 230, 118, 0.07);
}

.gates-clear__mark {
  flex: 0 0 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(0, 230, 118, 0.1);
}

.gates-clear strong,
.gates-clear span {
  display: block;
}

.gates-clear span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.insight-grid {
  display: grid;
  gap: 0.7rem;
}

.insight-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--card);
}

.insight-card--strength {
  border-left: 3px solid var(--mp-lime);
}

.insight-card--priority {
  border-left: 3px solid var(--mp-lime);
}

.insight-card__rank {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.insight-card__eyebrow {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: 0.95rem;
}

.insight-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.insight-card > strong {
  color: #fff;
  font-size: 1.05rem;
}

.insight-card > strong small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 500;
}

/* ——— Executive result narrative ——— */
.result-story {
  width: min(780px, calc(100% - 2rem));
}

.hero-fit {
  margin-bottom: 2.75rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid rgba(206, 220, 66, 0.3);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 70% 80% at 0 0, rgba(206, 220, 66, 0.13), transparent 60%),
    var(--card);
}

.hero-fit__value {
  margin: -0.2rem 0 0.7rem;
  color: var(--mp-lime);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.95;
}
.hero-fit__scale {
  font-size: 0.38em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-left: 0.12em;
  color: rgba(206, 220, 66, 0.72);
  vertical-align: 0.15em;
}
.hero-fit__band {
  margin: -0.15rem 0 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
}
.hero-fit__band strong {
  color: #fff;
  font-weight: 600;
}

.hero-fit__sentence {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.result-story__section {
  margin-top: 2.5rem;
}

.result-story__title {
  margin: -0.25rem 0 1rem;
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.02em;
}

.result-details {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.result-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

.result-details > summary::-webkit-details-marker {
  display: none;
}

.result-details > summary::after {
  content: "+";
  color: var(--mp-lime);
  font-size: 1.25rem;
  font-weight: 400;
}

.result-details[open] > summary::after {
  content: "−";
}

.result-details > summary span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
}

.result-details__body {
  padding: 1.25rem 1.1rem 1.4rem;
  border-top: 1px solid var(--line);
}

.result-details__heading {
  margin-top: 2rem;
}

.radar-panel--compact {
  width: min(100%, 30rem);
  margin: 2rem auto 0;
}

.radar-panel--compact .radar-wrap svg {
  width: min(100%, 280px);
}

/* ——— Public form hierarchy ——— */
.field-help {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  line-height: 1.4;
}

.lead-fields--primary {
  margin-bottom: 1.5rem;
}

.lead-fields--secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.lead-fields__label {
  grid-column: 1 / -1;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.lead-fields__label span {
  margin-left: 0.35rem;
  color: var(--muted);
  font-weight: 400;
}

.lead-fields--secondary .diag-field:last-child {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.result-actions span {
  color: var(--muted);
  font-size: 0.75rem;
}

.print-header {
  display: none;
}

.diag-404 {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.diag-404__logo {
  width: min(280px, 70vw);
  height: auto;
  margin-bottom: 2.5rem;
}

.diag-404 .diag-cta {
  margin-top: 1.75rem;
}

@media (max-width: 640px) {
  .sticky-cta__hint { display: none; }
  .sticky-cta .diag-cta { width: 100%; }
  .insight-card { grid-template-columns: auto 1fr; }
  .insight-card > strong { grid-column: 2; }
  .result-details > summary span { display: none; }
  .lead-fields--secondary { grid-template-columns: 1fr; }
  .lead-fields--secondary .diag-field:last-child { grid-column: auto; }
}

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

@media print {
  @page { margin: 14mm; }
  body.diag {
    color: #172126;
    background: #fff;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .hero-plane,
  .diag-chrome,
  .cta-panel,
  .result-details > summary,
  .result-actions {
    display: none !important;
  }
  .result-details {
    border: 0;
    background: transparent;
    overflow: visible;
  }
  .result-details__body {
    display: block !important;
    padding: 0;
    border: 0;
  }
  .print-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12mm;
    padding-bottom: 5mm;
    border-bottom: 1px solid #d9dfe3;
  }
  .print-header img {
    width: 48mm;
    height: auto;
  }
  .print-header div {
    text-align: right;
  }
  .print-header strong,
  .print-header span {
    display: block;
  }
  .print-header span {
    margin-top: 1mm;
    color: #66737b;
    font-size: 9pt;
  }
  .diag-wrap {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .diag-h1,
  .result-story__title,
  .result-score__value,
  .eixo-card strong,
  .insight-card h3,
  .insight-card > strong {
    color: #172126 !important;
  }
  .diag-lead,
  .diag-meta,
  .result-score__label,
  .insight-card p,
  .insight-card__eyebrow {
    color: #5b6870 !important;
  }
  .diag-kicker { color: #516ef0; }
  .hero-fit__value { color: #829000 !important; }
  .hero-fit {
    break-inside: avoid;
    border-color: #d9dfe3;
    background: #f7f9fa;
  }
  .result-score__card,
  .radar-panel,
  .eixo-card,
  .insight-card,
  .gate,
  .gates-clear {
    break-inside: avoid;
    border-color: #d9dfe3;
    background: #f7f9fa;
  }
  .radar-panel svg text { fill: #37434a; }
  .radar-panel svg line,
  .radar-panel svg circle:not(.radar-point) { stroke: rgba(23, 33, 38, 0.18); }
  .dim-row { border-color: #d9dfe3; }
}

/* ——— Motion library (2–3 intentional) ——— */
.soma-stagger__item {
  opacity: 0;
  transform: translateY(18px);
  animation: somaStaggerIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.soma-stagger__item:nth-child(1) { animation-delay: 0.05s; }
.soma-stagger__item:nth-child(2) { animation-delay: 0.14s; }
.soma-stagger__item:nth-child(3) { animation-delay: 0.24s; }
.soma-stagger__item:nth-child(4) { animation-delay: 0.34s; }
.soma-stagger__item:nth-child(5) { animation-delay: 0.44s; }
.soma-stagger__item:nth-child(6) { animation-delay: 0.54s; }
@keyframes somaStaggerIn {
  to { opacity: 1; transform: translateY(0); }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.reveal-number {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
@media (prefers-reduced-motion: reduce) {
  .soma-stagger__item, [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ——— Landing editorial (beyond first viewport) ——— */
.landing__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.landing__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.landing__cta-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.diag-cta--pulse {
  box-shadow: 0 0 0 0 rgba(206, 220, 66, 0.45);
  animation: ctaPulse 2.4s ease-out infinite;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(206, 220, 66, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(206, 220, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(206, 220, 66, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .diag-cta--pulse { animation: none; }
}
.landing__scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}
.landing__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--mp-lime);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.35; }
}

.landing-edit {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4.5rem);
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(206,220,66,0.08), transparent 55%),
    linear-gradient(180deg, #000d10 0%, #0b1418 100%);
  border-top: 1px solid var(--line);
}
.landing-edit__inner { width: min(980px, 100%); margin: 0 auto; }
.landing-edit__kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-lime);
}
.landing-edit__h2 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  max-width: 18ch;
}
.landing-edit__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .landing-edit__grid { grid-template-columns: 1fr; }
}
.landing-edit__card {
  position: relative;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.landing-edit__card:hover {
  transform: translateY(-3px);
  border-color: rgba(206,220,66,0.35);
  background: rgba(255,255,255,0.06);
}
.landing-edit__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: rgba(206,220,66,0.35);
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
}
.landing-edit__card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.landing-edit__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}
.landing-edit__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.25rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  .landing-edit__proof { grid-template-columns: 1fr; }
}
.landing-edit__proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mp-lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.landing-edit__proof span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.landing-edit__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.landing-edit__foot p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.hero-fit__value {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.insight-card {
  transition: transform .22s ease, border-color .22s ease;
}
.insight-card:hover { transform: translateY(-2px); }

/* ——— Single-fold landing + readable type ——— */
.landing--fold {
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.landing--fold .landing__stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.35rem clamp(1.25rem, 4vw, 3.5rem) 1.35rem;
  width: min(920px, 100%);
}
.landing--fold .landing__hero {
  flex: 0 0 auto;
  padding: 0;
  max-width: 34rem;
  justify-content: flex-start;
}
.landing--fold .landing__hero-logo {
  height: 26px;
  margin-bottom: 0.5rem;
}
.landing--fold .landing__brand {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
}
.landing--fold .landing__h1,
.landing__h1 {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  max-width: 18ch;
}
.landing--fold .landing__h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--mp-lime);
}
.landing--fold .landing__lead {
  margin-top: 0.55rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.45;
  max-width: 34rem;
  color: rgba(255,255,255,0.78);
}
.landing--fold .landing__cta {
  margin-top: 0.9rem;
  gap: 0.55rem 1rem;
}
.landing--fold .landing__cta-hint {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.landing--fold .landing__rail {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 100%;
}
.landing--fold .landing__rail article {
  padding: 0.85rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,13,16,0.48);
  backdrop-filter: blur(8px);
}
.landing--fold .landing__rail strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.landing--fold .landing__rail span {
  display: block;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
}
.landing--fold .landing__proof {
  margin: 0.35rem 0 0;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.65);
}
.landing--fold .landing__proof b {
  color: var(--mp-lime);
  font-weight: 700;
}
@media (max-width: 720px) {
  .landing--fold { max-height: none; overflow: auto; }
  .landing--fold .landing__rail { grid-template-columns: 1fr; }
}
.landing-below { display: none !important; }
.landing--fold .landing__scroll,
.landing-edit { display: none !important; }

/* ——— Quiz: pergunta dark + respostas light ——— */
.quiz-split {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 6rem;
}
.quiz-split__ask {
  max-width: 42rem;
}
.quiz-split__answers {
  margin: 0 -0.25rem;
  padding: 1.15rem 1rem 1.25rem;
  border-radius: 1.15rem;
  background: #f7f8fa;
  border: 1px solid #e4e7ec;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
@media (min-width: 640px) {
  .quiz-split__answers {
    margin: 0;
    padding: 1.35rem 1.35rem 1.45rem;
  }
}
.quiz-split__answers-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667085;
}
.quiz-split__answers .scale-grid {
  margin: 0;
  gap: 0.45rem;
}
.quiz-split__answers .scale-opt {
  background: #fff;
  border-color: #d0d5dd;
  color: #101828;
  box-shadow: none;
}
.quiz-split__answers .scale-opt:hover {
  border-color: #6883f8;
  background: #f8faff;
  box-shadow: 0 4px 14px rgba(104, 131, 248, 0.12);
  transform: translateY(-1px);
}
.quiz-split__answers .scale-opt.selected {
  border-color: #829000;
  background: #f7fbe8;
  box-shadow: 0 0 0 1px rgba(206, 220, 66, 0.55);
}
.quiz-split__answers .scale-opt__label {
  color: #101828;
  font-weight: 600;
}
.quiz-split__answers .scale-opt.selected .scale-opt__label {
  color: #101828;
}
.quiz-split__answers .scale-opt__key {
  background: #f2f4f7;
  color: #475467;
  border-color: #d0d5dd;
}
.quiz-split__answers .scale-opt.selected .scale-opt__key {
  background: var(--mp-lime);
  color: #000d10;
  border-color: var(--mp-lime);
}
.quiz-split__answers .scale-opt__check {
  border-color: #98a2b3;
}
.quiz-split__answers .scale-opt.selected .scale-opt__check {
  border-color: var(--mp-lime);
  background: var(--mp-lime);
}
.quiz-split__answers .diag-error {
  color: #b42318;
  background: #fef3f2;
  border-color: #fecdca;
}

/* ——— Insight rail (G4-style persuasive panel) ——— */
.insight-opener {
  max-width: min(1180px, calc(100% - 2.5rem));
  margin: 0.85rem auto 0;
  padding: 0.85rem 1.25rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(206, 220, 66, 0.35);
  background: linear-gradient(135deg, rgba(130, 144, 0, 0.14), rgba(104, 131, 248, 0.1));
}
.insight-opener__kicker {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-lime, #cedc42);
  margin-bottom: 0.2rem;
}
.insight-opener strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}
.insight-opener p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.quiz-split--insight {
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .quiz-split--insight {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.95fr);
    align-items: start;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
  .quiz-split--insight .quiz-split__ask {
    max-width: none;
  }
}
@media (min-width: 1100px) {
  .quiz-split--insight {
    grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.9fr);
  }
}

.insight-rail {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(104, 131, 248, 0.28);
  background: linear-gradient(160deg, rgba(20, 28, 48, 0.95), rgba(12, 16, 28, 0.92));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.insight-rail__stat {
  position: relative;
  padding-bottom: 0.95rem;
  margin-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.insight-rail__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mp-lime, #cedc42);
  letter-spacing: -0.03em;
}
.insight-rail__label {
  display: block;
  margin-top: 0.45rem;
  color: #e8ecf4;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}
.insight-rail__source {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}
.insight-rail__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(206, 220, 66, 0.18);
  color: var(--mp-lime, #cedc42);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.insight-rail__reaction-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insight-rail__reaction strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.35;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.insight-rail__reaction p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  transition: opacity 0.2s ease;
}
.insight-rail__reaction.is-updating strong,
.insight-rail__reaction.is-updating p {
  opacity: 0.35;
  transform: translateY(2px);
}
.insight-rail__peer {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.75rem;
}
.insight-rail__peer strong {
  color: #fff;
}

.peer-compare {
  margin: 1.5rem 0 0.5rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(104, 131, 248, 0.25);
  background: rgba(104, 131, 248, 0.08);
}
.peer-compare__body {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 40rem;
}
.peer-compare__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.peer-compare__grid > div {
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.peer-compare__grid span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.peer-compare__grid strong {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  font-size: 1.35rem;
}
.peer-compare__grid strong small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
}
.peer-compare__n {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 719px) {
  .insight-opener { margin-left: 1rem; margin-right: 1rem; }
}

.sticky-cta--light {
  position: sticky;
  bottom: 0;
  margin: 1rem -0.25rem -0.35rem;
  padding: 0.85rem 0.25rem 0.15rem;
  background: linear-gradient(180deg, rgba(247,248,250,0), #f7f8fa 28%);
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .sticky-cta--light { margin-left: 0; margin-right: 0; }
}
.sticky-cta--light .sticky-cta__hint {
  color: #667085;
}

/* Definitivo / ERP long copy: body font */
.soma-workshop__q {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
}

/* ——— Profile choice cards (exposed radios) ——— */
.profile-page__title {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--mp-lime);
}
.profile-page__lead {
  margin-top: 0.85rem;
  max-width: 42rem;
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  line-height: 1.5;
  color: #a8b8ff;
}
.profile-form {
  margin-top: 2.25rem;
}
.profile-form__name {
  max-width: 36rem;
  margin-bottom: 2rem;
}
.profile-form__name .diag-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mp-lime);
}
.choice-block {
  margin: 0 0 2.15rem;
  padding: 0;
  border: 0;
  min-width: 0;
}
.choice-block__title {
  display: block;
  margin: 0 0 0.4rem;
  padding: 0;
  float: none;
  width: auto;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--mp-lime);
}
.choice-block__sub {
  margin: 0 0 0.95rem;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #9eb0ff;
}
.choice-block .diag-label {
  display: block;
  margin-bottom: 0.35rem;
  float: none;
  width: auto;
  padding: 0;
}
.diag-label__opt {
  margin-left: 0.35rem;
  color: rgba(158, 176, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.field-help--legend {
  margin: 0 0 0.85rem;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .choice-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
}
@media (min-width: 900px) {
  .choice-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }
}
.choice-card {
  display: block;
  cursor: pointer;
  margin: 0;
  min-width: 0;
}
.choice-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.choice-card__face {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 2.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.choice-card__radio {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  box-shadow: inset 0 0 0 0 var(--mp-lime);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.choice-card__text {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.choice-card:hover .choice-card__face {
  border-color: rgba(104, 131, 248, 0.55);
  background: rgba(104, 131, 248, 0.08);
  transform: translateY(-1px);
}
.choice-card__input:focus-visible + .choice-card__face {
  outline: 2px solid rgba(104, 131, 248, 0.7);
  outline-offset: 2px;
}
.choice-card__input:checked + .choice-card__face {
  border-color: rgba(206, 220, 66, 0.75);
  background: linear-gradient(145deg, rgba(206, 220, 66, 0.14), rgba(104, 131, 248, 0.1));
  box-shadow: 0 0 0 1px rgba(206, 220, 66, 0.25), 0 10px 28px rgba(0, 0, 0, 0.22);
}
.choice-card__input:checked + .choice-card__face .choice-card__radio {
  border-color: var(--mp-lime);
  background: var(--mp-lime);
  box-shadow: inset 0 0 0 3px #0a1214;
}
.choice-card__input:checked + .choice-card__face .choice-card__text {
  color: #fff;
  font-weight: 700;
}

/* Quiz answers: slightly roomier cards on wide layout */
@media (min-width: 900px) {
  .quiz-split__answers {
    padding: 1.45rem 1.45rem 1.55rem;
  }
  .quiz-split__answers .scale-opt {
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
  }
}

