:root {
  color-scheme: light;
  --ink: #10182b;
  --navy: #182743;
  --navy-soft: #243758;
  --paper: #ffffff;
  --paper-muted: #edf2f5;
  --line: #d5dfe5;
  --muted: #526477;
  --amber: #efa941;
  --orange: #096d68;
  --green: #287c62;
  --red: #a9433f;
  --shadow: 0 0.2rem 0.9rem rgba(24, 39, 67, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 18rem;
  background: var(--paper-muted);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper-muted);
  color: var(--ink);
  font-family:
    'Segoe UI',
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 0.2rem solid #2377b8;
  outline-offset: 0.2rem;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.skip-link {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.35rem;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  background: var(--navy);
}

.header-inner,
.content-shell,
.site-footer {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff9ef;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.55rem;
  background: #a5e2d4;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.header-actions,
.header-identity,
.inline-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header-identity {
  justify-content: flex-end;
  color: #d9e0ee;
  font-size: 0.9rem;
}

.header-identity strong {
  color: #fff9ef;
}

.header-role {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-shell {
  flex: 1;
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.site-footer {
  padding-block: 1.5rem 2.5rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.site-footer code,
code {
  border-radius: 0.3rem;
  background: rgba(16, 24, 43, 0.1);
  padding: 0.12rem 0.35rem;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  font-size: 0.9em;
}

.site-footer code {
  background: rgba(255, 250, 240, 0.1);
}

.page-header {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.page-header h1,
.auth-card h1 {
  max-width: 42rem;
  margin: 0;
  color: var(--ink);
  font-family: 'Segoe UI Variable Display', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.page-header p,
.auth-card > p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange) !important;
  font-size: 0.75rem !important;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel,
.auth-card,
.conversation-card {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel {
  margin-block: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.panel h2,
.panel h3,
.conversation-card h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.panel h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-layout {
  display: grid;
  min-height: min(38rem, 70vh);
  place-items: center;
}

.auth-card {
  width: min(100%, 30rem);
  padding: clamp(1.4rem, 5vw, 2.5rem);
}

.auth-card h1 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 3rem);
}

.auth-card > p {
  color: var(--muted);
}

.form-stack,
.field-stack {
  display: grid;
  gap: 1rem;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-weight: 750;
}

.field-help,
.muted,
.empty-state,
.metadata,
.form-note {
  color: var(--muted);
}

.field-help,
.form-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

input:not([type='hidden']),
textarea,
select {
  width: 100%;
  border: 1px solid #9baebc;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #7e8796;
}

.button,
button.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  padding: 0.65rem 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
}

.button-primary,
button.button-primary {
  background: var(--orange);
  color: #fffaf0;
}

.button-primary:hover,
button.button-primary:hover {
  background: #075651;
}

.button-secondary,
button.button-secondary {
  border-color: #9baebc;
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
button.button-secondary:hover {
  border-color: var(--ink);
  background: var(--paper-muted);
}

.button-quiet,
button.button-quiet {
  min-height: 2.25rem;
  border-color: rgba(255, 250, 240, 0.34);
  background: transparent;
  color: #fff9ef;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
}

.button-quiet:hover,
button.button-quiet:hover {
  border-color: var(--amber);
  background: rgba(255, 250, 240, 0.08);
}

.flash {
  margin: 1.25rem 0;
  border-left: 0.3rem solid var(--navy-soft);
  border-radius: 0.35rem;
  background: var(--paper-muted);
  color: var(--ink);
  padding: 0.85rem 1rem;
}

.flash p {
  margin: 0;
}

.flash[data-kind='error'] {
  border-color: var(--red);
}

.flash[data-kind='success'] {
  border-color: var(--green);
}

.flash[data-kind='warning'] {
  border-color: var(--amber);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-dot,
.presence-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0.25rem rgba(239, 169, 65, 0.15);
}

.status-row[data-connection-state='connected'] .status-dot,
.presence-chip--online .presence-dot {
  background: #65c49e;
  box-shadow: 0 0 0 0.25rem rgba(101, 196, 158, 0.14);
}

.status-row[data-connection-state='offline'] .status-dot,
.presence-chip--offline .presence-dot {
  background: #f1786f;
  box-shadow: 0 0 0 0.25rem rgba(241, 120, 111, 0.14);
}

.status-chip,
.presence-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  background: var(--paper-muted);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.status-chip--conversation-waiting {
  background: #fff0c9;
  color: #815b14;
}

.status-chip--conversation-active {
  background: #d9f0e5;
  color: #1c624e;
}

.status-chip--conversation-cancelled {
  background: #f2dddd;
  color: #863b37;
}

.presence-chip--online {
  background: #d9f0e5;
  color: #1c624e;
}

.presence-chip--offline {
  background: #f2dddd;
  color: #863b37;
}

.conversation-list {
  display: grid;
  gap: 1rem;
}

.conversation-card {
  border-left: 0.25rem solid #9baebc;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  box-shadow: none;
}

.conversation-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.conversation-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.conversation-card h3 a {
  text-decoration-color: var(--amber);
  text-decoration-thickness: 0.15rem;
  text-underline-offset: 0.18rem;
}

.conversation-description {
  margin: 0 0 1rem;
  white-space: pre-wrap;
}

.conversation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 0.8fr);
  align-items: start;
  gap: 1.5rem;
}

.conversation-main,
.conversation-context {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.conversation-header {
  max-width: 54rem;
}

.conversation-reference,
.context-detail {
  color: var(--muted);
  font-size: 0.88rem;
}

.conversation-reference {
  margin: -0.35rem 0 1rem;
}

.conversation-meta--stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.conversation-context .conversation-card {
  margin-top: 1.25rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.conversation-context .conversation-card header,
.conversation-context .conversation-card h3,
.conversation-context .conversation-card .conversation-description,
.conversation-context .conversation-card .conversation-meta,
.conversation-context .conversation-card .presence-chip {
  display: none;
}

.conversation-timeline-panel,
.composer-panel,
.context-panel,
.conversation-control-panel,
.attachments-panel {
  margin-block: 0;
}

.control-status {
  margin: 0;
  color: var(--ink);
}

.control-state {
  max-width: 100%;
  background: #fff0c9;
  color: #815b14;
}

.control-details {
  margin-top: 1rem;
}

.control-details .conversation-meta--stacked {
  margin-top: 0;
}

.control-actions {
  margin-top: 1rem;
}

.control-unavailable,
button.control-unavailable {
  width: 100%;
}

.control-unavailable:disabled,
button.control-unavailable:disabled {
  border-color: #b7aa96;
  background: #e8decd;
  color: var(--muted);
  opacity: 1;
}

.control-unavailable:disabled:hover,
button.control-unavailable:disabled:hover {
  transform: none;
}

.timeline-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  margin-bottom: 1rem;
}

.timeline-controls .form-status {
  flex: 1;
  text-align: right;
}

.button-small,
button.button-small {
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
}

.timeline-item--message {
  border-left-color: var(--orange);
  background: #fffdf8;
}

.timeline-action {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--navy-soft);
  font-weight: 800;
  text-underline-offset: 0.2rem;
}

.composer-panel textarea {
  min-height: 7rem;
}

.composer-actions,
.attachment-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.composer-actions .form-status {
  flex: 1 1 12rem;
}

.conversation-readonly {
  border-style: dashed;
  box-shadow: none;
}

.conversation-readonly h2 {
  margin-bottom: 0.5rem;
}

.conversation-readonly p {
  margin: 0;
  color: var(--muted);
}

.attachment-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.attachment-item {
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fffdf8;
  padding: 0.85rem;
}

.attachment-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.attachment-heading strong {
  overflow-wrap: anywhere;
}

.attachment-meta,
.attachment-status {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.attachment-state {
  flex: 0 0 auto;
  background: var(--paper-muted);
  font-size: 0.68rem;
}

.attachment-item--available .attachment-state {
  background: #d9f0e5;
  color: #1c624e;
}

.attachment-item--rejected .attachment-state,
.attachment-item--scan_failed .attachment-state,
.attachment-item--removed .attachment-state {
  background: #f2dddd;
  color: #863b37;
}

.button-quiet-on-paper,
button.button-quiet-on-paper {
  border-color: #b7aa96;
  background: transparent;
  color: var(--ink);
}

.attachment-upload {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.attachment-upload input[type='file'] {
  padding: 0.55rem;
}

.upload-progress {
  width: 100%;
  height: 0.55rem;
  accent-color: var(--orange);
}

.conversation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.conversation-meta div {
  display: grid;
  gap: 0.1rem;
}

.conversation-meta dt {
  font-weight: 750;
}

.conversation-meta dd {
  margin: 0;
}

.conversation-meta code {
  overflow-wrap: anywhere;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--red);
  font-size: 0.88rem;
}

.empty-state {
  margin: 0;
  border: 1px dashed #b7aa96;
  border-radius: 0.6rem;
  padding: 1rem;
}

.timeline {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  border-left: 0.25rem solid var(--amber);
  border-radius: 0.35rem;
  background: var(--paper-muted);
  padding: 0.85rem 1rem;
}

.timeline-item-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}

.timeline-item-heading time {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: normal;
}

.timeline-item-actor {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.timeline-message {
  margin: 0.75rem 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-weight: 750;
  text-underline-offset: 0.2rem;
}

.availability-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.65rem;
  background: var(--paper-muted);
}

.availability-callout p {
  margin: 0;
}

.availability-callout .status-chip {
  margin-top: 0.35rem;
}

.recovery-codes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.recovery-codes li {
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--paper-muted);
  padding: 0.65rem;
  text-align: center;
}

.recovery-codes code {
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

[hidden] {
  display: none !important;
}

main,
.panel,
.panel-heading > *,
.conversation-card header > * {
  min-width: 0;
}

h1,
h3,
code,
.conversation-description {
  overflow-wrap: anywhere;
}

.workspace-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.5rem;
}

.workspace-columns > .panel {
  margin: 0;
}

.workspace-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.workspace-nav a {
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--paper);
  padding: 0.55rem 0.8rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.workspace-nav a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.technical-details {
  margin-block: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.technical-details summary {
  width: fit-content;
  padding-block: 0.3rem;
  cursor: pointer;
  text-underline-offset: 0.2rem;
}

.technical-details summary:hover {
  text-decoration: underline;
}

.site-footer .technical-details {
  margin: 0;
}

.conversation-card[data-conversation-status='waiting'] {
  border-left-color: var(--amber);
}

.conversation-card[data-conversation-status='active'] {
  border-left-color: var(--orange);
}

.status-chip--conversation-closed {
  background: #e2e9ef;
  color: #43566d;
}

.button-danger,
button.button-danger {
  background: #fff;
  border-color: #bd6964;
  color: #953b36;
}

.button-danger:hover,
button.button-danger:hover {
  background: #fff1ef;
  border-color: #953b36;
}

.auth-layout--welcome {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.auth-intro {
  max-width: 34rem;
}

.auth-intro h2 {
  margin: 0 0 1.5rem;
  font-family: 'Segoe UI Variable Display', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.auth-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.support-steps {
  counter-reset: support-step;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.support-steps li {
  position: relative;
  counter-increment: support-step;
  border-left: 1px solid #bad4d3;
  margin-left: 1rem;
  padding: 0 0 1.5rem 2rem;
}

.support-steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.support-steps li::before {
  content: counter(support-step);
  position: absolute;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid #bad4d3;
  border-radius: 50%;
  background: #e3f1ed;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 750;
}

.support-steps strong,
.support-steps span {
  display: block;
}

.support-steps span {
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-card .button-primary {
  width: 100%;
}

.conversation-calls-panel {
  margin: 0;
}

.helper-onboarding {
  border: 1px solid #bad4d3;
  border-radius: 0.6rem;
  background: #f0f8f6;
  padding: 1rem;
}

.helper-onboarding h3 {
  margin-top: 0;
}

.helper-onboarding ol {
  padding-left: 1.25rem;
  font-size: 0.9rem;
}

.helper-onboarding li + li {
  margin-top: 0.65rem;
}

.helper-onboarding input {
  margin-top: 0.75rem;
  font-family: Consolas, monospace;
}

.helper-onboarding output {
  display: block;
  margin-top: 0.75rem;
}

.control-actions {
  display: grid;
  gap: 0.8rem;
}

.call-frame {
  min-height: 420px;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 0.6rem;
  background: var(--navy);
}

.call-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.conversation-meta.conversation-meta--stacked {
  display: grid;
  grid-template-columns: 1fr;
}

.conversation-timeline-panel .timeline-item--message {
  border-left-color: var(--orange);
  background: #f0f8f6;
}

@media (max-width: 62rem) {
  .conversation-layout {
    grid-template-columns: 1fr;
  }

  .conversation-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .attachments-panel {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 44rem) {
  .workspace-columns,
  .conversation-context,
  .auth-layout--welcome {
    grid-template-columns: 1fr;
  }

  .auth-layout--welcome {
    gap: 2rem;
  }

  .auth-card {
    width: 100%;
  }

  .auth-layout--welcome .auth-intro {
    order: 2;
  }

  .header-inner,
  .content-shell,
  .site-footer {
    width: min(100% - 1.5rem, 70rem);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .header-identity {
    justify-content: flex-start;
  }

  .content-shell {
    padding-block: 2.25rem 3.5rem;
  }

  .conversation-layout {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .panel-heading,
  .availability-callout,
  .conversation-card header,
  .timeline-item-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-controls .form-status {
    text-align: left;
  }

  .timeline-controls .button,
  .timeline-controls a.button {
    width: 100%;
  }

  .conversation-card .button-row,
  .conversation-card form,
  .conversation-card .button {
    width: 100%;
  }

  .button-row .button,
  .button-row button {
    flex: 1 1 auto;
  }
}

@media (max-width: 26rem) {
  .recovery-codes {
    grid-template-columns: 1fr;
  }
}
