:root {
  --bg: #071012;
  --surface: #f8fbfa;
  --ink: #10191d;
  --muted: #647477;
  --line: #d9e4e1;
  --dark: #0b1114;
  --danger: #c5282f;
  --danger-soft: #fff1f2;
  --green: #2bd67b;
  --green-dark: #0d7d49;
  --green-soft: #e9fff2;
  --blue: #35b9ff;
  --blue-soft: #eef8ff;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 214, 123, 0.18), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(53, 185, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #071012 0%, #0b1114 48%, #eef4f1 48%, #eef4f1 100%);
  color: var(--ink);
  font-family: Aptos, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-shell {
  width: min(820px, calc(100vw - 28px));
  max-width: 100%;
  margin: 0 auto;
  padding: calc(14px + env(safe-area-inset-top)) 0 calc(28px + env(safe-area-inset-bottom));
  overflow: hidden;
}

.app-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.app-language-slot {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}

.app-nav-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #effff7;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.app-nav-button:focus-visible {
  outline: 3px solid rgba(43, 214, 123, 0.28);
  outline-offset: 2px;
}

.brand-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(4, 10, 12, 0.96), rgba(11, 27, 24, 0.96)),
    radial-gradient(circle at 0% 0%, rgba(43, 214, 123, 0.28), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.brand-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(43, 214, 123, 0.12), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.brand-wordmark {
  width: min(230px, 58vw);
  height: auto;
  max-height: 32px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 8px rgba(43, 214, 123, 0.18));
}

.brand-kicker,
.brand-title,
.brand-subtitle,
.asset-info p,
.step-heading p,
.privacy-note {
  margin: 0;
}

.brand-title {
  display: none;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
}

.brand-subtitle {
  color: #b9d8ce;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.asset-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #071012;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.asset-visual {
  min-height: 254px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(43, 214, 123, 0.1), rgba(53, 185, 255, 0.08)),
    #132023;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.asset-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-info {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 24px;
  color: white;
  background:
    linear-gradient(160deg, rgba(5, 9, 11, 0.36), rgba(5, 9, 11, 0.98)),
    linear-gradient(90deg, rgba(43, 214, 123, 0.08), transparent);
}

.asset-info h1 {
  margin: 8px 0 6px;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.asset-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 10px;
  margin-top: 10px;
  background: rgba(43, 214, 123, 0.13);
  border: 1px solid rgba(43, 214, 123, 0.22);
  color: #c9ffdf;
  font-size: 0.82rem;
  font-weight: 900;
}

.asset-status.demo-open {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.34);
  color: #ffd98a;
}

.asset-meta {
  color: #d3e4e1;
}

.asset-id {
  margin-top: 8px;
  color: #9db4b6;
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}

.data-source-hint {
  width: fit-content;
  margin-top: 10px !important;
  border: 1px solid rgba(48, 211, 126, 0.26);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(48, 211, 126, 0.1);
  color: #c9ffdf;
  font-size: 0.76rem;
  font-weight: 900;
}

.data-source-hint.debug {
  max-width: min(100%, 760px);
  border-color: rgba(53, 185, 255, 0.28);
  border-radius: 12px;
  background: rgba(53, 185, 255, 0.1);
  color: #bdeaff;
  white-space: normal;
}

.notice-panel,
.public-status-panel,
.step-card {
  margin-top: 16px;
  border: 1px solid rgba(217, 228, 225, 0.82);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.notice-panel {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.public-status-panel {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-color: rgba(43, 214, 123, 0.26);
  background:
    linear-gradient(135deg, rgba(43, 214, 123, 0.1), transparent 36%),
    #f8fffb;
  overflow: hidden;
}

.public-status-panel > div:last-child {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
}

.asset-info {
  min-width: 0;
}

.public-status-panel.known {
  border-color: rgba(43, 214, 123, 0.32);
  background:
    linear-gradient(135deg, rgba(43, 214, 123, 0.12), rgba(53, 185, 255, 0.05)),
    #f8fffb;
}

.public-status-panel.demo-open {
  border-color: rgba(245, 158, 11, 0.42);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(53, 185, 255, 0.05)),
    #fffaf0;
}

.notice-panel h2,
.notice-panel p {
  margin: 0;
}

.notice-panel h2 {
  font-size: 1rem;
}

.notice-panel p {
  margin-top: 4px;
  color: var(--muted);
}

.notice-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--danger-soft);
  color: var(--danger);
  font-weight: 900;
}

.status-panel-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #dfffe9;
  color: var(--green);
}

.public-status-panel.known .status-panel-icon {
  background: #dfffe9;
  color: var(--green-dark);
}

.public-status-panel.demo-open .status-panel-icon {
  background: #fff0c2;
  color: #a45b00;
}

.quick-help-card {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(43, 214, 123, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 214, 123, 0.1), rgba(53, 185, 255, 0.05)),
    #f8fffb;
}

.quick-help-card h3,
.quick-help-card p {
  margin: 0;
}

.quick-help-card h3 {
  font-size: 1.05rem;
}

.quick-help-card p {
  color: #4b5563;
  line-height: 1.4;
}

.quick-help-note {
  color: var(--green-dark) !important;
  font-size: 0.88rem;
  font-weight: 900;
}

.status-kicker {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.public-status-panel h2,
.public-status-panel p {
  margin: 0;
}

.public-status-panel h2 {
  font-size: 1.05rem;
}

#publicStatusSummary {
  margin-top: 4px;
  color: #4b5563;
}

.public-status-details {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 14px 0 0;
}

.public-status-details div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(13, 125, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.public-status-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.public-status-details dd {
  max-width: 100%;
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.public-status-hint {
  margin-top: 12px !important;
  color: var(--muted);
  font-weight: 800;
}

.step-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 1rem;
}

.progress-row strong {
  color: var(--muted);
}

.progress-track {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe8e5;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.progress-fill.half {
  width: 50%;
}

.progress-fill.full {
  width: 100%;
}

.step-heading {
  margin: 30px 0 24px;
  text-align: left;
}

.step-heading h2 {
  margin: 12px 0 6px;
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.step-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 4.8vw, 1.25rem);
}

.alert-badge,
.success-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
}

.alert-badge {
  background: #e7fff0;
  color: var(--green-dark);
}

.success-badge {
  background: var(--green-soft);
  color: var(--green);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-card {
  display: grid;
  position: relative;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 214, 123, 0.035), transparent 42%),
    #ffffff;
  padding: 14px 44px 14px 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 17, 20, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.problem-card:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 125, 73, 0.32);
  box-shadow: 0 14px 30px rgba(11, 17, 20, 0.08);
}

.problem-card[aria-pressed="true"] {
  border-color: rgba(13, 125, 73, 0.62);
  background:
    linear-gradient(135deg, rgba(43, 214, 123, 0.16), rgba(53, 185, 255, 0.05)),
    #fbfffc;
  box-shadow: 0 14px 30px rgba(13, 125, 73, 0.16);
}

.radio-dot {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid #9aa9aa;
  border-radius: 6px;
  transform: translateY(-50%);
}

.problem-card[aria-pressed="true"] .radio-dot::after {
  width: 8px;
  height: 8px;
  border-radius: inherit;
  background: var(--green-dark);
  content: "";
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-dark);
  background: #edfff4;
  border: 1px solid rgba(43, 214, 123, 0.24);
  border-radius: var(--radius);
}

.problem-title {
  min-width: 0;
  font-weight: 800;
  line-height: 1.2;
}

.selection-hint {
  margin: 12px 0 0;
  border: 1px solid rgba(13, 125, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(43, 214, 123, 0.08);
  padding: 10px 12px;
  color: #445158;
  font-size: 0.9rem;
  font-weight: 900;
}

.selection-hint.selected {
  border-color: rgba(13, 125, 73, 0.32);
  background: #edfff4;
  color: var(--green-dark);
}

.field-label {
  display: flex;
  justify-content: space-between;
  margin: 22px 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.field-label span {
  color: var(--muted);
  font-weight: 600;
}

textarea,
input[type="email"],
input[type="tel"],
input[type="text"] {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 14px;
  color: var(--ink);
  outline: 0;
}

textarea:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(43, 214, 123, 0.12);
}

textarea {
  resize: vertical;
}

.field-hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.upload-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  margin-top: 16px;
  border: 2px dashed #b8d9c8;
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  cursor: pointer;
}

.upload-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.upload-icon {
  color: var(--green-dark);
}

.upload-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.customer-notification-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(53, 185, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(53, 185, 255, 0.08), rgba(43, 214, 123, 0.05)),
    #ffffff;
  padding: 16px;
}

.customer-notification-card h3,
.customer-notification-card p {
  margin: 0;
}

.customer-notification-card h3 {
  font-size: 1.05rem;
}

.customer-notification-card p {
  color: #4b5563;
  line-height: 1.42;
}

.customer-opt-in {
  margin-top: 2px;
  color: var(--ink);
}

.customer-contact-fields {
  display: grid;
  gap: 8px;
}

.customer-contact-fields.muted-fields {
  opacity: 0.62;
}

.customer-contact-fields .field-label {
  margin: 8px 0 0;
}

.customer-contact-fields select {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.customer-contact-fields select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(43, 214, 123, 0.12);
  outline: 0;
}

.customer-contact-fields input:disabled,
.customer-contact-fields select:disabled {
  background: #f5f7f9;
  color: #8a93a0;
}

.customer-contact-hint {
  color: var(--muted) !important;
  font-size: 0.84rem;
}

.form-error {
  margin: 16px 0 0;
  color: var(--danger);
  font-weight: 800;
}

.demo-mode-notice,
.demo-live-note,
.demo-local-note {
  border: 1px solid rgba(53, 185, 255, 0.2);
  border-radius: 12px;
  background: rgba(53, 185, 255, 0.08);
  padding: 10px 12px;
  color: #255f7a;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
}

.demo-mode-notice {
  margin: 0 0 14px;
}

.demo-live-note {
  margin: 10px 0 0;
}

.demo-local-note {
  margin: 10px 0 0;
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.12);
  color: #7c4700;
}

.demo-reset-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(197, 40, 47, 0.22);
  border-radius: var(--radius);
  background: #fff8f8;
  color: #9a1f27;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.public-status-hint .demo-reset-action {
  display: flex;
  width: fit-content;
  margin-top: 10px;
}

.success-kicker {
  margin: 0 0 10px !important;
  color: var(--green-dark) !important;
  font-size: 0.95rem !important;
  font-weight: 900;
}

.demo-live-intro {
  margin: 0 0 10px !important;
  color: #314047 !important;
  font-size: 1rem !important;
  font-weight: 800;
  line-height: 1.42;
}

.primary-action,
.secondary-action,
.notify-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.primary-action {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--green), #77f2aa);
  color: #06110d;
  font-size: 1.2rem;
  box-shadow: 0 12px 28px rgba(13, 125, 73, 0.22);
}

.primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.success-card .step-heading h2 {
  color: var(--green-dark);
}

.email-info {
  display: flex;
  gap: 12px;
  border: 1px solid rgba(53, 185, 255, 0.22);
  border-radius: var(--radius);
  background: var(--blue-soft);
  padding: 16px;
}

.email-info svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.email-info h3,
.email-info p {
  margin: 0;
}

.email-info h3 {
  font-size: 1.1rem;
}

.email-info p {
  margin-top: 4px;
  color: #4b5563;
}

.notification-choice {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.notification-choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}

.notification-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
}

.notification-fields {
  margin-top: 4px;
}

.notification-fields.muted-fields {
  opacity: 0.68;
}

.notification-fields input:disabled {
  background: #f5f7f9;
  color: #8a93a0;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: #4b5563;
  font-weight: 800;
  line-height: 1.35;
}

.consent-line input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-dark);
}

.secondary-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.secondary-action {
  border: 2px solid var(--line);
  background: white;
  color: var(--ink);
}

.notify-action {
  background: #16272b;
  color: white;
}

.email-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.demo-ticket-preview,
.notification-preview {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  border: 1px solid rgba(13, 125, 73, 0.16);
  border-radius: var(--radius);
  background: #fbfffc;
  padding: 16px;
}

.demo-ticket-preview h3,
.notification-preview h3,
.demo-ticket-preview p,
.notification-preview p {
  margin: 0;
}

.demo-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.demo-summary-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 10px;
}

.demo-summary-grid dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-summary-grid dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.demo-description {
  color: #4b5563;
  line-height: 1.45;
}

.notification-preview pre {
  margin: 0;
  white-space: pre-wrap;
  border-radius: 12px;
  background: #10191d;
  padding: 14px;
  color: #eafaf1;
  font: 800 0.92rem/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.demo-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.demo-actions a {
  text-decoration: none;
}

.privacy-note {
  padding: 18px 6px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 640px) {
  .app-shell {
    padding-top: calc(22px + env(safe-area-inset-top));
  }

  .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card {
    padding: 34px;
  }

  .secondary-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .app-language-slot {
    margin-left: 0;
  }

  .app-shell {
    width: min(calc(100% - 28px), 760px);
  }

  .asset-card {
    grid-template-columns: 1fr;
  }

  .asset-visual {
    min-height: 154px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .asset-info {
    padding: 20px;
  }

  .brand-bar {
    gap: 12px;
    padding: 12px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
  }

  .brand-wordmark {
    display: none;
  }

  .brand-title {
    display: block;
  }

  .brand-subtitle {
    font-size: 0.82rem;
  }
}
