:root {
  color-scheme: light;
  --ink: #152019;
  --ink-soft: #26342b;
  --paper: #f0f2ed;
  --surface: #fbfcf8;
  --surface-muted: #f5f6f1;
  --line: #e1e5dc;
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #788178;
  --muted-dark: #a5afa5;
  --lime: #c9ef68;
  --lime-dark: #9fcb39;
  --coral: #df755c;
  --blue: #87a8d6;
  --green: #5d9c72;
  --shadow: 0 24px 70px rgba(21, 32, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(156, 201, 112, 0.11), transparent 25%),
    linear-gradient(135deg, #f3f5ef 0%, #edf0e8 100%);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(159, 203, 57, 0.75);
  outline-offset: 3px;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

/* Login */
.auth-screen {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 48px 6vw 30px;
  color: #f3f5ef;
  background-color: #111914;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(ellipse at 4% 100%, rgba(89, 124, 83, 0.16), transparent 48%);
  background-size: 48px 48px, 48px 48px, auto;
  isolation: isolate;
}

.auth-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  pointer-events: none;
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.74fr);
  align-items: center;
  gap: 9vw;
  margin: auto;
}

.auth-intro {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.auth-brand,
.brand-block {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.auth-brand img {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.auth-brand span,
.brand-copy,
.profile-copy {
  display: flex;
  flex-direction: column;
}

.auth-brand strong,
.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  line-height: 1.1;
}

.auth-brand small,
.brand-copy small {
  margin-top: 5px;
  color: #a9b2a9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.auth-headline {
  max-width: 570px;
  margin: 60px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.auth-screen .section-kicker {
  color: #a5b2a5;
}

.signal-dot,
.status-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(201, 239, 104, 0.65);
  vertical-align: 1px;
}

.auth-headline h1 {
  margin: 20px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 76px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.99;
}

.auth-headline h1 em {
  color: var(--lime);
  font-style: normal;
}

.auth-description {
  max-width: 390px;
  margin: 0;
  color: #b7c0b7;
  font-size: 16px;
  line-height: 1.8;
}

.auth-footnote {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #a3ada3;
  font-size: 11px;
  line-height: 1.7;
}

.footnote-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
}

.auth-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: #f7f8f3;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
  animation: panel-arrive 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.panel-topline,
.auth-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 28px;
  color: #738074;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.panel-topline {
  border-bottom: 1px solid #e6e9e2;
}

.lock-mark {
  color: var(--green);
  font-size: 12px;
}

.auth-panel-content {
  padding: 45px 38px 40px;
}

.auth-panel-content .section-kicker {
  margin-bottom: 9px;
  color: #6c806b;
}

.auth-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
}

.auth-panel-copy {
  margin: 10px 0 30px;
  color: #7a837b;
  font-size: 13px;
  line-height: 1.7;
}

.discord-btn {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  color: #f8faf5;
  background: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease;
}

.discord-btn:hover {
  transform: translateY(-2px);
  background: #27372b;
}

.discord-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--lime);
}

.button-arrow {
  margin-left: auto;
  color: var(--lime);
  font-size: 17px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 15px;
}

.auth-divider span {
  height: 1px;
  flex: 1;
  background: #dfe4dc;
}

.auth-divider small {
  color: #899188;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.auth-notice {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid #e1e6db;
  border-radius: 5px;
  background: #f1f4eb;
}

.notice-icon,
.threshold-mark {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  color: #45573c;
  background: #dce9c6;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.auth-notice p {
  margin: 0;
  color: #687366;
  font-size: 11px;
  line-height: 1.65;
}

.auth-panel-footer {
  border-top: 1px solid #e6e9e2;
  font-size: 8px;
}

.candidate-login-btn {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 17px;
  border: 1px solid #dfe4da;
  border-radius: 5px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.candidate-login-btn:hover {
  border-color: var(--lime-dark);
  background: #f0f5e9;
  transform: translateY(-2px);
}
.candidate-login-btn span:last-child {
  color: var(--green);
  font-size: 18px;
}
.candidate-actions-hidden {
  visibility: hidden;
}

.auth-copyright {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 24px auto 0;
  color: #758076;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.auth-orbit {
  position: absolute;
  z-index: 0;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(201, 239, 104, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -190px;
  right: 24%;
}

.orbit-two {
  top: -150px;
  right: calc(24% + 40px);
  width: 230px;
  height: 230px;
}

@keyframes panel-arrive {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Workspace */
.app-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 244px minmax(0, 1fr);
  background: var(--paper);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  min-height: 600px;
  flex-direction: column;
  padding: 27px 17px 18px;
  color: #f1f4ed;
  background: var(--ink);
}

.brand-block {
  padding: 0 8px 25px;
}

.brand-mark {
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy small {
  max-width: 136px;
  color: #a2ada1;
  font-size: 8px;
}

.workspace-label {
  padding: 17px 12px 10px;
  border-top: 1px solid var(--line-dark);
  color: #839084;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #aab4aa;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.nav-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}

.nav-item.active {
  border-color: rgba(201, 239, 104, 0.12);
  color: #f7f9f3;
  background: rgba(201, 239, 104, 0.1);
}

.nav-item.active .nav-icon {
  color: var(--lime);
}

.nav-icon {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  color: #879387;
}

.nav-icon svg,
.search-box svg,
.icon-button svg,
.secondary-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-count {
  display: grid;
  min-width: 22px;
  height: 20px;
  place-items: center;
  margin-left: auto;
  border-radius: 3px;
  color: #d7e0d3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.sidebar-spacer {
  flex: 1;
  min-height: 30px;
}

.sidebar-status {
  padding: 13px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
}

.status-heading {
  display: flex;
  align-items: center;
  color: #d9e1d7;
  font-size: 10px;
  font-weight: 600;
}

.status-heading .status-indicator {
  width: 6px;
  height: 6px;
  margin-right: 7px;
}

.status-live {
  margin-left: auto;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.sidebar-status p {
  margin: 8px 0 0 13px;
  color: #8d998e;
  font-size: 10px;
  line-height: 1.55;
}

.auth-developer {
  position: relative;
  display: inline-flex;
  width: min(390px, 100%);
  max-width: 100%;
  align-items: center;
  gap: 18px;
  padding: 11px 42px 11px 11px;
  overflow: hidden;
  border: 1px solid rgba(201, 239, 104, 0.25);
  border-radius: 7px;
  background: linear-gradient(105deg, rgba(201, 239, 104, 0.09), rgba(255, 255, 255, 0.035) 48%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18), 0 0 28px rgba(155, 208, 71, 0.08);
}

.auth-developer::after {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 7px 2px rgba(201, 239, 104, 0.55), 0 0 18px 5px rgba(201, 239, 104, 0.2);
  content: "";
  animation: developer-led-pulse 2.4s ease-in-out infinite;
}

.auth-developer img {
  display: block;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border: 1px solid rgba(201, 239, 104, 0.6);
  border-radius: 5px;
  object-fit: cover;
  object-position: center 35%;
  box-shadow: 0 0 0 3px rgba(201, 239, 104, 0.08), 0 0 20px rgba(154, 210, 69, 0.2);
}

.auth-developer span {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.auth-developer small {
  color: #c9ef68;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.auth-developer strong {
  overflow: hidden;
  color: #ecf0e9;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes developer-led-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.profile-button {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  padding: 12px 7px 2px;
  border: 0;
  border-top: 1px solid var(--line-dark);
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.profile-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.profile-copy {
  min-width: 0;
  gap: 3px;
}

.profile-copy strong {
  overflow: hidden;
  color: #ecf0e9;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-copy small {
  color: #8d998e;
  font-size: 9px;
}

.logout-icon {
  margin-left: auto;
  color: #9ca79b;
  font-size: 13px;
}

.workspace {
  display: flex;
  min-width: 0;
  min-height: 100vh;
  flex-direction: column;
}

.topbar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 46px;
  border-bottom: 1px solid var(--line);
  background: rgba(240, 242, 237, 0.94);
  backdrop-filter: blur(16px);
}

.breadcrumb {
  margin: 0 0 5px;
  color: #879087;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.breadcrumb span:first-child {
  padding: 0 5px;
  color: #b2bab1;
}

.breadcrumb #breadcrumbCurrent {
  color: #6f796e;
}

.topbar-heading h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.search-box {
  display: flex;
  width: 235px;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid #dfe4db;
  border-radius: 5px;
  color: #879087;
  background: rgba(255, 255, 255, 0.62);
}

.search-box svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
}

.search-box input::placeholder {
  color: #9aa399;
}

.search-box kbd {
  display: grid;
  width: 19px;
  height: 20px;
  flex: 0 0 19px;
  place-items: center;
  border: 1px solid #e1e5dc;
  border-radius: 3px;
  color: #8b948a;
  background: #f5f6f1;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid #dfe4db;
  border-radius: 5px;
  color: #5d685d;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.icon-button:hover {
  border-color: #c7d2bc;
  background: white;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  color: #f5f7f2;
  background: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  border-color: #2e4031;
  background: #2e4031;
}

.primary-btn > span:first-child {
  color: var(--lime);
  font-size: 17px;
  font-weight: 400;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 46px;
  border-bottom: 1px solid var(--line);
  background: #e9ede5;
}

.filter-bar label {
  color: #687368;
  font-size: 10px;
  font-weight: 700;
}

.filter-bar select {
  min-height: 34px;
  padding: 0 30px 0 10px;
  border: 1px solid #d6ddd1;
  border-radius: 4px;
  color: #334035;
  background: white;
  font-size: 11px;
}

.text-button,
.inline-link {
  padding: 0;
  border: 0;
  color: #65775a;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.text-button:hover,
.inline-link:hover {
  color: #273d2c;
}

.filter-bar .text-button {
  margin-left: auto;
}

.view-container {
  width: 100%;
  max-width: 1580px;
  flex: 1;
  margin: 0 auto;
  padding: 30px 46px 40px;
}

.view {
  display: none;
}

.view.active {
  display: block;
  animation: view-arrive 240ms ease both;
}

.view[data-view-panel="exam"] {
  min-height: calc(100vh - 92px);
  margin: -30px -46px -40px;
  padding: 30px 46px 40px;
  background:
    radial-gradient(circle at 96% 4%, rgba(192, 215, 163, 0.32), transparent 28%),
    linear-gradient(135deg, #e5ebe1 0%, #dce5dc 52%, #d6e0d8 100%);
}

.view[data-view-panel="exam"] .page-intro h2,
.view[data-view-panel="exam"] .surface-heading h2 {
  color: #1c3025;
}

.app-shell.exam-mode .topbar {
  border-color: #2d4237;
  color: #e4eee2;
  background: rgba(24, 35, 30, 0.96);
}

.app-shell.exam-mode .breadcrumb,
.app-shell.exam-mode .breadcrumb span,
.app-shell.exam-mode .topbar-heading h1 {
  color: #e4eee2;
}

.app-shell.exam-mode .view[data-view-panel="exam"] {
  background:
    radial-gradient(circle at 92% 3%, rgba(105, 142, 92, 0.2), transparent 28%),
    linear-gradient(135deg, #17231d 0%, #1d2d25 52%, #213329 100%);
}

.app-shell.exam-mode .view[data-view-panel="exam"] .page-intro h2,
.app-shell.exam-mode .view[data-view-panel="exam"] .surface-heading h2 {
  color: #eef5e9;
}

.app-shell.exam-mode .view[data-view-panel="exam"] .page-intro p,
.app-shell.exam-mode .view[data-view-panel="exam"] .section-kicker,
.app-shell.exam-mode .exam-state,
.app-shell.exam-mode .q-score,
.app-shell.exam-mode .q-status {
  color: #a9b9a9;
}

.app-shell.exam-mode .exam-surface,
.app-shell.exam-mode .score-surface {
  border-color: #304639;
  background: #22342a;
  box-shadow: 0 18px 45px rgba(5, 13, 9, 0.16);
}

.app-shell.exam-mode .exam-meta span {
  border-color: #385140;
  color: #b5c6b0;
  background: #2a4032;
}

.app-shell.exam-mode .question-item {
  border-color: #385040;
  background: #294035;
}

.app-shell.exam-mode .question-item[data-selected] {
  border-color: #55764a;
  background: #2d4739;
}

.app-shell.exam-mode .question-item p,
.app-shell.exam-mode .q-index,
.app-shell.exam-mode .candidate-answer-label,
.app-shell.exam-mode .score-copy strong,
.app-shell.exam-mode .score-copy p,
.app-shell.exam-mode .score-breakdown span {
  color: #e0ebdc;
}

.app-shell.exam-mode .candidate-answer {
  border-color: #46604c;
  color: #edf5e9;
  background: #1b2b23;
}

.app-shell.exam-mode .candidate-answer::placeholder {
  color: #8da18d;
}

.app-shell.exam-mode .score-box {
  border-color: #334a3c;
}

.app-shell.exam-mode .score-pill,
.app-shell.exam-mode .exam-actions .icon-button {
  color: #d7e8ce;
  background: #2d4738;
}

.app-shell.exam-mode .workspace-footer {
  border-color: #2d4237;
  color: #9db09d;
  background: #17231d;
}

@keyframes view-arrive {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.welcome-row,
.page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.welcome-row .section-kicker,
.page-intro .section-kicker {
  color: #839082;
}

.welcome-divider {
  padding: 0 6px;
  color: #bac1b8;
}

.welcome-row h2,
.page-intro h2 {
  margin: 0 0 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.welcome-row > div:first-child > p:last-child,
.page-intro > div > p:last-child {
  margin: 0;
  color: #7b857a;
  font-size: 12px;
  line-height: 1.6;
}

.date-stamp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0 4px 15px;
  border-left: 1px solid #d7ddd3;
  color: #859084;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.date-day {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 17px;
}

.stat-card {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  padding: 17px 17px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.stat-primary {
  border-color: var(--ink);
  color: #f3f6ef;
  background: var(--ink);
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.label {
  color: #788378;
  font-size: 10px;
  font-weight: 600;
}

.stat-primary .label {
  color: #aeb8ad;
}

.stat-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid #e4e8df;
  border-radius: 50%;
  color: #657364;
  font-size: 11px;
  font-weight: 700;
}

.stat-primary .stat-icon {
  border-color: rgba(201, 239, 104, 0.25);
  color: var(--lime);
}

.stat-card > strong {
  display: block;
  margin: 13px 0 3px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.stat-unit {
  margin-left: 2px;
  color: #839080;
  font-size: 19px;
}

.stat-card > small {
  color: #848e83;
  font-size: 10px;
}

.stat-primary > small {
  color: #9ea99d;
}

.stat-card > small b {
  color: #5b9d6c;
  font-weight: 700;
}

.stat-primary > small b {
  color: var(--lime);
}

.stat-alert > small b {
  color: var(--coral);
}

.stat-spark {
  position: absolute;
  right: 14px;
  bottom: 17px;
  display: flex;
  height: 28px;
  align-items: end;
  gap: 3px;
  opacity: 0.9;
}

.stat-spark i {
  display: block;
  width: 4px;
  height: 30%;
  border-radius: 2px 2px 0 0;
  background: var(--lime);
}

.stat-spark i:nth-child(2n) { height: 55%; }
.stat-spark i:nth-child(3n) { height: 40%; }
.stat-spark i:nth-child(5n) { height: 78%; }
.stat-spark i:last-child { height: 100%; }

.spark-coral i {
  background: var(--coral);
}

.stat-progress,
.alert-track,
.activity-progress {
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: #e8ebe4;
}

.stat-progress {
  margin-top: 13px;
}

.stat-progress span,
.alert-track span,
.activity-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #96bc50;
}

.alert-track {
  margin-top: 13px;
}

.alert-track span {
  width: 34%;
  background: var(--coral);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.78fr);
  align-items: start;
  gap: 17px;
}

.surface {
  min-width: 0;
  border: 1px solid rgba(19, 31, 24, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(16, 24, 18, 0.06);
}

.applicants-surface,
.activity-surface,
.full-table-surface,
.exam-surface,
.score-surface,
.integration-card,
.settings-card,
.settings-about {
  padding: 20px;
}

.surface-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}

.surface-heading .section-kicker {
  margin-bottom: 4px;
  color: #899387;
  font-size: 9px;
}

.surface-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}

.surface-heading .text-button span {
  padding-left: 3px;
  font-size: 15px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 9px 10px;
  border-top: 1px solid #eaede6;
  border-bottom: 1px solid #eaede6;
  color: #8b9589;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.data-table th:first-child,
.data-table td:first-child {
  padding-left: 0;
}

.data-table th:last-child,
.data-table td:last-child {
  padding-right: 0;
  text-align: right;
}

.data-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #edf0e9;
  color: #737e72;
  font-size: 10px;
  white-space: nowrap;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.candidate-cell {
  display: flex;
  align-items: center;
  gap: 9px;
}

.candidate-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: #3c503e;
  background: #e4ebd9;
  font-size: 9px;
  font-weight: 700;
}

.candidate-name {
  color: #29362c;
  font-size: 10px;
  font-weight: 700;
}

.candidate-handle {
  display: block;
  margin-top: 2px;
  color: #929b91;
  font-size: 9px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
}

.status-badge::before,
.connection-state i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.status-pending { color: #a07930; background: #f5f0dd; }
.status-interview { color: #537a9d; background: #e9f0f7; }
.status-approved { color: #4c815e; background: #e7f1e5; }
.status-rejected { color: #a35a4a; background: #f6eae6; }

.row-action {
  padding: 4px 6px;
  border: 0;
  color: #697b5f;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.row-action:hover {
  color: var(--ink);
}

.activity-surface {
  padding-bottom: 17px;
}

.subtle-date,
.table-note {
  color: #969f95;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.activity-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto;
  align-items: start;
  gap: 9px;
  padding: 13px 0;
  border-top: 1px solid #edf0e9;
}

.activity-marker {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  border-radius: 50%;
}

.marker-lime { background: #a3c761; }
.marker-coral { background: var(--coral); }
.marker-ink { background: #56655a; }

.activity-item > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.activity-item strong {
  color: #354136;
  font-size: 10px;
}

.activity-item small {
  color: #8c968a;
  font-size: 9px;
}

.activity-item > b {
  color: #586658;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.activity-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #edf0e9;
  color: #818b7f;
  font-size: 9px;
}

.activity-footer strong {
  color: #39483b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
}

.activity-progress {
  grid-column: 1 / -1;
  background: #e9ede5;
}

.activity-progress span {
  background: #a4c75f;
}

.empty-state {
  padding: 28px 12px;
  color: #838e82;
  font-size: 11px;
  text-align: center;
}

.page-intro {
  align-items: center;
  margin-bottom: 24px;
}

.record-total {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: #8a9488;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.record-total strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  letter-spacing: 0;
}

.full-table-surface {
  padding-bottom: 8px;
}

.full-table-surface .data-table th,
.full-table-surface .data-table td {
  padding-top: 14px;
  padding-bottom: 14px;
}

.full-table-surface .data-table th:first-child,
.full-table-surface .data-table td:first-child {
  padding-left: 0;
}

.demo-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid #dbe4d1;
  border-radius: 3px;
  color: #6f805d;
  background: #f2f5ec;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.exam-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(270px, 0.7fr);
  align-items: start;
  gap: 15px;
}

.exam-heading {
  align-items: center;
  margin-bottom: 14px;
}

.exam-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.exam-actions .primary-btn {
  min-height: 36px;
  padding: 0 11px;
  font-size: 10px;
}

.exam-actions .icon-button {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  background: #f5f8f1;
}

.exam-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 5px;
  color: #7b8579;
  font-size: 9px;
  white-space: nowrap;
}

.exam-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aab3a8;
}

.exam-state.is-running i { background: #a6c65e; }
.exam-state.is-ended i { background: var(--coral); }

.exam-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.exam-result-picker {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
}

.exam-result-picker select {
  min-height: 30px;
  max-width: min(280px, 44vw);
  padding: 0 24px 0 8px;
  border: 1px solid #d6ddd1;
  border-radius: 4px;
  color: #334035;
  background: white;
  font: inherit;
  font-size: 10px;
}

.exam-meta span {
  padding: 6px 8px;
  border: 1px solid #e7ebe3;
  border-radius: 3px;
  color: #758073;
  background: rgba(248, 251, 245, 0.76);
  font-size: 9px;
}

.exam-meta b {
  color: #41533e;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.question-item {
  padding: 13px 13px 12px;
  border: 1px solid #e7ebe3;
  border-radius: 4px;
  background: #f9fbf7;
  transition: border-color 150ms ease, background 150ms ease;
}

.candidate-answer-label {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.candidate-answer {
  display: block;
  width: 100%;
  min-height: 100px;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: #edf3ea;
  font: inherit;
  line-height: 1.6;
  resize: vertical;
}

.candidate-answer:not(:disabled):focus {
  border-color: var(--lime-dark);
  outline: 3px solid rgba(159, 203, 57, 0.2);
}

.candidate-answer:disabled {
  color: var(--ink-soft);
  opacity: 1;
}

.role-candidate .evaluator-only,
.role-sube .evaluator-only,
.role-candidate .score-surface,
.candidate-submit-control {
  display: none;
}

.role-candidate .exam-layout {
  display: block;
}

.role-candidate .candidate-submit-control {
  display: flex;
  margin-top: 12px;
}

.nav-item[data-view="integrations"],
.nav-item[data-view="settings"],
.view[data-view-panel="integrations"],
.view[data-view-panel="settings"],
.threshold-note {
  display: none !important;
}

.role-pomem .nav-item[data-view="exam"] {
  display: none !important;
}

.question-item[data-selected] {
  border-color: #d5dfca;
  background: #fcfdf9;
}

.question-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.q-index {
  color: #596b53;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.q-score {
  color: #8c9589;
  font-size: 9px;
}

.q-status {
  margin-left: auto;
  color: #969e94;
  font-size: 9px;
}

.question-item p {
  margin: 0 0 10px;
  color: #3e493e;
  font-size: 11px;
  line-height: 1.65;
}

.answer-row {
  display: flex;
  gap: 6px;
}

.answer-btn {
  min-width: 72px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid #e2e7df;
  border-radius: 3px;
  color: #778175;
  background: #fafbf8;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.answer-btn:hover:not(:disabled) {
  border-color: #bdcbb2;
  color: #384838;
}

.answer-btn.correct.selected {
  border-color: #c6ddab;
  color: #45643e;
  background: #edf5e4;
}

.answer-btn.wrong.selected {
  border-color: #ecc6b8;
  color: #9d5949;
  background: #fbefea;
}

.answer-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.exam-aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.score-surface,
.result-surface {
  padding: 17px;
}

.score-surface .surface-heading {
  margin-bottom: 10px;
}

.score-surface .surface-heading h2 {
  font-size: 15px;
}

.score-pill {
  padding: 5px 7px;
  border-radius: 3px;
  color: #576852;
  background: #edf2e6;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0 12px;
  border-top: 1px solid #edf0e9;
  text-align: center;
}

.score-ring {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 50%;
  background: conic-gradient(#9dc55b 0deg, #e9ede5 0deg 360deg);
  transition: background 240ms ease;
}

.score-inner {
  display: flex;
  width: 105px;
  height: 105px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
}

.score-inner strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.score-inner small {
  margin-top: 5px;
  color: #8a9587;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.score-copy strong {
  color: #3f4c40;
  font-size: 11px;
}

.score-copy p {
  max-width: 225px;
  margin: 5px 0 0;
  color: #828c80;
  font-size: 10px;
  line-height: 1.55;
}

.score-breakdown {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  padding: 12px 0;
  border-top: 1px solid #edf0e9;
  border-bottom: 1px solid #edf0e9;
}

.score-breakdown span {
  display: grid;
  grid-template-columns: 8px auto;
  align-items: center;
  gap: 4px;
  color: #7e887c;
  font-size: 8px;
}

.score-breakdown strong {
  grid-column: 2;
  color: #3c493d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
}

.legend-dot {
  width: 6px;
  height: 6px;
  grid-row: span 2;
  border-radius: 50%;
}

.legend-correct { background: #9dc55b; }
.legend-wrong { background: var(--coral); }
.legend-pending { background: #bbc3b9; }

.secondary-btn {
  border-color: #dce2d7;
  color: #485648;
  background: #fff;
}

.secondary-btn:hover {
  transform: translateY(-1px);
  border-color: #c4d0bb;
  background: #f7f9f4;
}

.secondary-btn svg {
  width: 15px;
  height: 15px;
}

.full {
  width: 100%;
}

.integration-hint {
  margin: -3px 0 0;
  color: #929b91;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf1e6;
  color: #586857;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-badge.passed {
  background: #eaf8e8;
  color: #2e6d3e;
}

.result-badge.failed {
  background: #fbeae8;
  color: #9a4f41;
}

.result-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 14px;
}

.result-score strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.result-score small {
  color: #7f8a7e;
  font-size: 10px;
  font-weight: 600;
}

.threshold-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  border: 1px solid #e1e8d7;
  border-radius: 5px;
  background: #f5f7f0;
}

.threshold-note p {
  margin: 0;
  color: #727e6e;
  font-size: 9px;
  line-height: 1.6;
}

.inline-link {
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 330px;
}

.integration-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid #e3e8dd;
  border-radius: 6px;
  color: #53664d;
  background: #f1f4ed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.webhook-tile svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.integration-card-heading {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.integration-card-heading .section-kicker {
  margin-bottom: 3px;
  color: #8a9489;
  font-size: 8px;
}

.integration-card h3,
.settings-about h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.connection-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #a45f50;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.connection-state i {
  width: 6px;
  height: 6px;
}

.integration-card > p {
  margin: 11px 0 19px;
  color: #7e887d;
  font-size: 11px;
  line-height: 1.7;
}

.integration-details {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
  margin: auto 0 14px;
  padding: 12px 0;
  border-top: 1px solid #edf0e9;
  border-bottom: 1px solid #edf0e9;
}

.integration-details span,
.field-label {
  color: #8a9488;
  font-size: 9px;
  font-weight: 700;
}

.integration-details strong {
  color: #52614f;
  font-size: 10px;
  font-weight: 600;
}

.integration-card .secondary-btn {
  min-height: 34px;
}

.field-label {
  display: block;
  margin: 0 0 7px;
}

.text-input {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid #dfe4db;
  border-radius: 4px;
  color: #334035;
  background: #fff;
  font-size: 11px;
}

.text-input::placeholder {
  color: #a2aaa0;
}

.integration-card > .text-input {
  margin-bottom: 10px;
}

.field-help {
  margin: 8px 0 0 !important;
  color: #8e978d !important;
  font-size: 9px !important;
}

.payload-preview {
  width: 100%;
  max-height: 180px;
  overflow: auto;
  margin: 10px 0 0;
  padding: 11px;
  border: 1px solid #e1e7dc;
  border-radius: 4px;
  color: #50634f;
  background: #f2f5ee;
  font-family: Consolas, monospace;
  font-size: 9px;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.integration-security {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 14px;
  padding: 15px;
  border-color: #eaded2;
  background: #f9f4ef;
}

.security-icon {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border-radius: 50%;
  color: #986c39;
  background: #f0e5d1;
  font-size: 11px;
  font-weight: 700;
}

.integration-security strong {
  color: #66533d;
  font-size: 10px;
}

.integration-security p {
  margin: 4px 0 0;
  color: #8b7d6b;
  font-size: 10px;
  line-height: 1.6;
}

.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  align-items: start;
  gap: 14px;
}

.settings-card .surface-heading {
  margin-bottom: 0;
}

.setting-row {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #edf0e9;
}

.setting-row:first-child {
  margin-top: 4px;
}

.setting-row > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.setting-row strong {
  color: #39463a;
  font-size: 11px;
}

.setting-row small {
  color: #849083;
  font-size: 10px;
  line-height: 1.5;
}

.number-field {
  display: flex;
  width: 105px;
  height: 37px;
  flex: 0 0 105px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border: 1px solid #dfe4db;
  border-radius: 4px;
  background: white;
}

.number-field input {
  width: 43px;
  border: 0;
  outline: 0;
  color: #354535;
  background: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.number-field span {
  color: #90998e;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.settings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #edf0e9;
}

.settings-footer p {
  margin: 0;
  color: #8b9589;
  font-size: 9px;
  line-height: 1.5;
}

.settings-about .settings-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 17px;
  border-radius: 50%;
  overflow: hidden;
}

.settings-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-about > p:not(.section-kicker) {
  margin: 8px 0 18px;
  color: #7c877a;
  font-size: 10px;
  line-height: 1.7;
}

.settings-about dl {
  margin: 0;
}

.settings-about dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid #edf0e9;
  font-size: 9px;
}

.settings-about dt {
  color: #828d81;
}

.settings-about dd {
  margin: 0;
  color: #465446;
  font-weight: 700;
  text-align: right;
}

.mode-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #a6c65e;
  vertical-align: 1px;
}

.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 46px;
  border-top: 1px solid var(--line);
  color: #8b9588;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.workspace-footer i {
  padding: 0 4px;
  color: #b5bdb3;
  font-style: normal;
}

/* Dialog and notifications */
.candidate-dialog {
  width: min(460px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 1px solid #dce2d7;
  border-radius: 7px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 30px 100px rgba(12, 20, 14, 0.3);
}

.candidate-dialog::backdrop {
  background: rgba(14, 23, 17, 0.58);
  backdrop-filter: blur(3px);
}

.candidate-dialog form {
  padding: 24px;
}

.dialog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog-close {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #e1e6de;
  border-radius: 4px;
  color: #677368;
  background: white;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.candidate-dialog h2 {
  margin: 5px 0 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 600;
}

.dialog-description {
  margin: 0 0 21px;
  color: #828c80;
  font-size: 10px;
  line-height: 1.6;
}

.candidate-dialog .field-label {
  margin-top: 14px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 23px;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 20px;
  max-width: min(380px, calc(100% - 32px));
  padding: 12px 15px;
  transform: translateY(12px);
  border: 1px solid rgba(201, 239, 104, 0.45);
  border-radius: 5px;
  color: #edf3e8;
  background: #1a2820;
  box-shadow: 0 15px 45px rgba(17, 25, 20, 0.22);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  .auth-layout {
    gap: 6vw;
  }

  .auth-headline h1 {
    font-size: 64px;
  }

  .app-shell {
    grid-template-columns: 218px minmax(0, 1fr);
  }

  .topbar,
  .view-container,
  .workspace-footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .filter-bar {
    padding-right: 28px;
    padding-left: 28px;
  }

  .overview-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.8fr);
  }

  .stats-grid {
    gap: 9px;
  }

  .stat-card {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 900px) {
  .auth-screen {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .auth-layout {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: 4vw;
  }

  .auth-headline h1 {
    font-size: 56px;
  }

  .auth-description {
    font-size: 14px;
  }

  .auth-panel-content {
    padding: 36px 28px 30px;
  }

  .app-shell {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    position: relative;
    z-index: 7;
    height: auto;
    min-height: 0;
    padding: 13px 20px 10px;
  }

  .brand-block {
    padding: 0 2px 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    margin-top: 3px;
  }

  .workspace-label,
  .sidebar-spacer,
  .sidebar-status,
  .profile-button {
    display: none;
  }

  .nav {
    flex-direction: row;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .nav-item {
    width: auto;
    min-height: 37px;
    flex: 0 0 auto;
    gap: 7px;
    padding: 0 10px;
    font-size: 10px;
  }

  .nav-icon,
  .nav-icon svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .workspace {
    min-height: calc(100vh - 98px);
  }

  .topbar {
    min-height: 82px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .activity-surface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
  }

  .activity-surface .surface-heading {
    grid-column: 1 / -1;
  }

  .activity-list {
    grid-row: span 2;
  }

  .activity-footer {
    align-self: start;
    margin-top: 0;
  }

  .exam-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  }
}

@media (max-width: 680px) {
  .app-shell {
    overflow-x: clip;
  }

  .auth-screen {
    justify-content: flex-start;
    padding: 25px 20px 18px;
  }

  .auth-layout {
    width: min(460px, 100%);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 27px;
    margin: 0 auto;
  }

  .auth-intro {
    min-height: 0;
    padding: 0;
  }

  .auth-brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .auth-brand strong {
    font-size: 17px;
  }

  .auth-headline {
    margin: 35px 0 0;
  }

  .auth-headline .section-kicker {
    font-size: 8px;
  }

  .auth-headline h1 {
    margin: 13px 0 10px;
    font-size: 43px;
    line-height: 1.02;
  }

  .auth-description {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.65;
  }

  .auth-footnote,
  .auth-copyright,
  .auth-orbit {
    display: none;
  }

  .auth-panel-content {
    padding: 28px 22px 23px;
  }

  .auth-panel h2 {
    font-size: 28px;
  }

  .auth-panel-copy {
    margin: 7px 0 20px;
    font-size: 11px;
  }

  .panel-topline,
  .auth-panel-footer {
    padding: 13px 20px;
  }

  .auth-divider {
    margin: 21px 0 12px;
  }

  .app-shell {
    min-height: 100vh;
  }

  .sidebar {
    padding: 11px 13px 9px;
  }

  .nav {
    margin-right: -13px;
    padding-right: 13px;
  }

  .nav-item {
    min-height: 35px;
    padding: 0 8px;
    font-size: 9px;
  }

  .nav-icon {
    display: none;
  }

  .nav-count {
    min-width: 17px;
    height: 17px;
    font-size: 8px;
  }

  .topbar {
    position: relative;
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 17px 16px 14px;
  }

  .topbar-heading h1 {
    font-size: 21px;
  }

  .top-actions {
    width: 100%;
    gap: 6px;
  }

  .search-box {
    width: auto;
    min-width: 0;
    flex: 1;
  }

  .icon-button {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .top-actions .primary-btn {
    min-height: 37px;
    gap: 5px;
    padding: 0 9px;
    font-size: 9px;
  }

  .filter-bar {
    padding: 10px 16px;
  }

  .view-container {
    padding: 21px 14px 28px;
  }

  .welcome-row,
  .page-intro {
    gap: 12px;
    margin-bottom: 17px;
  }

  .welcome-row h2,
  .page-intro h2 {
    font-size: 25px;
  }

  .welcome-row > div:first-child > p:last-child,
  .page-intro > div > p:last-child {
    font-size: 10px;
  }

  .welcome-row .section-kicker,
  .page-intro .section-kicker {
    font-size: 8px;
  }

  .date-stamp {
    padding-left: 9px;
  }

  .date-day {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 11px;
  }

  .stat-card {
    min-height: 132px;
    padding: 12px 11px;
  }

  .label {
    max-width: 115px;
    font-size: 8px;
    line-height: 1.45;
  }

  .stat-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .stat-card > strong {
    margin-top: 12px;
    font-size: 29px;
  }

  .stat-card > small {
    font-size: 8px;
  }

  .stat-spark {
    right: 9px;
    bottom: 13px;
    gap: 2px;
  }

  .stat-spark i {
    width: 3px;
  }

  .stat-progress,
  .alert-track {
    margin-top: 11px;
  }

  .overview-grid {
    gap: 10px;
  }

  .applicants-surface,
  .activity-surface,
  .full-table-surface,
  .exam-surface,
  .score-surface,
  .integration-card,
  .settings-card,
  .settings-about {
    padding: 14px;
  }

  .surface-heading {
    gap: 8px;
    margin-bottom: 12px;
  }

  .surface-heading h2 {
    font-size: 15px;
  }

  .surface-heading .section-kicker {
    font-size: 8px;
  }

  .surface-heading > .text-button {
    font-size: 9px;
    white-space: nowrap;
  }

  .data-table {
    min-width: 530px;
  }

  .applicants-surface .data-table {
    min-width: 0;
    table-layout: fixed;
  }

  .applicants-surface .data-table th:nth-child(2),
  .applicants-surface .data-table td:nth-child(2),
  .applicants-surface .data-table th:nth-child(3),
  .applicants-surface .data-table td:nth-child(3) {
    display: none;
  }

  .activity-surface {
    display: block;
  }

  .activity-footer {
    margin-top: 8px;
  }

  .page-intro {
    align-items: flex-start;
  }

  .demo-tag {
    min-height: 23px;
    padding: 0 6px;
    font-size: 7px;
  }

  .record-total {
    padding-top: 7px;
  }

  .full-table-surface .data-table {
    min-width: 620px;
  }

  .exam-layout,
  .integration-grid,
  .settings-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exam-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .exam-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .exam-state {
    margin-right: auto;
  }

  .question-item {
    padding: 11px;
  }

  .question-item p {
    font-size: 10px;
  }

  .exam-meta {
    gap: 5px;
  }

  .exam-meta span {
    padding: 5px 6px;
    font-size: 8px;
  }

  .integration-card {
    min-height: 0;
  }

  .integration-card .integration-details {
    margin-top: 0;
  }

  .settings-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .settings-footer .primary-btn {
    width: 100%;
  }

  .workspace-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 12px 15px;
    font-size: 7px;
  }

  .candidate-dialog form {
    padding: 19px;
  }

  .dialog-actions {
    flex-direction: column-reverse;
  }

  .dialog-actions .primary-btn,
  .dialog-actions .secondary-btn {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 380px) {
  .auth-screen {
    padding-right: 15px;
    padding-left: 15px;
  }

  .auth-headline h1 {
    font-size: 39px;
  }

  .top-actions .primary-btn {
    padding: 0 7px;
    font-size: 8px;
  }

  .search-box kbd {
    display: none;
  }

  .stat-card {
    padding-right: 9px;
    padding-left: 9px;
  }

  .stat-spark {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.app-shell .workspace {
  --ink: #e7efe8;
  --ink-soft: #c1cec4;
  --paper: #111b15;
  --surface: #1a2921;
  --surface-muted: #203128;
  --line: #304238;
  --muted: #9aab9e;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  color-scheme: dark;
  color: var(--ink);
  background: #111b15;
}

.app-shell .workspace,
.app-shell .view-container {
  background-color: #111b15;
}

.app-shell .topbar {
  border-color: #2b3c31;
  color: #e7efe8;
  background: rgba(18, 29, 22, 0.96);
}

.app-shell .breadcrumb,
.app-shell .breadcrumb span,
.app-shell .topbar-heading h1,
.app-shell .welcome-row h2,
.app-shell .page-intro h2 {
  color: #e7efe8;
}

.app-shell .breadcrumb #breadcrumbCurrent,
.app-shell .welcome-row > div:first-child > p:last-child,
.app-shell .page-intro > div > p:last-child,
.app-shell .date-stamp,
.app-shell .section-kicker {
  color: #9cad9f;
}

.app-shell .filter-bar {
  border-color: #2b3c31;
  background: #19271f;
}

.app-shell .filter-bar label,
.app-shell .record-total,
.app-shell .table-note,
.app-shell .subtle-date {
  color: #a2b1a5;
}

.app-shell input,
.app-shell select,
.app-shell textarea {
  color-scheme: dark;
}

.app-shell .filter-bar select,
.app-shell .exam-result-picker select,
.app-shell .search-box,
.app-shell .icon-button,
.app-shell .text-input,
.app-shell .number-field,
.app-shell .secondary-btn {
  border-color: #35483c;
  color: #dce7de;
  background: #1b2a22;
}

.app-shell .search-box input,
.app-shell .text-input,
.app-shell .number-field input {
  color: #e7efe8;
}

.app-shell .search-box input::placeholder,
.app-shell .text-input::placeholder {
  color: #829487;
}

.app-shell .search-box kbd {
  border-color: #3a4d40;
  color: #aab9ae;
  background: #26372c;
}

.app-shell .icon-button:hover,
.app-shell .secondary-btn:hover {
  border-color: #647d5e;
  background: #293d30;
}

.app-shell .surface,
.app-shell .stat-card:not(.stat-primary) {
  border-color: #2b3d32;
  background: #1a2921;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.18);
}

.app-shell .stat-primary,
.app-shell .primary-btn {
  border-color: #152019;
  color: #f3f6ef;
  background: #152019;
}

.app-shell .primary-btn:hover:not(:disabled) {
  border-color: #2e4031;
  background: #2e4031;
}

.app-shell .primary-btn:disabled {
  border-color: #2a3b30;
  color: #91a094;
  background: #1b2a22;
  opacity: 0.72;
}

.app-shell .surface-heading h2,
.app-shell .record-total strong,
.app-shell .stat-card > strong,
.app-shell .activity-item strong,
.app-shell .activity-item > b,
.app-shell .activity-footer strong,
.app-shell .candidate-name,
.app-shell .score-inner strong,
.app-shell .score-copy strong,
.app-shell .score-breakdown strong,
.app-shell .result-score strong,
.app-shell .integration-card h3,
.app-shell .settings-about h3 {
  color: #e4ede5;
}

.app-shell .surface-heading .section-kicker,
.app-shell .label,
.app-shell .stat-card > small,
.app-shell .stat-unit,
.app-shell .activity-item small,
.app-shell .activity-footer,
.app-shell .candidate-handle,
.app-shell .score-inner small,
.app-shell .score-copy p,
.app-shell .score-breakdown span,
.app-shell .result-score small,
.app-shell .integration-card > p,
.app-shell .integration-details span,
.app-shell .field-label,
.app-shell .field-help,
.app-shell .setting-row small,
.app-shell .settings-footer p {
  color: #9aab9e;
}

.app-shell .stat-icon,
.app-shell .stat-progress,
.app-shell .alert-track,
.app-shell .activity-progress {
  border-color: #384a3d;
  color: #bdcbbf;
  background: #2b3c31;
}

.app-shell .activity-item,
.app-shell .activity-footer,
.app-shell .integration-details,
.app-shell .data-table th,
.app-shell .data-table td {
  border-color: #2c3d32;
}

.app-shell .data-table th,
.app-shell .data-table td {
  color: #aebdb1;
}

.app-shell .candidate-avatar {
  color: #d6e4d1;
  background: #314b36;
}

.app-shell .status-pending { color: #e2c27c; background: #403823; }
.app-shell .status-interview { color: #a9c9dd; background: #263b47; }
.app-shell .status-approved { color: #b8dfb7; background: #263e2c; }
.app-shell .status-rejected { color: #e4aaa0; background: #462f2b; }
.app-shell .exam-status-waiting { color: #e2c27c; background: #403823; }
.app-shell .exam-status-passed { color: #b8dfb7; background: #263e2c; }
.app-shell .exam-status-failed { color: #e4aaa0; background: #462f2b; }
.app-shell .exam-status-archived { color: #b1bdb4; background: #303b34; }

.app-shell .row-action,
.app-shell .text-button,
.app-shell .inline-link {
  color: #b7d28d;
}

.app-shell .row-action:hover,
.app-shell .text-button:hover,
.app-shell .inline-link:hover {
  color: #d6efaa;
}

.app-shell .empty-state {
  color: #a2b1a5;
}

.app-shell .demo-tag,
.app-shell .exam-meta span,
.app-shell .score-pill {
  border-color: #3b5141;
  color: #c3d7bd;
  background: #26392d;
}

.app-shell .exam-surface,
.app-shell .score-surface {
  border-color: #304639;
  background: #1a2921;
}

.app-shell .view[data-view-panel="exam"] {
  background:
    radial-gradient(circle at 92% 3%, rgba(105, 142, 92, 0.16), transparent 28%),
    linear-gradient(135deg, #121d16 0%, #192820 52%, #1d2d24 100%);
}

.app-shell .view[data-view-panel="exam"] .page-intro h2,
.app-shell .view[data-view-panel="exam"] .surface-heading h2 {
  color: #e7efe8;
}

.app-shell .question-item {
  border-color: #344a3a;
  background: #203128;
}

.app-shell .question-item[data-selected] {
  border-color: #5b7950;
  background: #263c2e;
}

.app-shell .question-item p,
.app-shell .q-index,
.app-shell .candidate-answer-label,
.app-shell .q-status,
.app-shell .q-score {
  color: #c9d7cb;
}

.app-shell .candidate-answer {
  border-color: #3b5142;
  color: #e7efe8;
  background: #142219;
}

.app-shell .candidate-answer::placeholder {
  color: #829587;
}

.app-shell .answer-btn {
  border-color: #3b4e41;
  color: #c1cec4;
  background: #26372c;
}

.app-shell .answer-btn:hover:not(:disabled) {
  border-color: #78956a;
  color: #f0f6ef;
  background: #314838;
}

.app-shell .answer-btn.correct.selected {
  border-color: #709463;
  color: #d5f0c5;
  background: #304a35;
}

.app-shell .answer-btn.wrong.selected {
  border-color: #8c5a4e;
  color: #ffd0c7;
  background: #49312e;
}

.app-shell .score-box,
.app-shell .score-breakdown {
  border-color: #32463a;
}

.app-shell .score-ring {
  background-color: #31443a;
}

.app-shell .score-inner {
  background: #1a2921;
}

.app-shell .result-badge {
  color: #c7d7bd;
  background: #2d3b2b;
}

.app-shell .result-badge.passed {
  color: #c4edbf;
  background: #294333;
}

.app-shell .result-badge.failed {
  color: #f0b5a9;
  background: #49312e;
}

.app-shell .threshold-note {
  border-color: #35483a;
  background: #1d2c23;
}

.app-shell .threshold-note p,
.app-shell .integration-hint {
  color: #a2b1a5;
}

.app-shell .integration-icon {
  border-color: #3a4d40;
  color: #c7d8c1;
  background: #26372c;
}

.app-shell .connection-state.state-offline {
  color: #e0a59a;
}

.app-shell .integration-details strong {
  color: #d0ddd2;
}

.app-shell .number-field span,
.app-shell .number-field input {
  color: #dce7de;
  background: #1b2a22;
}

.app-shell .settings-form .setting-row,
.app-shell .settings-footer {
  border-color: #304238;
}

.app-shell .workspace-footer {
  border-color: #2b3c31;
  color: #9cad9f;
  background: #121d16;
}

* {
  scrollbar-color: #4b6654 #142019;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #142019;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #142019;
  border-radius: 8px;
  background: #4b6654;
}

::-webkit-scrollbar-thumb:hover {
  background: #7d9b72;
}

.connection-state.state-server {
  color: #b9d69a;
}

.candidate-dialog {
  border-color: #35483a;
  color: #e7efe8;
  background: #1a2921;
  color-scheme: dark;
}

.candidate-dialog h2 {
  color: #e7efe8;
}

.candidate-dialog .dialog-description {
  color: #a2b1a5;
}

.candidate-dialog .field-label {
  color: #a2b1a5;
}

.candidate-dialog .text-input,
.candidate-dialog .dialog-close {
  border-color: #35483c;
  color: #e7efe8;
  background: #203128;
}

.auth-intro-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-developer {
  width: fit-content;
  flex: 0 1 auto;
  gap: 11px;
  padding: 7px 28px 7px 7px;
  border-color: rgba(201, 239, 104, 0.2);
  background: linear-gradient(105deg, rgba(201, 239, 104, 0.07), rgba(255, 255, 255, 0.025));
}

.auth-developer::after {
  top: 11px;
  right: 11px;
  width: 6px;
  height: 6px;
}

.auth-developer img {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.auth-developer span {
  gap: 4px;
}

.auth-developer small {
  font-size: 8px;
}

.auth-developer strong {
  font-size: 13px;
}

.auth-panel {
  border-color: #34483a;
  color: #e7efe8;
  background: linear-gradient(145deg, #1b2a22, #15231b);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.4), 0 0 36px rgba(125, 170, 99, 0.06);
  color-scheme: dark;
}

.panel-topline,
.auth-panel-footer {
  color: #a4b3a6;
}

.panel-topline,
.auth-panel-footer {
  border-color: #304238;
}

.auth-panel-content .section-kicker {
  color: #b7ccaa;
}

.auth-panel h2 {
  color: #edf3ed;
}

.auth-panel-copy {
  color: #a4b2a6;
}

.lock-mark {
  color: #c9ef68;
  text-shadow: 0 0 10px rgba(201, 239, 104, 0.55);
}

.auth-panel .discord-btn {
  border-color: #c9ef68;
  color: #152019;
  background: #c9ef68;
}

.auth-panel .discord-btn svg {
  fill: #152019;
}

.auth-panel .button-arrow {
  color: #35512d;
}

.auth-panel .discord-btn:hover {
  border-color: #d6f68d;
  background: #d6f68d;
}

.auth-panel .candidate-login-btn {
  border-color: #35483c;
  color: #dce7de;
  background: rgba(255, 255, 255, 0.025);
}

.auth-panel .candidate-login-btn:hover {
  border-color: #78956a;
  color: #f0f6ef;
  background: #26382b;
}

.auth-panel .candidate-login-btn span:last-child {
  color: #c9ef68;
}

.auth-panel .auth-divider span {
  background: #35483c;
}

.auth-panel .auth-divider small {
  color: #9cad9f;
}

.auth-panel .auth-notice {
  border-color: #34483a;
  background: #203128;
}

.auth-panel .notice-icon {
  color: #d8ecbd;
  background: #38513a;
}

.auth-panel .auth-notice p {
  color: #b4c2b6;
}

@media (max-width: 680px) {
  .auth-intro-footer {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .auth-developer img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}