:root {
  --bg: #f7f4ee;
  --surface: #fffdf8;
  --ink: #191919;
  --muted: #62615d;
  --line: #ded8cc;
  --blue: #153d63;
  --green: #3f6f5b;
  --orange: #c9793f;
  --brand-yellow: #f2c400;
  --soft-blue: #e8eef4;
  --soft-green: #e8f0ea;
  --shadow: 0 24px 70px rgba(27, 29, 31, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(17, 17, 17, 0.90);
  border-bottom: 1px solid rgba(222, 216, 204, 0.72);
  backdrop-filter: blur(18px);
  color: var(--surface);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  min-width: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(242, 196, 0, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  font-weight: 600;
  min-width: 0;
}

.site-nav a:hover {
  color: var(--surface);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding-top: 62px;
}

.entry-screen {
  min-height: calc(100svh - 68px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(242, 196, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #0d0d0d 0%, #111 58%, #171511 100%);
  color: var(--surface);
}

.entry-panel {
  width: min(860px, 100%);
  max-width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.entry-logo {
  display: block;
  width: min(560px, 86vw);
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 28px 46px rgba(242, 196, 0, 0.16));
}

.entry-panel h1 {
  color: var(--surface);
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.entry-panel .eyebrow {
  color: var(--brand-yellow);
}

.entry-panel .hero-note,
.entry-panel .hero-subtitle {
  color: rgba(255, 253, 248, 0.78);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.entry-panel .hero-actions {
  justify-content: center;
}

.entry-panel .button.secondary {
  background: rgba(255, 253, 248, 0.08);
  color: var(--surface);
  border-color: rgba(255, 253, 248, 0.34);
}

.simple-nav {
  gap: 12px;
}

.simple-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(242, 196, 0, 0.26);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.simple-nav a:first-child {
  border-color: rgba(242, 196, 0, 0.72);
  color: var(--brand-yellow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 700;
}

.hero-note,
.section-heading p,
.group-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-note {
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.12);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid rgba(242, 196, 0, 0.72);
  outline-offset: 3px;
}

.button.primary {
  background: var(--brand-yellow);
  color: #111;
  border-color: var(--brand-yellow);
}

.button.secondary {
  background: var(--surface);
}

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.button.ghost {
  border-color: var(--line);
  color: var(--muted);
}

.button.full,
.button.centered {
  width: 100%;
}

.button.centered {
  max-width: 240px;
  margin: 28px auto 0;
}

.diagnostic-card,
.contrast-card,
.method-card,
.profile-card,
.resource-card,
.dashboard,
.group-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.diagnostic-card {
  padding: 24px;
}

.card-topline,
.focus-meter > div,
.dashboard-header,
.task-row,
.resource-card header,
.profile-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-topline {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.focus-meter span,
.week-goal span,
.metric span,
.facilitator-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.focus-meter strong {
  font-size: 32px;
}

.meter {
  overflow: hidden;
  height: 10px;
  margin: 12px 0 22px;
  border-radius: 999px;
  background: #ebe6dc;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.signal-grid div,
.metric,
.week-goal,
.task-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
  padding: 14px;
}

.signal-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.week-goal p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.problem-cards,
.method-grid,
.profile-grid,
.resource-grid,
.process {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.problem-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.problem-cards article {
  min-height: 140px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.split-list,
.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1180px;
  margin: 22px auto 0;
  gap: 18px;
}

.split-list > div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.contrast-card {
  padding: 34px;
}

.contrast-card.muted {
  background: #f1eee7;
  box-shadow: none;
}

.contrast-card.accent {
  background: var(--soft-blue);
}

.method-grid {
  grid-template-columns: repeat(5, 1fr);
}

.method-card {
  padding: 24px;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.method-card:hover,
.profile-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 61, 99, 0.42);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.method-card p,
.profile-card p,
.resource-card p {
  color: var(--muted);
  line-height: 1.6;
}

.method-card strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  line-height: 1.45;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 24px;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.profile-grid {
  grid-template-columns: repeat(2, 1fr);
}

.profile-card {
  padding: 24px;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.profile-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-green);
  font-size: 28px;
}

.profile-card h3 {
  margin-bottom: 6px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f0ece3;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.profile-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.profile-detail div {
  padding: 12px;
  border-radius: 8px;
  background: #f8f4ec;
}

.profile-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process {
  grid-template-columns: repeat(6, 1fr);
}

.process article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.process span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  font-weight: 800;
}

.process p {
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 700;
}

.form-embed-card {
  max-width: 980px;
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #fbf8f1;
}

.form-embed-header h3 {
  margin-bottom: 0;
}

.form-embed-card iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: white;
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}

.dashboard-main,
.dashboard-side {
  padding: 24px;
}

.dashboard-side {
  border-left: 1px solid var(--line);
  background: #f5f0e7;
}

.risk {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f4e2d4;
  color: #8f4d22;
  font-size: 13px;
  font-weight: 800;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.task-row {
  cursor: pointer;
}

.task-row strong {
  line-height: 1.4;
}

.status {
  min-width: 92px;
  padding: 7px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.status.done {
  background: #dfeee5;
  color: #2d6b4c;
}

.status.joker {
  background: #f8ead7;
  color: #9b5a22;
}

.status.missed {
  background: #eee5e0;
  color: #77463a;
}

.dashboard-side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.facilitator-note {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.facilitator-note p,
.review-output {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.resource-grid {
  grid-template-columns: repeat(2, 1fr);
}

.resource-card {
  padding: 22px;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.resource-card .resource-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  font-size: 22px;
}

.resource-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.resource-block span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.group-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  gap: 34px;
  background: #111;
  color: var(--surface);
}

.group-panel .eyebrow,
.group-panel p {
  color: #c4d5e2;
}

.group-rules {
  display: grid;
  gap: 12px;
}

.group-rules article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.group-rules span {
  display: block;
  margin-top: 8px;
  color: #d4d1ca;
  line-height: 1.5;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.app-shell {
  min-height: calc(100vh - 68px);
}

.auth-screen {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 96px 18px 44px;
}

.auth-brand {
  position: fixed;
  top: 18px;
  left: clamp(18px, 4vw, 56px);
  z-index: 4;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.88);
  color: var(--surface);
  backdrop-filter: blur(14px);
}

.auth-card,
.data-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.auth-card {
  max-width: 460px;
  padding: 34px;
  margin: 0 auto;
}

.test-card {
  max-width: 860px;
  overflow: hidden;
}

.native-test-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.long-test-form {
  margin-top: 28px;
}

.likert-question {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
  min-width: 0;
}

.question-title {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  max-width: 100%;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.question-title span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 12px;
}

.question-title p {
  margin: 2px 0 0;
  min-width: 0;
  overflow-wrap: break-word;
}

.likert-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.likert-options label {
  display: block;
}

.likert-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.likert-options span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.likert-options input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.code-result {
  display: grid;
  gap: 14px;
  text-align: center;
}

.code-result h2 {
  margin-bottom: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: clamp(32px, 7vw, 58px);
  letter-spacing: 0.08em;
}

.auth-card h1,
.private-heading h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
}

.auth-card p {
  color: var(--muted);
  line-height: 1.55;
}

.auth-form,
.case-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 110px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(21, 61, 99, 0.18);
  border-color: rgba(21, 61, 99, 0.44);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-message[data-type="error"] {
  color: #9d3e2b;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.demo-access {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 8px;
  background: #f5f0e7;
  color: var(--muted);
  font-size: 13px;
}

.demo-access strong {
  color: var(--ink);
}

.private-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: calc(100vh - 68px);
}

.private-layout:has(.sidebar-collapsed) {
  grid-template-columns: 88px minmax(0, 1fr);
}

.private-layout:has(.sidebar-hidden) {
  grid-template-columns: 14px minmax(0, 1fr);
}

.private-sidebar {
  position: sticky;
  top: 68px;
  display: grid;
  min-height: calc(100vh - 68px);
  align-content: start;
  gap: 28px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #111;
  color: var(--surface);
  transition: width 180ms ease, padding 180ms ease, opacity 180ms ease;
}

.sidebar-toggle {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--yellow);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.sidebar-toggle:hover {
  border-color: rgba(242, 196, 0, 0.45);
  background: rgba(242, 196, 0, 0.1);
}

.sidebar-toggle span {
  position: relative;
  width: 14px;
  height: 10px;
}

.sidebar-toggle span::before,
.sidebar-toggle span::after {
  content: "";
  position: absolute;
  inset: auto;
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
}

.sidebar-toggle span::before {
  top: 2px;
}

.sidebar-toggle span::after {
  bottom: 2px;
}

.private-sidebar.sidebar-collapsed {
  gap: 22px;
  padding: 18px 14px;
}

.private-sidebar.sidebar-collapsed .brand {
  justify-content: center;
}

.private-sidebar.sidebar-collapsed .brand span,
.private-sidebar.sidebar-collapsed .sidebar-user {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.private-sidebar.sidebar-collapsed nav {
  justify-items: center;
}

.private-sidebar.sidebar-collapsed nav a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 0;
}

.private-sidebar.sidebar-collapsed nav a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 0 rgba(242, 196, 0, 0);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.private-sidebar.sidebar-collapsed nav a:hover::before {
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(242, 196, 0, 0.28);
  transform: scale(1.16);
}

.private-sidebar.sidebar-hidden {
  min-width: 14px;
  padding: 0;
  border-right-color: rgba(242, 196, 0, 0.16);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.82));
}

.private-sidebar.sidebar-hidden .brand,
.private-sidebar.sidebar-hidden nav,
.private-sidebar.sidebar-hidden .sidebar-user {
  display: none;
}

.private-sidebar.sidebar-hidden .sidebar-toggle {
  position: sticky;
  top: calc(50vh - 32px);
  justify-self: center;
  width: 8px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(242, 196, 0, 0.26);
  box-shadow: 0 0 24px rgba(242, 196, 0, 0.12);
}

.private-sidebar.sidebar-hidden .sidebar-toggle:hover {
  width: 10px;
  background: rgba(242, 196, 0, 0.62);
}

.private-sidebar.sidebar-hidden .sidebar-toggle span {
  display: none;
}

.private-sidebar .brand-symbol {
  filter: drop-shadow(0 8px 16px rgba(242, 196, 0, 0.22));
}

.private-sidebar nav {
  display: grid;
  gap: 8px;
}

.private-sidebar nav a {
  padding: 12px;
  border-radius: 8px;
  color: #d4d1ca;
  font-weight: 800;
}

.private-sidebar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
}

.sidebar-user {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-user span {
  color: #b8c8d3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.private-main {
  padding: clamp(22px, 4vw, 44px);
}

.private-heading,
.data-card-header,
.heading-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.heading-actions {
  flex-wrap: wrap;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-metrics article {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(27, 29, 31, 0.06);
}

.admin-metrics span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-metrics strong {
  display: block;
  max-width: 100%;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.admin-shell {
  background: #0a0a0a;
}

.admin-shell .private-main {
  background:
    radial-gradient(circle at 78% 0%, rgba(242, 196, 0, 0.08), transparent 28%),
    #0a0a0a;
  color: var(--surface);
}

.admin-shell .data-card,
.admin-shell .admin-metrics article {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 253, 248, 0.045);
  color: var(--surface);
  box-shadow: none;
}

.admin-shell .muted-copy,
.admin-shell .data-card p,
.admin-shell .admin-metrics span {
  color: rgba(255, 253, 248, 0.62);
}

.admin-hero {
  margin-bottom: 22px;
}

.admin-hero h1 {
  color: var(--surface);
}

.admin-command-metrics article {
  min-height: 128px;
}

.admin-ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
  margin-bottom: 16px;
}

.ops-panel {
  min-height: 0;
}

.ops-live-dot {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(242, 196, 0, 0.24);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.ops-block-list,
.ops-alert-list,
.admin-content-list,
.coin-ledger {
  display: grid;
  gap: 10px;
}

.ops-block-row,
.admin-content-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.ops-block-main span,
.admin-content-row p {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.58);
}

.ops-time {
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.ops-facts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ops-facts span {
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 12px;
}

.ops-alert-list p,
.coin-ledger p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-signal-line {
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-chart-grid {
  display: grid;
  gap: 12px;
}

.admin-chart-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
}

.table-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.table-empty {
  padding: 28px !important;
  color: var(--muted);
  text-align: center !important;
}

.test-progress-card {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
}

.test-progress-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.test-progress-card strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.test-progress-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #e7dfd2;
}

.test-progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-yellow), #d7a619);
  transition: width 180ms ease;
}

.test-step {
  display: none;
}

.test-step.active {
  display: grid;
  gap: 14px;
  animation: quietFade 180ms ease both;
}

.test-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 800;
}

.test-step-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), var(--surface) 24%);
}

.block-sparkline {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 88px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.block-sparkline span {
  width: 18px;
  border-radius: 999px 999px 2px 2px;
  background: rgba(242, 196, 0, 0.58);
}

.block-sparkline span.invalid {
  background: rgba(157, 62, 43, 0.76);
}

.activation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
}

.activation-card {
  background:
    radial-gradient(circle at 88% 0%, rgba(242, 196, 0, 0.08), transparent 30%),
    var(--surface);
}

.subscription-lock {
  margin: 18px 0;
  padding: 12px 14px;
  border: 1px solid rgba(242, 196, 0, 0.24);
  border-radius: 8px;
  background: rgba(242, 196, 0, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.subscription-plans {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.subscription-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.subscription-plan span,
.subscription-table small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.subscription-plan strong {
  display: block;
  margin: 4px 0;
  font-size: clamp(24px, 4vw, 38px);
}

.subscription-plan p {
  margin: 0;
  color: var(--muted);
}

.subscription-command {
  margin-bottom: 16px;
}

.compact-metrics {
  margin: 18px 0 0;
}

.data-card {
  padding: 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.muted-copy,
.intake-card p {
  color: var(--muted);
  line-height: 1.6;
}

.intake-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.data-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.usi-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(242, 196, 0, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(242, 196, 0, 0.18), rgba(17, 17, 17, 0.96));
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.usi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usi-avatar span {
  color: var(--yellow);
}

.avatar-sm {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.avatar-md {
  width: 54px;
  height: 54px;
  font-size: 16px;
}

.avatar-lg {
  width: 72px;
  height: 72px;
  font-size: 20px;
}

.avatar-xl {
  width: 112px;
  height: 112px;
  font-size: 30px;
}

.heading-profile,
.table-person,
.signal-line,
.admin-avatar-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.heading-profile h1 {
  margin: 0;
}

.admin-avatar-card {
  justify-content: space-between;
  margin-bottom: 18px;
}

.profile-image-editor {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.avatar-preview {
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.profile-image-controls {
  display: grid;
  gap: 14px;
}

.profile-public-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.profile-photo,
.profile-mini {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 196, 0, 0.24);
  background: #151515;
  color: var(--yellow);
  font-weight: 900;
}

.profile-photo {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  font-size: 28px;
}

.profile-mini {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.profile-photo img,
.profile-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-list,
.relation-list {
  display: grid;
  gap: 12px;
}

.ranking-row,
.relation-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.relation-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ranking-row p,
.relation-row p {
  margin: 4px 0 0;
  color: var(--muted);
}

.ranking-row small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.relation-actions,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.validation-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  animation: quietFade 260ms ease both;
}

.validation-modal {
  width: min(480px, 100%);
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid rgba(242, 196, 0, 0.16);
  border-radius: 0;
  background: #090909;
  color: var(--surface);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.66);
  text-align: center;
}

.validation-modal h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
}

.support-modal,
.pause-route-modal {
  text-align: center;
}

.support-modal .button {
  width: auto;
  margin-top: 12px;
}

.pause-route-modal .focus-actions {
  justify-content: center;
  margin-top: 18px;
}

.validation-count {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 38px;
  margin: 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--yellow);
  font-weight: 900;
}

@keyframes quietFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.table-wrap {
  overflow-x: auto;
}

.participants-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 14px;
}

.participants-table th,
.participants-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.participants-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.table-button {
  min-height: 36px;
  padding: 0 12px;
  border-color: var(--line);
  background: var(--surface);
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.risk-bajo {
  background: #dfeee5;
  color: #2d6b4c;
}

.risk-medio {
  background: #f8ead7;
  color: #9b5a22;
}

.risk-alto {
  background: #f1ded7;
  color: #9d3e2b;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  margin-bottom: 16px;
}

.case-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.case-facts span {
  padding: 12px;
  border-radius: 8px;
  background: #f8f4ec;
  color: var(--muted);
}

.case-facts strong {
  color: var(--ink);
}

.private-task-list {
  display: grid;
  gap: 10px;
}

.task-row.static {
  cursor: default;
}

.case-form {
  grid-template-columns: repeat(2, 1fr);
}

.case-form label:nth-child(n + 4),
.case-form .button,
.case-form .form-message,
.participant-update label {
  grid-column: 1 / -1;
}

.visible-note {
  margin-top: 20px;
}

.focus-entry,
.focus-room {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 116px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(34px, 8vw, 96px);
  border: 1px solid rgba(242, 196, 0, 0.14);
  border-radius: 0;
  background: #070707;
  color: var(--surface);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018), 0 28px 80px rgba(0, 0, 0, 0.28);
}

.focus-entry h2,
.focus-room h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(34px, 6.6vw, 78px);
  font-weight: 850;
  letter-spacing: 0;
}

.focus-entry p,
.focus-room p {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.72);
}

.focus-room .eyebrow {
  color: rgba(242, 196, 0, 0.72);
}

.focus-room .block-invalid-note {
  justify-self: center;
  max-width: 720px;
  padding: 12px 16px;
  border: 1px solid rgba(242, 196, 0, 0.28);
  border-radius: 999px;
  background: rgba(242, 196, 0, 0.08);
  color: var(--yellow);
  font-weight: 800;
}

.focus-room .button.secondary {
  background: rgba(255, 253, 248, 0.08);
  color: var(--surface);
  border-color: rgba(255, 253, 248, 0.28);
}

.elapsed-time {
  margin: 0;
  font-size: clamp(72px, 17vw, 188px);
  font-weight: 750;
  color: var(--brand-yellow);
  font-variant-numeric: tabular-nums;
  line-height: 0.92;
  letter-spacing: 0;
}

.operative-phrase {
  min-height: 1.6em;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 253, 248, 0.58) !important;
}

.focus-room .focus-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.focus-room .focus-actions:hover {
  opacity: 1;
}

.breath-orbit {
  position: absolute;
  width: min(48vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 196, 0, 0.22);
  border-radius: 999px;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.28; }
  50% { transform: scale(1.04); opacity: 0.55; }
}

.focus-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.check-label input {
  width: auto;
  min-height: auto;
}

.choice-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.choice-list label {
  display: block;
}

.choice-list input {
  position: absolute;
  opacity: 0;
}

.choice-list span {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.choice-list input:checked + span {
  border-color: var(--brand-yellow);
  background: #fff4bb;
  color: #111;
}

.library-grid,
.signal-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.library-card {
  display: grid;
  gap: 12px;
}

.signal-item h2 {
  font-size: 20px;
}

.prompt-card {
  margin-bottom: 16px;
  border-color: rgba(242, 196, 0, 0.38);
}

.report-preview pre {
  overflow: auto;
  max-height: 260px;
  padding: 16px;
  border-radius: 8px;
  background: #111;
  color: #f7f4ee;
  font-size: 12px;
}

.compact-filter {
  min-width: 220px;
  color: var(--muted);
}

.personal-editor {
  margin-bottom: 16px;
}

.admin-personal-form {
  display: grid;
  gap: 22px;
}

.admin-personal-form section {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.admin-personal-form section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiope-card {
  overflow: hidden;
}

.tiope-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.tiope-summary div {
  padding: 14px;
  border-radius: 8px;
  background: #f8f4ec;
}

.tiope-summary span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tiope-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.tiope-chart {
  display: grid;
  gap: 9px;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 2fr) minmax(48px, auto);
  align-items: center;
  gap: 10px;
  font-size: 13px;
  min-width: 0;
}

.chart-row span {
  color: var(--muted);
  font-weight: 800;
}

.chart-row strong {
  text-align: right;
}

.chart-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #ebe6dc;
}

.chart-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

input[type="range"] {
  padding: 0;
  accent-color: var(--blue);
}

@media (max-width: 1050px) {
  .hero-grid,
  .dashboard,
  .group-panel {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dashboard-side {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .private-layout,
  .case-grid,
  .admin-ops-grid,
  .activation-grid {
    grid-template-columns: 1fr;
  }

  .private-sidebar {
    position: static;
    min-height: auto;
  }

  .table-filters {
    justify-content: stretch;
  }

  .compact-filter {
    min-width: min(100%, 220px);
    flex: 1 1 180px;
  }

}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 14px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
  }

  .section {
    padding: 54px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-actions,
  .site-footer,
  .dashboard-header,
  .task-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .problem-cards,
  .split-list,
  .two-column,
  .method-grid,
  .profile-grid,
  .process,
  .resource-grid,
  .profile-detail {
    grid-template-columns: 1fr;
  }

  .problem-cards article {
    min-height: 110px;
  }

  .profile-card header,
  .resource-card header {
    align-items: flex-start;
  }

  .auth-brand {
    position: static;
    justify-self: start;
    margin-bottom: 14px;
    color: var(--ink);
    background: transparent;
    border: 0;
  }

  .auth-screen {
    place-items: stretch;
    padding: 18px;
  }

  .auth-card,
  .data-card {
    padding: 22px;
  }

  .private-heading,
  .data-card-header,
  .heading-actions,
  .heading-profile,
  .admin-avatar-card,
  .form-embed-header,
  .intake-card {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-metrics,
  .case-form,
  .form-grid-2,
  .tiope-summary,
  .chart-row,
  .likert-options {
    grid-template-columns: 1fr;
  }

  .chart-row strong {
    text-align: left;
  }

  .private-main {
    padding: 18px;
  }

  .brand span {
    display: none;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .simple-nav a {
    min-height: 34px;
    padding: 0 9px;
  }

  .entry-logo {
    width: min(420px, 92vw);
    max-height: 180px;
    margin-bottom: 20px;
  }

  .entry-panel h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .likert-question {
    padding: 14px;
  }

  .private-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .profile-image-editor {
    grid-template-columns: 1fr;
  }

  .avatar-preview {
    justify-self: start;
  }

  .private-layout:has(.sidebar-collapsed),
  .private-layout:has(.sidebar-hidden) {
    grid-template-columns: 1fr;
  }

  .private-sidebar.sidebar-hidden {
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .private-sidebar.sidebar-hidden .sidebar-toggle {
    position: static;
    width: 64px;
    height: 7px;
  }

  .private-sidebar.sidebar-collapsed {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 12px;
  }

  .private-sidebar.sidebar-collapsed nav {
    display: flex;
    overflow-x: auto;
    justify-items: start;
    padding-bottom: 2px;
  }

  .private-sidebar.sidebar-collapsed nav a {
    flex: 0 0 auto;
  }

  .admin-ops-grid,
  .ops-block-row,
  .admin-content-row,
  .admin-chart-row,
  .subscription-plan,
  .test-step-actions {
    grid-template-columns: 1fr;
  }

  .ops-time {
    font-size: 42px;
  }

  .test-step-actions {
    position: static;
  }

  .ranking-row,
  .relation-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .relation-actions {
    flex-direction: column;
  }
}
