:root {
  color-scheme: dark;
  --night: #020814;
  --panel: rgba(7, 25, 43, 0.84);
  --line: rgba(118, 187, 249, 0.27);
  --line-hi: rgba(124, 196, 255, 0.54);
  --text: #edf4fb;
  --muted: #8ea4ba;
  --blue: #79c1ff;
  --green: #67cbb1;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  background: #01050b;
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: #01050b;
  font-family: var(--serif);
}
button,
a {
  font: inherit;
}
.glass {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(9, 31, 53, 0.93),
    rgba(3, 15, 27, 0.88)
  );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 40px rgba(60, 135, 204, 0.04);
  backdrop-filter: blur(12px);
}
.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: linear-gradient(to bottom, rgba(1, 7, 15, 0.86), transparent);
  font: 10px var(--sans);
  letter-spacing: 0.28em;
}
.header-product {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 88px;
  height: auto;
}
.header-divider {
  width: 1px;
  height: 14px;
  margin: 0 18px;
  background: rgba(142, 164, 186, 0.34);
}
.header-label {
  color: #a8b8c8;
}
.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid rgba(123, 195, 255, 0.34);
  border-radius: 999px;
  color: #d9e8f5;
  background: rgba(5, 22, 39, 0.58);
  box-shadow: inset 0 0 22px rgba(69, 145, 211, 0.04);
  backdrop-filter: blur(10px);
  text-decoration: none;
  letter-spacing: 0.16em;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.header-login span {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0;
}
.header-login:hover,
.header-login:focus-visible {
  border-color: rgba(147, 208, 255, 0.82);
  background: rgba(15, 48, 77, 0.78);
  box-shadow: 0 0 22px rgba(77, 164, 244, 0.2);
  outline: 0;
}
.story {
  height: 900vh;
}
.stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 43%,
    #0d2945 0,
    #061426 28%,
    #020814 66%,
    #01050c 100%
  );
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(83, 146, 204, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 146, 204, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 14vw rgba(0, 4, 10, 0.78);
}
.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.7;
}
.ambient::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  border: 1px solid rgba(96, 174, 241, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 100px rgba(57, 133, 203, 0.12);
}
.ambient i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #8bcaff;
  box-shadow: 0 0 10px #4da8f5;
}
.ambient i:nth-child(1) {
  left: 14%;
  top: 24%;
}
.ambient i:nth-child(2) {
  left: 81%;
  top: 19%;
}
.ambient i:nth-child(3) {
  left: 72%;
  top: 77%;
}
.ambient i:nth-child(4) {
  left: 25%;
  top: 68%;
}
.ambient i:nth-child(5) {
  left: 54%;
  top: 15%;
}
.chapter-heading {
  position: absolute;
  z-index: 20;
  top: 9vh;
  width: 100%;
  text-align: center;
}
.chapter-no {
  position: absolute;
  right: clamp(28px, 7vw, 110px);
  top: 8px;
  color: #607a94;
  font: 9px var(--sans);
  letter-spacing: 0.2em;
}
.chapter-kicker {
  margin: 0;
  color: var(--blue);
  font: 9px var(--sans);
  letter-spacing: 0.2em;
}
.chapter-heading h1 {
  margin: 10px 0 7px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}
.chapter-copy {
  margin: 0;
  color: #afbdca;
  font-size: clamp(12px, 1.1vw, 16px);
  letter-spacing: 0.05em;
}
.layer {
  position: absolute;
  z-index: 5;
  inset: 0;
}
.position-layer {
  top: 52%;
  left: 50%;
  display: grid;
  grid-template-columns: 180px minmax(520px, 760px);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  width: min(1120px, 90vw);
  height: max-content;
  transform: translate(-50%, -42%);
}
.job-state {
  text-align: center;
  color: #a7b7c6;
  font: 12px var(--sans);
}
.briefcase {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border: 1px solid rgba(118, 190, 255, 0.48);
  border-radius: 50%;
  box-shadow:
    0 0 36px rgba(83, 167, 246, 0.25),
    inset 0 0 32px rgba(45, 115, 180, 0.18);
}
.briefcase span {
  position: relative;
  width: 35px;
  height: 26px;
  border: 2px solid #bcd4e9;
  border-radius: 3px;
}
.briefcase span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: -10px;
  width: 13px;
  height: 8px;
  border: 2px solid #bcd4e9;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.job-form {
  padding: 26px 28px;
  border-radius: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 16px;
}
.form-row:last-child {
  margin: 0;
}
.form-row label {
  padding-top: 10px;
  color: var(--muted);
  font: 11px var(--sans);
}
.field {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(101, 170, 234, 0.22);
  border-radius: 5px;
  background: rgba(2, 14, 27, 0.7);
  font-size: 13px;
  line-height: 1.75;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags span,
.skill-bank span,
.answer-skills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #b7c9d9;
  background: #081d31;
  font: 10px var(--sans);
}
.generation-layer {
  opacity: 0;
  visibility: hidden;
}
.skill-bank,
.question-bank {
  position: absolute;
  top: 50%;
  display: grid;
  gap: 9px;
  transform: translateY(-35%);
}
.skill-bank {
  left: max(5vw, 50% - 530px);
  width: 190px;
}
.question-bank {
  right: max(5vw, 50% - 540px);
  width: 360px;
}
.skill-bank p,
.question-bank p,
.answer-skills p {
  margin: 0 0 8px;
  color: #8ca2b7;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.question-bank article {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 26, 45, 0.82);
  color: #bdcbd8;
  font-size: 11px;
  line-height: 1.55;
}
.question-bank article::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: #7ac3ff;
  box-shadow: 0 0 10px #5aaff8;
}
.ai-core {
  position: absolute;
  left: 50%;
  top: 53%;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid #8acaff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 10px #6bbcff,
    0 0 50px rgba(65, 152, 235, 0.64),
    inset 0 0 42px rgba(56, 141, 224, 0.36);
}
.ai-core b {
  font-size: 38px;
  font-weight: 400;
}
.ai-core span {
  position: absolute;
  inset: -17px;
  border: 1px dotted rgba(119, 194, 255, 0.55);
  border-radius: 50%;
}
.ai-core span:last-child {
  inset: -32px;
  opacity: 0.35;
}
.energy-lines {
  position: absolute;
  left: calc(50% - 320px);
  top: 48%;
  width: 640px;
  height: 160px;
  opacity: 0.6;
}
.energy-lines i {
  position: absolute;
  top: calc(24px * var(--i));
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #67b8ff 45%,
    #67b8ff 55%,
    transparent
  );
  transform: rotate(calc((var(--i) - 2) * 2deg));
  filter: drop-shadow(0 0 4px #55aaf5);
}
.energy-lines i:nth-child(1) {
  --i: 0;
}
.energy-lines i:nth-child(2) {
  --i: 1;
}
.energy-lines i:nth-child(3) {
  --i: 2;
}
.energy-lines i:nth-child(4) {
  --i: 3;
}
.energy-lines i:nth-child(5) {
  --i: 4;
}
.ready-state {
  position: absolute;
  left: 50%;
  bottom: 11vh;
  transform: translateX(-50%);
  color: #91d9c5;
  font: 11px var(--sans);
  letter-spacing: 0.08em;
}
.ready-state i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.candidate-stage {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 54%;
  width: min(980px, 82vw);
  aspect-ratio: 16/8.7;
  overflow: hidden;
  border: 1px solid rgba(111, 181, 245, 0.32);
  border-radius: 14px;
  background: #04101d;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
}
.candidate-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.candidate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.16);
  filter: saturate(0.9) brightness(0.86);
}
.waiting-shade {
  position: absolute;
  inset: 0;
  background: rgba(1, 9, 18, 0.8);
  backdrop-filter: blur(10px);
}
.waiting-state {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #9cafc0;
  font: 12px var(--sans);
  letter-spacing: 0.06em;
}
.waiting-orbit {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border: 1px solid rgba(111, 184, 247, 0.24);
  border-radius: 50%;
}
.waiting-orbit i {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79c1ff;
  box-shadow: 0 0 12px #79c1ff;
}
.joined-copy {
  position: absolute;
  left: 50%;
  top: calc(50% + 48px);
  width: 300px;
  transform: translateX(-50%);
  opacity: 0;
}
.video-name {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #bdcbd8;
  font: 10px var(--sans);
  opacity: 0;
}
.video-name i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #6cd5a9;
  box-shadow: 0 0 8px #6cd5a9;
}
.call-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
  opacity: 0;
}
.call-controls button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(15, 35, 56, 0.92);
  cursor: pointer;
}
.call-controls .hangup {
  background: #db4d53;
}
.timer {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #a9b7c4;
  font-size: 12px;
  opacity: 0;
}
.waveform {
  position: absolute;
  right: 80px;
  bottom: 16px;
  left: 80px;
  height: 32px;
  opacity: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 4px,
    #69baff 5px 6px,
    transparent 7px 10px
  );
  clip-path: polygon(
    0 48%,
    7% 42%,
    12% 60%,
    18% 24%,
    24% 69%,
    30% 31%,
    36% 64%,
    42% 8%,
    49% 91%,
    56% 22%,
    64% 77%,
    72% 36%,
    80% 62%,
    88% 41%,
    100% 50%,
    100% 55%,
    0 55%
  );
  filter: drop-shadow(0 0 5px #439eea);
}
.interview-ui,
.followup-ui,
.analysis-ui,
.report-ui {
  opacity: 0;
  visibility: hidden;
}
.prompt-card {
  position: absolute;
  left: max(5vw, 50% - 545px);
  top: 32%;
  width: 240px;
  padding: 20px;
  border-radius: 8px;
}
.prompt-card small,
.followup-card small {
  color: #78b6eb;
  font: 9px var(--sans);
}
.prompt-card p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.9;
}
.live-score {
  position: absolute;
  right: max(5vw, 50% - 545px);
  top: 25%;
  width: 190px;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--sans);
}
.live-score > small {
  color: #7f95aa;
  font-size: 8px;
  letter-spacing: 0.18em;
}
.live-ring {
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  margin: 10px auto 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #061426 58%, transparent 61%),
    conic-gradient(
      #7bc5ff 0 var(--live-angle, 0deg),
      rgba(79, 130, 177, 0.17) var(--live-angle, 0deg)
    );
  box-shadow: 0 0 18px rgba(81, 169, 248, 0.25);
}
.live-ring strong {
  font: 30px var(--serif);
}
.live-score dl {
  margin: 0;
}
.live-score dl div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-top: 1px solid rgba(91, 143, 192, 0.13);
  font-size: 9px;
}
.live-score dt {
  color: #a5b5c4;
}
.live-score dd {
  margin: 0;
}
.answer-skills {
  position: absolute;
  left: max(4vw, 50% - 570px);
  top: 42%;
  display: grid;
  gap: 8px;
  width: 180px;
}
.answer-skills span {
  display: flex;
  justify-content: space-between;
}
.answer-skills b {
  color: #70d6c0;
}
.followup-card {
  position: absolute;
  right: max(4vw, 50% - 570px);
  top: 34%;
  width: 330px;
  min-height: 210px;
  padding: 25px;
  border-radius: 9px;
}
.followup-card p {
  font-size: 15px;
  line-height: 2;
  margin: 18px 0;
}
.followup-card i {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: #58728e;
  letter-spacing: 6px;
}
.followup-card > b {
  position: absolute;
  right: 22px;
  bottom: 18px;
}
.analysis-title {
  position: absolute;
  top: 16vh;
  left: 50%;
  transform: translateX(-50%);
  color: #9fb1c2;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.metrics {
  position: absolute;
  left: 5vw;
  top: 40%;
  display: grid;
  grid-template-columns: repeat(2, 115px);
  gap: 22px 14px;
}
.metrics article {
  text-align: center;
  font: 9px var(--sans);
  color: #9fb0c0;
}
.metrics article > div {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #061426 58%, transparent 61%),
    conic-gradient(
      #78c0ff 0 var(--value),
      rgba(69, 121, 169, 0.16) var(--value)
    );
  box-shadow: 0 0 15px rgba(75, 161, 240, 0.25);
}
.metrics strong {
  font: 28px var(--serif);
  color: #e8f1f9;
}
.radar {
  position: absolute;
  right: 7vw;
  top: 39%;
  width: 260px;
  height: 245px;
  color: #91a4b7;
  font: 9px var(--sans);
}
.radar-grid,
.radar-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 160px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 98% 37%, 80% 100%, 20% 100%, 2% 37%);
}
.radar-grid {
  background: repeating-radial-gradient(
    circle,
    transparent 0 15px,
    rgba(98, 162, 220, 0.23) 16px 17px
  );
}
.radar-shape {
  width: 132px;
  height: 128px;
  background: rgba(66, 139, 213, 0.28);
  border: 1px solid #76c2ff;
  filter: drop-shadow(0 0 8px #4ea5ed);
  transform: translate(-50%, -50%) scale(0);
}
.radar span {
  position: absolute;
}
.radar-top {
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.radar-right {
  right: 0;
  top: 45%;
}
.radar-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.radar-left {
  left: -12px;
  top: 45%;
  width: 70px;
  text-align: right;
}
.report-ui {
  display: grid;
  place-items: center;
}
.report-card {
  display: grid;
  grid-template-columns: 230px 1fr 260px;
  width: min(1120px, 90vw);
  min-height: 320px;
  border-radius: 14px;
}
.report-person,
.report-summary,
.report-action {
  padding: 36px 32px;
}
.report-summary,
.report-action {
  border-left: 1px solid rgba(92, 146, 196, 0.14);
}
.report-person {
  text-align: center;
}
.report-label {
  margin: 0 0 12px;
  color: #8ea4ba;
  font-size: 12px;
  text-align: left;
}
.report-avatar {
  width: 132px;
  height: 132px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(117, 186, 247, 0.24),
    0 0 28px rgba(54, 124, 190, 0.14);
}
.report-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.16) translateY(3%);
}
.report-person h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.report-person > p:last-child {
  margin: 7px 0 0;
  color: #a5b5c5;
  font-size: 11px;
}
.final-score strong {
  font-size: 78px;
  font-weight: 400;
  line-height: 1;
}
.final-score span {
  font-size: 18px;
}
.grade {
  display: inline-block;
  margin: 10px 0 22px;
  padding: 7px 18px;
  border: 1px solid rgba(77, 188, 153, 0.42);
  border-radius: 999px;
  color: var(--green);
  font-size: 13px;
}
.report-card h3 {
  margin: 0 0 13px;
  color: #9fb0c1;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.report-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bcc9d5;
  font-size: 11px;
}
.report-summary li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
}
.report-action p {
  margin: 0 0 30px;
  color: #b9c6d2;
  font-size: 12px;
  line-height: 1.9;
}
.report-action button {
  padding: 11px 20px;
  border: 1px solid rgba(111, 181, 244, 0.36);
  border-radius: 5px;
  color: #dce8f2;
  background: #081d31;
  cursor: pointer;
}
.report-action button:hover,
.report-action button:focus-visible {
  border-color: #83c8ff;
  box-shadow: 0 0 20px rgba(76, 160, 238, 0.2);
  outline: 0;
}
.scroll-cue {
  position: absolute;
  z-index: 25;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #8296aa;
  font: 8px var(--sans);
  letter-spacing: 0.22em;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 26px;
  margin: 9px auto 0;
  background: linear-gradient(var(--blue), transparent);
}
.story-progress {
  position: absolute;
  z-index: 25;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(97, 162, 219, 0.08);
}
.story-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c8fd4, #9cd7ff);
  transform: scaleX(0);
  transform-origin: left;
}
.step-nav {
  position: fixed;
  z-index: 55;
  right: clamp(12px, 2.4vw, 38px);
  top: 50%;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.step-nav button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 3px 0;
  border: 0;
  color: #61778c;
  background: none;
  cursor: pointer;
  font: 8px var(--sans);
  letter-spacing: 0.08em;
}
.step-nav b {
  width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  font-weight: 400;
  transition: 0.25s;
}
.step-nav span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(99, 158, 211, 0.18);
  border-radius: 50%;
}
.step-nav button:hover b,
.step-nav button:focus-visible b {
  width: 70px;
  opacity: 1;
}
.step-nav button:focus-visible {
  outline: 0;
}
.step-nav button.active {
  color: #b9d9f5;
}
.step-nav button.active span {
  border-color: #7bc3ff;
  box-shadow: 0 0 12px rgba(72, 155, 231, 0.3);
}
.final-cta {
  position: relative;
  height: 110svh;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("../assets/images/08_final_cta.png") center/cover no-repeat;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1, 7, 15, 0.12) 0 22%,
    rgba(1, 7, 15, 0.96) 46%,
    rgba(1, 7, 15, 0.94) 100%
  );
}
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 35%, #89c7ff 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 22%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 61% 67%, #65adf0 0 1px, transparent 1.5px);
  background-size:
    170px 150px,
    230px 190px,
    260px 210px;
  opacity: 0.35;
}
.cta-copy {
  position: relative;
  z-index: 2;
  margin-top: 26vh;
}
.cta-copy p {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.12em;
}
.cta-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
}
.cta-actions {
  display: grid;
  justify-items: center;
  gap: 17px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 250px;
  padding: 14px 26px;
  border: 1px solid rgba(133, 190, 241, 0.55);
  border-radius: 999px;
  color: #e7eef5;
  background: rgba(7, 25, 44, 0.76);
  text-decoration: none;
}
.cta-primary:hover,
.cta-primary:focus-visible {
  border-color: #93d0ff;
  background: rgba(20, 58, 92, 0.82);
  box-shadow: 0 0 25px rgba(77, 164, 244, 0.25);
  outline: 0;
}
.cta-copy .cta-login {
  margin: 0;
  color: #8195a9;
  font: 11px var(--sans);
  letter-spacing: 0.04em;
}
.cta-login a {
  margin-left: 4px;
  color: #b9d9f5;
  text-underline-offset: 4px;
}
.cta-login a:hover,
.cta-login a:focus-visible {
  color: #e6f4ff;
  outline: 0;
}
.reduced-story {
  display: none;
}
@media (max-width: 900px) {
  .chapter-heading {
    top: 8vh;
  }
  .position-layer {
    grid-template-columns: 120px minmax(430px, 1fr);
    gap: 25px;
  }
  .briefcase {
    width: 86px;
    height: 86px;
  }
  .question-bank {
    width: 290px;
    right: 4vw;
  }
  .skill-bank {
    left: 4vw;
    width: 160px;
  }
  .ai-core {
    width: 120px;
    height: 120px;
  }
  .prompt-card {
    left: 3vw;
    width: 205px;
  }
  .live-score {
    right: 3vw;
    width: 165px;
  }
  .metrics {
    left: 3vw;
    grid-template-columns: repeat(2, 95px);
  }
  .radar {
    right: 3vw;
    width: 210px;
  }
  .report-card {
    grid-template-columns: 190px 1fr 220px;
  }
  .report-person,
  .report-summary,
  .report-action {
    padding: 28px 20px;
  }
}
@media (max-width: 680px) {
  .story {
    height: 700vh;
  }
  .stage {
    min-height: 600px;
  }
  .site-header {
    height: 54px;
    padding-inline: 18px;
  }
  .header-divider,
  .header-label {
    display: none;
  }
  .header-login {
    min-height: 36px;
    padding-inline: 14px;
  }
  .step-nav {
    display: none;
  }
  .chapter-heading {
    top: 9vh;
  }
  .chapter-no {
    right: 18px;
    top: -25px;
  }
  .chapter-heading h1 {
    font-size: 32px;
  }
  .chapter-copy {
    max-width: 85vw;
    margin-inline: auto;
  }
  .position-layer {
    top: 53%;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 92vw;
  }
  .job-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .briefcase {
    width: 54px;
    height: 54px;
    margin: 0;
  }
  .briefcase span {
    transform: scale(0.7);
  }
  .job-state p {
    margin: 0;
  }
  .job-form {
    padding: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 10px;
  }
  .form-row label {
    padding: 0;
  }
  .field {
    font-size: 11px;
  }
  .tags span {
    padding: 6px 8px;
    font-size: 8px;
  }
  .skill-bank {
    left: 5vw;
    top: 38%;
    width: 130px;
  }
  .skill-bank span:nth-of-type(n + 4) {
    display: none;
  }
  .question-bank {
    right: 5vw;
    top: 56%;
    width: 56vw;
  }
  .question-bank article {
    padding: 9px;
    font-size: 8px;
  }
  .question-bank article:nth-of-type(n + 4) {
    display: none;
  }
  .ai-core {
    left: 30%;
    top: 64%;
    width: 82px;
    height: 82px;
  }
  .ai-core b {
    font-size: 24px;
  }
  .energy-lines {
    display: none;
  }
  .ready-state {
    bottom: 8vh;
    font-size: 9px;
  }
  .candidate-stage {
    top: 53%;
    width: 94vw;
    aspect-ratio: 3/3.5;
  }
  .candidate-media img {
    object-position: center;
    transform: scale(1.55);
  }
  .prompt-card {
    left: 5vw;
    top: 25%;
    width: 54vw;
    padding: 14px;
  }
  .prompt-card p {
    font-size: 10px;
  }
  .live-score {
    right: 4vw;
    top: auto;
    bottom: 12%;
    width: 130px;
    padding: 10px;
  }
  .live-ring {
    width: 58px;
    height: 58px;
  }
  .live-score dl div {
    font-size: 7px;
  }
  .call-controls {
    bottom: 25px;
  }
  .waveform {
    left: 25px;
    right: 25px;
  }
  .answer-skills {
    left: 5vw;
    top: 28%;
    width: 140px;
  }
  .followup-card {
    right: 5vw;
    top: 54%;
    width: 72vw;
    min-height: 150px;
    padding: 17px;
  }
  .followup-card p {
    font-size: 11px;
  }
  .analysis-title {
    top: 12vh;
  }
  .metrics {
    left: 50%;
    top: 20%;
    grid-template-columns: repeat(4, 1fr);
    width: 94vw;
    gap: 2px;
    transform: translateX(-50%);
  }
  .metrics article > div {
    width: 61px;
    height: 61px;
  }
  .metrics strong {
    font-size: 21px;
  }
  .radar {
    right: auto;
    left: 50%;
    top: 64%;
    transform: translate(-50%, -50%);
  }
  .report-card {
    grid-template-columns: 110px 1fr;
    width: 94vw;
    min-height: 360px;
  }
  .report-action {
    display: none;
  }
  .report-person,
  .report-summary {
    padding: 20px 12px;
  }
  .report-avatar {
    width: 84px;
    height: 84px;
  }
  .report-person h2 {
    font-size: 17px;
  }
  .report-label {
    font-size: 9px;
  }
  .final-score strong {
    font-size: 58px;
  }
  .report-summary ul {
    font-size: 9px;
  }
  .scroll-cue {
    bottom: 14px;
  }
  .cta-copy {
    margin-top: 20vh;
  }
  .cta-copy p {
    font-size: 17px;
    padding-inline: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .story,
  .final-cta,
  .step-nav {
    display: none;
  }
  .reduced-story {
    display: block;
    min-height: 100svh;
    padding: 18vh 8vw;
    background: radial-gradient(circle at 50% 20%, #0d2945, #020814 60%);
  }
  .reduced-story h2 {
    font-size: clamp(28px, 6vw, 54px);
    font-weight: 400;
    letter-spacing: 0.12em;
  }
  .reduced-story ol {
    display: grid;
    gap: 16px;
    max-width: 620px;
    padding: 0;
    list-style-position: inside;
    color: #b7c7d6;
  }
  .site-header {
    position: absolute;
  }
}
