html,
body {
  height: 100%;
}

:root {
  --bg: #0b1220;
  --panel: #111c2f;
  --panel-2: #162338;
  --panel-3: #1f2d43;
  --line: #2b3e57;
  --line-hot: #4299e1;
  --text: #e2e8f0;
  --muted: #8fa3bd;
  --blue: #4299e1;
  --blue-soft: #63b3ed;
  --gold: #d4af37;
  --green: #48bb78;
  --red: #fc8181;
  --focus-glow: rgba(96, 165, 250, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(180deg, #111827 0%, var(--bg) 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  overflow: hidden;
}

/* Global page-fit guardrails (desktop) */
@media (min-width: 981px) {
  body.step-1 .monitor-shell,
  body.step-2 .monitor-shell,
  body.step-3 .monitor-shell,
  body.step-3b .monitor-shell,
  body.step-4 .monitor-shell {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    gap: 8px;
    padding: 10px;
  }

  body.step-1 .monitor-topbar,
  body.step-2 .monitor-topbar,
  body.step-3 .monitor-topbar,
  body.step-3b .monitor-topbar,
  body.step-4 .monitor-topbar {
    padding: 6px 10px 8px;
  }

  body.step-1 .progress-panel,
  body.step-2 .progress-panel,
  body.step-3 .progress-panel,
  body.step-3b .progress-panel,
  body.step-4 .progress-panel {
    padding: 6px 8px;
  }

  body.step-1 .workspace-grid,
  body.step-2 .workspace-grid,
  body.step-3 .workspace-grid,
  body.step-3b .workspace-grid,
  body.step-4 .workspace-grid {
    max-height: calc(100vh - 126px);
    overflow: hidden;
    gap: 8px;
  }

  body.step-1 .workflow-panel,
  body.step-2 .workflow-panel,
  body.step-3 .workflow-panel,
  body.step-3b .workflow-panel,
  body.step-4 .workflow-panel {
    overflow: hidden;
    padding: 6px;
  }

  body.step-1 .workflow-scroll,
  body.step-2 .workflow-scroll,
  body.step-3 .workflow-scroll,
  body.step-3b .workflow-scroll,
  body.step-4 .workflow-scroll {
    overflow: hidden;
    padding-right: 0;
  }

  body.step-1 .step-navigation-panel,
  body.step-2 .step-navigation-panel,
  body.step-3 .step-navigation-panel,
  body.step-3b .step-navigation-panel,
  body.step-4 .step-navigation-panel {
    margin-top: 6px;
    padding: 6px;
  }

  body.step-1 .workflow-scroll-hint,
  body.step-2 .workflow-scroll-hint,
  body.step-3 .workflow-scroll-hint,
  body.step-3b .workflow-scroll-hint,
  body.step-4 .workflow-scroll-hint {
    display: none !important;
  }
}

body.quick-request-modal-open {
  overflow: hidden;
}

body.submission-success-modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

.monitor-shell {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 10px;
  height: 100vh;
  min-height: 100vh;
  padding: 12px;
  overflow: hidden;
}

.page-subtext {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.monitor-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 28, 47, 0.78);
}

.back-link {
  color: var(--blue-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
p,
dl,
dd {
  margin: 0;
}

h1 {
  margin-top: 3px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.server-chip {
  color: var(--muted);
  font-size: 0.78rem;
}

.progress-panel {
  margin-top: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 28, 47, 0.8);
}

.progress-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--blue-soft);
  font-weight: 800;
}

.progress-heading strong {
  color: var(--green);
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #050b16;
}

#progressFill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #38b2ac);
  transition: width 180ms ease;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
}

.stage-tab {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #f8fafc;
  background: #0f172a;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.stage-tab.active,
.stage-tab.complete {
  border-color: var(--blue);
  background: linear-gradient(135deg, #2b6cb0, var(--blue));
}

.stage-tab.complete {
  background: rgba(72, 187, 120, 0.24);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(310px, 32vw) 1fr;
  gap: 10px;
  margin-top: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  align-items: stretch;
}

body.helper-rail-active .workspace-grid {
  grid-template-columns: 340px minmax(0, 1fr);
}

body.helper-rail-active .left-rail {
  width: 340px;
  min-width: 340px;
  max-width: 340px;
}

.left-rail,
.workflow-panel {
  min-width: 0;
  min-height: 0;
}

[data-step-section][hidden] {
  display: none !important;
}

.step-navigation-panel {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: rgba(17, 28, 47, 0.92);
  position: relative;
  z-index: 12;
}

.selection-summary-list {
  grid-template-columns: 1fr;
}

.selection-logo-preview {
  display: grid;
  place-items: center;
  min-height: 72px;
  margin-top: 10px;
  border: 1px dashed rgba(144, 205, 244, 0.35);
  border-radius: 8px;
  padding: 10px;
  color: var(--muted);
  background: #08111f;
  text-align: center;
}

.selection-logo-preview img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.color-chip {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border-radius: 3px;
  border: 1px solid rgba(226, 232, 240, 0.55);
  vertical-align: middle;
}

body.step-3b .workspace-grid {
  grid-template-columns: 1fr;
}

body.step-3b {
  --step3b-scale: 1;
}

@media (min-width: 981px) {
  body.step-3b .monitor-shell {
    transform-origin: top left;
    transform: scale(var(--step3b-scale));
    width: calc(100% / var(--step3b-scale));
    height: calc(100% / var(--step3b-scale));
  }
}

body.step-3b .workflow-panel {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 6px;
  position: relative;
  padding-bottom: 6px;
}

body.step-3b .workflow-scroll {
  overflow: hidden;
}

body.step-3b #logoPanel .accordion-body {
  padding-bottom: 10px;
}

body.step-3b .branding-stage-shell {
  height: clamp(320px, calc(100vh - 388px), 520px);
  max-height: calc(100vh - 388px);
}

body.step-3b .logo-studio-panel {
  overflow-y: hidden;
}

body.step-3b .step-navigation-panel {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 6px;
  padding: 6px;
  z-index: 30;
}

body.step-3b .step-nav-button {
  min-height: 34px;
  font-size: 0.88rem;
}

body.step-3b .branding-window {
  width: calc(100% - 10px);
  max-width: none;
}

body.step-3b .logo-studio {
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 1fr);
  gap: 12px;
}

body.step-3b.step3b-tight .studio-section {
  padding: 7px 8px;
}

body.step-3b.step3b-tight .studio-step {
  margin-bottom: 6px;
  gap: 6px;
}

body.step-3b.step3b-tight .studio-step-copy strong {
  font-size: 0.82rem;
}

body.step-3b.step3b-tight .studio-step-copy small,
body.step-3b.step3b-tight .studio-step-status,
body.step-3b.step3b-tight .preset-label,
body.step-3b.step3b-tight .field-hint {
  font-size: 0.68rem;
}

body.step-3b.step3b-tight .logo-preview {
  min-height: 54px;
  padding: 7px;
}

body.step-3b.step3b-tight .preset-swatch {
  height: 28px;
}

body.step-3b.step3b-tight .preset-card span:last-child {
  padding: 0 5px 5px;
  font-size: 0.58rem;
}

body.step-3b.step3b-tight .color-field {
  gap: 4px;
  padding: 6px;
}

body.step-3b.step3b-tight .color-field > span {
  font-size: 0.66rem;
}

body.step-3b.step3b-tight .branding-close-continue-button {
  min-height: 30px;
  margin: 0 8px 8px;
  font-size: 0.76rem;
}

body.step-3b.step3b-tight .step-nav-button {
  min-height: 30px;
}

body.step-3b.step3b-ultra-tight .studio-section {
  padding: 6px 7px;
}

body.step-3b.step3b-ultra-tight .logo-search-row {
  gap: 5px;
}

body.step-3b.step3b-ultra-tight .logo-preview {
  min-height: 48px;
  padding: 6px;
}

body.step-3b.step3b-ultra-tight .brand-preview-topbar {
  padding: 7px 9px 6px;
}

body.step-3b.step3b-ultra-tight .brand-preview-body {
  padding: 8px 9px 6px;
}

body.step-3b.step3b-ultra-tight .preview-metric-card {
  min-height: 44px;
  padding: 6px;
}

body.step-3b.step3b-ultra-tight .preview-metric-card strong {
  font-size: 0.8rem;
}

body.step-3b.step3b-ultra-tight .brand-preview-footer {
  padding: 6px 9px 8px;
}

body.step-3b .studio-step-copy strong {
  font-size: 0.9rem;
}

body.step-3b .studio-step-copy small,
body.step-3b .studio-step-status,
body.step-3b .preset-label,
body.step-3b .field-hint {
  font-size: 0.74rem;
}

body.step-4 .workspace-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-height: calc(100vh - 120px);
  overflow: hidden;
}

body.step-4 .helper-panel {
  display: none;
}

body.step-4 .left-rail {
  display: contents;
}

body.step-4 .left-rail-stack {
  display: contents;
}

body.step-4 .step4-col-1 {
  grid-column: 1;
  height: 100%;
  padding: 16px 20px;
  overflow: hidden;
}

body.step-4 .step4-col-2 {
  grid-column: 2;
  height: 100%;
  padding: 16px 20px;
  overflow: visible;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

body.step-4 .workflow-panel {
  grid-column: 3;
  grid-row: 1;
  height: 100%;
  padding: 14px 16px 84px;
  overflow: hidden;
  background: rgba(21, 35, 58, 0.95);
}

body.step-4 .step4-col-3 {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  z-index: 5;
  margin: 0 14px 12px;
  background: rgba(21, 35, 58, 0.98);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
  gap: 8px;
}

body.step-4 .step4-col-1,
body.step-4 .step4-col-2,
body.step-4 .step4-col-3,
body.step-4 .workflow-panel,
body.step-4 .rail-panel,
body.step-4 .submit-panel {
  min-height: 100%;
}

body.step-4 .left-rail-stack {
  overflow: visible;
}

body.step-4 .registration-grid {
  gap: 5px;
}

body.step-4 .registration-grid input {
  min-height: 36px;
  height: 36px;
  padding-top: 6px;
  padding-bottom: 6px;
}

body.step-4 .disclaimer-box {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 8px;
}

body.step-4 .rail-heading h2,
body.step-4 .workflow-heading h2 {
  font-size: 0.92rem;
}

body.step-4 .rail-heading p,
body.step-4 .workflow-heading p {
  font-size: 0.72rem;
}

body.step-4 .disclaimer-tint {
  background: rgba(19, 30, 50, 0.82);
}

body.step-4 .disclaimer-ack input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

body.step-4 .workflow-heading {
  margin-bottom: 4px;
}

body.step-4 .workflow-scroll {
  overflow: hidden;
}

body.step-4 #selectionSummaryPanel {
  display: none;
}

body.step-4 .selection-summary-list {
  gap: 4px;
}

body.step-4 .selection-summary-list li,
body.step-4 .readiness-list li {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 0.74rem;
  display: flex;
  align-items: center;
}

body.step-4 .readiness-list {
  gap: 4px;
}

body.step-4 .valid-green::before {
  content: "✓ ";
  margin-right: 4px;
}

body.step-4 #submitButton {
  min-height: 48px;
}

.submit-summary-title {
  margin: 0;
  color: var(--blue-soft);
  font-size: 0.96rem;
}

.submit-summary-header {
  margin-bottom: 6px;
  color: #dbeafe;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submit-summary-scroll {
  min-height: 0;
  overflow-y: auto;
  border: 1px solid rgba(66, 153, 225, 0.22);
  border-radius: 8px;
  padding: 8px;
  background: rgba(9, 17, 31, 0.72);
}

.submit-summary-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 42% 58%;
  row-gap: 6px;
  column-gap: 8px;
}

.submit-summary-grid dt {
  margin: 0;
  color: #c7d9ef;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.submit-summary-grid dd {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.72rem;
  line-height: 1.28;
  word-break: break-word;
}

.submit-summary-divider {
  margin: 8px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.compact-readiness-list {
  grid-template-columns: 1fr !important;
}

.compact-readiness-list li {
  min-height: 24px;
  padding: 3px 7px;
}

.summary-logo-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.summary-inline-link {
  color: var(--blue-soft);
  text-decoration: underline;
  cursor: pointer;
}

.summary-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.55);
  vertical-align: text-bottom;
  margin-right: 4px;
}

.notes-toggle-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #06101f;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  cursor: pointer;
  font-weight: 800;
}

.notes-inline-preview {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notes-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
}

.notes-modal[hidden] {
  display: none;
}

.notes-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.78);
}

.notes-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 32px));
  border: 1px solid rgba(66, 153, 225, 0.32);
  border-radius: 12px;
  background: rgba(17, 28, 47, 0.98);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.notes-modal-header,
.notes-modal-footer {
  padding: 12px;
  border-bottom: 1px solid rgba(66, 153, 225, 0.2);
}

.notes-modal-footer {
  border-top: 1px solid rgba(66, 153, 225, 0.2);
  border-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.notes-modal-body {
  padding: 12px;
  overflow: auto;
}

.notes-modal-body textarea {
  min-height: 280px;
  max-height: 360px;
}

.step-navigation-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.step-nav-button {
  min-height: 40px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #06101f;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  cursor: pointer;
  font-weight: 800;
}

.step-nav-button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: #0f172a;
}

.step-nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.left-rail {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  overflow: hidden;
}

.left-rail-stack {
  display: grid;
  grid-auto-rows: min-content;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
  position: relative;
}

.helper-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  min-width: 340px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: height 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: auto;
}

.helper-panel.is-visible {
  opacity: 1;
  visibility: visible;
}

.helper-panel.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.helper-panel__card {
  background: radial-gradient(circle at top left, #1f3555 0, #0b1726 55%, #050910 100%);
  border-radius: 10px;
  padding: 14px 16px 12px;
  color: #e6f0ff;
  box-shadow:
    0 0 0 1px rgba(120, 170, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 56px;
  height: auto;
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.helper-panel__text {
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.helper-panel__arrow-wrapper {
  margin-top: 2px;
  display: flex;
  justify-content: flex-end;
  transition: opacity 0.25s ease;
  overflow: visible;
}

.helper-panel__arrow {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  color: #4da3ff;
  filter: drop-shadow(0 0 6px rgba(77, 163, 255, 0.5));
  z-index: 10000;
  pointer-events: none;
  overflow: visible;
  will-change: transform;
  transition: opacity 0.15s ease;
}

.helper-anchor {
  position: relative;
  height: 0;
  width: 100%;
  pointer-events: none;
}

/* Enhanced Disclosure Panel with Gold Accent Bar */
.sidebar-card.enhanced-disclosure.gold-bar {
  background: #222831;                 /* slightly lighter than sidebar */
  border-radius: 6px;
  padding: 16px 18px 16px 22px;        /* extra left padding for bar */
  margin-top: 22px;
  color: #E6E9EF;
  line-height: 1.45;
  position: relative;

  /* Subtle glow */
  box-shadow: 0 0 12px rgba(232, 201, 106, 0.12);
}

/* Left gold accent bar */
.sidebar-card.enhanced-disclosure.gold-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;                          /* thickness of the bar */
  height: 100%;
  background-color: #E8C96A;           /* soft gold */
  border-radius: 6px 0 0 6px;
}

.enhanced-disclosure .disclosure-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #E8C96A;                      /* gold title */
}

.enhanced-disclosure .disclosure-body p {
  margin: 0 0 12px 0;
  font-size: 10px;
  color: #C9CED6;
}

.enhanced-disclosure .disclosure-body p:last-child {
  margin-bottom: 0;
}

.sidebar-card.enhanced-disclosure.gold-bar.step2-sidebar-disclosure {
  position: absolute;
  left: 0;
  right: 4px;
  bottom: 0;
  margin-top: 0;
}

@keyframes helper-arrow-pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.rail-panel,
.submit-panel,
.workflow-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 28, 47, 0.92);
}

.rail-panel,
.submit-panel {
  padding: 10px;
}

.workflow-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 6px;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.workflow-scroll {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding-right: 4px;
}

.workflow-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(560px, calc(100% - 32px));
  border: 1px solid rgba(250, 204, 21, 0.72);
  border-radius: 10px;
  padding: 10px 14px;
  color: #091422;
  background: linear-gradient(135deg, #f8d55e 0%, #fde68a 52%, #facc15 100%);
  box-shadow:
    0 12px 28px rgba(2, 8, 23, 0.58),
    0 0 0 1px rgba(250, 204, 21, 0.25),
    0 0 18px rgba(250, 204, 21, 0.32);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  white-space: normal;
  animation: workflow-scroll-hint-pulse 1.45s ease-in-out infinite;
}

.workflow-scroll-hint::after {
  content: "  \2193";
}

.workflow-scroll-hint::before {
  content: "\2193  ";
}

@keyframes workflow-scroll-hint-pulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateX(-50%) translateY(-2px);
    filter: brightness(1.04);
  }
}

.rail-heading,
.workflow-heading {
  margin-bottom: 5px;
}

.rail-heading h2,
.workflow-heading h2 {
  color: var(--blue-soft);
  font-size: 1rem;
}

.rail-heading p,
.workflow-heading p,
.field-hint,
.locked-note,
.selection-meta {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.32;
}

.required-marker {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 1px 7px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 999px;
  color: #f8e7a8;
  background: rgba(212, 175, 55, 0.18);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.registration-grid label {
  display: grid;
  gap: 4px;
  color: #d8e5f7;
  font-size: 0.78rem;
  font-weight: 600;
}

.registration-grid input,
.registration-grid textarea {
  min-height: 38px;
}

.registration-grid textarea {
  min-height: 70px;
  max-height: 70px;
  resize: none;
}

.disclaimer-section {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(66, 153, 225, 0.24);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.56);
}

.disclosure-submit-wrap {
  margin-top: 10px;
}

.disclosure-submit-wrap #submitButton {
  width: 100%;
}

.disclosure-submit-wrap .form-status {
  min-height: 1.6em;
  margin-top: 6px;
}

.disclaimer-ack {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.disclaimer-ack input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--blue-soft);
}

.disclaimer-ack label {
  color: #d8e5f7;
  font-size: 0.8rem;
  line-height: 1.5;
}

.tooltip-trigger {
  color: var(--blue-soft);
  text-decoration: underline;
  cursor: help;
  position: relative;
  display: inline-block;
}

.tooltip-box {
  visibility: hidden;
  opacity: 0;
  width: 320px;
  max-width: min(320px, 76vw);
  background: #0f172a;
  color: #dbeafe;
  text-align: left;
  border-radius: 8px;
  padding: 10px;
  position: absolute;
  z-index: 40;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  border: 1px solid rgba(99, 179, 237, 0.35);
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.42);
  font-size: 0.76rem;
  line-height: 1.45;
  pointer-events: none;
}

.tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0f172a transparent transparent transparent;
}

.tooltip-trigger:hover .tooltip-box {
  visibility: visible;
  opacity: 1;
}

/* Step 4 disclosure tooltips: render downward to avoid top clipping. */
.disclaimer-panel,
.disclaimer-section,
.disclaimer-ack,
.disclaimer-ack label {
  overflow: visible;
}

.disclaimer-panel .tooltip-box {
  top: calc(100% + 8px);
  bottom: auto;
  left: 0;
  transform: none;
  width: min(420px, calc(100vw - 48px));
  max-width: min(420px, calc(100vw - 48px));
  max-height: 240px;
  overflow-y: auto;
  z-index: 1200;
}

.disclaimer-panel .tooltip-box::after {
  top: -10px;
  bottom: auto;
  left: 16px;
  margin-left: 0;
  border-color: transparent transparent #0f172a transparent;
}

.disclaimer-panel .tooltip-box::-webkit-scrollbar {
  width: 8px;
}

.disclaimer-panel .tooltip-box::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.55);
}

.disclaimer-panel .tooltip-box::-webkit-scrollbar-thumb {
  background: rgba(125, 180, 236, 0.65);
  border-radius: 999px;
}

.static-disclaimers {
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.static-disclaimers p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.static-disclaimers p:last-child {
  margin-bottom: 0;
}

.static-disclaimers strong {
  color: #cbd5e1;
}

.quick-request-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(66, 153, 225, 0.24);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.56);
}

.quick-request-copy p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.quick-request-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.quick-request-summary-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(66, 153, 225, 0.26);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.7);
}

.quick-request-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.quick-request-summary-head strong {
  color: #e6eefb;
  font-size: 0.88rem;
}

.quick-request-summary-meta {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.quick-request-summary-list {
  display: grid;
  gap: 8px;
}

.quick-request-summary-item {
  padding: 8px 10px;
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 8px;
  background: rgba(10, 18, 32, 0.9);
}

.quick-request-summary-item strong {
  display: block;
  margin-bottom: 3px;
  color: #e2ebf8;
}

.quick-request-open-button,
.quick-request-edit-button,
.quick-request-footer-button,
.quick-request-delete-button,
.quick-request-row-toggle {
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.quick-request-open-button,
.quick-request-footer-button {
  color: #06101f;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.quick-request-open-button,
.quick-request-edit-button {
  padding: 8px 12px;
  white-space: nowrap;
}

.quick-request-edit-button {
  justify-self: start;
  color: var(--blue-soft);
  background: transparent;
}

.quick-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
}

.quick-request-modal[hidden] {
  display: none;
}

.quick-request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.78);
}

.quick-request-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(980px, calc(100vw - 32px));
  height: min(600px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border: 1px solid rgba(66, 153, 225, 0.32);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 28, 47, 0.98) 0%, rgba(11, 18, 32, 0.98) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.quick-request-modal-header,
.quick-request-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(66, 153, 225, 0.18);
  flex-wrap: wrap;
}

.quick-request-modal-header h2 {
  color: #eff6ff;
  font-size: 1.15rem;
}

.quick-request-modal-header p,
.quick-request-modal-copy p,
.quick-request-modal-status {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.quick-request-modal-status.error {
  color: var(--red);
}

.quick-request-modal-status.success {
  color: var(--green);
}

.quick-request-modal-copy {
  display: grid;
  gap: 8px;
  padding: 10px 16px 10px;
  border-bottom: 1px solid rgba(66, 153, 225, 0.12);
}

.quick-request-type-modal {
  margin-bottom: 0;
}

.quick-request-modal-grid-shell {
  min-height: 0;
  padding: 10px 16px 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 8px;
}

.quick-request-grid-body {
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: 8px;
  padding-right: 4px;
}

.quick-request-grid-row {
  border: 1px solid rgba(43, 62, 87, 0.92);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.quick-request-grid-row.is-subject {
  border-color: rgba(72, 187, 120, 0.45);
}

.quick-request-row-toggle {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  color: #eff6ff;
  background: rgba(11, 18, 32, 0.9);
  text-align: left;
}

.quick-request-row-summary {
  min-width: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-request-row-caret {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--blue-soft);
  font-size: 1rem;
}

.quick-request-row-body {
  display: none;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(66, 153, 225, 0.12);
}

.quick-request-grid-row.is-expanded .quick-request-row-body {
  display: block;
}

.quick-request-field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 92px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: end;
}

.quick-request-cell {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.quick-request-cell label {
  gap: 6px;
  font-size: 0.68rem;
}

.quick-request-row-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 8px;
  color: #eff6ff;
  background: rgba(27, 42, 66, 0.84);
  font-weight: 800;
}

.quick-request-delete-button {
  width: 42px;
  min-width: 42px;
  height: 40px;
  align-self: end;
  color: #fee2e2;
  background: rgba(127, 29, 29, 0.55);
}

.quick-request-delete-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.quick-request-grid-controls {
  display: flex;
  justify-content: flex-start;
}

.quick-request-modal-footer {
  border-top: 1px solid rgba(66, 153, 225, 0.18);
  border-bottom: 0;
}

.quick-request-modal-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quick-request-footer-button {
  min-height: 40px;
  padding: 0 16px;
}

.quick-request-footer-button-secondary {
  color: var(--text);
  background: #0f172a;
}

.quick-required {
  border-color: rgba(250, 204, 21, 0.72) !important;
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.18) !important;
}

.quick-valid {
  border-color: rgba(34, 197, 94, 0.8) !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.16) !important;
}

.quick-invalid {
  border-color: rgba(248, 113, 113, 0.82) !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.18) !important;
}

.quick-type-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.64);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.quick-type-option input {
  width: auto;
  margin: 0;
}

.quick-request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quick-request-grid label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}

.quick-request-section-title {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 4px;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.required-asterisk {
  color: #fda4af;
  margin-left: 3px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(122, 147, 177, 0.72);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text);
  background: #1b2b43;
  box-shadow: inset 0 1px 0 rgba(203, 213, 225, 0.07);
  outline: none;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #8bb5e6;
  box-shadow:
    inset 0 1px 0 rgba(226, 232, 240, 0.12),
    0 0 0 2px rgba(99, 179, 237, 0.22);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(153, 185, 220, 0.86);
}

.glow-active {
  border-color: #93c5fd !important;
  box-shadow: 0 0 0 2px var(--focus-glow);
  transition: box-shadow 120ms ease, border-color 120ms ease;
  animation: workflow-glow-pulse 1.45s ease-in-out infinite;
}

@keyframes workflow-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px var(--focus-glow),
      0 0 0 0 rgba(96, 165, 250, 0);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(147, 197, 253, 0.95),
      0 0 0 6px rgba(96, 165, 250, 0.3);
  }
}

.type-toggle.glow-active,
.report-format-choice.glow-active {
  padding: 8px;
  border: 1px solid rgba(147, 197, 253, 0.72);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.44);
}

input:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

input.input-missing,
select.input-missing,
textarea.input-missing {
  border-color: rgba(248, 113, 113, 0.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 228, 230, 0.16),
    0 0 0 2px rgba(248, 113, 113, 0.22) !important;
}

.snapshot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.snapshot-list div {
  padding: 8px;
  border-radius: 5px;
  background: #0f172a;
}

.snapshot-list dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-list dd {
  overflow: hidden;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.submit-panel {
  position: sticky;
  bottom: 0;
  align-self: end;
  z-index: 2;
  box-shadow: 0 -10px 24px rgba(2, 8, 23, 0.2);
}

#submitButton {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 11px 14px;
  color: #0b1220;
  background: linear-gradient(135deg, var(--gold), #f6e05e);
  cursor: pointer;
  font-weight: 900;
}

#submitButton.ready-flash {
  animation: submit-ready-flash 900ms ease-in-out 1;
}

@keyframes submit-ready-flash {
  0% {
    background: linear-gradient(135deg, var(--gold), #f6e05e);
  }
  30% {
    background: linear-gradient(135deg, #7dd3fc, #93c5fd);
  }
  60% {
    background: linear-gradient(135deg, var(--gold), #fde68a);
  }
  100% {
    background: linear-gradient(135deg, var(--gold), #f6e05e);
  }
}

#submitButton:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  filter: saturate(0.72);
}

#submitButton.is-submitting,
#submitButton.is-submitting:disabled {
  opacity: 0.78;
  cursor: progress;
}

.form-status {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  min-height: 2.3em;
}

.form-status.error,
.error-text {
  color: var(--red);
}

.form-status.success {
  color: var(--green);
}

.accordion-panel {
  overflow: hidden;
  border: 1px solid rgba(72, 97, 129, 0.84);
  border-radius: 8px;
  background: rgba(22, 35, 56, 0.66);
}

.accordion-panel + .accordion-panel {
  margin-top: 5px;
}

.accordion-panel.open {
  border-color: var(--blue);
  background: rgba(25, 48, 78, 0.76);
  box-shadow: inset 0 -2px 0 rgba(56, 178, 172, 0.8);
}

.accordion-panel.needs-attention {
  border-color: var(--gold);
  box-shadow:
    inset 0 -2px 0 rgba(212, 175, 55, 0.9),
    0 0 0 1px rgba(212, 175, 55, 0.36),
    0 0 24px rgba(212, 175, 55, 0.18);
}

.accordion-panel.needs-attention.open {
  animation: workflow-required-panel-pulse 1.6s ease-in-out infinite;
}

@keyframes workflow-required-panel-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 -2px 0 rgba(212, 175, 55, 0.9),
      0 0 0 1px rgba(212, 175, 55, 0.34),
      0 0 16px rgba(212, 175, 55, 0.16);
  }
  50% {
    box-shadow:
      inset 0 -2px 0 rgba(246, 224, 94, 0.98),
      0 0 0 1px rgba(246, 224, 94, 0.64),
      0 0 30px rgba(246, 224, 94, 0.34);
  }
}

.accordion-panel.needs-attention .step-badge {
  background: linear-gradient(135deg, var(--gold), #f6e05e);
  color: #08111f;
}

.accordion-panel.is-muted {
  opacity: 0.8;
}

.accordion-panel.is-prominent {
  border-color: rgba(212, 175, 55, 0.8);
}

.accordion-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 8px 10px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.step-badge {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #eff6ff;
  background: rgba(66, 153, 225, 0.58);
  font-weight: 900;
}

.accordion-trigger strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.accordion-trigger small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.accordion-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(99, 179, 237, 0.45);
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(56, 88, 123, 0.36);
  font-size: 0.71rem;
  font-weight: 800;
}

.accordion-body {
  display: none;
  padding: 7px 10px 9px 40px;
  border-top: 1px solid rgba(104, 144, 188, 0.42);
}

.accordion-panel.open .accordion-body {
  display: block;
}

.type-toggle,
.report-format-choice,
.quarter-grid,
.logo-layout {
  display: grid;
  gap: 8px;
}

.type-toggle {
  grid-template-columns: repeat(2, minmax(0, 160px));
}

.type-toggle .type-option {
  width: 100%;
}

.type-option,
#clearSelectionsButton,
.result-item button,
.remove-button {
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 900;
}

.type-option {
  min-height: 36px;
  color: var(--text);
  background: #0f172a;
}

.type-option.active {
  border-color: var(--blue);
  background: linear-gradient(135deg, #2b6cb0, var(--blue));
}

.inline-warning {
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(252, 129, 129, 0.45);
  border-radius: 5px;
  color: #fed7d7;
  background: rgba(127, 29, 29, 0.28);
  font-size: 0.78rem;
}

#clearSelectionsButton {
  margin-left: 8px;
  padding: 5px 8px;
  color: #0b1220;
  background: var(--gold);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.subject-search-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.subject-next-indicator {
  justify-self: end;
  color: #93a4b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.subject-next-indicator.visible {
  opacity: 1;
  transform: translateX(0);
}

.subject-results-hint {
  margin: 6px 0 5px;
  color: #7e8a99;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.subject-results-hint.is-selected {
  color: #9ec1ea;
}

.search-hint-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.search-hint-input {
  min-width: 0;
}

#subjectSearch,
.peer-search,
.search-hint-input {
  border: 1px solid rgba(146, 174, 206, 0.8);
  background: #22334b;
  box-shadow: inset 0 1px 0 rgba(226, 232, 240, 0.08);
}

#subjectSearch:hover,
.peer-search:hover,
.search-hint-input:hover {
  border-color: rgba(173, 205, 239, 0.94);
}

#subjectSearch:focus,
.peer-search:focus,
.search-hint-input:focus {
  border-color: #9dc6f2;
  box-shadow:
    inset 0 1px 0 rgba(226, 232, 240, 0.16),
    0 0 0 2px rgba(125, 180, 236, 0.24);
}

.institution-search-card {
  overflow: hidden;
  border: 1px solid rgba(90, 120, 156, 0.86);
  border-radius: 7px;
  background: rgba(21, 33, 53, 0.92);
}

.subject-search-shell {
  display: grid;
  gap: 0;
}

.search-row input.glow-active,
.peer-slot input.glow-active,
.quarter-grid select.glow-active {
  background: #1b2a42;
}

.logo-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.search-button {
  min-width: 110px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: #06101f;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  cursor: pointer;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .glow-active,
  .accordion-panel.needs-attention.open {
    animation: none !important;
  }

  .subject-next-indicator,
  body.subject-results-open .workflow-scroll > section:not(#subjectPanel),
  body.subject-results-open .step-navigation-panel,
  body.subject-results-open .left-rail,
  .results-list.results-attention {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes logo-search-button-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.45), 0 0 12px rgba(96, 165, 250, 0.22);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.72), 0 0 22px rgba(125, 211, 252, 0.5);
    filter: brightness(1.08);
  }
}

body.step-3b #logoSearchButton {
  min-width: 132px;
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.45), 0 0 12px rgba(96, 165, 250, 0.22);
  animation: logo-search-button-pulse 1.7s ease-in-out infinite;
}

body.step-3b #logoSearchButton:disabled {
  animation: none;
  box-shadow: none;
}

.search-button:disabled {
  border-color: var(--line);
  color: var(--muted);
  background: #0f172a;
  cursor: not-allowed;
}

.result-item {
  cursor: pointer;
}

.result-item:focus,
.result-item:hover {
  border-color: #9bc5f0;
  background: linear-gradient(180deg, #1a2c46 0%, #15263d 100%);
  box-shadow:
    inset 3px 0 0 rgba(147, 197, 253, 0.85),
    0 0 0 1px rgba(147, 197, 253, 0.2);
}

.result-item.prefocus {
  border-color: #9bc5f0;
  background: linear-gradient(180deg, #1a2c46 0%, #15263d 100%);
  box-shadow:
    inset 3px 0 0 rgba(147, 197, 253, 0.85),
    0 0 0 1px rgba(147, 197, 253, 0.18);
}

.results-list {
  display: grid;
  gap: 6px;
  max-height: 190px;
  margin-top: 6px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 180, 236, 0.65) rgba(17, 28, 47, 0.5);
}

.results-list.results-attention {
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 8px;
  padding: 5px;
  animation: subject-results-attention 300ms ease-in 1;
}

@keyframes subject-results-attention {
  0% {
    border-color: rgba(59, 130, 246, 0);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
  100% {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
  }
}

.results-list::-webkit-scrollbar {
  width: 10px;
}

.results-list::-webkit-scrollbar-track {
  background: rgba(17, 28, 47, 0.5);
  border-radius: 999px;
}

.results-list::-webkit-scrollbar-thumb {
  background: rgba(125, 180, 236, 0.65);
  border-radius: 999px;
  border: 2px solid rgba(17, 28, 47, 0.6);
}

body.subject-results-open .workflow-scroll > section:not(#subjectPanel),
body.subject-results-open .step-navigation-panel,
body.subject-results-open .left-rail {
  opacity: 0.93;
  transition: opacity 220ms ease;
}

.result-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(148, 174, 206, 0.5);
  border-radius: 5px;
  background: linear-gradient(180deg, #152238 0%, #111c2f 100%);
  box-shadow: inset 3px 0 0 rgba(99, 179, 237, 0.4);
}

.result-item strong,
.selection-card strong {
  display: block;
  margin-bottom: 2px;
}

.result-item strong {
  color: #ecf5ff;
}

.result-item span {
  color: #b7cbe2;
  font-size: 0.76rem;
}

.result-item button {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #06101f;
  background: var(--blue-soft);
}

.selection-card,
.selected-item {
  margin-top: 8px;
  padding: 9px;
  border: 1px solid rgba(72, 187, 120, 0.24);
  border-radius: 5px;
  background: rgba(9, 19, 34, 0.75);
}

.selection-card.empty {
  color: var(--muted);
  border-color: rgba(226, 232, 240, 0.1);
}

.search-loading-card {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.typewriter-status {
  display: inline-block;
  width: 37ch;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: #c6d6eb;
  font-family: inherit;
  letter-spacing: 0.02em;
  border-right: 2px solid rgba(147, 197, 253, 0.9);
  animation:
    registration-typewriter 1.35s steps(37, end) infinite,
    registration-caret 700ms step-end infinite;
}

@keyframes registration-typewriter {
  0% {
    width: 0;
  }
  45%,
  70% {
    width: 37ch;
  }
  100% {
    width: 0;
  }
}

@keyframes registration-caret {
  0%,
  49% {
    border-right-color: rgba(147, 197, 253, 0.9);
  }
  50%,
  100% {
    border-right-color: transparent;
  }
}

.selected-list {
  display: grid;
  gap: 6px;
}

.peer-slots {
  display: grid;
  gap: 8px;
}

.peer-slot {
  overflow: hidden;
  border: 1px solid rgba(82, 110, 144, 0.9);
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.88);
}

body.step-2 .peer-slots {
  gap: 6px;
}

body.step-2 .peer-slot-header {
  padding: 6px 8px;
}

body.step-2 .peer-slot .selection-card,
body.step-2 .peer-slot-search {
  margin: 5px;
  padding: 6px;
}

body.step-2 .results-list {
  max-height: 120px;
}

body.step-2 .field-hint {
  font-size: 0.72rem;
}

.peer-slot.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(66, 153, 225, 0.18);
}

.peer-slot.selected {
  border-color: rgba(72, 187, 120, 0.5);
}

.peer-slot.locked {
  opacity: 0.62;
}

.peer-slot-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border-bottom: 1px solid rgba(90, 123, 162, 0.6);
}

.peer-slot-header strong {
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.peer-slot-header span {
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 800;
}

.peer-slot-search {
  display: none;
  padding: 7px;
}

.subject-search-card .peer-slot-search {
  display: block;
}

.peer-slot.active .peer-slot-search {
  display: block;
}

.peer-slot.selected .peer-slot-search,
.peer-slot.locked .peer-slot-search {
  display: none;
}

.peer-slot .selection-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 7px;
}

.selected-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.remove-button {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #fed7d7;
  background: rgba(127, 29, 29, 0.5);
}

.submit-helper {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.submit-helper.is-ready {
  color: #bbf7d0;
}

.submit-helper.is-blocked {
  color: #fde68a;
}

.delivery-reminder {
  margin-top: 6px;
  color: #a8bfdc;
  font-size: 0.74rem;
  line-height: 1.4;
}

.delivery-reminder strong {
  color: #dbeafe;
}

.report-format-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.radio-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #0f172a;
  text-transform: none;
}

.radio-card input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.radio-card span {
  color: var(--text);
}

.radio-card small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.quarter-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.step-3 .quarter-grid label {
  font-size: 0.7rem;
}

body.step-3 .quarter-grid select {
  min-height: 34px;
  padding: 6px 8px;
}

body.step-3 .radio-card {
  padding: 7px;
}

.branding-stage-shell {
  position: relative;
  height: clamp(430px, calc(100vh - 130px), 760px);
  height: clamp(430px, calc(100dvh - 130px), 760px);
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

.branding-stage-shell:not(.is-unlocked) {
  height: auto;
  min-height: 0;
}

.branding-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.logo-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(270px, 0.88fr);
  gap: 10px;
  align-items: stretch;
  height: 100%;
  min-height: 0;
}

.branding-window {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(1220px, calc(100% - 12px));
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  translate: -50% 0;
  transform: scale(0.2);
  opacity: 0;
  transform-origin: top center;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform 150ms ease-in,
    opacity 100ms ease-in;
}

.branding-window.expanded-active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 120ms ease-out;
}

.logo-studio-panel,
.brand-preview-shell {
  border: 1px solid rgba(66, 153, 225, 0.22);
  border-radius: 10px;
  background: rgba(14, 24, 41, 0.9);
}

.logo-studio-panel {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.brand-preview-shell {
  min-height: 0;
  overflow: hidden;
}

.studio-section {
  padding: 9px 10px;
  border-top: 1px solid rgba(66, 153, 225, 0.15);
}

.studio-section-tight {
  border-top: 0;
}

.studio-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.studio-step-badge {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #eff6ff;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  font-size: 0.82rem;
  font-weight: 900;
}

.studio-step-badge.is-complete {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.studio-step-copy {
  display: grid;
  gap: 2px;
}

.studio-step-copy strong {
  color: #eaf2ff;
  font-size: 0.82rem;
}

.studio-step-copy small,
.studio-step-status,
.preset-label {
  color: var(--muted);
  font-size: 0.68rem;
}

.studio-step-status {
  color: #7dd3fc;
  font-style: italic;
  font-weight: 700;
}

.logo-selection-instructions {
  display: grid;
  gap: 4px;
  margin: 0 0 8px;
  padding: 8px 10px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  color: #cfe2f7;
  background: rgba(7, 18, 34, 0.62);
}

.logo-selection-instructions strong {
  color: #eaf6ff;
  font-size: 0.76rem;
}

.logo-selection-instructions p {
  color: #afc5dd;
  font-size: 0.68rem;
  line-height: 1.28;
}

.logo-selection-instructions span {
  color: #d9ecff;
  font-weight: 800;
}

.auto-color-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid rgba(98, 120, 155, 0.45);
  border-radius: 7px;
  padding: 7px 9px;
  color: #dce8f7;
  background: rgba(33, 47, 76, 0.9);
  cursor: pointer;
  text-align: left;
}

.auto-color-toggle strong {
  display: inline-block;
  margin-right: 4px;
  font-size: 0.76rem;
}

.auto-color-toggle.is-active {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.18);
}

.toggle-track {
  display: inline-flex;
  align-items: center;
  width: 30px;
  height: 18px;
  border-radius: 999px;
  padding: 2px;
  background: #334155;
  transition: background 120ms ease;
  flex-shrink: 0;
}

.toggle-knob {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: white;
  transition: transform 120ms ease;
}

.auto-color-toggle.is-active .toggle-track {
  background: #10b981;
}

.auto-color-toggle.is-active .toggle-knob {
  transform: translateX(12px);
}

.preset-block {
  margin-bottom: 8px;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 6px;
}

.preset-card {
  display: grid;
  gap: 6px;
  overflow: hidden;
  border: 1px solid rgba(64, 86, 122, 0.52);
  border-radius: 8px;
  padding: 0;
  color: #c7d6ea;
  background: rgba(23, 34, 55, 0.95);
  cursor: pointer;
  text-align: left;
}

.preset-card span:last-child {
  padding: 0 6px 6px;
  font-size: 0.62rem;
}

.preset-swatch {
  display: block;
  position: relative;
  height: 36px;
  background: linear-gradient(180deg, var(--preset-top) 0 62%, var(--preset-bottom) 62% 100%);
}

.preset-swatch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--preset-accent);
}

.color-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.color-field {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(64, 86, 122, 0.55);
  border-radius: 8px;
  padding: 7px;
  color: #dbe7f6;
  background: rgba(30, 42, 68, 0.92);
  text-transform: none;
  letter-spacing: 0;
}

.color-field > span {
  color: #9fc0eb;
  font-size: 0.72rem;
  font-weight: 500;
}

.color-input-shell {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 6px;
  align-items: center;
}

.color-input-shell input[type="color"] {
  width: 26px;
  min-width: 26px;
  height: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 4px;
  padding: 2px;
  background: #162033;
}

.color-input-shell input[type="text"] {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-reset-button {
  margin-top: 8px;
  border: 0;
  color: #8fb2dc;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.brand-preview-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand-preview-heading {
  display: grid;
  gap: 2px;
  padding: 10px 12px 8px;
  border-bottom: 1px solid rgba(66, 153, 225, 0.12);
  background: rgba(10, 18, 32, 0.92);
}

.brand-preview-heading strong {
  color: #dcecff;
  font-size: 0.84rem;
}

.brand-preview-heading small {
  color: #b6c7dd;
}

.logo-preview {
  display: grid;
  min-height: 70px;
  place-items: center;
  gap: 6px;
  padding: 10px;
  overflow: hidden;
  border: 1px dashed rgba(144, 205, 244, 0.35);
  border-radius: 8px;
  color: var(--muted);
  background: #08111f;
  text-align: center;
  transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.logo-preview:not(.has-logo) {
  border-color: rgba(125, 211, 252, 0.75);
  color: #dff4ff;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.95), rgba(7, 18, 34, 0.95));
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.5), 0 0 2px rgba(255, 255, 255, 0.8);
  animation: dropzone-text-pulse 1.8s ease-in-out infinite;
}

@keyframes dropzone-text-pulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.5), 0 0 2px rgba(255, 255, 255, 0.8);
    filter: brightness(1);
  }
  50% {
    text-shadow: 0 0 18px rgba(125, 211, 252, 0.82), 0 0 4px rgba(255, 255, 255, 0.95);
    filter: brightness(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.step-3b #logoSearchButton,
  .logo-preview:not(.has-logo) {
    animation: none;
  }
}

.logo-preview.is-dragover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}

.logo-preview.has-logo {
  border-style: solid;
  color: #cbd5e1;
}

.logo-preview img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.logo-preview span {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-preview {
  display: grid;
  margin: 10px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #0f1b2d;
}

.brand-preview-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 9px 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-preview-meta {
  color: #a9bad0;
  font-size: 0.64rem;
}

.brand-preview-body {
  padding: 10px 12px 8px;
}

.brand-preview-body h3 {
  margin: 0 0 4px;
  font-size: 0.9rem;
}

.brand-preview-body p {
  margin: 0 0 8px;
  font-size: 0.68rem;
}

.preview-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.preview-metric-card {
  display: grid;
  gap: 3px;
  min-height: 58px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 8px;
  padding: 8px;
}

.preview-metric-card span {
  color: #b5c5db;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.preview-metric-card strong {
  font-size: 0.9rem;
}

.preview-metric-card small {
  font-size: 0.6rem;
}

.brand-preview-footer {
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.62rem;
}

.brand-preview-logo {
  display: grid;
  width: 76px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.branding-close-continue-button {
  margin: 0 10px 10px;
  min-height: 34px;
  border: 1px solid rgba(99, 179, 237, 0.62);
  border-radius: 8px;
  color: #e2f1ff;
  background: linear-gradient(135deg, rgba(30, 111, 212, 0.95), rgba(59, 130, 246, 0.95));
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-height: 780px) {
  .branding-stage-shell {
    height: clamp(390px, calc(100dvh - 112px), 620px);
  }

  .studio-section {
    padding: 8px 9px;
  }

  .preset-swatch {
    height: 32px;
  }

  .preview-metric-card {
    min-height: 52px;
    padding: 7px;
  }

  .brand-preview {
    margin: 8px;
  }
}

.brand-preview-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.readiness-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.readiness-list li {
  padding: 6px 9px;
  border-radius: 5px;
  color: var(--muted);
  background: #121d2f;
  border: 1px solid rgba(80, 106, 137, 0.44);
}

.valid-green {
  color: #dcfce7 !important;
  background: rgba(22, 163, 74, 0.22) !important;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.invalid-red {
  color: #fee2e2 !important;
  background: rgba(220, 38, 38, 0.22) !important;
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.submission-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 18px;
}

.submission-success-modal[hidden] {
  display: none;
}

.submission-success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.78);
  backdrop-filter: blur(3px);
}

.submission-success-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 36px));
  min-height: min(560px, calc(100vh - 36px));
  border: 1px solid rgba(66, 153, 225, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 33, 68, 0.98) 0%, rgba(4, 22, 52, 0.98) 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.submission-success-content {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  min-height: inherit;
  padding: 48px 48px 56px;
  text-align: center;
}

.submission-success-content h2 {
  color: #eff6ff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.submission-success-content p {
  max-width: 720px;
  color: #dbeafe;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.38;
}

.submission-success-close-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  color: #cbd5e1;
  background: transparent;
  cursor: pointer;
  font-size: 2.15rem;
  line-height: 1;
}

.submission-success-close-button {
  width: min(760px, 92%);
  min-height: 76px;
  border: 1px solid rgba(88, 191, 255, 0.65);
  border-radius: 14px;
  color: #e6f3ff;
  background: linear-gradient(135deg, #1d6be8 0%, #0b6cf2 55%, #1669d4 100%);
  box-shadow: 0 16px 34px rgba(12, 74, 160, 0.45);
  cursor: pointer;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
}

.submission-success-close-button:hover {
  filter: brightness(1.06);
}

@media (max-width: 980px) {
  .workspace-grid {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }

  body.helper-rail-active .workspace-grid {
    grid-template-columns: 1fr;
  }

  body.helper-rail-active .left-rail,
  .helper-panel {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .left-rail {
    grid-template-rows: auto;
    overflow: visible;
  }

  .left-rail-stack,
  .workflow-scroll {
    overflow: visible;
    padding-right: 0;
  }

  .workflow-scroll-hint {
    display: none;
  }

  .stage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-request-summary-head,
  .quick-request-modal-header,
  .quick-request-modal-footer,
  .quick-request-row-toggle,
  .quick-request-field-grid {
    grid-template-columns: 1fr;
  }

  .quick-request-modal-actions {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .monitor-shell {
    height: auto;
    min-height: 100vh;
    padding: 8px;
    overflow: visible;
  }

  .monitor-topbar,
  .result-item,
  .selected-item {
    align-items: stretch;
    flex-direction: column;
  }

  .registration-grid,
  .report-format-choice,
  .quarter-grid,
  .logo-layout,
  .logo-studio,
  .color-grid,
  .color-field-grid,
  .readiness-list,
  .type-toggle,
  .search-row,
  .search-hint-row,
  .logo-search-row,
  .quick-request-type,
  .preset-grid,
  .preview-metric-grid {
    grid-template-columns: 1fr;
  }

  .accordion-body {
    padding-left: 12px;
  }

  .submission-success-modal-dialog {
    min-height: min(440px, calc(100vh - 28px));
  }

  .submission-success-content {
    padding: 28px 20px 34px;
    gap: 16px;
  }

  .submission-success-close-button {
    min-height: 62px;
  }
}
