:root {
  --text: #172033;
  --muted: #667085;
  --line: #d9dee8;
  --panel: #ffffff;
  --soft: #f6f8fb;
  --primary: #214ecb;
  --danger: #c9252d;
}

html, body { min-height: 100%; }
body {
  background: #fff;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
.app-header { border-bottom: 1px solid var(--line); background: #fff; padding: 12px 0; }
.app-header .container-xl { display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--text); font-weight: 700; text-decoration: none; }
.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 34px;
  overflow: hidden;
}
.brand-logo img {
  display: block;
  width: 118px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.header-tools { display: flex; align-items: center; gap: 22px; color: #111827; font-weight: 700; }
.help-link { font-size: .95rem; }
.profile-chip { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #eef1f6; font-size: .9rem; }
main { padding: 36px 0; }
.center-shell { min-height: calc(100vh - 130px); display: grid; place-items: center; }
.assessment-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 30px rgba(19, 32, 59, .07); }
.intro-card { max-width: 720px; padding: 42px; }
.eyebrow { color: var(--primary); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
h1 { font-size: clamp(2rem, 3vw, 3rem); font-weight: 750; letter-spacing: 0; margin-bottom: 14px; }
.lead { color: #3b465c; font-size: 1.1rem; line-height: 1.65; }
.muted { color: var(--muted); }
.requirement-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 28px 0; }
.requirement-grid div { border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; background: var(--soft); font-weight: 600; }
.intro-actions, .actions-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn { border-radius: 6px; font-weight: 650; padding: 10px 18px; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.startup-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(255,255,255,.94); display: grid; place-items: center; }
.loading-card { padding: 24px 30px; display: flex; gap: 12px; align-items: center; }
.loading-card p { margin: 0; font-weight: 650; }
.loading-line, .top-progress { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: #edf0f5; overflow: hidden; z-index: 1001; }
.loading-line span { display: block; width: 38%; height: 100%; background: var(--primary); animation: loading-sweep 1.3s infinite ease-in-out; }
@keyframes loading-sweep { 0% { transform: translateX(-110%); } 100% { transform: translateX(270%); } }
.setup-grid, .screening-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 24px; max-width: 1200px; margin: 0 auto; align-items: start; }
.setup-grid .assessment-card, .question-card, .preview-card { padding: 28px; }
.video-frame { width: 100%; aspect-ratio: 16 / 9; background: #05070b; border-radius: 8px; object-fit: cover; display: block; }
.device-status { display: grid; gap: 10px; margin: 24px 0; }
.device-status div { border: 1px solid var(--line); border-radius: 6px; padding: 12px; background: var(--soft); }
.device-status span { color: var(--muted); }
.small-status { color: var(--muted); font-size: .92rem; min-height: 22px; }
.screening-shell { max-width: 1200px; margin: 0 auto; }
.top-progress { position: sticky; top: 0; z-index: 10; }
.top-progress span { display: block; height: 100%; width: 0; background: var(--primary); transition: width .25s ease; }
.screening-topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 16px 0 28px; }
.screening-title { font-weight: 750; }
.question-position { font-weight: 750; color: #30394c; }
.progress-dots { display: flex; justify-content: end; gap: 8px; }
.progress-dots span { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #99a4b8; display: inline-block; }
.progress-dots .active { background: var(--primary); border-color: var(--primary); }
.interstitial { min-height: 360px; display: grid; place-items: center; align-content: center; gap: 14px; color: #3b465c; font-weight: 650; }
.question-card h1 { font-size: clamp(1.65rem, 2.2vw, 2.45rem); line-height: 1.25; }
.timer-block { border: 1px solid var(--line); border-radius: 6px; padding: 16px; background: var(--soft); margin-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.timer-block strong { font-size: 1.45rem; font-variant-numeric: tabular-nums; }
.timer-warning { border-color: #e6a900; background: #fff8e1; }
.timer-critical { border-color: var(--danger); background: #fff0f1; }
.recording-indicator { color: var(--danger); font-weight: 750; }
.recording-indicator i { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: var(--danger); margin-right: 7px; animation: pulse 1s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .28; } }
.audio-meter { height: 8px; width: 120px; background: #e1e6ef; border-radius: 999px; overflow: hidden; }
.audio-meter span { display: block; height: 100%; width: 0; background: var(--primary); transition: width .08s linear; }
.completion-panel { margin-top: 26px; }
.completion-panel h2 { font-size: 1.2rem; margin-bottom: 14px; }
.playback-frame { object-fit: contain; background: #05070b; }
.completion-stat { border: 1px solid var(--line); border-radius: 6px; padding: 14px 16px; margin: 24px 0; background: var(--soft); }
.review-shell { max-width: 1000px; margin: 0 auto; }
.review-heading { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 22px; }
.review-list { display: grid; gap: 18px; }
.review-item { padding: 24px; }
.review-item h2 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
@media (max-width: 900px) {
  .setup-grid, .screening-grid { grid-template-columns: 1fr; }
  .screening-topbar { grid-template-columns: 1fr; }
  .progress-dots { justify-content: start; }
  .intro-card { padding: 28px; }
}
@media (max-width: 560px) {
  main { padding: 22px 0; }
  .requirement-grid { grid-template-columns: 1fr; }
  .timer-block { align-items: flex-start; flex-direction: column; }
}

.screening-reference {
  max-width: none;
  margin: -36px calc(50% - 50vw) 0;
  min-height: calc(100vh - 67px);
  background: linear-gradient(180deg, #fff 0, #fff 92px, #f8fafc 92px, #fff 100%);
}
.screening-reference .interstitial {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 520px;
}
.interview-header {
  display: grid;
  grid-template-columns: 260px minmax(280px, 650px) 220px;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid #dde3ec;
  padding: 18px 40px;
  min-height: 92px;
}
.interview-header h1 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0 0 5px;
  font-weight: 800;
}
.interview-header p {
  color: #667085;
  margin: 0;
  font-size: .95rem;
}
.header-progress {
  height: 8px;
  border-radius: 999px;
  background: #e4e9f1;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, .04);
}
.header-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #1f5a85;
  border-radius: inherit;
  transition: width .25s ease;
}
.screening-reference .question-position {
  color: #101828;
  justify-self: end;
  font-weight: 800;
  font-size: 1rem;
}
.interview-stage {
  max-width: 1260px;
  margin: 24px auto 72px;
  padding: 0 24px;
}
.interview-card {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(25, 42, 70, .08);
  padding: 24px 38px 20px;
}
.question-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 4px 10px;
  background: #eef2f7;
  color: #475467;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 14px;
}
.interview-question {
  max-width: 1000px;
  font-size: 1.34rem;
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: 0;
  color: #111827;
  margin: 0 0 22px;
}
.question-meta {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: #2456c7;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  margin: -6px 0 10px;
}
.interview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e1e7ef;
  border-radius: 9px;
  margin: 0 0 14px;
  overflow: hidden;
}
.stat-cell {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  min-height: 98px;
  padding: 20px 24px;
  background: #fff;
}
.stat-cell + .stat-cell {
  border-left: 1px solid #e1e7ef;
}
.stat-icon {
  color: #0f172a;
  font-size: 1.55rem;
  line-height: 1;
  padding-top: 5px;
}
.stat-cell span {
  color: #475467;
  font-weight: 750;
  font-size: .94rem;
}
.stat-cell strong {
  display: block;
  color: #111827;
  font-size: 1.34rem;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}
.stat-cell p {
  color: #667085;
  margin: 5px 0 0;
  line-height: 1.35;
  font-size: .9rem;
}
.stat-cell.timer-warning {
  background: #fff8e1;
}
.stat-cell.timer-critical {
  background: #fff0f1;
}
.camera-panel {
  position: relative;
  width: min(690px, 76%);
  margin: 14px auto 0;
  aspect-ratio: 16 / 6.8;
  background: #08090b;
  border-radius: 7px;
  overflow: hidden;
}
.interview-video,
.camera-panel .playback-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}
.camera-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255,255,255,.06), rgba(0,0,0,.6));
  pointer-events: auto;
}
.camera-overlay strong {
  font-size: 1.1rem;
}
.camera-overlay span {
  font-size: .95rem;
}
.camera-open-button {
  margin-top: 8px;
  border: 0;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.camera-off-icon {
  font-size: 2rem;
  transform: rotate(-12deg);
}
.interview-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.action-cluster {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.previous-button {
  min-width: 126px;
  color: #98a2b3;
  background: #fff;
  border-color: #dbe2eb;
}
.interview-actions .btn-primary {
  min-width: 172px;
}
.record-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d92d20;
  margin-right: 10px;
  vertical-align: -1px;
}
.muted-dot {
  background: #9aa8ba;
}
.interview-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 38px;
  border-top: 1px solid #dfe5ee;
  background: rgba(255,255,255,.96);
  color: #667085;
  font-size: .86rem;
}
.screening-reference .progress-dots {
  justify-content: flex-end;
  gap: 7px;
}
.screening-reference .progress-dots span {
  width: 9px;
  height: 9px;
}
.screening-reference .progress-dots .active {
  background: #2456c7;
  border-color: #2456c7;
}
.screening-reference .completion-panel {
  text-align: center;
  margin-top: 12px;
}
.screening-reference .audio-meter {
  width: 150px;
  margin-top: 8px;
}
.screening-reference .recording-indicator {
  color: #d92d20;
}

@media (max-width: 1000px) {
  .interview-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .screening-reference .question-position {
    justify-self: start;
  }
  .interview-card {
    padding: 24px;
  }
  .interview-stats {
    grid-template-columns: 1fr;
  }
  .stat-cell + .stat-cell {
    border-left: 0;
    border-top: 1px solid #e1e7ef;
  }
  .camera-panel {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

@media (max-height: 850px) and (min-width: 900px) {
  .interview-header {
    min-height: 82px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .interview-stage {
    margin-top: 20px;
  }
  .interview-card {
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .question-pill {
    margin-bottom: 10px;
  }
  .interview-question {
    font-size: 1.22rem;
    line-height: 1.26;
    margin-bottom: 18px;
  }
  .stat-cell {
    min-height: 86px;
    padding: 16px 22px;
  }
  .stat-cell strong {
    font-size: 1.22rem;
  }
  .stat-cell p {
    font-size: .84rem;
  }
  .camera-panel {
    width: min(620px, 68%);
    aspect-ratio: 16 / 5.3;
    margin-top: 12px;
  }
  .interview-actions {
    margin-top: 14px;
  }
  .interview-footer {
    position: static;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .screening-reference {
    margin-top: -22px;
  }
  .interview-header {
    padding: 16px 20px;
  }
  .interview-stage {
    padding: 0 12px;
    margin-bottom: 92px;
  }
  .interview-question {
    font-size: 1.18rem;
  }
  .interview-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .action-cluster,
  .interview-actions .btn {
    width: 100%;
  }
  .interview-footer {
    flex-direction: column;
    padding: 10px 18px;
  }
}

.question-minimal {
  max-width: none;
  margin: -36px calc(50% - 50vw) 0;
  min-height: calc(100vh - 67px);
  background: #fff;
}
.question-minimal .question-progress {
  max-width: 380px;
  height: 6px;
  background-color: #e9ecef;
}
.question-minimal .progress-bar {
  background-color: #12051c;
}
.question-minimal .interstitial {
  min-height: 420px;
  font-size: .9rem;
}
.question-canvas {
  max-width: 980px;
  padding-top: 72px;
  text-align: left;
}
.question-open-layout {
  max-width: 560px;
  padding-top: 112px;
  text-align: left;
}
.question-open-action {
  padding-top: 76px;
  text-align: right;
}
.question-camera-box,
.question-open-layout .playback-frame {
  width: 100%;
  max-width: 560px;
  margin-left: 0;
  border-radius: 3px;
}
.post-record-row {
  width: 100%;
  max-width: 560px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.post-action-btn {
  min-width: 64px;
  height: 22px;
  padding: 0 .65rem;
  border-radius: 4px;
  font-size: .72rem;
  line-height: 20px;
  background: #242938;
  border-color: #242938;
}
.post-action-btn:disabled {
  opacity: .65;
  background: #242938;
  border-color: #242938;
  color: #fff;
}
.question-top-progress {
  position: fixed;
  left: 70px;
  right: 70px;
  top: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  color: #999;
  font-weight: 700;
  z-index: 20;
}
.question-top-progress .progress {
  height: 4px;
  background: #eeeaf1;
}
.question-top-progress .progress-bar {
  background: #12051c;
}
.question-copy {
  color: #171326;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.question-canvas > .btn {
  display: block;
  margin: 0 auto;
  border-radius: .25rem;
  background-color: #12051c;
  border-color: #12051c;
  font-size: .95rem;
}
.minimal-video {
  max-width: 640px;
  margin: 0 auto;
}
.minimal-camera-box {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: .375rem;
  background: #09090b;
}
.minimal-camera-box .minimal-video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.minimal-camera-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .5rem;
  background: radial-gradient(circle at center, rgba(255,255,255,.06), rgba(0,0,0,.62));
}
.question-minimal .audio-meter {
  width: 150px;
}

@media (max-height: 850px) and (min-width: 900px) {
  .question-open-layout {
    padding-top: 78px;
  }
  .question-canvas {
    padding-top: 56px;
  }
}

@media (max-width: 768px) {
  .question-minimal {
    margin-top: -22px;
  }
  .question-canvas {
    padding-top: 120px;
  }
  .question-open-layout {
    padding-top: 80px;
  }
  .question-open-action {
    padding-top: 0;
    text-align: left;
  }
  .question-top-progress {
    left: 24px;
    right: 24px;
  }
}

.camera-setup-body .header-tools {
  display: none;
}
.intro-screen-body .header-tools {
  display: none;
}
.question-screen-body .header-tools {
  display: none;
}
.complete-screen-body .header-tools {
  display: none;
}
.camera-setup-body .app-header {
  display: none;
}
.intro-screen-body .app-header {
  padding: 14px 0;
}
.intro-screen-body .app-header .container-xl {
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
  justify-content: flex-start;
}
.intro-screen-body .brand-logo {
  width: 150px;
  height: 58px;
}
.intro-screen-body .brand-logo img {
  width: 150px;
  height: 78px;
}
.camera-setup-body main {
  padding: 0;
}
.camera-access-screen {
  min-height: 100vh;
  margin: -36px calc(50% - 50vw) 0;
  border-top: 1px solid #eef0f4;
  background: #fff;
  position: relative;
}
.camera-access-copy {
  width: 100%;
  margin: 0 0 22px;
  padding-top: 0;
}
.camera-access-copy h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #3d3948;
  font-size: 1.85rem;
  line-height: 1.18;
  font-weight: 500;
}
.camera-access-copy p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #9aa0ad;
  font-size: .9rem;
  line-height: 1.55;
}
.camera-access-copy .btn {
  display: block;
  margin-left: auto;
  margin-right: 44px;
  background: #242938;
  border-color: #242938;
  border-radius: 4px;
  font-size: .78rem;
}
.camera-test-panel {
  width: 100%;
  margin: 18px auto 0;
  text-align: center;
}
.setup-preview {
  width: 100%;
  margin: 0 auto;
  border-radius: 7px;
}
.setup-recording-controls {
  width: 100%;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.setup-audio-icon {
  color: #667085;
  font-size: .8rem;
}
.setup-audio-meter {
  display: inline-flex;
  align-items: end;
  width: 10px;
  height: 30px;
}
.setup-audio-meter span {
  display: block;
  width: 8px;
  height: 8px;
  background: #17a34a;
  border-radius: 2px;
}
.setup-recording-controls .btn {
  margin-left: auto;
}
.complete-screen {
  min-height: calc(100vh - 67px);
  display: grid;
  place-items: center;
  margin: -36px calc(50% - 50vw) 0;
  background: #fff;
}
.complete-screen h1 {
  color: #3d3948;
  font-size: 1.9rem;
  font-weight: 500;
}

.camera-setup-header {
  height: 102px;
}
.camera-setup-main {
  height: calc(100vh - 102px);
}
.camera-setup-stage {
  padding-top: 86px;
}

.assessment-video-body .app-header {
  display: none;
}
.assessment-video-body {
  overflow-x: hidden;
}
.assessment-video-body main {
  padding: 0;
}
.assessment-video-page {
  min-height: 100vh;
  margin: 0 calc(50% - 50vw);
  background: #fff;
}
.assessment-video-header {
  height: 112px;
  display: grid;
  grid-template-columns: 260px 1fr 340px;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid #e6e9ef;
}
.assessment-logo {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 58px;
  overflow: hidden;
  text-decoration: none;
}
.assessment-logo img {
  width: 150px;
  height: 78px;
  object-fit: contain;
}
.assessment-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #30384a;
  font-size: 1.25rem;
  font-weight: 750;
}
.assessment-progress {
  width: 205px;
  height: 14px;
  border-radius: 999px;
  background: #e4e8ef;
}
.assessment-progress .progress-bar {
  background: #27c28a;
  border-radius: inherit;
}
.assessment-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.assessment-total-time {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #30384a;
  font-size: 1.25rem;
  font-weight: 750;
}
.clock-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.assessment-submit {
  min-width: 162px;
  height: 54px;
  border: 0;
  border-radius: 7px;
  background: #d8dce5;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 650;
}
.assessment-submit:not(:disabled) {
  background: #242938;
  color: #fff;
}
.assessment-video-main {
  height: calc(100vh - 112px);
  display: grid;
  place-items: start center;
  overflow: hidden;
}
.assessment-video-stage {
  width: min(620px, calc(100vw - 40px));
  padding-top: 62px;
  text-align: center;
}
.question-strip {
  text-align: left;
  margin-bottom: 22px;
}
.question-strip .question-copy {
  margin-top: 10px;
  font-size: .96rem;
  line-height: 1.4;
}
.recording-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 18px;
}
.prep-count {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  font-size: 1.35rem;
  font-weight: 750;
}
.start-recording-btn {
  height: 62px;
  min-width: 264px;
  border: 0;
  border-radius: 8px;
  background: #0768c8;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 750;
}
.start-recording-btn:hover,
.start-recording-btn:focus {
  background: #075eb4;
  color: #fff;
}
.start-recording-btn .record-dot {
  width: 25px;
  height: 25px;
  margin-right: 14px;
  background: #ff3046;
  vertical-align: -5px;
}
.camera-live-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 7px;
  background: #111;
  margin: 0 auto;
}
.camera-live-video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
}
.camera-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #c7cbd4;
  background: #111;
  font-size: .9rem;
}
.camera-live-frame.has-stream .camera-placeholder {
  display: none;
}
.camera-helper {
  margin: 14px 0 0;
  color: #667085;
  font-size: .86rem;
}
.recording-status {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.recording-status .audio-meter {
  width: 90px;
}

@media (max-height: 820px) and (min-width: 900px) {
  .assessment-video-header {
    height: 92px;
  }
  .assessment-video-main {
    height: calc(100vh - 92px);
  }
  .assessment-video-stage {
    width: min(560px, calc(100vw - 40px));
    padding-top: 40px;
  }
  .recording-toolbar {
    margin-bottom: 14px;
  }
  .start-recording-btn {
    height: 54px;
  }
  .camera-live-frame {
    aspect-ratio: 16 / 9.5;
  }
}

@media (max-width: 768px) {
  .camera-access-copy {
    padding-top: 84px;
  }
  .camera-access-copy h1 {
    font-size: 1.55rem;
  }
  .camera-access-copy .btn {
    margin-left: 0;
    margin-right: 0;
  }
}
