:root {
  --duration: 14s;
  --blue: #3154c8;
  --violet: #5f45e8;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f6f8fc;
  --green: #2f8f46;
  --red: #c0392b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(49, 84, 200, .14), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef3fb 52%, #ffffff 100%);
  overflow: hidden;
}

.examia-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
}

.examia-shell {
  position: relative;
  width: min(1640px, 96vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .35);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
}

.examia-intro {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(95, 69, 232, .18), transparent 30%),
    linear-gradient(135deg, #f9fbff, #edf4ff 58%, #fff);
  pointer-events: none;
  visibility: hidden;
  animation: introExit var(--duration) cubic-bezier(.2, .7, .2, 1) infinite;
}

.intro-card {
  position: relative;
  width: min(800px, 74%);
  aspect-ratio: 1.7;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .38);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(49, 84, 200, .08) 1px, transparent 1px),
    linear-gradient(rgba(49, 84, 200, .08) 1px, transparent 1px),
    linear-gradient(160deg, rgba(255, 255, 255, .95), rgba(242, 247, 255, .82));
  background-size: 40px 40px, 40px 40px, auto;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .20);
  animation: introCard var(--duration) cubic-bezier(.2, .7, .2, 1) infinite;
}

.lens-ring {
  position: absolute;
  border: 1px solid rgba(49, 84, 200, .24);
  border-radius: 50%;
}

.ring-one {
  width: 280px;
  height: 280px;
}

.ring-two {
  width: 470px;
  height: 470px;
}

.axis,
.scan-line {
  position: absolute;
  background: rgba(49, 84, 200, .22);
}

.axis-h {
  width: 74%;
  height: 1px;
}

.axis-v {
  width: 1px;
  height: 74%;
}

.scan-line {
  left: 50%;
  top: 50%;
  width: 38%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(95, 69, 232, .9), transparent);
  animation: scanSweep var(--duration) linear infinite;
}

.lens-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 9px rgba(95, 69, 232, .10);
}

.dot-one {
  left: 22%;
  top: 33%;
}

.dot-two {
  right: 24%;
  bottom: 31%;
  background: var(--green);
}

.intro-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.intro-copy b,
.intro-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro-copy h1 {
  margin: 12px 0 14px;
  font-size: clamp(58px, 7vw, 116px);
  line-height: .92;
}

.sidebar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 250px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.logo {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.logo span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #6dc7ff, var(--violet));
}

.sidebar nav {
  padding: 18px 16px 8px;
}

.sidebar a {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: #667085;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 760;
}

.sidebar a i {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.nav-dashboard {
  animation: navDashboard var(--duration) linear infinite;
}

.nav-patients {
  animation: navPatients var(--duration) linear infinite;
}

.settings-title,
.module-list p {
  margin: 10px 24px 4px;
  color: #7c8799;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.module-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 350px;
  height: calc(100% - 230px);
  padding: 6px 16px 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(10px);
}

.module-visual {
  animation: modulesVisual var(--duration) linear infinite;
}

.module-contact {
  animation: modulesContact var(--duration) linear infinite;
}

.shortcut,
.module {
  display: block;
  height: 38px;
  margin-bottom: 7px;
  padding: 9px 12px;
  border: 1px solid #dbe4ff;
  border-radius: 7px;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 760;
}

.shortcut {
  color: #7b8797;
  border-color: var(--line);
}

.module.active {
  background: #eef2ff;
}

.topbar {
  position: absolute;
  inset: 0 0 auto 250px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page-label {
  margin: 0;
  font-size: 20px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-actions button,
.top-actions select {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-weight: 760;
}

.top-actions .pro-mode {
  width: 90px;
  color: #fff;
  border: 0;
  background: var(--violet);
}

.moon {
  width: 38px;
}

.avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eef2ff;
  font-weight: 900;
}

.operator strong,
.operator span {
  display: block;
  text-align: right;
  font-size: 12px;
}

.operator span {
  color: var(--muted);
}

.top-actions a {
  color: #b42318;
  font-weight: 760;
}

.content {
  position: absolute;
  inset: 64px 0 0 250px;
  overflow: hidden;
  background: #fff;
}

.screen-track {
  height: 100%;
  display: flex;
  width: 400%;
  margin-left: 0;
  animation: screenTrack var(--duration) cubic-bezier(.2, .7, .2, 1) infinite;
}

.screen {
  position: relative;
  flex: 0 0 25%;
  height: 100%;
  overflow: hidden;
  padding: 38px 56px 60px;
}

.dashboard-head,
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 30px;
}

.dashboard-head p,
.section-title p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dashboard-head h1,
.section-title h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 46px);
  line-height: 1.06;
}

.stats {
  display: flex;
  gap: 16px;
}

.stats span {
  min-width: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.stats b {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  margin-bottom: 38px;
}

.search,
.filters label,
.input-grid label,
.eye-card label {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #98a2b3;
}

.search {
  height: 56px;
  padding: 16px 20px;
  font-size: 17px;
}

button {
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
  font-size: 15px;
}

.recent-panel,
.patient-table,
.filters,
.exam-block,
.patient-banner {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.panel-title {
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 900;
}

.panel-title a {
  color: var(--blue);
  font-size: 15px;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
}

.patient-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.patient-card b,
.table-row b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #f0f4ff;
}

.patient-card strong {
  font-size: 18px;
}

.patient-card span {
  grid-column: 2;
  color: var(--muted);
}

.section-title button {
  width: 170px;
  height: 48px;
}

.filters {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 26px 32px 36px;
  margin-bottom: 30px;
}

.filters label {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.filters span {
  display: block;
  height: 46px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #8b95a7;
  font-weight: 500;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 60px 1.5fr 1.1fr 1.1fr .7fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--line);
}

.table-head {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-row {
  min-height: 76px;
  color: #667085;
}

.table-row strong {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.table-row em {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2f4f7;
  font-style: normal;
  font-weight: 900;
}

.table-row button {
  width: 126px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  white-space: nowrap;
  line-height: 1.1;
}

.patient-banner {
  position: relative;
  padding: 22px 28px;
  margin-bottom: 28px;
  background: #eef2ff;
  border-color: #cdd7ff;
}

.patient-banner p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.patient-banner h1 {
  margin: 0 0 8px;
  font-size: 26px;
}

.patient-banner h1 span {
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
}

.patient-banner small {
  color: #667085;
}

.patient-banner a {
  position: absolute;
  right: 30px;
  top: 36px;
  font-weight: 850;
}

.clinic-scroll,
.contact-scroll {
  animation: clinicScroll var(--duration) cubic-bezier(.2, .7, .2, 1) infinite;
}

.contact-scroll {
  animation-name: contactScroll;
}

.exam-block {
  padding: 22px;
  margin-bottom: 22px;
}

.exam-block h3 {
  margin: 0 0 18px;
  font-size: 19px;
}

.exam-block small {
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.input-grid {
  display: grid;
  gap: 10px;
}

.input-grid label {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.input-grid span {
  color: #8b95a7;
  font-weight: 500;
}

.rx-table {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.rx-row {
  display: grid;
  grid-template-columns: 170px repeat(4, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.rx-row span {
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #7c8799;
}

.rx-row.blue {
  border-color: #9caef5;
  background: #f3f6ff;
}

.rx-row.green {
  border-color: #b7dfbd;
  background: #f2fbf2;
}

.graph {
  position: relative;
  width: 360px;
  height: 260px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 36px 36px;
}

.h-axis,
.v-axis {
  position: absolute;
  background: #b42318;
}

.h-axis {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
}

.v-axis {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
}

.graph b,
.graph i {
  position: absolute;
  color: var(--blue);
}

.graph b {
  left: 18px;
  top: 48%;
}

.graph i {
  right: 18px;
  top: 48%;
  font-style: normal;
}

.ai-panel {
  padding: 24px;
  border: 1px solid #c7d2fe;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2ff, #fff);
  box-shadow: 0 16px 42px rgba(49, 84, 200, .12);
}

.ai-panel b {
  color: var(--violet);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.integrated-ai {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid #cdd7ff;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f7ff, #fff);
}

.integrated-ai b {
  display: block;
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.integrated-ai p {
  margin: 0;
  color: #445067;
  font-size: 14px;
  line-height: 1.55;
}

.contact-reco {
  margin-top: 18px;
}

.ai-panel h3 {
  margin: 10px 0;
  font-size: 22px;
}

.ai-panel p {
  max-width: 760px;
  margin: 0;
  color: #445067;
  font-size: 16px;
  line-height: 1.6;
}

.eye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.eye-card {
  padding: 18px;
  border: 1px solid #cdd7ff;
  border-radius: 12px;
  background: #f8fbff;
}

.eye-card.og {
  border-color: #bfe4c6;
  background: #f6fff6;
}

.eye-card h4 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 17px;
  text-transform: uppercase;
}

.eye-card.og h4 {
  color: var(--green);
}

.eye-card button {
  width: 42px;
  height: 42px;
  margin-right: 10px;
}

.eye-card span,
.eye-card label {
  display: inline-flex;
  align-items: center;
  height: 42px;
  margin: 0 8px 12px 0;
  padding: 0 14px;
}

.eye-card label {
  width: 100%;
}

.compact .eye-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.compact .eye-card h4 {
  grid-column: 1 / -1;
}

.compact .eye-card label {
  margin: 0;
}

.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comfort-grid label {
  display: grid;
  gap: 12px;
  font-weight: 850;
}

.comfort-grid span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dbe3ee 0 55%, #cc4b8a 55% 58%, #dbe3ee 58%);
}

.comfort-grid b {
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #667085;
  font-weight: 600;
}

.examia-cursor {
  position: absolute;
  z-index: 30;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, .35));
  animation: cursorMove var(--duration) cubic-bezier(.2, .7, .2, 1) infinite;
}

.examia-cursor:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 17px solid #111827;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: rotate(-32deg);
}

.examia-cursor span {
  position: absolute;
  left: 13px;
  top: 15px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
}

.pulse {
  position: absolute;
  z-index: 28;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  opacity: 0;
}

.pulse-patients {
  left: 41px;
  top: 170px;
  animation: pulsePatients var(--duration) ease-out infinite;
}

.pulse-dossier {
  left: 1370px;
  top: 420px;
  animation: pulseDossier var(--duration) ease-out infinite;
}

.scroll-badge {
  position: absolute;
  right: 30px;
  top: 55%;
  z-index: 25;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111827;
  opacity: 0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .30);
  animation: scrollBadge var(--duration) linear infinite;
}

.scroll-badge:before,
.scroll-badge:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.scroll-badge:before {
  top: 12px;
  width: 16px;
  height: 22px;
  border: 2px solid #fff;
}

.scroll-badge:after {
  top: 17px;
  width: 4px;
  height: 7px;
  background: #fff;
}

.hero-preview {
  background:
    radial-gradient(circle at 50% 44%, rgba(95, 69, 232, .18), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #edf4ff 58%, #ffffff 100%);
}

.hero-preview .examia-stage {
  min-height: 100vh;
  padding: 0;
}

.hero-preview .examia-shell {
  width: min(1220px, 94vw);
  aspect-ratio: 1.76;
  border-radius: 24px;
  border-color: rgba(148, 163, 184, .22);
  box-shadow: none;
}

.hero-preview .examia-intro {
  opacity: 1;
  visibility: visible;
  transform: none;
  animation: none;
}

.hero-preview .intro-card {
  opacity: 1;
  width: min(820px, 76%);
  transform: none;
  animation: heroPreviewFloat 7s ease-in-out infinite;
}

.hero-preview .scan-line {
  opacity: 1;
  animation: heroPreviewScan 6s linear infinite;
}

.hero-preview .intro-copy h1 {
  color: var(--ink);
}

@keyframes heroPreviewFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.01); }
}

@keyframes heroPreviewScan {
  to { transform: rotate(360deg); }
}

@keyframes introExit {
  0%, 15% { opacity: 1; transform: scale(1); visibility: visible; }
  21%, 100% { opacity: 0; transform: scale(1.025); visibility: hidden; }
}

@keyframes introCard {
  0% { opacity: 0; transform: translateY(20px) scale(.96); }
  4%, 15% { opacity: 1; transform: translateY(0) scale(1); }
  21%, 100% { opacity: 0; transform: translateY(-18px) scale(1.02); }
}

@keyframes scanSweep {
  0% { transform: rotate(-38deg); opacity: 0; }
  4%, 16% { opacity: 1; }
  21%, 100% { transform: rotate(325deg); opacity: 0; }
}

@keyframes navDashboard {
  0%, 36% { color: var(--blue); background: #eef2ff; }
  40%, 100% { color: #667085; background: transparent; }
}

@keyframes navPatients {
  0%, 36% { color: #667085; background: transparent; }
  40%, 54% { color: var(--blue); background: #eef2ff; }
  58%, 100% { color: #667085; background: transparent; }
}

@keyframes modulesVisual {
  0%, 56% { opacity: 0; transform: translateY(10px); visibility: hidden; }
  60%, 77% { opacity: 1; transform: translateY(0); visibility: visible; }
  81%, 100% { opacity: 0; transform: translateY(10px); visibility: hidden; }
}

@keyframes modulesContact {
  0%, 78% { opacity: 0; transform: translateY(10px); visibility: hidden; }
  82%, 100% { opacity: 1; transform: translateY(0); visibility: visible; }
}

@keyframes screenTrack {
  0%, 28% { margin-left: 0; }
  34%, 45% { margin-left: -100%; }
  51%, 75% { margin-left: -200%; }
  82%, 100% { margin-left: -300%; }
}

@keyframes clinicScroll {
  0%, 54% { transform: translateY(0); }
  66%, 75% { transform: translateY(-390px); }
  82%, 100% { transform: translateY(-390px); }
}

@keyframes contactScroll {
  0%, 84% { transform: translateY(0); }
  93%, 100% { transform: translateY(-520px); }
}

@keyframes cursorMove {
  0%, 22% { opacity: 0; transform: translate(920px, 420px); }
  26%, 34% { opacity: 1; transform: translate(1160px, 520px); }
  35% { opacity: 1; transform: translate(45px, 170px); }
  38% { opacity: 1; transform: translate(45px, 170px) scale(.88); }
  45% { opacity: 1; transform: translate(1366px, 420px); }
  48% { opacity: 1; transform: translate(1366px, 420px) scale(.88); }
  60%, 76% { opacity: 1; transform: translate(1410px, 590px); }
  84%, 100% { opacity: 1; transform: translate(1450px, 520px); }
}

@keyframes pulsePatients {
  0%, 34% { opacity: 0; transform: scale(.5); }
  37% { opacity: .65; transform: scale(1); }
  43%, 100% { opacity: 0; transform: scale(4); }
}

@keyframes pulseDossier {
  0%, 44% { opacity: 0; transform: scale(.5); }
  47% { opacity: .65; transform: scale(1); }
  53%, 100% { opacity: 0; transform: scale(4); }
}

@keyframes scrollBadge {
  0%, 60% { opacity: 0; transform: translateY(18px); }
  64%, 75% { opacity: 1; transform: translateY(0); }
  80%, 84% { opacity: 0; transform: translateY(-10px); }
  87%, 96% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

@media (max-width: 900px) {
  body {
    overflow: auto;
  }

  .examia-stage {
    padding: 0;
  }

  .examia-shell {
    width: 100vw;
    min-height: 100svh;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
  }

  .sidebar {
    width: 86px;
  }

  .logo strong,
  .sidebar a,
  .settings-title,
  .module-list {
    display: none;
  }

  .topbar,
  .content {
    left: 86px;
  }

  .topbar {
    padding: 0 14px;
  }

  .operator,
  .top-actions select,
  .top-actions a,
  .pro-mode {
    display: none;
  }

  .screen {
    padding: 26px 18px 44px;
  }

  .dashboard-head,
  .section-title,
  .stats,
  .eye-grid,
  .recent-grid,
  .filters {
    grid-template-columns: 1fr;
    display: grid;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .filters {
    gap: 12px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 48px 1fr;
  }

  .table-head span:nth-child(n+3),
  .table-row > span:nth-child(n+3),
  .table-row em,
  .table-row button {
    display: none;
  }

  .input-grid label,
  .rx-row,
  .compact .eye-card {
    grid-template-columns: 1fr;
  }

  .examia-cursor,
  .pulse,
  .scroll-badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
