:root {
  --bg-a: #f5f7f2;
  --bg-b: #d8e6d4;
  --ink: #1b2a31;
  --accent: #0f766e;
  --accent-2: #159a52;
  --good: #0e7a4d;
  --bad: #b33c12;
  --warn: #a8600c;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(15, 118, 110, 0.2);
  --shadow: 0 20px 45px rgba(13, 42, 51, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -20%, rgba(183, 95, 45, 0.18), transparent 60%),
    radial-gradient(1000px 500px at -10% 0%, rgba(15, 118, 110, 0.22), transparent 55%),
    linear-gradient(140deg, var(--bg-a), var(--bg-b));
  min-height: 100vh;
}

.shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.2rem 1.1rem 2rem;
}

.hero {
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0.3rem 0 0.35rem;
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1.05;
}

.subtitle {
  margin: 0;
  color: rgba(27, 42, 49, 0.75);
}

.orientation-hero {
  max-width: 920px;
  margin: 0 auto 1.2rem;
  padding: 1.55rem 1.7rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 42, 49, 0.1);
  border-radius: 1rem;
}

.orientation-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.orientation-subtitle {
  margin: 0.72rem auto 0;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(27, 42, 49, 0.7);
}

.orientation-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
  text-align: left;
}

.orientation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(27, 42, 49, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
}

.orientation-list li::before {
  content: "✓";
  color: #0f8a45;
  font-weight: 700;
  line-height: 1.2;
}

.orientation-cta {
  margin-top: 1.1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.62rem 1.18rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.orientation-cta:hover {
  background: #fff;
  border-color: rgba(15, 118, 110, 0.26);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  backdrop-filter: blur(6px);
}

.issuer-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.brand-header {
  margin-bottom: 0.95rem;
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: end;
}

.brand-field label {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.85rem;
}

.brand-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--warn);
}

.status-row {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.status-chip {
  border: 1px solid rgba(27, 42, 49, 0.18);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0.34rem 0.65rem;
  font-size: 0.8rem;
}

.status-chip .saved {
  color: var(--good);
  font-weight: 700;
}

.status-chip .skipped {
  color: var(--warn);
  font-weight: 700;
}

.status-chip .not-started {
  color: rgba(27, 42, 49, 0.7);
  font-weight: 700;
}

.tab-shell {
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.tab-nav {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  border: 1px solid rgba(27, 42, 49, 0.08);
  margin-bottom: 0.85rem;
}

.tab-btn {
  border: 0;
  border-radius: 0.85rem;
  background: transparent;
  color: var(--ink);
  padding: 0.7rem 1.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--accent-2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(21, 154, 82, 0.35);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.wizard-top {
  margin-bottom: 0.7rem;
}

.wizard-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wizard-step-count {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(27, 42, 49, 0.62);
}

.wizard-step-title {
  margin: 0.12rem 0 0;
  font-size: 1.36rem;
}

.wizard-progress {
  margin-top: 0.55rem;
  width: 100%;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(194, 210, 201, 0.9);
  overflow: hidden;
}

.wizard-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #20b15a, #0f766e);
  border-radius: inherit;
}

.wizard-shell {
  display: grid;
  gap: 0.85rem;
}

.wizard-card {
  box-shadow: none;
}

.wizard-card-head h3 {
  margin: 0;
  font-size: 1.18rem;
}

.wizard-card-head p {
  margin: 0.28rem 0 0;
  color: rgba(27, 42, 49, 0.72);
  font-size: 0.92rem;
}

.wizard-form {
  margin-top: 0.85rem;
}

.wizard-form .full-span {
  grid-column: 1 / -1;
}

.wizard-form-sliders {
  gap: 0.75rem 1rem;
}

.wizard-form-slider-rows {
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.wizard-form-slider-rows .slider-field {
  display: grid;
  gap: 0.12rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(27, 42, 49, 0.08);
}

.wizard-form-slider-rows .slider-field:last-of-type {
  border-bottom: 0;
  padding-bottom: 0.05rem;
}

.wizard-form-slider-rows .slider-field .field-label {
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.32;
  color: rgba(27, 42, 49, 0.96);
  margin-bottom: 0;
}

.wizard-form-slider-rows .slider-title-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -0.08rem;
}

.wizard-form-slider-rows .slider-title-row b {
  min-width: 5.5rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #244a86;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.98), rgba(230, 238, 252, 0.96));
  border: 1px solid rgba(65, 105, 190, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.wizard-form-slider-rows .slider-title-row span {
  display: none;
}

.wizard-form-slider-rows input[type='range'] {
  width: min(36rem, 72%);
  min-width: 18rem;
  justify-self: start;
  margin-top: -0.08rem;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.wizard-inline-status {
  margin: 0;
  min-height: 1rem;
  color: var(--bad);
  font-size: 0.85rem;
}

.wizard-inline-status[data-tone="pending"] {
  color: rgba(27, 42, 49, 0.62);
}

.wizard-inline-status[data-tone="success"] {
  color: #0f8a45;
}

.wizard-inline-status[data-tone="idle"] {
  color: transparent;
}

.wizard-assumption-note {
  margin: 0.8rem 0 0;
  font-size: 0.84rem;
  color: rgba(27, 42, 49, 0.72);
}

.baseline-card {
  background: rgba(247, 247, 248, 0.72);
  border: 1px solid rgba(27, 42, 49, 0.08);
  border-radius: 1.2rem;
  padding: 1.1rem;
}

.baseline-subtext {
  font-size: 0.84rem;
}

.review-edit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

.step-link-btn {
  border: 1px solid rgba(27, 42, 49, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.wizard-currency-tabs {
  flex-shrink: 0;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.issuer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
  align-items: start;
}

.impact-preview-panel {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0.12rem 0 0;
  box-shadow: none;
  position: static;
}

.issuer-form-impact {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 42, 49, 0.08);
  border-radius: 1rem;
  padding: 1rem;
}

label {
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(27, 42, 49, 0.88);
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

label small {
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(27, 42, 49, 0.7);
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  margin-right: 0.42rem;
  line-height: 1;
  border: 1px solid rgba(27, 42, 49, 0.2);
  color: rgba(27, 42, 49, 0.85);
  background: rgba(255, 255, 255, 0.7);
}

.ui-icon.brand {
  color: #2e6ce8;
  border-color: rgba(46, 108, 232, 0.35);
  background: rgba(224, 235, 255, 0.9);
}

.ui-icon.good {
  color: #0e7a4d;
  border-color: rgba(14, 122, 77, 0.35);
  background: rgba(224, 246, 236, 0.92);
}

.ui-icon.bad {
  color: #b33c12;
  border-color: rgba(179, 60, 18, 0.35);
  background: rgba(255, 235, 228, 0.92);
}

.info-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  margin-left: 0.34rem;
  margin-bottom: 0.08rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 132, 152, 0.46);
  background: rgba(244, 247, 252, 0.95);
  color: #7b8799;
  font-size: 0.64rem;
  font-weight: 800;
  cursor: help;
  vertical-align: middle;
}

.info-dot::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(280px, 78vw);
  opacity: 0;
  visibility: hidden;
  padding: 0.42rem 0.5rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(27, 42, 49, 0.2);
  background: rgba(18, 29, 43, 0.95);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.32;
  text-transform: none;
  white-space: normal;
  pointer-events: none;
  z-index: 20;
}

.info-dot:hover::after,
.info-dot:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

.recommended-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0b6b65;
  background: rgba(15, 118, 110, 0.14);
}

.program-preview {
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 600;
}

.field-warning {
  color: var(--warn);
  display: none;
}

.field-warning.field-error {
  color: var(--bad);
}

input,
select {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(27, 42, 49, 0.2);
  padding: 0.46rem 0.58rem;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  height: 0.9rem;
}

input[type='range']::-webkit-slider-runnable-track {
  height: 0.42rem;
  background: linear-gradient(90deg, #2e6ce8 0%, #2e6ce8 var(--fill-pct, 0%), #d4dceb var(--fill-pct, 0%), #d4dceb 100%);
  border-radius: 999px;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -0.37rem;
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: radial-gradient(circle at 35% 35%, #5c8fff, #2e6ce8 68%);
  box-shadow: 0 6px 16px rgba(46, 108, 232, 0.28);
}

input[type='range']::-moz-range-track {
  height: 0.42rem;
  background: #d4dceb;
  border-radius: 999px;
}

input[type='range']::-moz-range-progress {
  height: 0.42rem;
  background: #2e6ce8;
  border-radius: 999px;
}

input[type='range']::-moz-range-thumb {
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: radial-gradient(circle at 35% 35%, #5c8fff, #2e6ce8 68%);
  box-shadow: 0 6px 16px rgba(46, 108, 232, 0.28);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}

.actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.btn {
  border: 0;
  border-radius: 0.65rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent-2);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 42, 49, 0.16);
  color: var(--ink);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.output {
  margin-top: 0.9rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.8rem;
}

.contact-capture {
  margin-top: 0.85rem;
  border: 1px solid rgba(70, 120, 214, 0.22);
  border-radius: 0.72rem;
  background: rgba(245, 249, 255, 0.7);
  padding: 0.66rem 0.72rem;
}

.contact-capture h4 {
  margin: 0;
  font-size: 1rem;
}

.contact-capture p {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.86rem;
  color: rgba(27, 42, 49, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.75rem;
}

.contact-actions {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-status {
  font-size: 0.84rem;
  color: #0f9a52;
  font-weight: 600;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
}

.thanks-copy {
  margin: 0.2rem 0;
  font-size: 0.98rem;
  color: rgba(27, 42, 49, 0.85);
}

.thanks-meta {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.84rem;
  color: rgba(27, 42, 49, 0.62);
}

.thank-you-hero {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  margin-bottom: 0.25rem;
}

.thank-you-icon {
  display: inline-flex;
}

.thank-you-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 108, 232, 0.28);
  background: rgba(224, 235, 255, 0.75);
  color: #2a4f88;
  font-size: 0.79rem;
  font-weight: 700;
}

.summary-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 0.85rem;
  padding: 0.8rem;
}

.summary-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.headline-outcome {
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: rgba(240, 247, 246, 0.95);
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.75rem;
}

.headline-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.2rem 0;
}

.headline-row span {
  font-size: 0.88rem;
  color: rgba(27, 42, 49, 0.78);
  display: inline-flex;
  align-items: center;
}

.headline-row b {
  font-size: 1.1rem;
  color: var(--ink);
}

.insight-block h4,
.improve-block summary {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: var(--accent);
}

.improve-block {
  margin-top: 0.5rem;
}

.improve-block summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.improve-block summary::-webkit-details-marker {
  display: none;
}

.snapshot-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.65rem;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.18);
  font-size: 0.84rem;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.kpi {
  background: rgba(240, 247, 246, 0.9);
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 0.7rem;
  padding: 0.55rem;
}

.kpi b {
  display: block;
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.kpi small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(27, 42, 49, 0.8);
}

.kpi .decision.approved {
  color: var(--good);
}

.kpi .decision.rejected {
  color: var(--bad);
}

.explain {
  font-size: 0.9rem;
  margin: 0.4rem 0 0.6rem;
}

.suggestions {
  margin: 0;
  padding-left: 1rem;
}

.suggestions li {
  margin: 0.18rem 0;
  font-size: 0.88rem;
}

.loading,
.error {
  margin: 0;
  font-size: 0.9rem;
}

.error {
  color: var(--bad);
}

.issuer-form-impact {
  grid-template-columns: 1fr;
}

.form-header-row h3 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1;
}

.form-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.08rem 0 0.1rem;
}

.brand-liability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem 0.7rem;
  align-items: start;
}

.brand-liability-grid .full-span {
  grid-column: 1 / -1;
}

.currency-tabs {
  display: inline-flex;
  border: 1px solid rgba(70, 120, 214, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.16rem;
  gap: 0.18rem;
}

.currency-tab-btn {
  border: 0;
  background: transparent;
  color: #385a93;
  padding: 0.25rem 0.72rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.currency-tab-btn.active {
  background: #2e6ce8;
  color: #fff;
}

.form-section-title {
  margin: 0.3rem 0 0;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: #34527f;
}

.assumptions-heading {
  margin-top: 0.18rem;
}

.slider-field {
  gap: 0.08rem;
}

.slider-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.02rem;
}

.slider-title-row b {
  font-size: 0.9rem;
  color: #4b5f80;
}

.impact-kpi-top {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(27, 42, 49, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(20, 31, 55, 0.05);
}

.impact-kicker {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: rgba(27, 42, 49, 0.92);
  text-transform: none;
}

.impact-big {
  margin: 0.28rem 0 0.4rem;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 750;
  color: var(--ink);
}

.impact-divider {
  border-top: 1px solid rgba(27, 42, 49, 0.08);
  margin: 0.4rem 0 0.35rem;
}

.impact-note {
  margin: 0.1rem 0 0;
  font-size: 1rem;
  color: rgba(27, 42, 49, 0.72);
}

.impact-note-danger {
  color: #c40f0f;
  font-style: italic;
  font-weight: 500;
}

.impact-block {
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(20, 31, 55, 0.04);
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(27, 42, 49, 0.1);
}

.impact-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.impact-block h4 {
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  color: rgba(27, 42, 49, 0.95);
}

.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.34rem 0;
  font-size: 0.92rem;
}

.impact-row span {
  color: rgba(27, 42, 49, 0.66);
  font-weight: 500;
}

.impact-row b {
  font-size: 1rem;
  font-weight: 600;
  color: #1b2a31;
}

.impact-row-featured span,
.impact-row-featured b {
  font-size: 1.08rem;
  font-weight: 700;
  color: rgba(27, 42, 49, 0.94);
}

.impact-kpi-meta {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.impact-kpi-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.94rem;
}

.impact-kpi-meta-row span {
  color: rgba(27, 42, 49, 0.62);
}

.impact-kpi-meta-row b {
  font-size: 0.98rem;
  font-weight: 650;
}

.impact-section-head {
  margin: 0 0 0.9rem;
}

.impact-section-head .summary-title {
  margin-bottom: 0.18rem;
  color: rgba(27, 42, 49, 0.94);
}

.impact-section-copy {
  margin: 0;
  color: rgba(27, 42, 49, 0.62);
  font-size: 0.9rem;
}

.baseline-config-card {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem 0.8rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(27, 42, 49, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(20, 31, 55, 0.04);
}

.baseline-config-card .slider-field {
  gap: 0.2rem;
}

.value-critical {
  color: #c40f0f !important;
  font-weight: 700 !important;
}

.value-positive {
  color: #0b8f44 !important;
  font-weight: 700 !important;
}

.assumptions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.28rem 0.7rem;
  align-items: start;
}

.assumptions-grid .full-span {
  grid-column: 1 / -1;
}

.unlock-recovery {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.unlock-badge {
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4f46e5;
  background: rgba(240, 241, 255, 0.85);
}

.share-meter-wrap {
  width: 100%;
}

.unlock-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.unlock-hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.unlock-hero-head h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.unlock-hero-head p {
  margin: 0.2rem 0 0;
  font-size: 0.94rem;
  color: rgba(27, 42, 49, 0.64);
}

.share-meter {
  width: 100%;
  height: 0.64rem;
  border-radius: 999px;
  background: rgba(205, 212, 224, 0.8);
  overflow: hidden;
}

.share-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6b5cff, #8b5cf6);
  transition: width 320ms ease;
}

.unlock-meter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.unlock-meter-value {
  text-align: right;
  min-width: 90px;
}

.unlock-meter-value strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.unlock-meter-value span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(27, 42, 49, 0.55);
  font-size: 0.84rem;
}

.unlock-meter-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  color: rgba(27, 42, 49, 0.58);
  font-size: 0.86rem;
}

.unlock-drivers-list {
  margin-top: 0.9rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.unlock-driver-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(27, 42, 49, 0.08);
  transition: background-color 180ms ease;
}

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

.unlock-driver-row:hover {
  background: rgba(247, 247, 248, 0.92);
}

.unlock-driver-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: rgba(232, 236, 246, 0.8);
  color: rgba(27, 42, 49, 0.7);
}

.unlock-driver-icon.offers {
  background: rgba(226, 244, 233, 0.92);
  color: #14984f;
}

.unlock-driver-icon.routing {
  background: rgba(229, 238, 255, 0.92);
  color: #2f6de0;
}

.unlock-driver-icon.performance {
  background: rgba(242, 241, 255, 0.94);
  color: #6558f5;
}

.unlock-driver-copy {
  min-width: 0;
  flex: 1;
}

.unlock-driver-copy h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.unlock-driver-copy p {
  margin: 0.18rem 0 0;
  font-size: 0.88rem;
  color: rgba(27, 42, 49, 0.6);
}

.unlock-driver-copy small {
  display: inline-block;
  margin-top: 0.32rem;
  font-size: 0.82rem;
  color: rgba(27, 42, 49, 0.55);
}

.unlock-driver-control {
  width: min(280px, 100%);
}

.unlock-driver-control-split {
  width: min(380px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.unlock-driver-control label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(27, 42, 49, 0.62);
}

.unlock-driver-control label.is-readonly {
  color: rgba(27, 42, 49, 0.5);
}

.unlock-driver-control label.is-readonly input[type="range"] {
  opacity: 0.7;
  pointer-events: none;
}

.unlock-driver-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.unlock-addition {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.9rem;
  border-radius: 999px;
  padding: 0.24rem 0.46rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3660ea;
  background: rgba(231, 237, 255, 0.95);
}

.unlock-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.1rem;
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(27, 42, 49, 0.1);
}

.unlock-status.ok {
  background: rgba(227, 245, 233, 0.96);
  color: #0f8a45;
}

.unlock-status.progress {
  background: rgba(231, 239, 255, 0.96);
  color: #315fd8;
}

.unlock-status.lock {
  background: rgba(245, 246, 248, 0.96);
  color: rgba(27, 42, 49, 0.52);
}

@media (max-width: 700px) {
  .wizard-top-row,
  .wizard-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .impact-compare-grid,
  .issuer-layout {
    grid-template-columns: 1fr;
  }

  .brand-row {
    grid-template-columns: 1fr;
  }

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

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

  .brand-liability-grid {
    grid-template-columns: 1fr;
  }

  .unlock-control-grid {
    grid-template-columns: 1fr;
  }

  .unlock-meter-shell,
  .unlock-driver-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .unlock-driver-control,
  .unlock-driver-control-split {
    width: 100%;
  }

  .unlock-driver-control-split {
    grid-template-columns: 1fr;
  }

  .unlock-driver-meta {
    margin-left: 0;
  }

  .wizard-form-slider-rows input[type='range'] {
    width: 100%;
    min-width: 0;
  }

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

  .orientation-hero {
    padding: 1.15rem 1rem;
    text-align: left;
  }

  .orientation-title {
    font-size: 1.5rem;
  }

  .orientation-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .tab-btn {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
  }
}
