:root {
  --bg: #f3f0ea;
  --bg-2: #e8e2d6;
  --ink: #1a2332;
  --ink-muted: #5a6578;
  --line: #cfc6b6;
  --card: #fffdf8;
  --accent: #0d6e6e;
  --accent-2: #c45c26;
  --accent-soft: #d7ecec;
  --warn: #b45309;
  --danger: #9f1239;
  --ok: #0f766e;
  --shadow: 0 12px 40px rgba(26, 35, 50, 0.08);
  --radius: 18px;
  --font: "Segoe UI", "PT Root UI", "Manrope", system-ui, sans-serif;
  --display: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9efe9 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #f3dcc8 0%, transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

body {
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 80px;
}

.auth-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  width: min(420px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.brand {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin: 0;
}

.brand span {
  color: var(--accent);
}

.subtitle {
  margin: 4px 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.progress-wrap {
  min-width: 180px;
  text-align: right;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.progress {
  height: 8px;
  background: #ddd4c4;
  border-radius: 999px;
  overflow: hidden;
}

.progress > i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #1a9a8f);
  transition: width 0.35s ease;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  animation: rise 0.35s ease;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h2 {
  font-family: var(--display);
  font-size: 1.65rem;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--ink-muted);
  margin: 0 0 22px;
}

.note {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .progress-wrap {
    text-align: left;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.field .hint {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1.35;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 68px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, white);
  border-color: var(--accent);
}

.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.option:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}

.option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.option input {
  margin-top: 3px;
}

.scale {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.scale button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.scale button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.likert {
  display: grid;
  gap: 14px;
}

.likert-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.likert-row p {
  margin: 0 0 10px;
  font-weight: 600;
}

.likert-opts {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.likert-opts label {
  flex: 1;
  min-width: 52px;
  text-align: center;
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
}

.likert-opts label.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.likert-opts input {
  display: none;
}

.share-grid {
  display: grid;
  gap: 10px;
}

.share-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 6px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.share-row span {
  font-size: 0.88rem;
  font-weight: 600;
}

.share-row label {
  text-align: center;
  font-size: 0.78rem;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}

.share-row label.selected {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.share-row input {
  display: none;
}

@media (max-width: 720px) {
  .share-row {
    grid-template-columns: 1fr;
  }
}

.fn-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  background: #fff;
}

.fn-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.check input {
  margin-top: 4px;
}

.costly {
  margin: 8px 0 14px 28px;
  padding: 12px;
  background: #f7f3ea;
  border-radius: 12px;
  border: 1px dashed var(--line);
}

.subtable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.88rem;
}

.subtable th,
.subtable td {
  border-bottom: 1px solid var(--line);
  padding: 8px 6px;
  text-align: left;
  vertical-align: middle;
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-accent {
  background: var(--accent-2);
  color: #fff;
}

.error {
  color: var(--danger);
  font-size: 0.88rem;
  margin-top: 8px;
}

/* Results dashboard */
.dash {
  display: grid;
  gap: 14px;
}

.dash-exec {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .dash-exec {
    grid-template-columns: 1fr;
  }
}

.exec-a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}

.exec-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 720px) {
  .exec-metrics {
    grid-template-columns: 1fr;
  }
}

.dash-block {
  margin: 0;
}

.dash-sub {
  margin: 6px 0 12px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.dash-notes {
  margin: 12px 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.dash-notes.warn-notes {
  color: var(--warn);
}

.dash-observe {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.dash-details {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.dash-details > summary,
.info-tip > summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.dash.fn-card.dash-details,
details.dash-details.fn-card {
  padding: 14px 16px;
}

.result-note {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 8px 0 0;
}

.score-card {
  background: linear-gradient(145deg, #103f45, #0d6e6e);
  color: #f7fffe;
  border-radius: 18px;
  padding: 22px;
}

.score-card .label {
  opacity: 0.8;
  font-size: 0.85rem;
}

.score-card .big {
  font-family: var(--display);
  font-size: 2.6rem;
  margin: 6px 0;
  line-height: 1;
}

.score-card .meta {
  opacity: 0.9;
  font-size: 0.95rem;
}

.metric {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.metric .k {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.metric .v {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.metric-s {
  background: #faf7f1;
  border-style: dashed;
}

.metric-sub {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.bar {
  height: 8px;
  background: #ebe4d7;
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}

.bar > i {
  display: block;
  height: 100%;
  background: var(--accent);
}

.metric-s .bar > i {
  background: #8a6a3d;
}

.confidence-chip {
  min-width: 140px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: right;
}

.confidence-chip .confidence-label {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 2px;
}

.confidence-chip strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.data-readiness-line {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.gap-proxy-card {
  border-color: color-mix(in srgb, var(--accent-2) 35%, var(--line));
  background: linear-gradient(180deg, #fffaf6, #fff);
}

.g-score-unit {
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 2px;
  opacity: 0.75;
}

.pct-axis-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 4px 0 12px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.pct-axis-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.pct-axis-legend .dot.perc {
  background: var(--accent-2);
}

.pct-axis-legend .dot.fact {
  background: var(--accent);
}

.pct-axis {
  margin: 8px 0 16px;
}

.pct-axis-track {
  position: relative;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0e6d8 0%, #e8efe8 50%, #d7ecec 100%);
  border: 1px solid var(--line);
}

.pct-axis-gap {
  position: absolute;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--ink) 22%, transparent);
  border-radius: 2px;
}

.pct-mark {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.pct-mark.b1 {
  background: var(--accent-2);
}

.pct-mark.fact {
  background: var(--accent);
}

.pct-mark em {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}

.pct-axis-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.2;
}

.pct-axis-labels small {
  font-size: 0.7rem;
  opacity: 0.85;
}

.gap-proxy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .gap-proxy-grid {
    grid-template-columns: 1fr;
  }
}

.gap-proxy-grid > div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.gap-proxy-grid span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.gap-proxy-grid strong {
  display: block;
  font-size: 1.05rem;
}

.gap-proxy-grid em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* Perception block: dumbbell + triangle */
.mirror-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 820px) {
  .mirror-layout {
    grid-template-columns: 1fr;
  }
}

.mirror-triangle {
  padding: 12px 12px 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.tri-title {
  margin: 0;
  font-size: 1rem;
  font-family: var(--display);
}

.tri-sub {
  margin: 4px 0 8px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

#gapTriangleCanvas {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto;
}

.tri-tips {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  text-align: left;
}

.tri-tip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #faf7f1;
  font-size: 0.78rem;
  line-height: 1.3;
}

.tri-tip strong {
  grid-column: 1 / -1;
  font-size: 0.8rem;
}

.tri-tip em {
  font-style: normal;
  color: var(--ink-muted);
  grid-column: 1 / -1;
}

.tri-legend {
  justify-content: center;
  margin: 10px 0 0;
}

/* Dumbbell: perception vs fact */
.dumbbell-legend,
.g-stack-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.dumbbell-legend .dot,
.g-stack-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.dumbbell-legend .dot.perc,
.dumbbell-dot.perc {
  background: var(--accent-2);
}

.dumbbell-legend .dot.fact,
.dumbbell-dot.fact {
  background: var(--accent);
}

.dumbbell {
  display: grid;
  gap: 14px;
}

.dumbbell-row {
  display: grid;
  grid-template-columns: 160px 1fr 88px;
  gap: 10px;
  align-items: center;
}

@media (max-width: 720px) {
  .dumbbell-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.dumbbell-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.dumbbell-track {
  position: relative;
  height: 18px;
  background: linear-gradient(90deg, #efe8db, #e7efe9);
  border-radius: 999px;
}

.dumbbell-link {
  position: absolute;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--ink) 25%, transparent);
  border-radius: 2px;
}

.dumbbell-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.dumbbell-vals {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.dumbbell-vals .v-perc {
  color: var(--accent-2);
  font-weight: 700;
}

.dumbbell-vals .v-fact {
  color: var(--accent);
  font-weight: 700;
}

/* Maturity map */
.l-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
}

.l-chips > span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.info-tip {
  position: relative;
}

.info-tip > summary {
  list-style: none;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.info-tip > summary::-webkit-details-marker {
  display: none;
}

.info-tip[open] > summary {
  background: var(--accent-soft);
}

.info-tip ul {
  margin: 8px 0 0;
  padding: 10px 12px 10px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.mmap-head,
.mmap-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) minmax(140px, 1.4fr) 40px 90px;
  gap: 8px;
  align-items: center;
}

.mmap-head {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 4px;
  padding: 0 2px;
}

.mmap-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.mmap {
  display: grid;
  gap: 6px;
}

.mmap-row {
  padding: 8px 6px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid transparent;
}

.mmap-row.mismatch {
  border-color: color-mix(in srgb, var(--warn) 45%, var(--line));
  background: #fff8ef;
}

.mmap-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.mmap-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.mmap-cell {
  color: #cfc6b6;
  font-size: 1.05rem;
  line-height: 1;
}

.mmap-cell.on {
  color: var(--accent);
  font-size: 1.35rem;
  text-shadow: 0 0 0.5px var(--accent);
}

.mmap-l {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mmap-b4 {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: right;
}

@media (max-width: 720px) {
  .mmap-head {
    display: none;
  }
  .mmap-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name l"
      "scale b4";
  }
  .mmap-name { grid-area: name; }
  .mmap-l { grid-area: l; }
  .mmap-scale { grid-area: scale; }
  .mmap-b4 { grid-area: b4; text-align: right; }
}

/* S distribution */
.s-dist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.s-dist > div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .s-dist {
    grid-template-columns: 1fr;
  }
}

/* Governance */
.g-score {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--accent);
}

.g-stack {
  display: flex;
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: #ebe4d7;
  margin-bottom: 8px;
}

.g-stack > i {
  display: block;
  height: 100%;
}

.g-stack > i.sys,
.g-stack-legend .dot.sys,
.g-heat-mark.sys {
  background: #0d6e6e;
}

.g-stack > i.part,
.g-stack-legend .dot.part,
.g-heat-mark.part {
  background: #c45c26;
}

.g-stack > i.none,
.g-stack-legend .dot.none,
.g-heat-mark.none {
  background: #9aa3b2;
}

.g-heat-mark.na,
.g-heat-mark.unk {
  background: #e7e1d6;
  border: 1px dashed #b8b0a0;
}

.g-heat {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.g-heat-row {
  display: grid;
  grid-template-columns: 1fr 18px minmax(90px, auto);
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
}

.g-heat-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.g-heat-label {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.fn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.fn-table th,
.fn-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #ebe4d7;
}

.badge.warn {
  background: #ffedd5;
  color: var(--warn);
}

.badge.danger {
  background: #ffe4e6;
  color: var(--danger);
}

.badge.ok {
  background: #ccfbf1;
  color: var(--ok);
}

.flags {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.flag {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid var(--line);
}

.flag.strong {
  background: #fff1f2;
  border-color: #fecdd3;
}

.flag.warn {
  background: #fff7ed;
  border-color: #fed7aa;
}

.flag.info {
  background: #f0fdfa;
  border-color: #99f6e4;
}

.welcome {
  text-align: left;
}

.welcome > p {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.5;
}

.welcome-h {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.welcome ul,
.welcome-steps {
  margin: 8px 0 12px;
  padding-left: 18px;
  color: var(--ink-muted);
  line-height: 1.45;
}

.welcome-steps li {
  margin-bottom: 4px;
}

.hidden {
  display: none !important;
}
