/*
 * Ignara Design System — web + iOS Hotwire Native shell
 * "Molten gold on cold steel." Source of truth: docs/design.md
 * Tokens: design/tokens.json. Do not hardcode hex — use these vars or the
 * Tailwind semantic names (bg, surface, ink, muted, accent, gold, success, danger).
 */

/* ---- Brand ramp (mode-stable) ---- */
:root {
  --gold-50: #FBF5E4;
  --gold-100: #F7E7B8;
  --gold-200: #F2D583;
  --gold-300: #EEC64E;
  --gold-400: #ECB62A;
  --gold-500: #E8A614;
  --gold-600: #C8860E;
  --gold-700: #9E6A0C;
  --gold-800: #74490A;
  --gold-900: #4A2E06;
  --gold-bright: #FFCB4E;

  --resolute-radius-sm: 0.125rem;
  --resolute-radius: 0.25rem;
  --resolute-radius-md: 0.375rem;
  --resolute-radius-lg: 0.5rem;
  --resolute-radius-pill: 999px;
}

/* ---- Semantic tokens: DARK (default, "forged steel") ---- */
:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --resolute-bg: #0B0E13;
  --resolute-surface: #141922;
  --resolute-surface-low: #10151C;
  --resolute-surface-raised: #1C232D;
  --resolute-surface-highest: #28313D;
  --resolute-border: #2A333E;
  --resolute-on-surface: #F3F0E8;
  --resolute-on-surface-variant: #C9D0D8;
  --resolute-on-surface-muted: #8A94A0;
  --resolute-primary: #E8A614;
  --resolute-primary-container: #FFCB4E;
  --resolute-on-primary-container: #2A1A05;
  --resolute-accent-text: #F5C044;
  --resolute-success: #34C77E;
  --resolute-danger: #F26D6D;
  --resolute-focus: color-mix(in srgb, var(--resolute-primary) 32%, transparent);
  --resolute-ember: 0 0.75rem 1.5rem color-mix(in srgb, var(--resolute-primary) 24%, transparent);
}

/* ---- Semantic tokens: LIGHT ("warm paper") ---- */
:root[data-theme="light"] {
  color-scheme: light;
  --resolute-bg: #F5F3EE;
  --resolute-surface: #FFFFFF;
  --resolute-surface-low: #ECEAE3;
  --resolute-surface-raised: #FFFFFF;
  --resolute-surface-highest: #E2DED4;
  --resolute-border: #E2DED4;
  --resolute-on-surface: #191C20;
  --resolute-on-surface-variant: #3F454C;
  --resolute-on-surface-muted: #5A616A;
  --resolute-primary: #D99C10;
  --resolute-primary-container: #F2BE33;
  --resolute-on-primary-container: #2A1A05;
  --resolute-accent-text: #856410;
  --resolute-success: #17935E;
  --resolute-danger: #C93A3A;
}

/* Honor the OS preference when the user hasn't explicitly forced a theme. */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --resolute-bg: #F5F3EE;
    --resolute-surface: #FFFFFF;
    --resolute-surface-low: #ECEAE3;
    --resolute-surface-raised: #FFFFFF;
    --resolute-surface-highest: #E2DED4;
    --resolute-border: #E2DED4;
    --resolute-on-surface: #191C20;
    --resolute-on-surface-variant: #3F454C;
    --resolute-on-surface-muted: #5A616A;
    --resolute-primary: #D99C10;
    --resolute-primary-container: #F2BE33;
    --resolute-on-primary-container: #2A1A05;
    --resolute-accent-text: #856410;
    --resolute-success: #17935E;
    --resolute-danger: #C93A3A;
  }
}

/* Base */
body {
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--resolute-bg);
  color: var(--resolute-on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography utilities */
.font-lexend {
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
}

/* Card surfaces */
.resolute-card {
  background-color: var(--resolute-surface);
  border: 1px solid color-mix(in srgb, var(--resolute-primary-container) 12%, transparent);
  border-radius: var(--resolute-radius);
}

.resolute-exercise-chrome-current {
  background-color: var(--resolute-surface-raised);
  border-left: 4px solid var(--resolute-on-surface);
}

.resolute-exercise-name-current {
  font-size: 1.75rem;
  line-height: 1.15;
}

.resolute-current-load {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resolute-add-exercise-summary {
  display: flex;
  min-height: 44px;
  width: 100%;
  list-style: none;
  cursor: pointer;
}

.resolute-add-exercise-summary::-webkit-details-marker {
  display: none;
}

.resolute-row {
  background-color: var(--resolute-surface-low);
  border-radius: var(--resolute-radius-sm);
}

.resolute-badge {
  background-color: var(--resolute-surface-highest);
  border-radius: var(--resolute-radius-sm);
}

/* Buttons */
.resolute-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 1;
  border-radius: var(--resolute-radius);
  transition: transform 0.1s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
}

.resolute-btn:active {
  transform: scale(0.96);
}

.resolute-btn-primary {
  background: linear-gradient(180deg, var(--resolute-primary-container), var(--resolute-primary));
  color: var(--resolute-on-primary-container);
  box-shadow: var(--resolute-ember);
}

.resolute-btn-primary:hover {
  filter: saturate(1.05) brightness(1.03);
}

.resolute-btn-success {
  background: linear-gradient(180deg, var(--resolute-primary-container), var(--resolute-primary));
  color: var(--resolute-on-primary-container);
  box-shadow: var(--resolute-ember);
}

.resolute-btn-success:hover {
  filter: saturate(1.05) brightness(1.03);
}

.resolute-btn-danger {
  background-color: var(--resolute-danger);
  color: #fff;
}

.resolute-btn-ghost {
  background-color: transparent;
  color: var(--resolute-on-surface-variant);
}

.resolute-btn-ghost:hover {
  color: var(--resolute-on-surface);
}

/* Inputs */
.resolute-input {
  background-color: var(--resolute-surface-low);
  border: 1px solid var(--resolute-surface-highest);
  color: var(--resolute-on-surface);
  border-radius: var(--resolute-radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.resolute-input:focus {
  outline: none;
  border-color: var(--resolute-primary);
  box-shadow: 0 0 0 3px var(--resolute-focus);
}

.resolute-input::placeholder {
  color: var(--resolute-on-surface-muted);
}

/* Labels */
.resolute-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--resolute-on-surface-variant);
}

/* Numeric data */
.resolute-numeric {
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--resolute-on-surface);
}

/* Links */
.resolute-link {
  color: var(--resolute-accent-text);
  text-decoration: none;
  font-weight: 600;
}

.resolute-link:hover {
  text-decoration: underline;
}

/* Light auth surface — the branded "entry" screen (always warm paper). */
.ignara-auth-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 134, 14, 0.14), transparent 26rem),
    linear-gradient(135deg, #f7f7f5 0%, #ebecee 48%, #f9faf9 100%);
  color: #17191b;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  padding: clamp(1rem, 4vw, 4rem);
}

.ignara-auth-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.8fr);
  min-height: min(48rem, calc(100vh - clamp(2rem, 8vw, 8rem)));
  max-width: 72rem;
  margin: 0 auto;
  border: 1px solid rgba(34, 36, 38, 0.1);
  border-radius: var(--resolute-radius-lg);
  background: #ffffff;
  box-shadow: 0 1.5rem 4rem rgba(24, 27, 31, 0.16);
  overflow: hidden;
  animation: ignara-auth-enter 420ms ease-out both;
}

.ignara-auth-brand-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 245, 247, 0.94)),
    linear-gradient(45deg, rgba(242, 190, 51, 0.16), rgba(158, 106, 12, 0.05));
}

.ignara-auth-brand-panel::before,
.ignara-auth-brand-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ignara-auth-brand-panel::before {
  inset: 1rem;
  border: 1px solid rgba(158, 106, 12, 0.18);
  border-radius: var(--resolute-radius);
}

.ignara-auth-brand-panel::after {
  right: clamp(1.5rem, 6vw, 5rem);
  bottom: clamp(7rem, 12vw, 10rem);
  width: min(22rem, 50vw);
  height: 0.5rem;
  background: linear-gradient(90deg, #2A333E, #9E6A0C 54%, #F2BE33);
  box-shadow:
    0 0.75rem 0 rgba(158, 106, 12, 0.12),
    0 1.5rem 2rem rgba(42, 45, 49, 0.16);
  transform: skewX(-18deg);
}

.ignara-auth-brand-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(158, 106, 12, 0.34);
  border-radius: var(--resolute-radius);
  background: linear-gradient(135deg, #ffffff, #f0eee7);
  color: #74490A;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0.75rem 1.5rem rgba(33, 35, 38, 0.1);
}

.ignara-auth-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  color: #7c6a28;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ignara-auth-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #151719;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.25rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
}

.ignara-auth-copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 1rem 0 0;
  color: #545a61;
  font-size: 1.05rem;
  line-height: 1.6;
}

.ignara-auth-principles {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  max-width: 31rem;
}

.ignara-auth-principles div {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  column-gap: 0.875rem;
  align-items: baseline;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(32, 35, 38, 0.12);
}

.ignara-auth-principles span {
  color: #9E6A0C;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.ignara-auth-principles strong {
  color: #202326;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
}

.ignara-auth-principles p {
  grid-column: 2;
  margin: 0.25rem 0 0;
  color: #626870;
  font-size: 0.925rem;
  line-height: 1.45;
}

.ignara-auth-form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: #ffffff;
  border-left: 1px solid rgba(22, 24, 26, 0.08);
}

.ignara-auth-form-heading {
  margin-bottom: 2rem;
}

.ignara-auth-form-heading h2 {
  margin: 0;
  color: #151719;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
}

.ignara-auth-form {
  display: grid;
  gap: 1.25rem;
}

.ignara-auth-field {
  display: grid;
  gap: 0.5rem;
}

.ignara-auth-label {
  color: #5d6269;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ignara-auth-input {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid #cfd3d8;
  border-radius: var(--resolute-radius);
  background: #f7f8f9;
  color: #151719;
  font: 500 1rem/1.5 'Lexend', ui-sans-serif, system-ui, sans-serif;
  padding: 0.75rem 0.875rem;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ignara-auth-input::placeholder {
  color: #8b929a;
}

.ignara-auth-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #C8860E;
  box-shadow: 0 0 0 4px rgba(200, 134, 14, 0.16);
  transform: translateY(-1px);
}

.ignara-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ignara-auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #454a50;
  font-size: 0.925rem;
  font-weight: 600;
}

.ignara-auth-check input {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: var(--resolute-radius-sm);
  accent-color: #C8860E;
}

.ignara-auth-submit {
  min-height: 3.5rem;
  border: 1px solid rgba(116, 73, 10, 0.24);
  border-radius: var(--resolute-radius);
  background: linear-gradient(135deg, #F2BE33 0%, #DEAC1F 42%, #C8860E 100%);
  color: #2A1A05;
  cursor: pointer;
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 1rem 1.75rem rgba(200, 134, 14, 0.24);
  transition: box-shadow 160ms ease, filter 160ms ease, transform 120ms ease;
}

.ignara-auth-submit:hover {
  filter: saturate(1.06) brightness(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1.15rem 2rem rgba(200, 134, 14, 0.3);
  transform: translateY(-1px);
}

.ignara-auth-submit:active {
  transform: translateY(1px);
}

.ignara-auth-submit:focus-visible,
.ignara-auth-link:focus-visible,
.ignara-auth-check input:focus-visible {
  outline: 3px solid rgba(200, 134, 14, 0.32);
  outline-offset: 3px;
}

.ignara-auth-link {
  color: #856410;
  font-size: 0.925rem;
  font-weight: 700;
  text-decoration: none;
}

.ignara-auth-link:hover {
  color: #4c3d03;
  text-decoration: underline;
}

.ignara-auth-secondary {
  margin: 1.5rem 0 0;
  color: #686f77;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.ignara-auth-alert,
.ignara-auth-notice {
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  border-radius: var(--resolute-radius);
  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1.45;
}

.ignara-auth-alert {
  background: #fff0ed;
  border: 1px solid #f3b7ae;
  color: #8a1c11;
}

.ignara-auth-notice {
  background: #eef8f1;
  border: 1px solid #b8dfc2;
  color: #1f6b35;
}

@keyframes ignara-auth-enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .ignara-auth-shell {
    padding: 0;
  }

  .ignara-auth-frame {
    grid-template-columns: 1fr;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ignara-auth-brand-panel {
    min-height: auto;
    gap: 2rem;
    padding: 2rem 1rem 1.5rem;
  }

  .ignara-auth-brand-panel::before {
    inset: 0.75rem;
  }

  .ignara-auth-brand-panel::after {
    display: none;
  }

  .ignara-auth-title {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .ignara-auth-copy {
    max-width: 22rem;
    font-size: 1rem;
  }

  .ignara-auth-principles {
    display: none;
  }

  .ignara-auth-form-panel {
    border-left: 0;
    border-top: 1px solid rgba(22, 24, 26, 0.08);
    padding: 2rem 1rem max(2rem, env(safe-area-inset-bottom));
  }

  .ignara-auth-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.875rem;
  }
}

/* Bottom nav */
.resolute-bottom-nav {
  background-color: var(--resolute-surface);
  border-top: 1px solid var(--resolute-border);
}

.resolute-bottom-nav a,
.resolute-bottom-nav button {
  color: var(--resolute-on-surface-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.15s ease;
}

.resolute-bottom-nav a:hover,
.resolute-bottom-nav a.active,
.resolute-bottom-nav button:hover {
  color: var(--resolute-accent-text);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--resolute-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--resolute-surface-highest);
  border-radius: 3px;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--resolute-surface-highest) var(--resolute-bg);
}

/* Flash messages */
.resolute-flash-alert {
  background-color: color-mix(in srgb, var(--resolute-danger) 15%, transparent);
  color: var(--resolute-danger);
  padding: 0.75rem 1rem;
  border-radius: var(--resolute-radius);
  font-size: 14px;
}

.resolute-flash-notice {
  background-color: color-mix(in srgb, var(--resolute-success) 15%, transparent);
  color: var(--resolute-success);
  padding: 0.75rem 1rem;
  border-radius: var(--resolute-radius);
  font-size: 14px;
}

/* Set state indicators */
.set-state-done {
  color: var(--resolute-success);
}

.set-state-failed {
  color: var(--resolute-danger);
}

.set-state-skipped {
  color: var(--resolute-on-surface-muted);
  text-decoration: line-through;
}

.set-state-pending {
  color: var(--resolute-on-surface-muted);
}

.set-state-pr {
  color: var(--resolute-accent-text);
  text-shadow: 0 0 12px color-mix(in srgb, var(--resolute-primary) 45%, transparent);
}

/* Error box */
.resolute-error-box {
  background-color: color-mix(in srgb, var(--resolute-danger) 10%, transparent);
  color: var(--resolute-danger);
  padding: 0.75rem 1rem;
  border-radius: var(--resolute-radius);
  font-size: 14px;
}

/* Top app bar */
.resolute-top-bar {
  background-color: var(--resolute-surface);
  border-bottom: 1px solid color-mix(in srgb, var(--resolute-primary-container) 12%, transparent);
  height: 56px;
}

/* Theme toggle (system -> light -> dark) */
.resolute-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: -0.5rem;
  border: none;
  background: transparent;
  color: var(--resolute-on-surface-muted);
  border-radius: var(--resolute-radius);
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.1s ease;
}

.resolute-theme-toggle:hover {
  color: var(--resolute-accent-text);
  background-color: var(--resolute-surface-low);
}

.resolute-theme-toggle:active {
  transform: scale(0.94);
}

.resolute-theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--resolute-focus);
}

.resolute-theme-toggle .theme-ico {
  width: 1.25rem;
  height: 1.25rem;
  display: none;
}

/* Before JS connects, show the system icon. */
.resolute-theme-toggle:not([data-theme-state]) .theme-ico-system,
.resolute-theme-toggle[data-theme-state="system"] .theme-ico-system,
.resolute-theme-toggle[data-theme-state="light"] .theme-ico-light,
.resolute-theme-toggle[data-theme-state="dark"] .theme-ico-dark {
  display: block;
}

.resolute-set-menu {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 30;
  width: min(20rem, calc(100vw - 2rem));
  transform: translateX(-50%);
  border: 1px solid var(--resolute-surface-highest);
  border-radius: var(--resolute-radius);
  background-color: var(--resolute-surface-raised);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
}

.resolute-set-menu-button {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--resolute-surface-highest);
  border-radius: var(--resolute-radius-sm);
  background-color: var(--resolute-surface-low);
  color: var(--resolute-on-surface);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.resolute-set-menu-button:active {
  transform: scale(0.97);
}

.resolute-plate-loader {
  display: flex;
  min-height: 11rem;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  overflow: hidden;
}

.resolute-bar-sleeve {
  width: clamp(3rem, 18vw, 5.5rem);
  height: 0.85rem;
  background: linear-gradient(90deg, transparent, #8b96a3 45%, #a8b0ba);
}

.resolute-bar-shaft {
  display: flex;
  width: clamp(4rem, 20vw, 6.5rem);
  height: 0.85rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--resolute-radius-sm);
  background-color: #a8b0ba;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.resolute-plate-stack {
  display: flex;
  min-width: 5rem;
  min-height: 8.5rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.resolute-plate {
  display: flex;
  width: clamp(1.25rem, 8vw, 2rem);
  height: clamp(4.75rem, 24vw, 7.5rem);
  align-items: center;
  justify-content: center;
  border-radius: var(--resolute-radius-sm);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.resolute-plate-0 {
  background-color: var(--resolute-primary-container);
  color: var(--resolute-on-primary-container);
}

.resolute-plate-1 {
  background-color: var(--resolute-surface-highest);
}

.resolute-plate-2 {
  background-color: var(--resolute-primary);
  color: var(--resolute-on-primary-container);
}

.resolute-plate-3 {
  background-color: var(--resolute-on-surface-muted);
}

.resolute-bar-only {
  color: var(--resolute-on-surface-muted);
  font-size: 14px;
  font-weight: 700;
}
