/* ABOUTME: Default AION Workspace theme for the interactive auth pages. */
/* ABOUTME: Dark blueprint surface with focused credential panel. */

:root {
  --bg: #050810;
  --paper: #0B111E;
  --paper-2: #0E1626;
  --ink: #ECEEF3;
  --ink-dim: #8C92A3;
  --ink-mute: #545A6B;
  --ink-faint: #353B4A;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --field-bg: #0A0F1B;
  --field-line: rgba(255, 255, 255, 0.10);
  --field-line-focus: rgba(91, 138, 255, 0.55);

  --accent: #2563EB;
  --accent-bright: #5B8AFF;
  --accent-soft: rgba(91, 138, 255, 0.14);
  --accent-glow: rgba(91, 138, 255, 0.22);

  --danger: #F87171;
  --danger-soft: rgba(248, 113, 113, 0.10);
  --danger-line: rgba(248, 113, 113, 0.45);

  --display: 'Instrument Serif', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; }
body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(37, 99, 235, 0.10), transparent 42%),
    radial-gradient(ellipse at 50% 60%, rgba(37, 99, 235, 0.05), transparent 65%);
  pointer-events: none;
}

.blueprint {
  position: fixed;
  left: 50%; top: 58%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 800px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.blueprint line, .blueprint path {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  fill: none;
}
.blueprint .accent { stroke: rgba(91, 138, 255, 0.18); }
.blueprint .tick   { stroke: rgba(255, 255, 255, 0.10); }

.umbrella {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
  border-bottom: 1px solid var(--line);
}
.umbrella__brand { display: flex; align-items: center; gap: 18px; }
.umbrella__logo {
  height: 36px; width: auto; display: block;
  user-select: none;
}
.umbrella__divider {
  width: 1px; height: 24px; background: var(--line-strong);
}
.umbrella__product {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-dim);
}
.umbrella__status {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
}
.umbrella__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-mute);
}
.umbrella__dot--ok    { background: #4ADE80; box-shadow: 0 0 8px rgba(74, 222, 128, 0.55); }
.umbrella__dot--warn  { background: #FBBF24; box-shadow: 0 0 8px rgba(251, 191, 36, 0.55); }
.umbrella__dot--error { background: var(--danger); box-shadow: 0 0 8px rgba(248, 113, 113, 0.55); }

main.aion-shell {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
}

.panel {
  width: 100%;
  max-width: 460px;
  display: flex; flex-direction: column; gap: 28px;
}
.panel__head { display: flex; flex-direction: column; gap: 10px; }
.panel__eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-bright);
  display: flex; align-items: center; gap: 10px;
}
.panel__eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.panel__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.panel__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-bright);
  margin-left: 4px;
}
.panel__sub {
  font-size: 14px; line-height: 1.55; color: var(--ink-dim); margin: 0;
  max-width: 38ch;
}
.panel__sub--wide { max-width: none; }
.panel__body {
  font-size: 14px; line-height: 1.6; color: var(--ink-dim); margin: 0;
}
.panel__link {
  color: var(--accent-bright); text-decoration: none;
  border-bottom: 1px solid rgba(91, 138, 255, 0.40);
  padding-bottom: 1px;
  transition: color 140ms ease, border-color 140ms ease;
}
.panel__link:hover { color: #8FAFFF; border-bottom-color: #8FAFFF; }
.panel__note {
  font-size: 12px; line-height: 1.55; color: var(--ink-dim);
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0;
}
.panel__note strong { color: var(--ink); font-weight: 600; }
.panel--error .panel__title em { color: var(--danger); }
.panel__eyebrow--error { color: var(--danger); }
.redirect-row {
  display: flex; align-items: center; gap: 14px;
}

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-dim);
}
.field__shell {
  position: relative;
  background: var(--field-bg);
  border: 1px solid var(--field-line);
  border-radius: 8px;
  display: flex; align-items: center;
  transition: border-color 160ms ease, background 160ms ease;
}
.field__shell:hover { border-color: rgba(255, 255, 255, 0.18); }
.field__shell:focus-within {
  border-color: var(--field-line-focus);
  background: #0C1320;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field__icon {
  width: 44px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  border-right: 1px solid var(--field-line);
  flex-shrink: 0;
}
.field__shell:focus-within .field__icon { color: var(--accent-bright); }
.field__icon svg { width: 16px; height: 16px; }
.field__input {
  flex: 1;
  background: transparent; border: 0; outline: none;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  padding: 0 16px; height: 48px;
  letter-spacing: 0.005em;
  width: 100%;
  min-width: 0;
}
.field__input::placeholder { color: var(--ink-faint); }
.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--field-bg) inset;
  caret-color: var(--ink);
  transition: background-color 100000s ease-in-out 0s, color 100000s ease-in-out 0s;
}
.field__shell:focus-within .field__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0C1320 inset;
}
.field__input::-webkit-credentials-auto-fill-button,
.field__input::-webkit-strong-password-auto-fill-button { filter: invert(0.85); }
.field__suffix { display: flex; align-items: center; padding-right: 12px; }
.field__toggle {
  background: transparent; border: 0; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute); border-radius: 4px;
  transition: color 140ms ease, background 140ms ease;
}
.field__toggle:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.field__toggle svg { width: 16px; height: 16px; }

.remember {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-size: 13px; color: var(--ink-dim);
  user-select: none;
  margin: -2px 0 4px;
  position: relative;
}
.remember input { position: absolute; opacity: 0; pointer-events: none; }
.remember__box {
  width: 16px; height: 16px;
  border: 1px solid var(--field-line);
  border-radius: 4px;
  background: var(--field-bg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 140ms ease, background 140ms ease;
  flex-shrink: 0;
}
.remember__box svg { width: 11px; height: 11px; color: transparent; transition: color 140ms ease; }
.remember input:checked + .remember__box {
  border-color: var(--accent);
  background: var(--accent);
}
.remember input:checked + .remember__box svg { color: #F8FAFF; }
.remember:hover .remember__box { border-color: var(--line-strong); }

.submit {
  margin-top: 4px;
  height: 52px;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: #F8FAFF;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 0 0 1px rgba(91, 138, 255, 0.30), 0 12px 32px -8px var(--accent-glow);
  width: 100%;
  text-decoration: none;
}
.submit:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 0 1px rgba(91, 138, 255, 0.50), 0 16px 40px -8px var(--accent-glow);
}
.submit:active { transform: translateY(1px); }
.submit svg { width: 16px; height: 16px; }
.submit--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line-strong);
}
.submit--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px var(--line-strong);
}
.submit:disabled,
.submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.submit:disabled:hover,
.submit[disabled]:hover {
  background: transparent;
  transform: none;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.form__alt { text-align: center; margin-top: 2px; }
.linkbtn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 13.5px; color: var(--ink-dim);
  transition: color 140ms ease;
}
.linkbtn:hover { color: var(--accent-bright); }
.linkbtn svg { opacity: .7; flex: none; }
.linkbtn:disabled { opacity: .45; cursor: not-allowed; }
.linkbtn:disabled:hover { color: var(--ink-dim); }

.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 16px; }
.step__num {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(91, 138, 255, 0.5);
  background: var(--accent-soft);
  color: var(--accent-bright);
  font-family: var(--mono); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.step__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.step__title { font-size: 13.5px; font-weight: 600; color: var(--ink); }

.qr-row { display: flex; gap: 20px; align-items: flex-start; }
.qr {
  flex: none;
  background: #FFFFFF;
  padding: 11px;
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.55);
}
.qr__img { display: block; width: 150px; height: 150px; image-rendering: pixelated; }
.qr-hint { font-size: 12.5px; line-height: 1.55; color: var(--ink-mute); margin: 0; }

.setup-key {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 10px 10px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.setup-key__value {
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.14em;
  color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.setup-key__copy {
  flex: none;
  display: inline-flex; align-items: center; gap: 7px;
  height: 32px; padding: 0 11px;
  background: var(--accent-soft);
  border: 1px solid rgba(91, 138, 255, 0.30);
  border-radius: 6px;
  color: var(--accent-bright);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.setup-key__copy:hover { background: rgba(91, 138, 255, 0.22); }
.setup-key__copy svg { width: 13px; height: 13px; }
.setup-key__copy.is-copied {
  color: #4ADE80; border-color: rgba(74, 222, 128, 0.40); background: rgba(74, 222, 128, 0.10);
}

.divider-line { height: 1px; background: var(--line); }

.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.notice__icon {
  flex: none; width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.notice__icon svg { width: 19px; height: 19px; }
.notice__icon--info { background: var(--accent-soft); color: var(--accent-bright); border: 1px solid rgba(91, 138, 255, 0.30); }
.notice__icon--ok   { background: rgba(74, 222, 128, 0.10); color: #4ADE80; border: 1px solid rgba(74, 222, 128, 0.34); }
.notice__icon--warn { background: rgba(251, 191, 36, 0.10); color: #FBBF24; border: 1px solid rgba(251, 191, 36, 0.30); }
.notice__title { font-size: 14px; font-weight: 600; color: var(--ink); margin: 3px 0 5px; }
.notice__body { font-size: 13px; line-height: 1.55; color: var(--ink-dim); margin: 0; }

.aion-error {
  border: 1px solid var(--danger-line);
  background: var(--danger-soft);
  color: #FECACA;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}
.aion-error ul { margin: 0; padding-left: 18px; }
.aion-error li + li { margin-top: 4px; }

.scope-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.scope-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
}
.scope-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-bright);
  display: flex; align-items: center; justify-content: center;
}
.scope-item__icon svg { width: 14px; height: 14px; }
.scope-item__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.scope-item__title {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.scope-item__required {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--ink-mute);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 2px 6px;
}
.scope-item__desc {
  margin: 0; font-size: 12px; color: var(--ink-dim); line-height: 1.5;
}
.scope-item__name {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em;
  color: var(--ink-faint);
}

.button-row { display: flex; gap: 12px; }
.button-row .submit { flex: 1; }

.meta {
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 18px; margin-top: 4px;
}

/* ---- Admin · MFA operator console --------------------------------- */
.panel--wide { max-width: 760px; }

.console-section {
  background: rgba(5, 8, 16, 0.4);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.console-section--flush { padding: 0; }
.console-section__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
  margin: 0 0 18px;
}

.segmented {
  display: inline-flex; padding: 4px; gap: 4px;
  background: var(--field-bg);
  border: 1px solid var(--field-line);
  border-radius: 8px;
  margin-bottom: 18px;
}
.segmented__option {
  height: 36px; padding: 0 18px; border: 0; border-radius: 6px;
  background: transparent; color: var(--ink-dim);
  font-family: var(--sans); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}
.segmented__option--active {
  background: var(--accent-soft); color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(91, 138, 255, 0.40);
}

.lookup { display: flex; gap: 14px; align-items: flex-end; }
.lookup .field { flex: 1; min-width: 0; }

.btn-ghost {
  flex: none;
  height: 48px; padding: 0 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--field-line);
  border-radius: 8px;
  color: var(--ink); font-family: var(--sans); font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--line-strong); }
.btn-ghost svg { width: 17px; height: 17px; }

.btn-danger {
  height: 44px; padding: 0 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--danger-soft);
  border: 1px solid var(--danger-line);
  border-radius: 8px;
  color: var(--danger); font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
}
.btn-danger:hover { background: rgba(248, 113, 113, 0.16); border-color: rgba(248, 113, 113, 0.60); }
.btn-danger svg { width: 16px; height: 16px; }

.empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 300px; padding: 30px;
}
.empty-state__ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px dashed var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute); margin-bottom: 18px;
}
.empty-state__ring svg { width: 26px; height: 26px; }
.empty-state__title { font-size: 14px; color: var(--ink-dim); font-weight: 500; margin-bottom: 6px; }
.empty-state__body { font-size: 13px; color: var(--ink-mute); max-width: 32ch; line-height: 1.55; }

.identity { display: flex; align-items: center; gap: 14px; }
.identity__avatar {
  flex: none; width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(150deg, rgba(91, 138, 255, 0.40), rgba(91, 138, 255, 0.12));
  border: 1px solid rgba(91, 138, 255, 0.40);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; font-size: 17px; color: #FFFFFF;
  text-transform: uppercase;
}
.identity__who { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.identity__email { font-size: 15px; font-weight: 600; color: var(--ink); }
.identity__type {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
.spacer { flex: 1; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  height: 24px; padding: 0 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--ink-dim);
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); }
.badge--on { color: #4ADE80; border-color: rgba(74, 222, 128, 0.34); background: rgba(74, 222, 128, 0.08); }
.badge--on .badge__dot { background: #4ADE80; }
.badge--off { color: var(--ink-mute); border-color: var(--line); }

.kv {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.kv:last-child { border-bottom: 0; }
.kv__key { font-size: 12.5px; color: var(--ink-dim); margin-bottom: 8px; }
.kv__value { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.kv__value--mono { font-family: var(--mono); font-size: 12.5px; color: var(--ink-dim); }

.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: none; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__track {
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.10); border: 1px solid var(--field-line);
  transition: background 180ms ease, border-color 180ms ease;
}
.switch__knob {
  position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: #CFD4DE; transition: left 180ms ease, background 180ms ease;
}
.switch input:checked + .switch__track { background: rgba(91, 138, 255, 0.40); border-color: var(--accent); }
.switch input:checked + .switch__track + .switch__knob { left: 21px; background: var(--accent-bright); }

.row-actions { display: flex; align-items: center; gap: 16px; }
.result-action__title { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.result-action__desc { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; max-width: 44ch; margin: 0; }

.foot {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 18px 40px;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
}
.foot a { color: var(--ink-dim); text-decoration: none; transition: color 140ms ease; }
.foot a:hover { color: var(--ink); }

.spinner {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  border-top-color: var(--accent-bright);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Admin · Application access ------------------------------------ */
.link-quiet {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  font-family: var(--sans); font-size: 13.5px; color: var(--ink-dim);
  text-decoration: none; cursor: pointer;
  transition: color 140ms ease;
}
.link-quiet:hover { color: var(--accent-bright); }
.link-quiet svg { width: 15px; height: 15px; opacity: 0.7; }

.btn-primary {
  height: 50px; padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--accent); border: 0; border-radius: 8px;
  color: #F8FAFF; font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  box-shadow: 0 0 0 1px rgba(91, 138, 255, 0.30), 0 12px 32px -12px var(--accent-glow);
  transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 0 1px rgba(91, 138, 255, 0.50), 0 16px 40px -12px var(--accent-glow);
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary svg { width: 16px; height: 16px; }

/* section header inside a console-section */
.subhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.subhead__label { display: flex; align-items: center; gap: 10px; }
.subhead__icon { color: var(--accent-bright); display: flex; }
.subhead__icon svg { width: 17px; height: 17px; }
.subhead__title { margin: 0; font-size: 14px; font-weight: 600; color: var(--ink); }
.subhead__hint {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); white-space: nowrap;
}

/* mono caption inside a section */
.section-caption {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); margin: 0 0 10px;
}
.hint-row { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--ink-mute); }
.hint-row svg { width: 14px; height: 14px; flex: none; }

/* group detail header (name + actions) */
.detail-head { display: flex; align-items: flex-start; gap: 18px; }
.detail-head__main { flex: 1; min-width: 0; }

/* group list */
.group-list { display: flex; flex-direction: column; }
.group-row {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
  color: inherit; text-decoration: none;
  transition: background 140ms ease;
}
.group-row:last-child { border-bottom: 0; }
.group-row:hover { background: rgba(255, 255, 255, 0.02); }
.group-row:hover .group-row__go { color: var(--accent-bright); transform: translateX(3px); }
.group-row__icon {
  flex: none; width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border: 1px solid rgba(91, 138, 255, 0.28);
  color: var(--accent-bright);
}
.group-row__icon svg { width: 19px; height: 19px; }
.group-row__main { flex: 1; min-width: 0; }
.group-row__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.group-row__desc {
  font-size: 13px; color: var(--ink-mute); margin-top: 3px; line-height: 1.45;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 46ch;
}
.group-row__go { flex: none; color: var(--ink-mute); transition: color 140ms ease, transform 140ms ease; }
.group-row__go svg { width: 20px; height: 20px; }

/* metric count chips (mono number + label) */
.metrics { display: flex; gap: 10px; flex: none; }
.metric {
  display: inline-flex; align-items: baseline; gap: 7px; flex: none;
  padding: 7px 12px; border-radius: 7px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--field-line);
}
.metric__n { font-family: var(--mono); font-size: 15px; color: var(--ink); line-height: 1; }
.metric__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

/* assigned application chips (read-only summary) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 13px; border-radius: 8px;
  background: var(--field-bg); border: 1px solid var(--field-line);
}
.chip__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.chip__name { font-size: 13px; font-weight: 500; color: var(--ink); }
.chip__id { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.04em; }

/* application checklist (assign / remove) */
.checklist { display: flex; flex-direction: column; gap: 2px; }
.checkrow {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 12px; border-radius: 8px; cursor: pointer;
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease;
}
.checkrow:hover { background: rgba(255, 255, 255, 0.02); }
.checkrow input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkrow__box {
  flex: none; width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--line-strong); background: var(--field-bg);
  display: flex; align-items: center; justify-content: center;
  transition: background 140ms ease, border-color 140ms ease;
}
.checkrow__box svg { width: 12px; height: 12px; color: #F8FAFF; opacity: 0; transition: opacity 140ms ease; }
.checkrow input:checked + .checkrow__box { background: var(--accent); border-color: var(--accent); }
.checkrow input:checked + .checkrow__box svg { opacity: 1; }
.checkrow--on { background: var(--accent-soft); border-color: rgba(91, 138, 255, 0.22); }
.checkrow__text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.checkrow__name { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.checkrow__id { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.04em; }

/* manager rows (identity + remove) */
.manager-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.manager-row:last-child { border-bottom: 0; }
.manager-row__avatar {
  flex: none; width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(150deg, rgba(91, 138, 255, 0.40), rgba(91, 138, 255, 0.12));
  border: 1px solid rgba(91, 138, 255, 0.40);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; font-size: 14px; color: #FFFFFF;
  text-transform: uppercase;
}
.manager-row__who { flex: 1; min-width: 0; }
.manager-row__email { font-size: 14px; font-weight: 500; color: var(--ink); }
.manager-row__sub { font-size: 12px; color: var(--ink-dim); margin-top: 2px; }
.icon-btn {
  flex: none; width: 34px; height: 34px; border-radius: 7px;
  background: transparent; border: 1px solid var(--field-line); color: var(--ink-mute);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}
.icon-btn:hover { color: var(--danger); border-color: var(--danger-line); background: var(--danger-soft); }
.icon-btn svg { width: 16px; height: 16px; }

/* effective-access application grid */
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.app-card {
  display: flex; flex-direction: column;
  padding: 15px 16px; border-radius: 9px;
  background: var(--field-bg); border: 1px solid var(--field-line);
}
.app-card__top { display: flex; align-items: center; gap: 11px; }
.app-card__icon {
  flex: none; width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border: 1px solid rgba(91, 138, 255, 0.28);
  color: var(--accent-bright);
}
.app-card__icon svg { width: 17px; height: 17px; }
.app-card__name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.app-card__id { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); margin-top: 2px; }
.gtags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.gtag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid rgba(91, 138, 255, 0.26);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--accent-bright);
}
.gtag svg { width: 11px; height: 11px; }

@media (max-width: 640px) {
  .umbrella { padding: 18px 20px; flex-wrap: wrap; row-gap: 8px; }
  .umbrella__brand { flex-wrap: wrap; gap: 12px; }
  .umbrella__divider { display: none; }
  .umbrella__logo { height: 30px; }
  .umbrella__product {
    flex-basis: 100%;
    margin-top: 2px;
  }
  .umbrella__status { display: none; }
  .panel__title { font-size: 36px; }
  .foot { flex-direction: column; padding: 18px 20px; gap: 8px; }
  .qr-row { flex-direction: column; }
  .lookup { flex-direction: column; align-items: stretch; }
  .btn-ghost { width: 100%; }
  .row-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .app-grid { grid-template-columns: 1fr; }
  .detail-head { flex-direction: column; }
  .subhead { flex-wrap: wrap; }
  .metrics { flex-wrap: wrap; }
}

/* ====================================================================
   Console home — sign-in hero, persistent navigation, operator hub
   ==================================================================== */

/* full-bleed shell for the home screens (the credential shell centres a narrow panel) */
main.aion-shell--full {
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.home, .hub { flex: 1; width: 100%; min-width: 0; }

@keyframes led-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 138, 255, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(91, 138, 255, 0); }
}

/* ---- Persistent navigation (umbrella header in console mode) ------- */
.umbrella--nav {
  justify-content: flex-start;
  gap: 34px;
  padding: 0 40px;
  height: 72px;
}
.umbrella--nav .umbrella__logo { height: 28px; }
.console-nav { display: flex; align-items: center; gap: 6px; }
.console-nav__item {
  display: inline-flex; align-items: center; gap: 9px;
  height: 40px; padding: 0 16px; border-radius: 8px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--ink-dim); text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: color 140ms ease, background 140ms ease, border-color 140ms ease;
}
.console-nav__item svg { width: 17px; height: 17px; }
.console-nav__item:hover { color: var(--ink); background: rgba(255, 255, 255, 0.03); }
.console-nav__item--active {
  color: var(--ink); background: rgba(91, 138, 255, 0.12);
  border-color: rgba(91, 138, 255, 0.32);
}
.console-nav__item--active svg { color: var(--accent-bright); }
.console-nav__spacer { flex: 1; }

.user-chip {
  display: inline-flex; align-items: center; gap: 11px;
  height: 42px; padding: 0 12px 0 8px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.02);
  text-decoration: none; transition: border-color 140ms ease;
}
.user-chip:hover { border-color: rgba(91, 138, 255, 0.40); }
.user-chip__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(150deg, rgba(91, 138, 255, 0.50), rgba(91, 138, 255, 0.15));
  border: 1px solid rgba(91, 138, 255, 0.40);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #FFFFFF; text-transform: uppercase;
}
.user-chip__name { font-size: 13px; font-weight: 500; color: var(--ink); }
.user-chip__caret { color: var(--ink-mute); display: flex; }
.user-chip__caret svg { width: 16px; height: 16px; }
.user-chip:hover .user-chip__caret { color: var(--accent-bright); }

/* ---- Hero (signed-out landing) ------------------------------------- */
.home {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 52px 28px;
}
.home__wave {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%; opacity: 0.5;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}
.home__wave path { fill: none; stroke: rgba(91, 138, 255, 0.20); stroke-width: 1; }
.home__grid {
  position: relative; z-index: 1; flex: 1;
  display: grid; grid-template-columns: 1.18fr 0.82fr;
}
.home__left { display: flex; flex-direction: column; padding-right: 54px; }
.home__right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8px 0 54px; border-left: 1px solid var(--line);
}

.boxed-pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(91, 138, 255, 0.34);
  background: rgba(91, 138, 255, 0.06);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent-bright); font-weight: 500;
}
.boxed-pill__led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(91, 138, 255, 0.6);
  animation: led-accent 2.6s ease-in-out infinite;
}

.hero-title {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.02;
  font-size: 54px; color: var(--ink); margin: 26px 0 0;
}
.hero-title__accent { color: var(--accent-bright); }
.hero-lede {
  margin: 20px 0 0; max-width: 46ch;
  font-size: 15px; line-height: 1.62; color: var(--ink-dim);
}

.term-card {
  margin-top: 28px;
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.78), rgba(11, 17, 30, 0.82));
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 40px 90px -54px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.term-card__head {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.term-card__dots { display: flex; gap: 7px; }
.term-card__dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--line-strong);
}
.term-card__title {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-dim);
  letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.term-card__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px; flex: none;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-bright);
}
.term-card__live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright); box-shadow: 0 0 8px var(--accent-bright);
  animation: led-accent 2.6s ease-in-out infinite;
}

.auth-stream {
  position: relative; height: 190px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}
.auth-stream__track { display: flex; flex-direction: column; animation: auth-stream-up 24s linear infinite; }
@keyframes auth-stream-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.event {
  display: grid; grid-template-columns: 60px 10px minmax(0, 1fr) auto;
  align-items: center; gap: 13px; height: 38px; padding: 0 18px;
  border-bottom: 1px solid var(--line);
}
.event__time { font-family: var(--mono); font-size: 11.5px; color: var(--ink-mute); }
.event__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-mute); }
.event__dot--ok { background: #4ADE80; box-shadow: 0 0 7px rgba(74, 222, 128, 0.55); }
.event__dot--ac { background: var(--accent-bright); box-shadow: 0 0 7px rgba(91, 138, 255, 0.70); }
.event__dot--wn { background: #FBBF24; box-shadow: 0 0 7px rgba(251, 191, 36, 0.55); }
.event__mid { min-width: 0; display: flex; align-items: baseline; gap: 11px; overflow: hidden; }
.event__act { font-size: 13px; font-weight: 500; color: var(--ink); white-space: nowrap; flex: none; }
.event__who {
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.event__tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); border: 1px solid var(--line-strong); border-radius: 5px;
  padding: 3px 8px; white-space: nowrap;
}
.event__tag--ac { color: var(--accent-bright); border-color: rgba(91, 138, 255, 0.30); background: rgba(91, 138, 255, 0.08); }
.event__tag--wn { color: #FBBF24; border-color: rgba(251, 191, 36, 0.30); background: rgba(251, 191, 36, 0.07); }

.term-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.term-metric { padding: 16px 18px; border-right: 1px solid var(--line); }
.term-metric:last-child { border-right: 0; }
.term-metric__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute);
}
.term-metric__value { font-family: var(--mono); font-size: 20px; color: var(--ink); margin-top: 8px; }
.term-metric__value--warn { color: #FBBF24; }
.term-metric__value--good { color: #4ADE80; }

.home__disclaimer {
  margin: 12px 0 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
}

.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: auto; padding-top: 26px; }
.feature-card { padding: 16px 18px; border-radius: 8px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.015); }
.feature-card__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; color: var(--accent-bright); }
.feature-card__title { font-size: 14px; font-weight: 600; color: var(--ink); margin-top: 14px; }
.feature-card__desc { font-size: 12.5px; color: var(--ink-mute); margin-top: 5px; }

.signin__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent-bright); font-weight: 500;
}
.signin__title { font-family: var(--sans); font-weight: 700; font-size: 36px; letter-spacing: -0.02em; color: var(--ink); margin: 18px 0 0; }
.signin__lede { margin: 14px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-dim); max-width: 40ch; }
.btn-sso {
  width: 100%; height: 64px; margin-top: 34px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #FFFFFF; border: 0; border-radius: 12px;
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 26px 60px -22px rgba(91, 138, 255, 0.95), 0 0 46px -8px rgba(91, 138, 255, 0.55);
  transition: filter 140ms ease, transform 80ms ease;
}
.btn-sso:hover { filter: brightness(1.07); }
.btn-sso:active { transform: translateY(1px); }
.btn-sso svg { width: 20px; height: 20px; }
.signin__meta {
  display: flex; gap: 34px; margin-top: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.signin__meta span { display: inline-flex; align-items: center; gap: 9px; }
.signin__meta-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }

/* ---- Operator hub (signed-in landing) ------------------------------ */
.hub { display: flex; flex-direction: column; overflow: auto; padding: 42px 52px 36px; }
.hub__inner { width: 100%; max-width: 1040px; margin: 0 auto; }
.hub__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.hub__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-bright); }
.hub__title { font-family: var(--sans); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; color: var(--ink); margin: 14px 0 0; }
.hub__sub { margin: 9px 0 0; font-size: 13.5px; color: var(--ink-dim); }
.hub__sub b { color: var(--ink); font-weight: 500; font-family: var(--mono); font-size: 12.5px; }
.hub__stats { display: flex; gap: 10px; }
.hub__stats-note {
  margin: 14px 0 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.hub__section-label {
  display: flex; align-items: center; gap: 14px; margin: 34px 0 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-mute);
}
.hub__section-rule { flex: 1; height: 1px; background: var(--line); }

.func-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.func-card {
  display: flex; flex-direction: column;
  padding: 24px; border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.6), rgba(11, 17, 30, 0.55));
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.func-card:hover {
  transform: translateY(-3px); border-color: rgba(91, 138, 255, 0.40);
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.85), rgba(11, 17, 30, 0.80));
}
.func-card__top { display: flex; align-items: center; justify-content: space-between; }
.func-card__icon {
  width: 46px; height: 46px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(91, 138, 255, 0.10); border: 1px solid rgba(91, 138, 255, 0.30); color: var(--accent-bright);
}
.func-card__icon svg { width: 22px; height: 22px; }
.func-card__go { color: var(--ink-mute); transition: color 140ms ease, transform 140ms ease; }
.func-card__go svg { width: 18px; height: 18px; }
.func-card:hover .func-card__go { color: var(--accent-bright); transform: translateX(3px); }
.func-card__name { font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 20px; }
.func-card__path { font-family: var(--mono); font-size: 11.5px; color: var(--accent-bright); margin-top: 8px; letter-spacing: 0.02em; }
.func-card__desc { font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); margin-top: 12px; }
.func-card__meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; }

@media (max-width: 860px) {
  .home { padding: 24px; }
  .home__grid { grid-template-columns: 1fr; }
  .home__left { padding-right: 0; }
  .home__right { border-left: 0; padding: 32px 0 0; }
  .hub { padding: 32px 24px; }
  .func-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .umbrella--nav { height: auto; flex-wrap: wrap; padding: 14px 20px; gap: 14px; }
  .console-nav { flex-wrap: wrap; }
  .user-chip__name { display: none; }
  .hero-title { font-size: 38px; }
  .hub__head { flex-direction: column; align-items: flex-start; }
  .signin__meta { flex-direction: column; gap: 12px; }
}
