@font-face{
  font-family:"Nexa";
  src:url("../fonts/nexa_book.woff2") format("woff2");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Nexa";
  src:url("../fonts/nexa_regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Nexa";
  src:url("../fonts/nexa_heavy.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Nexa";
  src:url("../fonts/nexa_x_bold.woff2") format("woff2");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Nexa";
  src:url("../fonts/nexa_black.woff2") format("woff2");
  font-weight:900;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#08090c;
  --bg2:#0b0d12;
  --panel:#11141b;
  --text:#f4f1ea;
  --muted:rgba(244,241,234,.68);
  --soft:rgba(244,241,234,.48);
  --line:rgba(244,241,234,.12);
  --line2:rgba(244,241,234,.18);
  --accent:#e7c46b;
  --accent2:#f7e7b3;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --shadow2:0 14px 34px rgba(0,0,0,.24);
}

*{
  box-sizing:border-box;
}

html{
  min-height:100%;
  background:var(--bg);
}

body{
  min-height:100%;
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(231,196,107,.13), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(244,241,234,.055), transparent 26rem),
    linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--text);
  font-family:"Nexa", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight:400;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

button,
input,
select,
textarea{
  font-family:inherit;
}

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

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

h1{
  margin:0;
  max-width:980px;
  font-size:clamp(42px,6vw,76px);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
}

h2{
  margin:0 0 18px;
  font-size:30px;
  line-height:1;
  letter-spacing:-.03em;
  font-weight:900;
}

h3{
  font-weight:900;
}

.panel{
  margin-top:28px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  box-shadow:var(--shadow);
}

.landingPanel{
  margin-top:28px;
}

.sectionHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.sectionHead p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.45;
}

.landingHead{
  margin-bottom:22px;
}

.landingHead p{
  margin-top:16px;
  max-width:760px;
  font-size:20px;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.card{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:132px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.04);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.card:hover{
  transform:translateY(-2px);
  border-color:rgba(231,196,107,.36);
  background:rgba(255,255,255,.06);
}

.card h3{
  margin:0;
  font-size:20px;
  line-height:1.05;
  letter-spacing:-.02em;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.45;
  font-size:14px;
}

.card .meta{
  display:none;
}

.examCard{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:10px;
  width:100%;
  min-height:132px;
  padding:18px 18px 16px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(255,255,255,.026);
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  box-shadow:var(--shadow2);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.examCard:hover{
  transform:translateY(-2px);
  border-color:rgba(231,196,107,.42);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
}

.examCard h3{
  margin:0;
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.04em;
}

.examCard p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.42;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
}

.btn:hover{
  border-color:rgba(231,196,107,.36);
  background:rgba(255,255,255,.065);
}

.btn.primary{
  background:var(--accent);
  color:#111;
  border-color:transparent;
}

.btn.primary:hover{
  background:var(--accent2);
}

.smallbtn{
  min-height:36px;
  font-size:13px;
}

.notice{
  margin:20px 0;
  padding:14px 16px;
  border:1px solid rgba(231,196,107,.28);
  border-radius:16px;
  background:rgba(231,196,107,.08);
  color:var(--accent2);
  line-height:1.45;
}

.professionalNotice,
.useBoundary,
.safetyNotice{
  width:100%;
  margin-top:14px;
  padding:14px 15px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.45;
  letter-spacing:.01em;
}

.professionalNotice strong,
.safetyNotice strong{
  color:rgba(255,255,255,.94);
  font-weight:900;
}

.useBoundary{
  margin-top:10px;
  background:rgba(0,0,0,.18);
  color:rgba(255,255,255,.62);
  font-size:12px;
}

.examNotice,
.resultNotice{
  margin:0 0 16px;
}

.safetyNotice{
  margin:0 0 16px;
  border-color:rgba(255,210,120,.35);
  background:rgba(255,190,90,.08);
  color:rgba(255,245,220,.88);
}

.boundaryText{
  margin-top:10px;
  color:rgba(255,255,255,.58);
  font-size:12px;
  line-height:1.45;
}

#examPanel{
  position:relative;
}

#examPanel .sectionHead{
  position:relative;
  display:block;
  padding-right:96px;
}

#backToExams{
  position:absolute;
  top:0;
  right:0;
}

.question{
  display:block;
  padding:18px 0;
  border-top:1px solid var(--line);
}

.question h3{
  margin:0 0 12px;
  font-size:17px;
  line-height:1.4;
  letter-spacing:-.01em;
}

.options{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:8px;
  width:100%;
}

.option{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  min-height:48px;
  padding:0;
  border:0;
  border-radius:14px;
  overflow:hidden;
  text-align:center;
  white-space:nowrap;
  line-height:1;
  cursor:pointer;
}

.option input{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:1px;
  height:1px;
}

.option span,
.answerButtonText{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  padding:0 6px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.035);
  color:var(--muted);
  font-size:12px;
  line-height:1;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:clip;
  cursor:pointer;
  transition:
    border-color .16s ease,
    background .16s ease,
    color .16s ease;
}

.option span:hover,
.answerButtonText:hover{
  border-color:rgba(231,196,107,.28);
  color:var(--text);
}

.option input:checked + span,
.option input:checked + .answerButtonText{
  border-color:var(--accent);
  color:var(--text);
  background:rgba(231,196,107,.13);
}

.formActions,
.resultActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.resultBlock{
  padding:18px;
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.035);
}

.resultBlock h2,
.resultBlock h3{
  margin-top:0;
}

.resultBlock p{
  color:var(--muted);
  line-height:1.5;
}

.score{
  font-size:54px;
  line-height:1;
  letter-spacing:-.06em;
  font-weight:900;
}

.kv{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:8px 16px;
}

.kv div{
  padding:8px 0;
  border-bottom:1px solid var(--line);
}

.hidden{
  display:none !important;
}

/* MIRRORBOARD GUIDED MODE START */
.guidedControls{
  width:100%;
  margin:0 0 18px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(255,255,255,.025);
}

.guidedTopline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.guidedEyebrow{
  margin:0 0 4px;
  color:var(--accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.guidedProgress{
  color:var(--text);
  font-size:18px;
  font-weight:800;
  letter-spacing:-.03em;
}

.guidedSpeak{
  appearance:none;
  -webkit-appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 14px;
  border:1px solid rgba(231,196,107,.34);
  border-radius:999px;
  background:rgba(231,196,107,.10);
  color:var(--text);
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:
    transform .16s ease,
    border-color .16s ease,
    background .16s ease;
}

.guidedSpeak:hover{
  transform:translateY(-1px);
  border-color:rgba(231,196,107,.55);
  background:rgba(231,196,107,.16);
}

.guidedExamMode .guidedHiddenQuestion{
  display:none !important;
}

.guidedExamMode .guidedActiveQuestion{
  display:block !important;
}

.guidedExamMode .guidedSubmitHidden{
  display:none !important;
}

.guidedExamMode .guidedSubmitVisible{
  display:inline-flex !important;
}

.guidedExamMode .question,
.guidedExamMode .questionCard,
.guidedExamMode fieldset{
  min-height:260px;
}
/* MIRRORBOARD GUIDED MODE END */

@media(max-width:1000px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }

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

@media(max-width:760px){
  #examPanel .sectionHead{
    padding-right:86px;
  }

  #backToExams{
    top:0;
    right:0;
  }

  .options{
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:5px;
  }

  .option span,
  .answerButtonText{
    min-height:44px;
    padding:0 3px;
    font-size:10px;
    letter-spacing:-.04em;
  }
}

@media(max-width:720px){
  .guidedTopline{
    align-items:flex-start;
    flex-direction:column;
  }

  .guidedSpeak{
    width:100%;
  }
}

@media(max-width:700px){
  .sectionHead{
    flex-direction:column;
  }

  #examPanel .sectionHead{
    display:block;
  }

  .resultActions{
    width:100%;
  }
}

@media(max-width:560px){
  .shell{
    width:min(100% - 24px, 1160px);
    padding-top:24px;
  }

  .panel{
    padding:18px;
    border-radius:20px;
  }

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

  h1{
    font-size:36px;
  }

  h2{
    font-size:26px;
  }

  .landingHead p{
    font-size:16px;
  }

  .card,
  .examCard{
    min-height:126px;
    padding:14px;
  }

  .card h3,
  .examCard h3{
    font-size:17px;
  }

  .card p,
  .examCard p{
    font-size:12px;
  }

  .kv{
    grid-template-columns:1fr;
  }
}

@media(max-width:420px){
  .options{
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:4px;
  }

  .option span,
  .answerButtonText{
    min-height:42px;
    padding:0 2px;
    font-size:9px;
    letter-spacing:-.05em;
  }
}

/* SIMPLE QUESTION SPEAKER CLEANUP */
.guidedControls,
.guidedTopline,
.guidedEyebrow,
.guidedProgress,
.guidedSpeak{
  display:none !important;
}

.guidedExamMode .question{
  min-height:0 !important;
  padding:18px 0 20px;
}

.questionTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:0 0 10px;
}

.questionCount{
  color:var(--accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.questionSpeak{
  appearance:none;
  -webkit-appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:38px;
  height:38px;
  border:1px solid rgba(231,196,107,.32);
  border-radius:999px;
  background:rgba(231,196,107,.08);
  color:var(--accent2);
  cursor:pointer;
}

.questionSpeak:hover{
  border-color:rgba(231,196,107,.55);
  background:rgba(231,196,107,.14);
}

.questionSpeak svg{
  display:block;
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.guidedExamMode .formActions{
  margin-top:18px;
}

.guidedExamMode .guidedSubmitHidden{
  display:none !important;
}

.guidedExamMode .guidedSubmitVisible{
  display:inline-flex !important;
}

/* QUESTION ROW CLEANUP */
#backToExams{
  width:42px;
  height:42px;
  min-height:42px;
  padding:0;
}

#backToExams svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.guidedExamMode .question{
  min-height:0 !important;
  padding:16px 0 0 !important;
  border-top:1px solid var(--line);
}

.questionTop{
  display:block !important;
  margin:0 0 12px !important;
}

.questionCount{
  color:var(--accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.questionLine{
  display:grid;
  grid-template-columns:1fr 28px;
  align-items:start;
  gap:10px;
  margin-left:5px;
}

.questionLine h3{
  margin:0 0 14px !important;
  font-size:18px;
  line-height:1.34;
  letter-spacing:-.015em;
}

.questionSpeak{
  appearance:none;
  -webkit-appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  margin-top:2px;
  padding:0;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:var(--accent2);
  cursor:pointer;
  opacity:.88;
}

.questionSpeak:hover{
  background:transparent !important;
  color:var(--accent);
  opacity:1;
}

.questionSpeak svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.guidedExamMode .options{
  margin-top:0;
}

.guidedExamMode .formActions{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.guidedExamMode .formActions .btn{
  width:100%;
  min-height:48px;
}

.guidedExamMode .formActions .btn.primary.guidedSubmitHidden{
  display:none !important;
}

.guidedExamMode .formActions .btn.primary.guidedSubmitVisible{
  display:inline-flex !important;
}

@media(max-width:560px){
  .questionLine{
    grid-template-columns:1fr 26px;
    gap:8px;
    margin-left:3px;
  }

  .questionLine h3{
    font-size:17px;
  }

  .questionSpeak{
    width:26px;
    height:26px;
  }
}


/* MIRRORBOARD_FIX_HOME_RESULT_AND_VIEW_PATTERN_20260702 */
.btn:disabled,
.btn[aria-disabled="true"]{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
}

.resultHomeButton{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  min-width:38px;
  height:38px;
  padding:0;
}

.resultHomeButton svg{
  width:18px;
  height:18px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
