:root {
  --ink: #102824;
  --ink-soft: #58706b;
  --paper: #f5f8f6;
  --white: #ffffff;
  --line: #dce6e2;
  --teal: #0f6b66;
  --teal-bright: #16847b;
  --teal-pale: #e5f3f0;
  --navy: #153c4b;
  --red: #e94343;
  --orange: #ee923d;
  --yellow: #f2cf68;
  --sidebar-width: 286px;
  --shadow: 0 24px 70px rgba(19, 57, 53, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.auth-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  display: flex;
  width: var(--sidebar-width);
  flex-direction: column;
  padding: 30px 24px 26px;
  color: #e7f3f0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 25%),
    #112e36;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar::before,
.sidebar::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
}

.sidebar::before {
  top: -130px;
  left: -90px;
  width: 280px;
  height: 280px;
  background: rgba(23, 151, 139, 0.16);
}

.sidebar::after {
  right: -170px;
  bottom: 4%;
  width: 260px;
  height: 260px;
  background: rgba(77, 136, 169, 0.08);
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 6px 52px;
}

.brand-mark {
  position: relative;
  display: flex;
  align-items: center;
  width: 47px;
  height: 31px;
}

.brand-mark i {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #68cbc2;
  border-radius: 50%;
}

.brand-mark i:nth-child(1) {
  left: 0;
  border-color: #7ed7cf;
}

.brand-mark i:nth-child(2) {
  left: 13px;
  border-color: #ffffff;
}

.brand-mark i:nth-child(3) {
  left: 26px;
  border-color: #e46464;
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: rgba(225, 241, 238, 0.48);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.nav-caption {
  position: relative;
  z-index: 1;
  margin: 0 10px 14px;
  color: rgba(225, 241, 238, 0.42);
  font-size: 15px;
  letter-spacing: 0.14em;
}

.side-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.side-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 10px;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: 180ms ease;
}

.side-nav a:hover,
.side-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #85c9c3;
  background: rgba(130, 206, 199, 0.1);
  border: 1px solid rgba(130, 206, 199, 0.12);
  border-radius: 12px;
}

.nav-icon svg {
  width: 21px;
  height: 21px;
}

.side-nav b,
.side-nav small {
  display: block;
}

.side-nav b {
  font-size: 16px;
  font-weight: 650;
}

.side-nav small {
  color: rgba(225, 241, 238, 0.46);
  font-size: 15px;
}

.nav-status {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.nav-status.done {
  background: #67d5aa;
  box-shadow: 0 0 0 4px rgba(103, 213, 170, 0.12);
}

.sidebar-identity,
.sidebar-login {
  position: relative;
  z-index: 1;
  margin: 18px 6px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}

.sidebar-identity {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.055);
}

.sidebar-identity[hidden],
.sidebar-login[hidden] {
  display: none;
}

.identity-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #103e3a;
  background: #77d2c8;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
}

.sidebar-identity small,
.sidebar-identity strong,
.sidebar-identity em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-identity small {
  color: rgba(225, 241, 238, 0.45);
  font-size: 12px;
}

.sidebar-identity strong {
  color: #fff;
  font-size: 15px;
}

.sidebar-identity em {
  color: rgba(225, 241, 238, 0.55);
  font-size: 12px;
  font-style: normal;
}

.sidebar-identity button {
  padding: 5px;
  color: rgba(225, 241, 238, 0.58);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 12px;
}

.sidebar-login {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 17px;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  color: #effbf8;
  background: rgba(32, 157, 145, 0.12);
}

.sidebar-login > svg:first-child {
  width: 22px;
  height: 22px;
  color: #76d2c8;
}

.sidebar-login > svg:last-child {
  width: 16px;
  height: 16px;
}

.sidebar-login strong,
.sidebar-login small {
  display: block;
}

.sidebar-login strong { font-size: 14px; }
.sidebar-login small { color: rgba(225, 241, 238, 0.48); font-size: 12px; }

.auth-gate {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(41, 164, 151, 0.22), transparent 30%),
    linear-gradient(145deg, #102e36, #0b242a 68%, #123f43);
}

.auth-gate[hidden] { display: none; }

.auth-gate-card {
  width: min(520px, 100%);
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.auth-gate-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 21px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal-bright), var(--teal));
  border-radius: 21px;
  box-shadow: 0 14px 30px rgba(15, 107, 102, 0.24);
}

.auth-gate-mark svg { width: 30px; height: 30px; }
.auth-gate-kicker { margin: 0 0 8px; color: var(--teal); font-size: 13px; font-weight: 800; letter-spacing: .15em; }
.auth-gate-card h1 { margin: 0; font-size: clamp(30px, 5vw, 42px); line-height: 1.2; }
.auth-gate-card > p:not(.auth-gate-kicker) { margin: 18px auto 26px; color: var(--ink-soft); font-size: 17px; }
.auth-gate-card > small { display: block; margin-top: 18px; color: #7b8c88; font-size: 13px; }
.auth-login-button { width: 100%; min-height: 54px; }

.sidebar-progress {
  position: relative;
  z-index: 1;
  margin: auto 6px 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
}

.sidebar-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 16px;
}

.sidebar-progress-head strong {
  color: #82d6cd;
  font-size: 16px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #63c9c0, #95e1b6);
  border-radius: inherit;
  transition: width 300ms ease;
}

.sidebar-progress small {
  display: block;
  margin-top: 10px;
  color: rgba(225, 241, 238, 0.42);
  font-size: 14px;
  line-height: 1.5;
}

.navigator-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 6px;
  padding: 12px 14px;
  color: rgba(230, 245, 242, 0.78);
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  transition: 180ms ease;
}

button.navigator-link {
  width: calc(100% - 12px);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.reservation-sidebar {
  margin-top: 8px;
}

.reservation-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  color: #fff;
  background: var(--teal-bright);
  border-radius: 999px;
  font-size: 13px;
}

.reservation-count[hidden] {
  display: none;
}

.navigator-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.navigator-link svg {
  width: 16px;
  height: 16px;
}

.sidebar-close,
.mobile-menu-button {
  display: none;
}

.page {
  min-width: 0;
  margin-left: var(--sidebar-width);
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 78px;
  min-height: 690px;
  padding-top: 76px;
  padding-bottom: 82px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -290px;
  width: 720px;
  height: 720px;
  content: "";
  background: radial-gradient(circle, rgba(86, 184, 173, 0.17), rgba(95, 153, 173, 0.03) 53%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: 10px;
  left: -160px;
  width: 340px;
  height: 340px;
  content: "";
  background: radial-gradient(circle, rgba(240, 176, 88, 0.12), transparent 68%);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.eyebrow i {
  width: 25px;
  height: 2px;
  background: var(--teal-bright);
}

.hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(44px, 5.25vw, 74px);
  font-weight: 750;
  line-height: 1.09;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(15, 107, 102, 0.2);
}

.button-primary:hover {
  background: #0c5e5a;
  box-shadow: 0 18px 36px rgba(15, 107, 102, 0.28);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
}

.journey-card {
  position: relative;
  padding: 31px;
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.journey-card::before {
  position: absolute;
  z-index: -1;
  inset: 12px -12px -12px 12px;
  content: "";
  background: rgba(37, 120, 113, 0.055);
  border-radius: inherit;
}

.journey-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.journey-card-head strong {
  color: var(--teal);
  font-size: 16px;
  letter-spacing: 0;
}

.journey-card h2 {
  margin: 10px 0 22px;
  font-size: 24px;
  line-height: 1.35;
}

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

.task-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 10px 13px;
  text-align: left;
  cursor: pointer;
  background: #f8faf9;
  border: 1px solid #e7eeeb;
  border-radius: 15px;
  transition: 180ms ease;
}

.task-item:hover {
  background: #fff;
  border-color: #c7ded8;
  transform: translateX(2px);
}

.task-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #91a5a0;
  background: #fff;
  border: 1px solid #d5e1de;
  border-radius: 10px;
}

.task-check svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: 180ms ease;
}

.task-item.done {
  background: #edf8f4;
  border-color: #cae8dc;
}

.task-item.done .task-check {
  color: #fff;
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}

.task-item.done .task-check svg {
  opacity: 1;
  transform: scale(1);
}

.task-item b,
.task-item small {
  display: block;
}

.task-item b {
  font-size: 16px;
}

.task-item small {
  margin-top: 1px;
  color: #7b8f8a;
  font-size: 14px;
}

.task-item em {
  color: #c4cecb;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.task-tip {
  margin: 16px 4px 0;
  color: #8a9c98;
  font-size: 14px;
}

.module {
  padding: 112px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.section-heading > div {
  position: relative;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 16px;
  text-align: right;
}

.section-number {
  position: absolute;
  z-index: -1;
  top: -42px;
  left: -18px;
  color: rgba(19, 88, 82, 0.055);
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
}

.module-access {
  background: #fff;
}

.access-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.access-visual {
  min-width: 0;
  overflow: hidden;
  background: #15353d;
  border-radius: var(--radius-lg);
}

.door-scene {
  position: relative;
  min-height: 475px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 70px 70px,
    #183d46;
}

.door-scene::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 70% 40%, rgba(98, 206, 195, 0.18), transparent 38%);
}

.scene-wall {
  position: absolute;
  inset: 58px 51px 0 35%;
  background: #e7ebe8;
  border-radius: 2px 2px 0 0;
  box-shadow: -14px 0 0 rgba(255, 255, 255, 0.05);
}

.scene-door {
  position: absolute;
  right: 85px;
  bottom: 0;
  width: 205px;
  height: 345px;
  background: linear-gradient(120deg, #9faaa6, #6d7c78);
  border: 8px solid #293d41;
  border-bottom: 0;
}

.scene-door::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(255,255,255,.2), transparent 45%);
}

.scene-door span {
  position: absolute;
  top: 47%;
  right: 17px;
  width: 10px;
  height: 10px;
  background: #d5c27a;
  border-radius: 50%;
}

.scene-door i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 36px;
  height: 55px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50% 50% 44% 44%;
}

.door-label {
  position: absolute;
  z-index: 2;
  top: 81px;
  right: 126px;
  color: #2d4540;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.face-device {
  position: absolute;
  z-index: 4;
  bottom: 166px;
  left: 136px;
  display: grid;
  width: 92px;
  height: 148px;
  place-items: center;
  color: #73d6cd;
  background: #0d2025;
  border: 5px solid #31484d;
  border-radius: 15px;
  box-shadow: 0 22px 34px rgba(0,0,0,.25), 0 0 0 5px rgba(255,255,255,.03);
}

.face-device::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 18px;
  height: 100px;
  content: "";
  background: #253b41;
  transform: translateX(-50%);
}

.face-device svg {
  width: 45px;
  height: 45px;
}

.face-device i {
  position: absolute;
  bottom: 14px;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.scanner-line {
  position: absolute;
  z-index: 2;
  top: 46px;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  background: #78e6db;
  box-shadow: 0 0 10px #78e6db;
  animation: scan 2.4s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(42px); opacity: 1; }
}

.location-arrow {
  position: absolute;
  z-index: 4;
  top: 100px;
  left: 53px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 16px;
}

.location-arrow span {
  padding: 9px 12px;
  background: rgba(15, 27, 30, .72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
}

.location-arrow i {
  position: relative;
  width: 70px;
  height: 1px;
  background: #e9a14d;
}

.location-arrow i::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid #e9a14d;
  border-right: 1px solid #e9a14d;
  transform: rotate(45deg);
}

.visual-note {
  display: grid;
  grid-template-columns: 48px auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 21px 24px;
  color: #fff;
}

.visual-note > svg {
  width: 27px;
  height: 27px;
  padding: 9px;
  box-sizing: content-box;
  color: #77d5cd;
  background: rgba(119, 213, 205, .08);
  border-radius: 14px;
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  color: rgba(255,255,255,.58);
  font-size: 14px;
  font-weight: 500;
}

.visual-note span {
  font-size: 17px;
  font-weight: 750;
}

.visual-note p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 15px;
  text-align: right;
}

.access-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.time-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.time-card {
  min-height: 182px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.time-card span,
.time-card strong,
.time-card small {
  display: block;
}

.time-card span {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 15px;
}

.time-card strong {
  margin: -2px 0 1px;
  font-size: 34px;
  letter-spacing: -.04em;
}

.time-card small {
  color: #81928e;
  font-size: 14px;
}

.time-icon {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 13px;
}

.time-icon svg {
  width: 20px;
  height: 20px;
}

.time-in {
  background: #edf8f4;
  border-color: #d8ebe4;
}

.time-in .time-icon {
  color: var(--teal);
  background: #d8eee8;
}

.time-out {
  background: #fff7eb;
  border-color: #f4e6cc;
}

.time-out .time-icon {
  color: #a86e29;
  background: #f7e5c7;
}

.instruction-card {
  padding: 24px 26px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.instruction-card h3 {
  margin: 0 0 15px;
  font-size: 17px;
}

.compact-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  padding: 0 0 16px;
}

.compact-steps li:not(:last-child)::after {
  position: absolute;
  top: 29px;
  bottom: 0;
  left: 14px;
  width: 1px;
  content: "";
  background: #dfe9e6;
}

.compact-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 750;
}

.compact-steps b {
  display: block;
  font-size: 16px;
}

.compact-steps p {
  margin: 2px 0 0;
  color: #71847f;
  font-size: 14px;
}

.complete-module {
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 67px;
  padding: 10px 17px;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px dashed #b9cfca;
  border-radius: 16px;
  transition: 180ms ease;
}

.complete-module:hover {
  background: #f4faf8;
  border-color: var(--teal);
}

.complete-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #8da39f;
  background: #eef3f2;
  border-radius: 12px;
}

.complete-icon svg {
  width: 18px;
  height: 18px;
}

.complete-module b,
.complete-module small {
  display: block;
}

.complete-module b {
  font-size: 16px;
}

.complete-module small {
  color: #80918d;
  font-size: 13px;
}

.complete-module.completed {
  background: #e9f6f1;
  border-color: #82c7b4;
  border-style: solid;
}

.complete-module.completed .complete-icon {
  color: #fff;
  background: var(--teal-bright);
}

.module-daily {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(86, 159, 181, 0.22), transparent 29%),
    radial-gradient(circle at 0 100%, rgba(23, 135, 124, 0.23), transparent 35%),
    #122f38;
}

.module-daily::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
}

.module-daily .shell {
  position: relative;
}

.light-heading .eyebrow {
  color: #87d7cf;
}

.light-heading .eyebrow i {
  background: #87d7cf;
}

.light-heading .section-number {
  color: rgba(255,255,255,.04);
}

.light-heading > p {
  color: rgba(232, 245, 242, 0.56);
}

.daily-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
  padding: 24px 27px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
}

.tag {
  display: inline-flex;
  padding: 4px 9px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  border-radius: 999px;
}

.tag-light {
  color: #9ee1d7;
  background: rgba(121, 211, 200, .1);
  border: 1px solid rgba(121, 211, 200, .12);
}

.daily-intro h3 {
  margin: 8px 0 4px;
  font-size: 19px;
}

.daily-intro p {
  max-width: 650px;
  margin: 0;
  color: rgba(232, 245, 242, .56);
  font-size: 15px;
}

.button-white {
  flex: 0 0 auto;
  color: var(--ink);
  background: #fff;
}

.sop-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(4, 21, 25, .35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
}

.sop-tab {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 12px;
  color: rgba(232, 245, 242, .58);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 650;
  transition: 180ms ease;
}

.sop-tab span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: rgba(232, 245, 242, .46);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  font-size: 13px;
}

.sop-tab:hover,
.sop-tab.active {
  color: var(--ink);
  background: #fff;
}

.sop-tab.active span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.sop-panels {
  margin-top: 18px;
}

.sop-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 30px;
  min-height: 570px;
  padding: 34px;
  color: var(--ink);
  background: #f5f8f6;
  border-radius: 27px;
}

.sop-panel[hidden] {
  display: none;
}

.sop-copy {
  padding: 11px 2px 0;
}

.step-label {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
}

.sop-copy h3 {
  margin: 8px 0 13px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.sop-copy > p {
  margin: 0;
  color: #637772;
  font-size: 16px;
  line-height: 1.85;
}

.check-list,
.number-list,
.field-guide {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 11px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #405a55;
  font-size: 15px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  padding: 3px;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 50%;
  box-sizing: content-box;
}

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

.number-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  gap: 10px;
  color: #4b615d;
  font-size: 15px;
}

.number-list li span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
}

.warning-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 22px;
  padding: 13px;
  color: #705125;
  background: #fff4de;
  border: 1px solid #f0dfbb;
  border-radius: 12px;
  font-size: 14px;
  font-style: normal;
}

.warning-note strong {
  flex: 0 0 auto;
  padding: 1px 5px;
  color: #fff;
  background: #d68a32;
  border-radius: 4px;
  font-size: 12px;
}

.real-shot,
.mock-window {
  position: relative;
  align-self: center;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce5e2;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(18, 55, 51, .12);
}

.real-shot {
  margin: 0;
}

.real-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.real-shot figcaption {
  position: absolute;
  right: 11px;
  bottom: 9px;
  padding: 5px 8px;
  color: rgba(255,255,255,.85);
  background: rgba(13,34,38,.72);
  border-radius: 7px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.shot-highlight,
.highlighted {
  position: absolute;
  z-index: 3;
  border: 3px solid var(--red) !important;
  border-radius: 9px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.75), 0 8px 20px rgba(219, 47, 47, .16);
}

.shot-highlight i,
.callout {
  position: absolute;
  z-index: 5;
  top: -14px;
  right: -14px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(219,47,47,.25);
}

.highlight-account {
  top: 25.5%;
  left: 35.3%;
  width: 29%;
  height: 6.6%;
}

.highlight-password {
  top: 37.4%;
  left: 35.3%;
  width: 29%;
  height: 6.7%;
}

.highlight-login {
  top: 50.7%;
  left: 35.3%;
  width: 29%;
  height: 6.3%;
}

.mock-window {
  min-height: 482px;
  font-size: 14px;
}

.mock-toolbar {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  background: #fff;
  border-bottom: 1px solid #e8efec;
}

.mock-toolbar > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.mock-toolbar b {
  color: #5d706c;
  font-size: 13px;
  font-weight: 650;
}

.mock-toolbar b.selected {
  padding: 6px 10px;
  color: #fff;
  background: var(--teal-bright);
  border-radius: 7px;
}

.mock-toolbar em {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #38524d;
  background: #f0f6f4;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.mock-logo {
  color: #315b6c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.mock-page-title {
  display: flex;
  flex-direction: column;
  padding: 24px 26px 16px;
}

.mock-page-title span {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.mock-page-title small {
  color: #7d8e8a;
  font-size: 12px;
}

.goal-mock {
  display: grid;
  grid-template-columns: 1fr .8fr;
  grid-template-rows: 52px 75px 1fr;
  gap: 0 13px;
  padding: 0 20px 20px;
  background:
    linear-gradient(rgba(12,87,80,.04) 1px, transparent 1px),
    linear-gradient(90deg,rgba(12,87,80,.04) 1px,transparent 1px),
    #eef5f2;
  background-size: 44px 44px;
}

.goal-mock .mock-toolbar,
.goal-mock .mock-page-title {
  grid-column: 1 / -1;
  margin: 0 -20px;
}

.goal-mock .mock-page-title {
  padding-left: 26px;
  background: rgba(255,255,255,.3);
}

.mock-card {
  position: relative;
  min-width: 0;
  padding: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid #dce7e3;
  border-radius: 15px;
}

.mock-card > label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
}

.mock-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  background: #eff4f2;
  border: 1px solid #dae5e1;
  border-radius: 9px;
}

.mock-segment b,
.mock-segment span {
  padding: 6px;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
}

.mock-segment b {
  color: #fff;
  background: var(--teal-bright);
}

.goal-editor > small {
  display: block;
  margin: 10px 0 5px;
  color: #60746f;
  font-size: 12px;
  font-weight: 700;
}

.mock-field,
.mock-textarea {
  position: relative;
  border: 1px solid #d9e3e0;
  border-radius: 8px;
}

.mock-field {
  height: 36px;
  padding: 8px 11px;
  font-size: 12px;
}

.mock-textarea {
  height: 80px;
  margin-top: 9px;
  padding: 11px;
  color: #a0ada9;
  font-size: 12px;
}

.mock-primary,
.mock-danger {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 11px;
  padding: 9px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 750;
}

.goal-result > p {
  height: 150px;
  margin: 12px 0;
  padding: 13px;
  color: #899894;
  background: #f6f8f7;
  border-radius: 10px;
  font-size: 12px;
}

.mock-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 7px;
  color: #8f6c34;
  background: #fff1d8;
  border-radius: 999px;
  font-size: 12px;
}

.mock-danger {
  color: #fff;
  background: #d94b4b;
}

.field-guide {
  display: grid;
  gap: 8px;
}

.field-guide li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 9px;
  padding: 9px 10px;
  background: #edf3f1;
  border-radius: 10px;
}

.field-guide b {
  color: var(--teal);
  font-size: 13px;
}

.field-guide span {
  color: #667974;
  font-size: 12px;
}

.attachment-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #73613d;
  font-size: 13px;
}

.attachment-tip svg {
  width: 16px;
  height: 16px;
  color: #b37d38;
}

.report-form {
  padding: 20px 25px;
}

.report-heading {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-bottom: 15px;
}

.report-heading b {
  font-size: 20px;
}

.report-heading span {
  color: #84938f;
  font-size: 12px;
}

.week-field,
.day-field,
.tomorrow-field,
.upload-field {
  position: relative;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid #dce6e3;
  border-radius: 10px;
}

.week-field label,
.day-field label,
.tomorrow-field label {
  display: block;
  margin-bottom: 7px;
  color: #425954;
  font-size: 12px;
  font-weight: 750;
}

.week-field p,
.day-field p,
.tomorrow-field p {
  margin: 0;
  color: #a0ada9;
  font-size: 12px;
}

.week-field {
  height: 72px;
  margin-bottom: 10px;
}

.day-field {
  height: 120px;
  margin-bottom: 10px;
}

.upload-field {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--teal);
  background: #eef7f4;
  border-style: dashed;
  font-size: 12px;
  font-weight: 700;
}

.upload-field svg {
  width: 15px;
  height: 15px;
}

.tomorrow-field {
  height: 72px;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.status-legend span {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-legend .draft { color:#74632e; background:#fff0b9; }
.status-legend .pending { color:#2d6190; background:#dbeeff; }
.status-legend .passed { color:#1c7152; background:#d9f1e6; }
.status-legend .returned { color:#9a4040; background:#fee1e1; }

.submit-stage {
  padding: 32px;
}

.ai-panel {
  padding: 21px;
  background: linear-gradient(135deg, #e4f6f2, #eef5ff);
  border: 1px solid #cfe4df;
  border-radius: 14px;
}

.ai-panel > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 800;
}

.ai-panel svg {
  width: 17px;
  height: 17px;
}

.ai-progress {
  height: 7px;
  margin: 20px 0 10px;
  overflow: hidden;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
}

.ai-progress i {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #68a5df);
  border-radius: inherit;
}

.ai-panel small {
  color: #6f8580;
  font-size: 12px;
}

.ai-button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
  padding: 12px;
  color: #fff;
  background: var(--teal-bright);
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
}

.submit-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.submit-buttons button {
  position: relative;
  padding: 11px;
  color: #4f625e;
  background: #fff;
  border: 1px solid #dbe4e1;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.submit-buttons button:last-child {
  color: #fff;
  background: #d94848;
  border-color: #d94848;
}

.submit-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  background: #edf7f3;
  border-radius: 12px;
}

.submit-success > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #3ca178;
  border-radius: 50%;
}

.submit-success svg {
  width: 17px;
  height: 17px;
}

.submit-success b,
.submit-success small {
  display: block;
}

.submit-success b {
  font-size: 13px;
}

.submit-success small {
  color: #758782;
  font-size: 12px;
}

.writing-templates {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.writing-templates > div,
.writing-templates article {
  padding: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
}

.template-heading span,
.writing-templates article > span {
  color: #80d4cb;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
}

.template-heading h3 {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.writing-templates article p {
  margin: 7px 0 0;
  color: rgba(232,245,242,.5);
  font-size: 13px;
  line-height: 1.7;
}

.complete-module-dark {
  margin-top: 18px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.2);
}

.complete-module-dark:hover {
  background: rgba(255,255,255,.08);
  border-color: #82d2c9;
}

.complete-module-dark .complete-icon {
  color: #a3c1bb;
  background: rgba(255,255,255,.07);
}

.complete-module-dark small {
  color: rgba(232,245,242,.45);
}

.complete-module-dark.completed {
  color: #fff;
  background: rgba(73, 178, 139, .15);
  border-color: rgba(103, 213, 170, .55);
}

.module-systems {
  background: #f5f8f6;
}

.system-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.system-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.system-search {
  display: flex;
  width: min(420px, 100%);
  height: 51px;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(23, 57, 53, .04);
}

.system-search svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #78908a;
}

.system-search input {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.system-search input::placeholder {
  color: #9aaba7;
}

.guide-chip {
  display: flex;
  height: 45px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid #d3e9e4;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
}

button.guide-chip {
  cursor: pointer;
}

.my-reservations-button {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.my-reservations-button .reservation-count {
  color: var(--teal);
  background: #fff;
}

.guide-chip svg {
  width: 15px;
  height: 15px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.system-card {
  position: relative;
  display: flex;
  min-height: 335px;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 11px 30px rgba(25, 61, 56, .045);
  transition: 190ms ease;
}

.system-card:hover {
  border-color: #bdd7d1;
  box-shadow: 0 20px 40px rgba(25, 61, 56, .085);
  transform: translateY(-4px);
}

.system-card[hidden] {
  display: none;
}

.system-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.system-logo {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.03em;
}

.logo-oa { color:#fff; background:linear-gradient(145deg,#e55a53,#b93934); }
.logo-erp { color:#fff; background:linear-gradient(145deg,#3e74d5,#214da2); }
.logo-buy { color:#5b431c; background:linear-gradient(145deg,#ffe8a8,#efc85e); }
.logo-dc { color:#fff; background:linear-gradient(145deg,#45a69c,#0f6b66); }
.logo-mdm { color:#fff; background:linear-gradient(145deg,#6572b8,#3e487e); font-size: 15px; }

.network-tag {
  padding: 5px 8px;
  color: #6a7d78;
  background: #f2f6f5;
  border: 1px solid #e5ecea;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.system-card h3 {
  margin: 19px 0 9px;
  font-size: 17px;
  line-height: 1.4;
}

.system-card > p {
  margin: 0;
  color: #6e817d;
  font-size: 15px;
  line-height: 1.8;
}

.system-meta {
  display: grid;
  grid-template-columns: 18px auto 1fr;
  align-items: center;
  gap: 7px;
  margin: auto 0 15px;
  padding: 12px 0 0;
  border-top: 1px solid #edf1f0;
}

.system-meta svg {
  width: 16px;
  height: 16px;
  color: #88a09a;
}

.system-meta span {
  color: #879894;
  font-size: 13px;
}

.system-meta strong {
  justify-self: end;
  font-size: 14px;
}

.system-card > a,
.system-action {
  display: flex;
  width: 100%;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--teal);
  cursor: pointer;
  background: #edf7f4;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  transition: 180ms ease;
}

.system-card > a:hover,
.system-action:hover {
  color: #fff;
  background: var(--teal);
}

.system-card > a svg,
.system-action svg {
  width: 14px;
  height: 14px;
}

.training-action {
  color: #704f1e;
  background: #fff3d9;
}

.training-action:hover {
  color: #fff;
  background: #b77b27;
}

.no-results {
  margin: 10px 0 25px;
  padding: 40px;
  color: #78908a;
  text-align: center;
  background: #fff;
  border: 1px dashed #cad9d5;
  border-radius: 18px;
  font-size: 16px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  background: #dce6e2;
  border: 1px solid #dce6e2;
  border-radius: 16px;
}

.contact-strip > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  background: #fff;
}

.contact-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: #4db996;
  border: 3px solid #d9f3ea;
  border-radius: 50%;
  box-sizing: content-box;
}

.contact-strip small,
.contact-strip strong {
  display: block;
}

.contact-strip small {
  color: #81938e;
  font-size: 12px;
}

.contact-strip strong {
  font-size: 15px;
}

.module-systems > .shell > .complete-module {
  max-width: 520px;
  margin: 24px auto 0;
}

.footer {
  color: rgba(232,245,242,.7);
  background: #0e252c;
}

.footer .shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  min-height: 115px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer .brand-mark {
  transform: scale(.75);
  transform-origin: left center;
}

.footer-brand strong {
  margin-left: -8px;
  color: #fff;
  font-size: 16px;
}

.footer p,
.footer a {
  margin: 0;
  font-size: 13px;
}

.footer a:hover {
  color: #fff;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
  padding: 13px 16px;
  color: #fff;
  pointer-events: none;
  background: #153a37;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
  opacity: 0;
  transform: translateY(18px);
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #fff;
  background: #42a581;
  border-radius: 50%;
}

.toast svg {
  width: 15px;
  height: 15px;
}

.toast p {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.modal-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-layer[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: default;
  background: rgba(8, 27, 31, .68);
  border: 0;
  backdrop-filter: blur(8px);
}

.modal-window {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f7f9f8;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0,0,0,.3);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 30px 21px;
  border-bottom: 1px solid #dfe7e4;
}

.modal-kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.modal-header h2 {
  margin: 5px 0 3px;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.modal-header p {
  margin: 0;
  color: #71847f;
  font-size: 14px;
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #60736e;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dce6e3;
  border-radius: 12px;
}

.modal-close:hover {
  color: #fff;
  background: var(--teal);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.guide-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 30px 0;
  padding: 6px;
  background: #eaf0ee;
  border-radius: 14px;
}

.guide-tab {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #677a75;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.guide-tab span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid #c9d7d3;
  border-radius: 8px;
  font-size: 12px;
}

.guide-tab.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(25,61,56,.08);
}

.guide-tab.active span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.oa-guide-panel {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 28px;
  min-height: 500px;
  padding: 28px 30px 32px;
}

.oa-guide-panel[hidden] {
  display: none;
}

.guide-copy {
  padding: 14px 0;
}

.guide-copy h3 {
  margin: 7px 0 12px;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.guide-copy > p {
  margin: 0;
  color: #647772;
  font-size: 15px;
  line-height: 1.85;
}

.guide-safe-note {
  margin-top: 18px;
  padding: 12px 13px;
  color: #526963;
  background: #e9f4f1;
  border-left: 3px solid var(--teal-bright);
  border-radius: 0 9px 9px 0;
  font-size: 13px;
  font-style: normal;
}

.oa-login-shot {
  align-self: center;
}

.oa-highlight-user {
  top: 52.1%;
  left: 36.8%;
  width: 26.2%;
  height: 5.4%;
}

.oa-highlight-password {
  top: 61.2%;
  left: 36.8%;
  width: 26.2%;
  height: 5.3%;
}

.oa-highlight-remember {
  top: 71.6%;
  left: 49.7%;
  width: 12.7%;
  height: 4.1%;
}

.oa-highlight-submit {
  top: 79.2%;
  left: 36.8%;
  width: 26.2%;
  height: 6.9%;
}

.compact-number-list {
  gap: 7px;
  margin-top: 18px;
}

.compact-number-list li {
  font-size: 14px;
}

.compact-number-list li span {
  width: 24px;
  height: 24px;
}

.oa-navigation-shot {
  align-self: center;
}

.oa-nav-home {
  top: 4.5%;
  left: 51.2%;
  width: 6.3%;
  height: 29%;
}

.oa-nav-apps {
  top: 4.5%;
  left: 58.9%;
  width: 8.1%;
  height: 29%;
}

.oa-nav-portal {
  top: 4.5%;
  left: 67.1%;
  width: 9.9%;
  height: 29%;
}

.oa-nav-sidebar {
  top: 41.5%;
  left: .8%;
  width: 45.2%;
  height: 54%;
}

.oa-workspace-mock {
  position: relative;
  display: grid;
  grid-template-columns: 135px 1fr;
  min-height: 470px;
  overflow: hidden;
  background: #edf2f5;
  border: 1px solid #d8e1e5;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(23,52,58,.12);
}

.oa-mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 13px;
  color: rgba(255,255,255,.77);
  background: #24445c;
}

.oa-mini-logo {
  margin: 2px 9px 23px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.oa-mock-sidebar b {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.oa-mock-sidebar b.selected {
  color: #fff;
  background: rgba(255,255,255,.13);
}

.oa-mock-sidebar i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 7px;
  font-size: 12px;
  font-style: normal;
}

.oa-mock-main {
  padding: 20px;
}

.oa-mock-main > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.oa-mock-main > header span {
  font-size: 16px;
  font-weight: 750;
}

.oa-mock-main > header em {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: #587b9a;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.oa-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.oa-metric-grid article {
  position: relative;
  min-height: 110px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e1e8ea;
  border-radius: 12px;
}

.oa-metric-grid small,
.oa-metric-grid strong,
.oa-metric-grid p {
  display: block;
}

.oa-metric-grid small {
  color: #657b83;
  font-size: 12px;
}

.oa-metric-grid strong {
  margin: 5px 0;
  color: #2d6187;
  font-size: 22px;
}

.oa-metric-grid p {
  margin: 0;
  color: #8b9ca1;
  font-size: 12px;
}

.oa-todo-list {
  position: relative;
  min-height: 190px;
  margin-top: 13px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e1e8ea;
  border-radius: 12px;
}

.oa-todo-list > div {
  display: flex;
  justify-content: space-between;
}

.oa-todo-list b {
  font-size: 14px;
}

.oa-todo-list span,
.oa-todo-list p {
  color: #91a0a5;
  font-size: 12px;
}

.oa-todo-list p {
  margin: 52px 0 0;
  text-align: center;
}

.mock-disclaimer {
  position: absolute;
  right: 12px;
  bottom: 9px;
  padding: 4px 7px;
  color: rgba(255,255,255,.8);
  background: rgba(26,48,55,.7);
  border-radius: 6px;
  font-size: 12px;
}

.oa-guide-panel[data-oa-panel="modules"] {
  grid-template-columns: .76fr 1.24fr;
}

.oa-module-notes {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.oa-module-notes article {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 11px;
  background: #f2f7f5;
  border: 1px solid #e0e9e6;
  border-radius: 11px;
}

.oa-module-notes article > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
}

.oa-module-notes b {
  display: block;
  color: #26433e;
  font-size: 14px;
}

.oa-module-notes p {
  margin: 3px 0 0;
  color: #70837e;
  font-size: 12px;
  line-height: 1.55;
}

.oa-tools-shot {
  width: min(460px, 100%);
  justify-self: center;
}

.oa-tools-shortcuts {
  top: 1.5%;
  left: 1.5%;
  width: 97%;
  height: 56.5%;
}

.oa-tools-flows {
  top: 61.5%;
  left: 1.5%;
  width: 97%;
  height: 36.5%;
}

.oa-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: center;
}

.oa-module-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 125px;
  padding: 17px;
  background: #fff;
  border: 1px solid #dce6e3;
  border-radius: 15px;
}

.oa-module-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
}

.oa-module-grid b {
  display: block;
  font-size: 16px;
}

.oa-module-grid p {
  margin: 4px 0 0;
  color: #70837e;
  font-size: 13px;
  line-height: 1.65;
}

.training-window {
  width: min(760px, calc(100vw - 48px));
  overflow-x: hidden;
}

.training-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 21px 30px 0;
}

.training-flow span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5c716c;
  font-size: 12px;
  font-weight: 700;
}

.training-flow i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.training-flow b {
  height: 1px;
  background: #cddbd7;
}

.integration-banner {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 19px 30px 0;
  padding: 11px 14px;
  background: #eaf5f1;
  border: 1px solid #d5e9e3;
  border-radius: 12px;
}

.integration-banner.not-configured {
  background: #fff7e8;
  border-color: #f0dfbe;
}

.integration-dot {
  width: 9px;
  height: 9px;
  background: #45aa82;
  border: 4px solid #d4eee4;
  border-radius: 50%;
  box-sizing: content-box;
}

.not-configured .integration-dot {
  background: #d58b31;
  border-color: #f7e8c9;
}

.integration-banner p,
.integration-banner b,
.integration-banner small {
  display: block;
  margin: 0;
}

.integration-banner b {
  font-size: 13px;
}

.integration-banner small {
  color: #788a86;
  font-size: 12px;
}

.training-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  min-width: 0;
  padding: 23px 30px 30px;
}

.form-field {
  display: block;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
}

.form-field em {
  color: #889994;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-width: 0;
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8e3df;
  border-radius: 10px;
  outline: 0;
  font: inherit;
  font-size: 14px;
}

.form-field input,
.form-field select {
  height: 43px;
  padding: 0 12px;
}

.form-field textarea {
  padding: 11px 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(22,132,123,.1);
}

.form-field input.identity-verified {
  color: #315b55;
  background: #edf7f4;
  border-color: #bfddd7;
}

.form-field .identity-field-note {
  padding: 2px 7px;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.form-field .identity-field-note[hidden] { display: none; }

.form-field > small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 2px;
}

.form-actions .button {
  min-width: 124px;
  min-height: 43px;
}

.booking-success {
  padding: 50px 30px 55px;
  text-align: center;
}

.booking-success > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 17px;
  color: #fff;
  background: #42a67f;
  border: 10px solid #dcf1e9;
  border-radius: 50%;
  box-sizing: content-box;
}

.booking-success svg {
  width: 28px;
  height: 28px;
}

.booking-success h3 {
  margin: 0 0 6px;
  font-size: 23px;
}

.booking-success p {
  margin: 0;
  color: #72847f;
  font-size: 14px;
}

.booking-success > div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.booking-success .button {
  min-height: 43px;
}

.drawer-layer {
  justify-items: end;
  padding: 0;
}

.reservation-drawer {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(520px, 92vw);
  height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: #f7f9f8;
  box-shadow: -30px 0 80px rgba(0,0,0,.25);
}

.reservation-list {
  display: grid;
  gap: 12px;
  padding: 19px 24px 24px;
  overflow: auto;
}

.loading-text {
  margin: 0;
  padding: 30px 18px;
  color: #7c8f89;
  text-align: center;
  font-size: 14px;
}

.reservation-item {
  padding: 17px;
  background: #fff;
  border: 1px solid #dce6e3;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(27,61,57,.04);
}

.reservation-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.reservation-item h3 {
  margin: 0;
  font-size: 16px;
}

.reservation-item-head small {
  display: block;
  color: #899a95;
  font-size: 12px;
}

.booking-status {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pending { color:#8c6324; background:#fff0c9; }
.status-confirmed { color:#17674b; background:#d9f0e6; }
.status-rescheduled { color:#2c5f8b; background:#dbeeff; }
.status-cancelled { color:#914545; background:#f9dede; }

.reservation-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 0;
}

.reservation-meta-grid div {
  padding: 9px 10px;
  background: #f2f6f4;
  border-radius: 9px;
}

.reservation-meta-grid small,
.reservation-meta-grid strong {
  display: block;
}

.reservation-meta-grid small {
  color: #8a9a96;
  font-size: 12px;
}

.reservation-meta-grid strong {
  font-size: 13px;
}

.reservation-note {
  margin: 10px 0 0;
  padding: 10px;
  color: #657873;
  background: #edf4f2;
  border-left: 3px solid #7cbeb0;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
}

.notify-state {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #849691;
  font-size: 12px;
}

.notify-state i {
  width: 7px;
  height: 7px;
  background: #54ad8a;
  border-radius: 50%;
}

.reservation-empty {
  display: grid;
  place-items: center;
  margin: auto;
  padding: 50px 30px;
  text-align: center;
}

.reservation-empty[hidden] {
  display: none;
}

.reservation-empty > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 20px;
}

.reservation-empty svg {
  width: 28px;
  height: 28px;
}

.reservation-empty h3 {
  margin: 16px 0 5px;
  font-size: 17px;
}

.reservation-empty p {
  max-width: 300px;
  margin: 0 0 20px;
  color: #7b8d88;
  font-size: 13px;
}

.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding: 14px 24px;
  background: #fff;
  border-top: 1px solid #dfe7e4;
}

.drawer-footer button {
  color: var(--teal);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 750;
}

.drawer-footer small {
  color: #879993;
  font-size: 12px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 24px 0;
}

.admin-summary article {
  padding: 10px;
  text-align: center;
  background: #fff;
  border: 1px solid #dce6e3;
  border-radius: 10px;
}

.admin-summary strong,
.admin-summary small {
  display: block;
}

.admin-summary strong {
  font-size: 18px;
}

.admin-summary small {
  color: #81938e;
  font-size: 12px;
}

.admin-response {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e7edeb;
}

.admin-response input,
.admin-response select,
.admin-response textarea {
  width: 100%;
  min-height: 35px;
  padding: 7px 9px;
  font: inherit;
  font-size: 12px;
  background: #f7f9f8;
  border: 1px solid #d8e3df;
  border-radius: 8px;
}

.admin-response textarea {
  grid-column: 1 / -1;
  min-height: 55px;
  resize: vertical;
}

.admin-response-buttons {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.admin-response-buttons button {
  min-height: 35px;
  color: #fff;
  cursor: pointer;
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 750;
}

.admin-response-buttons button:last-child {
  background: #4777a0;
}

@media (max-width: 1180px) {
  :root { --sidebar-width: 252px; }
  .sidebar { padding-right: 17px; padding-left: 17px; }
  .hero { gap: 42px; }
  .shell { width: min(100% - 52px, 1080px); }
  .sop-panel { grid-template-columns: .78fr 1.22fr; padding: 27px; }
  .access-layout { grid-template-columns: 1fr; }
  .access-visual { display: grid; grid-template-columns: 1.25fr .75fr; }
  .door-scene { min-height: 420px; }
  .visual-note { grid-template-columns: 48px 1fr; align-content: center; }
  .visual-note p { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 960px) {
  .sidebar {
    width: min(310px, 88vw);
    box-shadow: 20px 0 60px rgba(0,0,0,.22);
    transform: translateX(-105%);
    transition: transform 240ms ease;
  }

  body.nav-open .sidebar { transform: translateX(0); }

  .sidebar-mask {
    position: fixed;
    z-index: 25;
    inset: 0;
    background: rgba(8, 24, 28, .56);
    backdrop-filter: blur(4px);
  }

  .sidebar-mask[hidden] { display: none; }

  .mobile-menu-button,
  .sidebar-close {
    position: fixed;
    z-index: 35;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    cursor: pointer;
    border-radius: 13px;
  }

  .mobile-menu-button {
    top: 16px;
    left: 18px;
    color: #fff;
    background: #14343c;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 9px 26px rgba(14, 47, 55, .22);
  }

  .sidebar-close {
    position: absolute;
    top: 18px;
    right: 16px;
    color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
  }

  .mobile-menu-button svg,
  .sidebar-close svg { width: 20px; height: 20px; }

  .page { margin-left: 0; }
  .hero { min-height: auto; padding-top: 112px; }
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { grid-template-columns: repeat(2, 1fr); }
  .writing-templates { grid-template-columns: repeat(3, 1fr); }
  .template-heading { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 34px, 680px); }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-bottom: 68px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy > p { font-size: 16px; }
  .journey-card { padding: 23px; border-radius: 25px; }
  .module { padding: 84px 0; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading > p { margin-top: 14px; text-align: left; }
  .access-visual { display: block; }
  .door-scene { min-height: 410px; }
  .visual-note { grid-template-columns: 48px auto 1fr; }
  .visual-note p { grid-column: auto; text-align: right; }
  .time-cards { grid-template-columns: 1fr 1fr; }
  .daily-intro { align-items: flex-start; flex-direction: column; }
  .sop-tabs { grid-template-columns: 1fr 1fr; }
  .sop-panel { grid-template-columns: 1fr; min-height: 0; }
  .sop-copy { padding-bottom: 8px; }
  .real-shot, .mock-window { width: 100%; }
  .writing-templates { grid-template-columns: 1fr; }
  .template-heading { grid-column: auto; }
  .system-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 310px; }
  .system-toolbar-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .modal-layer { padding: 12px; }
  .modal-window { width: calc(100vw - 24px); max-height: calc(100vh - 24px); border-radius: 20px; }
  .modal-header { padding: 21px 20px 17px; }
  .modal-header h2 { font-size: 20px; }
  .guide-tabs { margin: 14px 20px 0; }
  .oa-guide-panel { grid-template-columns: 1fr; padding: 22px 20px 24px; }
  .oa-guide-panel[data-oa-panel="modules"] { grid-template-columns: 1fr; }
  .oa-workspace-mock { min-height: 430px; }
  .training-flow { grid-template-columns: 1fr; padding: 17px 20px 0; }
  .training-flow b { display: none; }
  .integration-banner { margin-right: 20px; margin-left: 20px; }
  .training-form { padding: 20px; }
  .contact-strip { grid-template-columns: 1fr 1fr; }
  .footer .shell { grid-template-columns: 1fr; gap: 8px; padding: 25px 0; }
  .footer a { margin-top: 7px; }
}

@media (max-width: 520px) {
  .auth-gate { padding: 15px; }
  .auth-gate-card { padding: 35px 23px; border-radius: 24px; }
  .auth-gate-card > p:not(.auth-gate-kicker) { font-size: 16px; }
  .hero { padding-top: 96px; }
  .hero h1 { font-size: 42px; }
  .hero h1 br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .task-item { grid-template-columns: 31px 1fr; }
  .task-item em { display: none; }
  .door-scene { min-height: 360px; }
  .scene-wall { right: 28px; left: 29%; }
  .scene-door { right: 48px; width: 165px; height: 295px; }
  .door-label { right: 83px; }
  .face-device { bottom: 132px; left: 66px; width: 75px; height: 126px; }
  .location-arrow { top: 84px; left: 22px; }
  .location-arrow i { width: 43px; }
  .visual-note { grid-template-columns: 44px 1fr; }
  .visual-note p { grid-column: 1 / -1; text-align: left; }
  .time-cards { grid-template-columns: 1fr; }
  .sop-tabs { grid-template-columns: 1fr; }
  .sop-tab { justify-content: flex-start; padding-left: 16px; }
  .sop-panel { padding: 22px 17px; border-radius: 20px; }
  .mock-window { min-height: 390px; }
  .goal-mock { grid-template-columns: 1fr; grid-template-rows: 52px 69px auto auto; }
  .mock-toolbar > div { gap: 8px; }
  .mock-toolbar b { font-size: 12px; }
  .goal-result { margin-top: 11px; }
  .goal-result > p { height: 70px; }
  .report-form { padding: 16px; }
  .submit-stage { padding: 20px; }
  .system-toolbar { align-items: stretch; flex-direction: column; }
  .system-search { width: 100%; }
  .guide-chip { justify-content: center; }
  .system-toolbar-actions { grid-template-columns: 1fr; }
  .guide-tabs { grid-template-columns: 1fr; }
  .guide-tab { justify-content: flex-start; padding-left: 14px; }
  .oa-workspace-mock { grid-template-columns: 78px 1fr; min-height: 390px; }
  .oa-mock-sidebar { padding: 12px 8px; }
  .oa-mini-logo { margin: 2px 4px 16px; }
  .oa-mock-sidebar b { gap: 5px; padding: 6px 4px; font-size: 12px; }
  .oa-mock-sidebar i { width: 20px; height: 20px; }
  .oa-mock-main { padding: 12px; }
  .oa-metric-grid { grid-template-columns: 1fr; }
  .oa-metric-grid article { min-height: 72px; }
  .oa-metric-grid article:nth-child(3) { display: none; }
  .oa-todo-list { min-height: 120px; }
  .oa-module-grid { grid-template-columns: 1fr; }
  .oa-module-grid article { min-height: 105px; }
  .training-form { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-field > span { align-items: flex-start; flex-direction: column; gap: 3px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .booking-success > div { flex-direction: column; }
  .reservation-meta-grid { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
  .footer-brand strong { max-width: 220px; }
  .toast { right: 17px; bottom: 17px; left: 17px; min-width: 0; }
}

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