:root {
  --navy: #101a3a;
  --navy-2: #172554;
  --violet: #665cf6;
  --violet-dark: #5147df;
  --violet-soft: #eeecff;
  --mint: #29c78f;
  --ink: #172033;
  --muted: #687086;
  --line: #e7e9f1;
  --surface: #f7f8fc;
  --white: #ffffff;
  --danger: #d64b5d;
  --shadow: 0 24px 70px rgba(34, 42, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
}

.site-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(231, 233, 241, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1.25px;
}

.brand-wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.brand-wordmark em {
  margin-left: 1px;
  position: relative;
  color: var(--violet);
  font-style: normal;
  font-size: 1.08em;
  font-weight: 800;
}

.brand-wordmark em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: -1px;
  bottom: -5px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  transform: rotate(-3deg);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 99px;
  background: #f3f5fa;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.header-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(41, 199, 143, 0.12);
}

.screen {
  display: none;
  min-height: calc(100vh - 74px);
}

.screen.active {
  display: block;
  animation: screenIn 0.35s ease both;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.hero {
  max-width: 1340px;
  min-height: 650px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 70px) 56px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  margin-top: 0;
}

.hero h1 {
  max-width: 690px;
  margin: 17px 0 22px;
  font-size: clamp(44px, 5.5vw, 77px);
  line-height: 1.02;
  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--violet);
  position: relative;
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 1px;
  height: 8px;
  border-radius: 99px;
  background: #dcd8ff;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 34px 0;
}

.button {
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.button.primary {
  color: white;
  background: var(--violet);
  box-shadow: 0 12px 28px rgba(102, 92, 246, 0.24);
}

.button.primary:hover:not(:disabled) {
  background: var(--violet-dark);
  box-shadow: 0 16px 35px rgba(102, 92, 246, 0.3);
}

.button.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: white;
}

.button.danger {
  color: white;
  background: var(--danger);
}

.button.large {
  padding: 16px 23px;
}

.button span {
  margin-left: 9px;
}

.micro-copy {
  color: var(--muted);
  font-size: 13px;
}

.trust-row {
  display: flex;
  gap: 38px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: flex;
  flex-direction: column;
}

.trust-row strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.trust-row span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 30%, #d7f7eb 0 9%, transparent 9.4%),
    radial-gradient(circle at 50% 50%, #efedff 0 58%, transparent 58.5%);
  z-index: -1;
}

.preview-card {
  width: min(100%, 470px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
}

.preview-top,
.camera-header,
.answer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-top {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff596b;
  box-shadow: 0 0 0 4px rgba(255, 89, 107, 0.12);
}

.mini-interviewer {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(180deg, #fbfbff, #f2f2fb);
  text-align: center;
}

.mini-interviewer p {
  max-width: 330px;
  margin: 16px 0 0;
  color: #333b53;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.avatar-shell {
  position: relative;
  border-radius: 50%;
}

.avatar-shell svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: avatarBreath 4s ease-in-out infinite;
}

.avatar-shell.compact {
  width: 132px;
  height: 132px;
}

.avatar-shell.large {
  width: min(280px, 75%);
  aspect-ratio: 1;
}

.avatar-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #766cfb, #71dcc2);
  opacity: 0.18;
  filter: blur(12px);
}

.avatar-status-dot {
  position: absolute;
  right: 9%;
  bottom: 12%;
  width: 16px;
  height: 16px;
  z-index: 4;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--mint);
}

.avatar-shell .eyes {
  transform-origin: center;
  animation: blink 5s infinite;
}

.avatar-shell.speaking .mouth,
.avatar-shell[data-speaking="true"] .mouth {
  animation: speak 0.22s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes avatarBreath {
  50% {
    transform: translateY(-3px);
  }
}

@keyframes blink {
  0%,
  45%,
  48%,
  100% {
    transform: scaleY(1);
  }
  46%,
  47% {
    transform: scaleY(0.1);
  }
}

@keyframes speak {
  to {
    transform: scaleY(2.1) scaleX(0.85);
  }
}

.waveform {
  height: 36px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  background: white;
}

.waveform span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--violet);
  animation: wave 0.9s ease-in-out infinite alternate;
}

.waveform span:nth-child(3n) {
  animation-delay: -0.4s;
}

.waveform span:nth-child(2n) {
  animation-delay: -0.7s;
}

@keyframes wave {
  to {
    height: 23px;
  }
}

.preview-answer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.preview-answer strong {
  margin-left: auto;
  color: var(--navy);
}

.mic-icon {
  color: #ff596b;
  font-size: 10px;
}

.floating-score {
  position: absolute;
  right: 1%;
  bottom: 10%;
  width: 180px;
  padding: 16px;
  border: 1px solid white;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(34, 42, 79, 0.14);
  transform: rotate(-3deg);
}

.floating-score span,
.floating-score small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.floating-score strong {
  display: block;
  margin: 4px 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
}

.floating-score small {
  color: #15996e;
}

.value-strip {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 22px;
  color: #c5cbe0;
  background: var(--navy);
  font-size: 13px;
}

.value-strip > span {
  color: white;
  font-weight: 700;
}

.value-strip div::before {
  content: "✓";
  margin-right: 7px;
  color: #77e0c2;
}

.landing-section {
  padding: 105px clamp(24px, 6vw, 88px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro h2,
.preparation-copy h2,
.assessment-copy h2,
.landing-final-cta h2 {
  margin: 13px 0 18px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.section-intro p,
.preparation-copy > p,
.assessment-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.failure-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(102, 92, 246, 0.07), transparent 22%),
    #f8f9fc;
}

.failure-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.failure-card {
  min-height: 390px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 42px rgba(34, 42, 79, 0.055);
}

.failure-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #d9dce7;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.failure-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--violet);
  background: var(--violet-soft);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.failure-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
}

.failure-card > p {
  min-height: 95px;
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.failure-card small {
  display: block;
  margin-bottom: 8px;
  color: #9a9fb0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.failure-card blockquote {
  margin: 0;
  padding: 13px 15px;
  border-left: 3px solid #d7d3ff;
  border-radius: 0 9px 9px 0;
  color: #4d5570;
  background: #fafaff;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.preparation-section {
  background: white;
}

.preparation-layout,
.assessment-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.preparation-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.preparation-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.preparation-list li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 10px;
  font-weight: 800;
}

.preparation-list strong {
  color: var(--navy);
  font-size: 15px;
}

.preparation-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.transformation-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #f7f8fc;
  box-shadow: var(--shadow);
  transform: rotate(0.5deg);
}

.transformation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 3px 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.transformation-header b {
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 10px;
}

.answer-example {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.answer-example > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.answer-example > div span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.answer-example > div b {
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 10px;
}

.answer-example.weak > div b {
  color: #a03e4c;
  background: #ffebee;
}

.answer-example.strong > div b {
  color: #087454;
  background: #dff8ef;
}

.answer-example > p {
  margin: 0 0 17px;
  color: #424b64;
  font-size: 14px;
  line-height: 1.65;
}

.answer-example ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer-example li {
  padding: 6px 8px;
  border-radius: 7px;
  color: var(--muted);
  background: #f2f4f8;
  font-size: 10px;
  font-weight: 700;
}

.answer-example.strong li::before {
  content: "✓ ";
  color: #15996e;
}

.answer-arrow {
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--violet);
  font-size: 20px;
  font-weight: 800;
}

.how-section {
  background: var(--navy);
}

.how-section .eyebrow {
  color: #8fe2ca;
}

.how-section .section-intro h2 {
  color: white;
}

.how-section .section-intro p {
  color: #b4bdd5;
}

.how-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.how-grid article {
  min-height: 350px;
  padding: 27px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.how-step {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  color: #9ea8c4;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
}

.how-visual {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.context-visual {
  gap: 12px;
}

.context-visual span {
  width: 60px;
  height: 75px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.context-visual i {
  color: #72ddbd;
  font-size: 22px;
  font-style: normal;
}

.interview-visual {
  gap: 5px;
}

.visual-avatar {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin-right: 12px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #7b72ff, #5148d9);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.interview-visual i {
  width: 4px;
  border-radius: 99px;
  background: #78dfc0;
  animation: wave 0.8s ease-in-out infinite alternate;
}

.interview-visual i:nth-of-type(1),
.interview-visual i:nth-of-type(5) {
  height: 15px;
}

.interview-visual i:nth-of-type(2),
.interview-visual i:nth-of-type(4) {
  height: 28px;
}

.interview-visual i:nth-of-type(3) {
  height: 42px;
}

.report-visual {
  flex-direction: column;
  gap: 11px;
  padding: 30px;
}

.report-visual span {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.report-visual span::after {
  content: "";
  width: var(--report-width, 80%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #756cff, #71ddbd);
}

.report-visual span:nth-child(2) {
  --report-width: 62%;
}

.report-visual span:nth-child(3) {
  --report-width: 90%;
}

.report-visual span:nth-child(4) {
  --report-width: 72%;
}

.how-grid h3 {
  margin-bottom: 9px;
  color: white;
  font-size: 17px;
}

.how-grid p {
  margin: 0;
  color: #aeb7cf;
  font-size: 13px;
  line-height: 1.6;
}

.assessment-section {
  background: #f8f9fc;
}

.assessment-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.assessment-preview {
  padding: 25px;
  border-radius: 28px;
  background: linear-gradient(145deg, #e9e7ff, #dcf6ed);
}

.assessment-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: white;
  box-shadow: 0 20px 55px rgba(34, 42, 79, 0.14);
}

.assessment-top {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #fafbfe;
  font-size: 10px;
  font-weight: 700;
}

.assessment-top > div {
  display: flex;
  gap: 5px;
}

.assessment-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dbe5;
}

.assessment-body {
  padding: 26px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 25px;
}

.assessment-score {
  min-height: 140px;
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  justify-content: center;
  align-items: baseline;
  border-radius: 16px;
  color: white;
  background: var(--navy);
}

.assessment-score strong {
  font-family: "Manrope", sans-serif;
  font-size: 43px;
}

.assessment-score span {
  color: #aeb7cf;
  font-size: 12px;
}

.assessment-score small {
  grid-column: 1 / -1;
  color: #aeb7cf;
  font-size: 10px;
}

.assessment-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.assessment-bars > div {
  display: grid;
  grid-template-columns: 65px 1fr 22px;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}

.assessment-bars i {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #eceef4;
}

.assessment-bars i::after {
  content: "";
  width: var(--score);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--violet);
}

.assessment-bars b {
  color: var(--navy);
}

.assessment-insight {
  grid-column: 1 / -1;
  padding: 15px;
  border-left: 3px solid var(--violet);
  border-radius: 0 10px 10px 0;
  background: #f7f7ff;
}

.assessment-insight span {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.assessment-insight p {
  margin: 5px 0 0;
  color: #4d5570;
  font-size: 11px;
  line-height: 1.5;
}

.assessment-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.assessment-tags span {
  padding: 6px 8px;
  border-radius: 7px;
  color: #535b70;
  background: #f0f2f7;
  font-size: 9px;
  font-weight: 700;
}

.assessment-benefits {
  margin-top: 30px;
}

.assessment-benefits > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.assessment-benefits span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #087454;
  background: #dff8ef;
  font-size: 10px;
  font-weight: 800;
}

.assessment-benefits p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.assessment-benefits strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 14px;
}

.visual-problem-section {
  padding: 110px clamp(24px, 6vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(102, 92, 246, 0.1), transparent 20%),
    #f7f8fc;
}

.visual-section-heading {
  max-width: 1180px;
  margin: 0 auto 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}

.visual-section-heading h2,
.showcase-copy h2,
.report-story-copy h2 {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: clamp(37px, 4.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -3px;
}

.visual-section-heading > p {
  max-width: 350px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.problem-bento {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 270px);
  gap: 18px;
}

.problem-tile {
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 42, 77, 0.08);
  border-radius: 23px;
  background: white;
  box-shadow: 0 14px 42px rgba(30, 42, 77, 0.06);
}

.problem-tile > div:last-child {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 3;
}

.problem-tile > div:last-child > span {
  display: block;
  margin-bottom: 6px;
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.problem-tile h3 {
  max-width: 460px;
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.tile-pressure {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 50% 28%, rgba(102, 92, 246, 0.12), transparent 31%),
    white;
}

.tile-generic {
  background: linear-gradient(145deg, #131d40, #202b58);
}

.tile-generic h3 {
  color: white;
}

.tile-generic > div:last-child > span {
  color: #84e2c5;
}

.tile-structure {
  background: linear-gradient(145deg, #e9f9f3, #f8fffc);
}

.problem-art {
  position: absolute;
  inset: 20px 20px 100px;
  display: grid;
  place-items: center;
}

.candidate-face {
  width: 160px;
  height: 160px;
  position: relative;
  border: 9px solid white;
  border-radius: 50%;
  background: #d99b79;
  box-shadow: 0 24px 55px rgba(46, 39, 95, 0.18);
  animation: nervousFloat 3.6s ease-in-out infinite;
}

.candidate-face::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: -4px;
  height: 67px;
  border-radius: 70px 70px 30px 30px;
  background: #282340;
  transform: rotate(-3deg);
}

.face-eye {
  width: 10px;
  height: 7px;
  position: absolute;
  top: 78px;
  border-radius: 50%;
  background: #342a38;
}

.face-eye.left {
  left: 47px;
}

.face-eye.right {
  right: 47px;
}

.face-mouth {
  width: 30px;
  height: 12px;
  position: absolute;
  left: 50%;
  bottom: 35px;
  border-top: 4px solid #904f50;
  border-radius: 50%;
  transform: translateX(-50%);
}

.thought-cloud {
  position: absolute;
  right: 9%;
  top: 6%;
  display: flex;
  gap: 5px;
  padding: 13px 16px;
  border-radius: 18px 18px 18px 3px;
  background: white;
  box-shadow: 0 10px 25px rgba(34, 42, 79, 0.1);
  animation: cloudDrift 2.8s ease-in-out infinite;
}

.thought-cloud i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a29be9;
  animation: dotThink 1s ease-in-out infinite;
}

.thought-cloud i:nth-child(2) {
  animation-delay: 0.18s;
}

.thought-cloud i:nth-child(3) {
  animation-delay: 0.36s;
}

.timer-orbit {
  position: absolute;
  left: 7%;
  bottom: 9%;
  padding: 8px 11px;
  border-radius: 9px;
  color: #d94d60;
  background: white;
  box-shadow: 0 9px 25px rgba(34, 42, 79, 0.09);
  font-size: 11px;
  font-weight: 800;
  animation: timerPulse 1.4s ease-in-out infinite;
}

.generic-chat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 26px;
  left: 28px;
  right: 28px;
}

.generic-chat span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px 11px 11px 3px;
  color: #c6cde1;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  animation: chatFade 4.2s ease-in-out infinite;
}

.generic-chat span:nth-child(2) {
  animation-delay: 0.35s;
}

.generic-chat span:nth-child(3) {
  animation-delay: 0.7s;
}

.generic-chat i {
  align-self: flex-end;
  padding: 7px 10px;
  border-radius: 99px;
  color: #263354;
  background: #83e2c5;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.structure-art {
  width: 55%;
  position: absolute;
  top: 27px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.structure-art span {
  width: var(--w);
  height: 10px;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, #54cba4, #8fe2c5);
  transform-origin: left;
  animation: structureGrow 2.4s ease-in-out infinite alternate;
}

.structure-art span:nth-child(2) {
  animation-delay: -0.4s;
}

.structure-art span:nth-child(3) {
  animation-delay: -0.8s;
}

.structure-art span:nth-child(4) {
  animation-delay: -1.2s;
}

.structure-art i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  right: -5px;
  top: 22px;
  border-radius: 50%;
  color: var(--violet);
  background: white;
  box-shadow: 0 12px 30px rgba(34, 42, 79, 0.11);
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
}

.experience-showcase {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 70px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.showcase-copy > p {
  color: var(--muted);
}

.showcase-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}

.showcase-pills > span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #475068;
  font-size: 13px;
  font-weight: 700;
}

.showcase-pills i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.practice-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: stageOrbit 8s ease-in-out infinite alternate;
}

.stage-glow.one {
  width: 420px;
  height: 420px;
  background: #edebff;
}

.stage-glow.two {
  width: 150px;
  height: 150px;
  right: 1%;
  top: 2%;
  background: #d9f7ed;
  animation-delay: -3s;
}

.stage-window {
  width: min(100%, 630px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: white;
  box-shadow: 0 32px 80px rgba(34, 42, 79, 0.16);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.stage-top {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.stage-top span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5c70;
  box-shadow: 0 0 0 4px rgba(255, 92, 112, 0.12);
}

.stage-call {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
}

.stage-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(145deg, #f4f3ff, #edf0f8);
}

.stage-avatar > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.stage-question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.stage-question small {
  color: var(--violet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.stage-question strong {
  margin-top: 12px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  line-height: 1.35;
}

.stage-wave {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
}

.stage-wave i {
  width: 4px;
  height: 13px;
  border-radius: 99px;
  background: var(--violet);
  animation: wave 0.75s ease-in-out infinite alternate;
}

.stage-wave i:nth-child(2n) {
  animation-delay: -0.35s;
}

.stage-wave i:nth-child(3n) {
  animation-delay: -0.6s;
}

.floating-context {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid white;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(34, 42, 79, 0.12);
  animation: contextFloat 4s ease-in-out infinite;
}

.floating-context b {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  font-size: 10px;
}

.floating-context span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.context-jd {
  top: 4%;
  left: -2%;
}

.context-cv {
  right: -1%;
  bottom: 5%;
  animation-delay: -2s;
}

.report-story-section {
  padding: 30px clamp(24px, 6vw, 88px) 110px;
}

.report-story-card {
  max-width: 1180px;
  min-height: 550px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(126, 115, 255, 0.18), transparent 26%),
    var(--navy);
}

.report-visual-side {
  min-height: 550px;
  display: grid;
  place-items: center;
  position: relative;
}

.report-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-a {
  width: 430px;
  height: 430px;
  animation: orbitSpin 18s linear infinite;
}

.orbit-b {
  width: 310px;
  height: 310px;
  animation: orbitSpin 13s linear infinite reverse;
}

.report-dashboard {
  width: min(82%, 460px);
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: white;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.report-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.report-dashboard-top b {
  padding: 6px 8px;
  border-radius: 7px;
  color: #087454;
  background: #dff8ef;
  font-size: 8px;
}

.report-score-ring {
  width: 100px;
  height: 100px;
  display: grid;
  place-content: center;
  float: left;
  margin: 0 25px 20px 0;
  border: 8px solid #e5e3ff;
  border-top-color: var(--violet);
  border-right-color: var(--violet);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-18deg);
}

.report-score-ring > * {
  transform: rotate(18deg);
}

.report-score-ring strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 30px;
}

.report-score-ring small {
  color: var(--muted);
  font-size: 8px;
}

.report-mini-bars {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 5px;
}

.report-mini-bars > div {
  display: grid;
  grid-template-columns: 55px 1fr 22px;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 8px;
}

.report-mini-bars i {
  height: 6px;
  border-radius: 99px;
  background: #eceef4;
}

.report-mini-bars i::after {
  content: "";
  width: var(--bar);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), #8e86ff);
  animation: barReveal 2s ease both;
}

.report-mini-bars b {
  color: var(--navy);
}

.report-coach-note {
  clear: both;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 13px;
  border-radius: 11px;
  background: #f7f7ff;
}

.report-coach-note > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--violet);
  background: var(--violet-soft);
  font-style: normal;
  font-weight: 800;
}

.report-coach-note span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.report-coach-note b {
  display: block;
  color: var(--navy);
}

.report-story-copy {
  padding: 55px 65px 55px 15px;
}

.report-story-copy .eyebrow {
  color: #7ce2c2;
}

.report-story-copy h2 {
  color: white;
}

.compact-benefits {
  margin-top: 30px;
}

.compact-benefits > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin-bottom: 19px;
}

.compact-benefits > div > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #7ce2c2;
  background: rgba(124, 226, 194, 0.1);
  font-size: 9px;
  font-weight: 800;
}

.compact-benefits p {
  margin: 0;
  color: #b5bdd3;
  font-size: 12px;
  line-height: 1.5;
}

.compact-benefits strong {
  display: block;
  margin-bottom: 2px;
  color: white;
  font-size: 13px;
}

@keyframes nervousFloat {
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes cloudDrift {
  50% { transform: translate(5px, -5px); }
}

@keyframes dotThink {
  50% { opacity: 0.25; transform: translateY(-2px); }
}

@keyframes timerPulse {
  50% { transform: scale(1.06); }
}

@keyframes chatFade {
  50% { opacity: 0.55; transform: translateX(5px); }
}

@keyframes structureGrow {
  from { transform: scaleX(0.55); opacity: 0.55; }
}

@keyframes stageOrbit {
  50% { transform: translate(15px, -12px) scale(1.03); }
}

@keyframes contextFloat {
  50% { transform: translateY(-9px) rotate(1deg); }
}

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

@keyframes barReveal {
  from { width: 0; }
}

.home-flow-section,
.audience-section,
.why-section,
.proof-section,
.enterprise-section,
.faq-section {
  padding: 105px clamp(24px, 6vw, 88px);
}

.home-section-head {
  max-width: 1180px;
  margin: 0 auto 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.home-section-head.centered {
  display: block;
  max-width: 760px;
  text-align: center;
}

.home-section-head h2,
.enterprise-copy h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(36px, 4.2vw, 55px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.home-section-head > p {
  max-width: 370px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-flow-section {
  background: #f7f8fc;
}

.home-flow-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-flow-grid article {
  min-height: 330px;
  padding: 26px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 38px rgba(34, 42, 79, 0.05);
}

.flow-number {
  position: absolute;
  top: 20px;
  right: 21px;
  color: #c9cdd9;
  font-size: 11px;
  font-weight: 800;
}

.flow-illustration {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: #f7f7ff;
}

.flow-upload b {
  width: 55px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid #daddef;
  border-radius: 10px;
  color: var(--violet);
  background: white;
  box-shadow: 0 8px 20px rgba(34, 42, 79, 0.07);
  font-size: 12px;
}

.flow-upload i {
  color: var(--mint);
  font-size: 20px;
  font-style: normal;
}

.flow-speak b {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  color: white;
  background: var(--violet);
  font-size: 18px;
}

.flow-speak i {
  width: 4px;
  height: 16px;
  border-radius: 99px;
  background: var(--mint);
  animation: wave 0.8s ease-in-out infinite alternate;
}

.flow-speak i:nth-of-type(2),
.flow-speak i:nth-of-type(4) {
  height: 30px;
  animation-delay: -0.4s;
}

.flow-speak i:nth-of-type(3) {
  height: 42px;
  animation-delay: -0.65s;
}

.flow-improve b {
  width: 85px;
  height: 85px;
  display: grid;
  place-items: center;
  border: 8px solid #dcd8ff;
  border-top-color: var(--violet);
  border-radius: 50%;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.flow-improve span {
  color: #15996e;
  font-size: 25px;
  font-weight: 800;
  animation: timerPulse 1.5s ease-in-out infinite;
}

.home-flow-grid h3,
.audience-grid h3,
.why-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.home-flow-grid p,
.audience-grid p,
.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.audience-section {
  background: white;
}

.audience-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(34, 42, 79, 0.09);
}

.audience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--violet-soft);
  font-size: 22px;
}

.audience-grid article > span {
  display: block;
  margin-top: 26px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
}

.why-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(113, 221, 189, 0.1), transparent 18%),
    var(--navy);
}

.why-section .eyebrow {
  color: #7ce2c2;
}

.why-section .home-section-head h2 {
  color: white;
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-grid > div {
  min-height: 230px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.why-grid > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 12px;
  color: #7ce2c2;
  background: rgba(124, 226, 194, 0.1);
  font-size: 19px;
}

.why-grid h3 {
  color: white;
}

.why-grid p {
  color: #aeb7cf;
}

.proof-section {
  background: #f7f8fc;
}

.proof-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(35px, 6vw, 65px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  text-align: center;
  box-shadow: 0 20px 55px rgba(34, 42, 79, 0.07);
}

.proof-label {
  width: fit-content;
  margin: 0 auto 23px;
  padding: 7px 10px;
  border-radius: 99px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.proof-card blockquote {
  max-width: 750px;
  margin: 0 auto 38px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1.5px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-metrics > div {
  padding: 23px 12px;
  border-right: 1px solid var(--line);
}

.proof-metrics > div:last-child {
  border-right: 0;
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  color: var(--violet);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

.proof-metrics span {
  color: var(--muted);
  font-size: 10px;
}

.proof-card > small {
  display: block;
  margin-top: 18px;
  color: #9a9fb0;
  font-size: 9px;
}

.enterprise-section {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.enterprise-visual {
  min-height: 420px;
  position: relative;
  border-radius: 25px;
  background:
    radial-gradient(circle at center, rgba(102, 92, 246, 0.15), transparent 37%),
    #f6f7fb;
}

.enterprise-node {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  border: 1px solid white;
  border-radius: 18px;
  color: var(--navy);
  background: white;
  box-shadow: 0 15px 35px rgba(34, 42, 79, 0.12);
  font-size: 11px;
  font-weight: 800;
  animation: contextFloat 4s ease-in-out infinite;
}

.main-node {
  width: 90px;
  height: 90px;
  left: 50%;
  top: 50%;
  color: white;
  background: var(--violet);
  font-size: 20px;
  transform: translate(-50%, -50%);
  animation: none;
}

.node-a { left: 12%; top: 15%; }
.node-b { right: 12%; top: 16%; animation-delay: -1s; }
.node-c { left: 14%; bottom: 14%; animation-delay: -2s; }
.node-d { right: 14%; bottom: 13%; animation-delay: -3s; }

.enterprise-visual > i {
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #cac7f5;
  transform-origin: left;
}

.line-a { width: 190px; transform: rotate(218deg); }
.line-b { width: 190px; transform: rotate(320deg); }
.line-c { width: 185px; transform: rotate(142deg); }
.line-d { width: 185px; transform: rotate(39deg); }

.enterprise-copy p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.enterprise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.enterprise-tags span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #505974;
  background: #f0f2f7;
  font-size: 10px;
  font-weight: 700;
}

.faq-section {
  background: #f7f8fc;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid #dfe2ec;
}

.faq-list summary {
  padding: 22px 5px;
  position: relative;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 7px;
  color: var(--violet);
  font-size: 21px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -7px 45px 20px 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.landing-final-cta {
  max-width: 1180px;
  margin: 95px auto;
  padding: 58px clamp(28px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 50px;
  align-items: center;
  border-radius: 25px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(113, 221, 189, 0.18), transparent 26%),
    var(--navy);
  box-shadow: 0 30px 70px rgba(16, 26, 58, 0.18);
}

.landing-final-cta .eyebrow {
  color: #78dfc0;
}

.landing-final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: white;
}

.landing-final-cta p {
  margin: 0;
  color: #b4bdd5;
  font-size: 16px;
}

.landing-final-cta > small {
  grid-column: 1 / -1;
  color: #8994b1;
  font-size: 10px;
}

.landing-footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 25px clamp(24px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.landing-footer p,
.landing-footer > span {
  color: var(--muted);
  font-size: 11px;
}

.landing-footer p {
  margin: 0;
}

.registration-layout {
  max-width: 1120px;
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 58px 24px 80px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}

.registration-copy h2 {
  max-width: 480px;
  margin: 13px 0 18px;
  font-size: clamp(36px, 4.5vw, 55px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.registration-copy > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.registration-promise {
  margin-top: 34px;
}

.registration-promise > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.registration-promise > div > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #087454;
  background: #dff8ef;
  font-size: 10px;
  font-weight: 800;
}

.registration-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.registration-promise strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 13px;
}

.registration-card {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.form-honeypot {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.registration-card-heading {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.registration-card-heading h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.registration-card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.full-width {
  grid-column: 1 / -1;
}

.registration-consent {
  margin-top: 21px;
  padding: 16px;
  border-radius: 11px;
  background: #f8f9fc;
}

.registration-privacy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  margin: 15px 0 20px;
  color: var(--muted);
}

.registration-privacy span {
  font-size: 13px;
}

.registration-privacy p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.registration-submit {
  width: 100%;
}

.registration-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #087454;
  font-size: 11px;
  text-align: center;
}

.registration-status.error {
  color: var(--danger);
}

.page-heading {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 25px;
}

.page-heading h2,
.device-layout h2 {
  margin: 12px 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -2px;
}

.page-heading p,
.section-lead {
  color: var(--muted);
}

.back-link,
.text-button,
.hint-toggle,
.replay-button,
.exit-button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 600;
}

.back-link {
  display: block;
  margin-bottom: 24px;
}

.setup-layout {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.form-card,
.consent-card {
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 35px rgba(34, 42, 79, 0.04);
}

.section-title {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.section-title > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 11px;
  font-weight: 800;
}

.section-title h3 {
  margin: 1px 0 4px;
  font-size: 17px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #dfe2ec;
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: #fbfcfe;
  transition: 0.2s;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--violet);
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 92, 246, 0.09);
}

.field-help {
  align-self: flex-end;
  color: var(--muted);
  font-weight: 400;
}

.upload-row {
  display: grid;
  grid-template-columns: 0.75fr auto 1.25fr;
  gap: 20px;
  align-items: center;
}

.upload-box {
  min-height: 180px;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed #cdd1e1;
  border-radius: 14px;
  background: #fafaff;
  cursor: pointer;
  transition: 0.2s;
}

.upload-box:hover {
  border-color: var(--violet);
  background: var(--violet-soft);
}

.upload-box input {
  display: none;
}

.upload-box small {
  color: var(--muted);
  font-weight: 400;
}

.upload-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 20px;
}

.or-divider {
  color: var(--muted);
  font-size: 11px;
}

.file-status {
  margin-top: 15px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #166c52;
  background: #eafaf5;
  font-size: 12px;
}

.checkbox-label {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--violet);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px 0;
}

.form-submit div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-submit span {
  color: var(--muted);
  font-size: 12px;
}

.device-layout {
  max-width: 1120px;
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  margin: 30px 0;
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.check-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.check-item small {
  color: var(--muted);
}

.check-item b {
  color: var(--muted);
  font-size: 11px;
}

.check-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: #f0f2f6;
  font-size: 11px;
  font-weight: 800;
}

.check-item.ready .check-symbol {
  color: #087454;
  background: #dff8ef;
}

.check-item.ready b {
  color: #15996e;
}

.check-item.failed .check-symbol {
  color: #a82a3a;
  background: #ffe8ec;
}

.device-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.voice-picker {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  margin: -8px 0 24px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafaff;
}

.voice-picker select {
  height: 43px;
  background: white;
  font-size: 11px;
}

.voice-picker .button {
  height: 43px;
  white-space: nowrap;
}

.device-actions .text-button {
  flex-basis: 100%;
  margin-top: 5px;
  text-align: left;
  font-size: 11px;
}

.camera-card {
  overflow: hidden;
  border: 1px solid #2d3449;
  border-radius: 22px;
  background: #171b27;
  box-shadow: 0 28px 75px rgba(20, 26, 48, 0.22);
}

.camera-header {
  min-height: 52px;
  padding: 12px 17px;
  color: #f2f4fb;
  background: #1d2230;
  font-size: 11px;
  font-weight: 700;
}

.camera-header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.camera-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f70;
  box-shadow: 0 0 0 4px rgba(255, 95, 112, 0.13);
}

.camera-header b {
  padding: 6px 9px;
  border: 1px solid #3b4256;
  border-radius: 7px;
  color: #aab0c1;
  background: #272d3c;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.camera-header b.on {
  border-color: rgba(67, 211, 164, 0.25);
  color: #7ce4bf;
  background: rgba(49, 194, 146, 0.12);
}

.camera-view {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #10131d;
}

.camera-view video,
.self-view-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.video-vignette,
.self-view-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 7, 15, 0.08) 55%, rgba(4, 7, 15, 0.58));
}

.video-nameplate,
.self-view-label {
  position: absolute;
  left: 13px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.video-mic-chip,
.self-view-mic {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #77e3bd;
  background: rgba(11, 16, 28, 0.62);
  font-size: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.video-quality-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 4;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: #eef1f8;
  background: rgba(10, 14, 25, 0.54);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
}

.camera-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #d1d5e1;
  background:
    radial-gradient(circle at 50% 42%, rgba(83, 92, 127, 0.45), transparent 26%),
    linear-gradient(145deg, #242a3b, #111520);
}

.camera-placeholder[hidden],
#self-view-placeholder[hidden] {
  display: none !important;
}

.camera-placeholder .camera-placeholder-icon {
  font-size: 34px;
  color: #6b728f;
}

.camera-placeholder small {
  color: #8389a0;
}

.camera-footer {
  min-height: 63px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 11px 15px;
  color: #aeb5c7;
  background: #1d2230;
}

.lobby-controls {
  display: flex;
  gap: 7px;
}

.lobby-control {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #e9ecf5;
  background: #2b3140;
  font-size: 9px;
  font-weight: 700;
}

.lobby-control i {
  color: #76dfba;
  font-size: 7px;
  font-style: normal;
}

.camera-tip {
  text-align: center;
  font-size: 10px;
}

.privacy-chip {
  padding: 6px 8px;
  border-radius: 7px;
  color: #aeb5c7;
  background: #272d3b;
  font-size: 9px;
  white-space: nowrap;
}

.interview-screen {
  background: #f5f6fa;
}

.interview-topbar {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 12px clamp(20px, 4vw, 55px);
  border-bottom: 1px solid var(--line);
  background: white;
}

.interview-topbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.interview-topbar > div:first-child strong {
  color: var(--navy);
  font-size: 12px;
}

.interview-progress-label {
  width: 220px;
  justify-self: center;
  text-align: center;
  color: var(--muted);
  font-size: 10px;
}

.progress-track {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e9eaf0;
}

.progress-track i {
  width: 20%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--violet);
  transition: width 0.35s ease;
}

.exit-button {
  justify-self: end;
  font-size: 11px;
}

.interview-layout {
  max-width: 1370px;
  min-height: calc(100vh - 142px);
  margin: 0 auto;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(520px, 1.3fr);
  gap: 24px;
  position: relative;
}

.interviewer-panel,
.question-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.interviewer-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 25px 54px;
  background:
    radial-gradient(circle at 50% 30%, rgba(121, 111, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #fcfcff, #eef0f8);
}

.avatar-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 20px;
}

.avatar-name strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
}

.avatar-name span {
  color: var(--muted);
  font-size: 10px;
}

.avatar-state {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 16px 0;
  padding: 7px 11px;
  border-radius: 99px;
  color: var(--muted);
  background: white;
  font-size: 10px;
}

.avatar-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.avatar-state.speaking i {
  background: var(--violet);
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 5px rgba(102, 92, 246, 0.15);
  }
}

.replay-button {
  font-size: 10px;
}

.remote-participant-label {
  position: absolute;
  left: 15px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(24, 33, 66, 0.08);
  border-radius: 8px;
  color: #3f4967;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
}

.remote-participant-label i {
  color: var(--mint);
  font-size: 7px;
  font-style: normal;
}

.question-panel {
  padding: clamp(28px, 4vw, 48px);
}

.competency-label {
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.section-progress {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 7px;
  color: #3d4771;
  background: #eef0f8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.question-panel > h2 {
  max-width: 760px;
  min-height: 90px;
  margin: 13px 0 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -1.5px;
}

.hint-toggle {
  color: var(--violet);
  font-size: 10px;
}

.question-hint {
  margin-top: 12px;
  padding: 11px 13px;
  border-left: 3px solid var(--violet);
  border-radius: 0 8px 8px 0;
  color: #4f5670;
  background: var(--violet-soft);
  font-size: 11px;
}

.answer-box {
  margin-top: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.answer-header {
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #fbfcfe;
  font-size: 10px;
  font-weight: 700;
}

.answer-box textarea {
  min-height: 160px;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.interim-text {
  min-height: 18px;
  padding: 0 14px;
  color: #9a9fb0;
  font-size: 11px;
  font-style: italic;
}

.answer-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

.button.record {
  color: white;
  background: var(--navy);
}

.button.record.recording {
  background: #d64b5d;
}

.record-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 7px 0 0 !important;
  border-radius: 50%;
  background: #ff6678;
}

.recording .record-dot {
  background: white;
  animation: pulse 0.8s infinite;
}

.speech-note {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
}

.interview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.interview-nav .text-button {
  font-size: 10px;
}

.self-view-card {
  width: 190px;
  aspect-ratio: 16 / 10;
  position: absolute;
  right: 15px;
  bottom: 14px;
  z-index: 6;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 13px;
  background: #1b2030;
  box-shadow: 0 16px 38px rgba(25, 30, 51, 0.26);
}

.self-view-card #self-view-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 7px;
  color: #aeb3c6;
  background: linear-gradient(145deg, #30374b, #1a1e2b);
  font-size: 9px;
  text-align: center;
}

.self-view-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: white;
  background: #566078;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

#self-view-placeholder small {
  color: #b6bdcf;
}

.self-view-label {
  left: 9px;
  bottom: 8px;
  font-size: 9px;
}

.self-view-mic {
  width: 17px;
  height: 17px;
  font-size: 6px;
}

.self-view-mic.active {
  color: white;
  background: #d94d60;
  animation: callMicPulse 1.1s ease-in-out infinite;
}

@keyframes callMicPulse {
  50% {
    box-shadow: 0 0 0 5px rgba(217, 77, 96, 0.2);
  }
}

#loading-screen.active {
  display: grid;
  place-items: center;
  background: #f8f9fc;
}

.loading-card {
  width: min(90vw, 540px);
  padding: 55px 45px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.thinking-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  position: relative;
}

.thinking-avatar .avatar-shell {
  margin: 9px;
}

.orbit {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 71px;
  top: 71px;
  border-radius: 50%;
  background: var(--violet);
  animation: orbit 1.7s linear infinite;
}

.orbit.two {
  background: var(--mint);
  animation-delay: -0.55s;
}

.orbit.three {
  width: 6px;
  height: 6px;
  background: #ff9a69;
  animation-delay: -1.1s;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(75px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(75px) rotate(-360deg);
  }
}

.loading-card h2 {
  margin: 14px 0 9px;
  font-size: 29px;
}

.loading-card p {
  color: var(--muted);
}

.loading-bar {
  height: 5px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 99px;
  background: #eceef4;
}

.loading-bar i {
  width: 40%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  animation: loading 1.4s ease-in-out infinite;
}

@keyframes loading {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(350%);
  }
}

#results-screen {
  max-width: 1120px;
  margin: 0 auto;
  padding: 55px 24px 90px;
}

#results-screen.active {
  display: block;
}

.results-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
  padding: 35px 40px;
  border-radius: 22px;
  color: white;
  background: var(--navy);
}

.results-hero.high-risk {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 139, 123, 0.2), transparent 32%),
    linear-gradient(135deg, #241c36, #172554);
}

.results-hero.medium-risk {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 203, 105, 0.16), transparent 32%),
    linear-gradient(135deg, #202245, #172554);
}

.results-hero h2 {
  margin: 10px 0;
  color: white;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -2px;
}

.results-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: #bac1d9;
}

.mode-notice {
  margin-top: 12px;
  color: #8fe2ca;
  font-size: 10px;
}

.overall-score {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  position: relative;
}

.overall-score svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.overall-score circle {
  fill: none;
  stroke-width: 8;
}

.score-bg {
  stroke: rgba(255, 255, 255, 0.12);
}

.score-ring {
  stroke: #7ae0c2;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.2s ease;
}

.overall-score > div {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  justify-content: center;
  align-items: baseline;
}

.overall-score strong {
  font-family: "Manrope", sans-serif;
  font-size: 38px;
}

.overall-score span {
  color: #aeb6ce;
  font-size: 12px;
}

.overall-score small {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: #aeb6ce;
  font-size: 9px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 17px;
  margin-bottom: 17px;
}

.diagnostic-dashboard {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 17px;
  margin-bottom: 17px;
}

.diagnostic-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.35fr;
  gap: 13px;
  align-items: stretch;
}

.metric-donut {
  --value: 0deg;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  justify-self: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--violet) var(--value), #eceef4 0);
}

.metric-donut::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: white;
}

.metric-donut.credible {
  background: conic-gradient(#24a77e var(--value), #eceef4 0);
}

.metric-donut.evidence {
  background: conic-gradient(#e5a431 var(--value), #eceef4 0);
}

.metric-donut > div {
  z-index: 1;
  text-align: center;
}

.metric-donut strong,
.metric-donut span {
  display: block;
}

.metric-donut strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.metric-donut span {
  max-width: 72px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.2;
}

.risk-meter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  border: 1px solid #f6c7c2;
  border-radius: 13px;
  background: #fff5f4;
}

.risk-meter.medium {
  border-color: #f4d792;
  background: #fff9eb;
}

.risk-meter.low {
  border-color: #b8e8d8;
  background: #effbf7;
}

.risk-meter small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-meter strong {
  margin: 4px 0;
  color: #b42318;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.risk-meter.medium strong {
  color: #9a6700;
}

.risk-meter.low strong {
  color: #087454;
}

.risk-meter span {
  color: #6e5960;
  font-size: 9px;
  line-height: 1.4;
}

.quality-chart {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.quality-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.quality-chart-head small {
  color: var(--muted);
  font-weight: 500;
}

.quality-stack {
  height: 16px;
  display: flex;
  overflow: hidden;
  border-radius: 99px;
  background: #eceef4;
}

.quality-stack i {
  height: 100%;
  display: block;
  transition: width 0.8s ease;
}

.quality-stack .strong,
.quality-legend i.strong {
  background: #18966f;
}

.quality-stack .credible,
.quality-legend i.credible {
  background: #6fcdb0;
}

.quality-stack .weak,
.quality-legend i.weak {
  background: #efb64d;
}

.quality-stack .irrelevant,
.quality-legend i.irrelevant {
  background: #e8756a;
}

.quality-stack .skipped,
.quality-legend i.skipped {
  background: #8b93a7;
}

.quality-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
}

.quality-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quality-legend i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
}

.radar-card {
  min-width: 0;
}

.radar-layout {
  text-align: center;
}

.readiness-radar {
  width: 100%;
  max-width: 250px;
  overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: #dfe2ec;
  stroke-width: 1;
}

.radar-value {
  fill: rgba(98, 81, 220, 0.24);
  stroke: var(--violet);
  stroke-width: 2;
  transition: points 0.9s ease;
}

.readiness-radar text {
  fill: #7b8295;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: capitalize;
}

.radar-layout p {
  margin: -2px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.radar-layout p b {
  color: var(--navy);
}

.critical-findings-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  margin-bottom: 17px;
  border-color: #f3c0ba;
  background: linear-gradient(135deg, #fff8f7, #fff);
}

.critical-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #b42318;
  background: #fee4e2;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.critical-findings-card .result-card-title {
  margin-bottom: 8px;
}

.critical-findings-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 25px;
  margin: 0;
  padding-left: 17px;
  color: #6e4c50;
  font-size: 10px;
  line-height: 1.5;
}

.result-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 8px 30px rgba(34, 42, 79, 0.04);
}

.result-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.result-card-title small {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.score-row {
  margin-bottom: 15px;
}

.score-row div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.score-row b {
  color: var(--navy);
}

.score-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #eceef4;
}

.score-bar i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), #9188ff);
}

.insight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #535b70;
  font-size: 11px;
  line-height: 1.45;
}

.insight-list li::before {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.strengths li::before {
  content: "✓";
  color: #087454;
  background: #dff8ef;
}

.improvements li::before {
  content: "↑";
  color: var(--violet);
  background: var(--violet-soft);
}

.detailed-feedback {
  margin-bottom: 17px;
}

.question-panel.adaptive-probe {
  box-shadow: inset 4px 0 0 var(--mint);
}

.question-panel.adaptive-probe .section-progress {
  color: #087454;
}

.evidence-card,
.retry-lab-card {
  margin-bottom: 17px;
}

.evidence-card-heading,
.retry-lab-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.evidence-card-heading h3,
.retry-lab-intro h3 {
  margin: 7px 0 5px;
  color: var(--navy);
  font-size: 25px;
}

.evidence-card-heading p,
.retry-lab-intro p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.readiness-pill {
  min-width: 112px;
  padding: 13px 16px;
  border: 1px solid #d8d2ff;
  border-radius: 14px;
  text-align: center;
  background: var(--violet-soft);
}

.readiness-pill strong,
.readiness-pill span {
  display: block;
}

.readiness-pill strong {
  color: var(--violet);
  font-family: "Manrope", sans-serif;
  font-size: 26px;
}

.readiness-pill span {
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.memory-note {
  margin-bottom: 16px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #405063;
  background: #eefaf6;
  font-size: 10px;
  line-height: 1.5;
}

.evidence-graph {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.evidence-row {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 0.65fr 1.3fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.evidence-row:first-child {
  border-top: 0;
}

.evidence-requirement,
.evidence-status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.evidence-requirement strong {
  color: var(--navy);
  font-size: 11px;
}

.importance,
.status-chip {
  padding: 4px 7px;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.importance.critical {
  color: #9a3412;
  background: #ffedd5;
}

.importance.important {
  color: #4f46e5;
  background: #eef2ff;
}

.importance.supporting {
  color: #475569;
  background: #f1f5f9;
}

.evidence-proof small,
.evidence-action small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-proof p,
.evidence-action p {
  margin: 5px 0 0;
  color: #535b70;
  font-size: 10px;
  line-height: 1.45;
}

.status-chip.ready {
  color: #087454;
  background: #dff8ef;
}

.status-chip.needs-proof {
  color: #8a5a00;
  background: #fff3cd;
}

.status-chip.gap {
  color: #b42318;
  background: #fee4e2;
}

.evidence-meter {
  width: 72px;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #eceef4;
}

.evidence-meter i {
  width: 28%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #ef7b72;
}

.evidence-meter.developing i {
  width: 62%;
  background: #eeb44c;
}

.evidence-meter.strong i {
  width: 92%;
  background: #36b58a;
}

.retry-lab-card {
  background: linear-gradient(135deg, #fbfaff, #f5fbf9);
}

.retry-badge {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 99px;
  color: var(--violet);
  background: white;
  box-shadow: 0 5px 18px rgba(98, 81, 220, 0.1);
  font-size: 9px;
  font-weight: 800;
}

.retry-question {
  margin-bottom: 15px;
  padding: 17px;
  border-left: 4px solid var(--violet);
  border-radius: 0 12px 12px 0;
  background: white;
}

.retry-question small,
.retry-question strong {
  display: block;
}

.retry-question small {
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.retry-question strong {
  color: var(--navy);
  font-size: 14px;
}

.retry-question p,
.retry-target {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.retry-target {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.retry-answer-label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

#retry-answer {
  width: 100%;
  resize: vertical;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy);
  background: white;
  font: inherit;
  font-size: 12px;
  line-height: 1.55;
}

#retry-answer:focus {
  outline: 2px solid rgba(98, 81, 220, 0.18);
  border-color: var(--violet);
}

.retry-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
}

.retry-actions > span {
  color: var(--muted);
  font-size: 9px;
}

.retry-comparison {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #dcd7ff;
  border-radius: 13px;
  background: white;
}

.comparison-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.comparison-scores > div {
  text-align: center;
}

.comparison-scores small,
.comparison-scores strong {
  display: block;
}

.comparison-scores small {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.comparison-scores strong {
  color: var(--navy);
  font-size: 30px;
}

.comparison-scores > span {
  padding: 6px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
}

.comparison-scores .positive {
  color: #087454;
  background: #dff8ef;
}

.comparison-scores .negative {
  color: #b42318;
  background: #fee4e2;
}

.comparison-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 18px;
}

.comparison-detail > div {
  padding: 13px;
  border-radius: 10px;
  background: #f8f9fc;
}

.comparison-detail strong {
  color: var(--navy);
  font-size: 10px;
}

.comparison-detail ul {
  margin: 8px 0 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.coach-verdict {
  margin: 15px 0 0;
  color: #535b70;
  font-size: 11px;
  line-height: 1.55;
}

.feedback-item {
  border-top: 1px solid var(--line);
}

.feedback-item:first-child {
  border-top: 0;
}

.feedback-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 13px;
  align-items: center;
  padding: 17px 0;
  border: 0;
  color: var(--navy);
  background: none;
  text-align: left;
}

.answer-status {
  padding: 4px 7px;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-status.strong,
.answer-status.credible {
  color: #087454;
  background: #dff8ef;
}

.answer-status.developing,
.answer-status.weak,
.answer-status.generic,
.answer-status.insufficient {
  color: #8a5a00;
  background: #fff3cd;
}

.answer-status.irrelevant {
  color: #b42318;
  background: #fee4e2;
}

.answer-status.skipped {
  color: #475569;
  background: #e9edf3;
}

.feedback-number {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 10px;
  font-weight: 800;
}

.feedback-trigger > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.feedback-trigger b {
  font-size: 12px;
}

.feedback-body {
  display: none;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 20px;
  padding: 0 0 20px 44px;
}

.feedback-body .answer-audit {
  background: #f3f4f8;
}

.missing-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.missing-signals li {
  padding: 4px 6px;
  border-radius: 6px;
  color: #9a3412;
  background: #fff0e7;
  font-size: 8px;
  font-weight: 700;
}

.feedback-item.open .feedback-body {
  display: grid;
}

.feedback-body div {
  padding: 15px;
  border-radius: 11px;
  background: #f8f9fc;
}

.feedback-body strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 10px;
  text-transform: uppercase;
}

.feedback-body p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.practice-plan-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 45px;
  margin-bottom: 17px;
  background: #fafaff;
}

.practice-plan-card h3 {
  margin: 9px 0 0;
  font-size: 25px;
}

.practice-plan-card ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.practice-plan-card li {
  color: #535b70;
  font-size: 10px;
  line-height: 1.4;
}

.results-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 3px 0;
}

.results-actions p {
  max-width: 580px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.results-actions > div {
  display: flex;
  gap: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: 0.25s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 15, 35, 0.58);
  backdrop-filter: blur(5px);
}

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

.modal {
  width: min(100%, 410px);
  padding: 34px;
  border-radius: 20px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 24px;
  font-weight: 800;
}

.modal h3 {
  margin-bottom: 7px;
}

.modal p {
  margin: 0 0 22px;
  color: var(--muted);
}

.modal > div:last-child {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .value-strip {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

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

  .diagnostic-dashboard {
    grid-template-columns: 1fr;
  }

  .scores-card {
    grid-column: 1 / -1;
  }

  .failure-grid,
  .how-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .failure-card {
    min-height: auto;
  }

  .failure-card > p {
    min-height: auto;
  }

  .preparation-layout,
  .assessment-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .assessment-copy {
    order: -1;
  }

  .landing-final-cta {
    margin-right: 28px;
    margin-left: 28px;
  }

  .visual-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .problem-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 270px;
  }

  .tile-pressure {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .experience-showcase {
    grid-template-columns: 1fr;
    max-width: 780px;
  }

  .showcase-copy {
    max-width: 640px;
  }

  .report-story-card {
    grid-template-columns: 1fr;
  }

  .report-story-copy {
    padding: 15px 55px 55px;
  }

  .home-flow-grid,
  .audience-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
  }

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

  .enterprise-section {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 800px) {
  .registration-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 36px;
  }

  .device-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .interview-topbar {
    grid-template-columns: 1fr auto;
  }

  .interview-progress-label {
    display: none;
  }

  .interview-layout {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .diagnostic-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .risk-meter {
    grid-column: 1 / -1;
  }

  .feedback-body {
    grid-template-columns: 1fr;
  }

  .interviewer-panel {
    min-height: 340px;
  }

  .avatar-shell.large {
    width: 190px;
  }

  .self-view-card {
    width: 180px;
    right: 16px;
    top: 16px;
    bottom: auto;
  }

  .remote-participant-label {
    left: 14px;
    bottom: 13px;
  }

  .practice-plan-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .landing-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .landing-final-cta {
    grid-template-columns: 1fr;
  }

  .landing-final-cta .button {
    justify-self: start;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .landing-footer .brand {
    justify-self: center;
  }

  .visual-problem-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .problem-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 390px 260px 260px;
  }

  .tile-pressure {
    grid-column: auto;
  }

  .practice-stage {
    min-height: 470px;
  }

  .stage-window {
    transform: none;
  }

  .report-visual-side {
    min-height: 500px;
  }

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .proof-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .proof-metrics > div:nth-child(2) {
    border-right: 0;
  }

  .proof-metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 64px;
  }

  .header-badge {
    display: none;
  }

  .screen {
    min-height: calc(100vh - 64px);
  }

  .hero {
    padding: 44px 20px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -2.5px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .form-submit,
  .results-actions,
  .results-hero {
    flex-direction: column;
  }

  .diagnostic-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metric-donut {
    width: 104px;
    height: 104px;
  }

  .risk-meter {
    grid-column: 1 / -1;
  }

  .quality-chart-head,
  .critical-findings-card {
    grid-template-columns: 1fr;
  }

  .quality-chart-head {
    display: block;
  }

  .quality-chart-head small {
    display: block;
    margin-top: 4px;
  }

  .critical-findings-card ul {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    width: 100%;
    gap: 20px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .floating-score {
    display: none;
  }

  .value-strip {
    display: none;
  }

  .landing-section {
    padding: 68px 20px;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro h2,
  .preparation-copy h2,
  .assessment-copy h2,
  .landing-final-cta h2 {
    font-size: 34px;
    letter-spacing: -1.8px;
  }

  .section-intro p,
  .preparation-copy > p,
  .assessment-copy > p {
    font-size: 16px;
  }

  .failure-card {
    padding: 24px;
  }

  .transformation-card {
    padding: 13px;
    transform: none;
  }

  .answer-example {
    padding: 18px;
  }

  .assessment-preview {
    padding: 12px;
    border-radius: 20px;
  }

  .assessment-body {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .assessment-insight,
  .assessment-tags {
    grid-column: auto;
  }

  .assessment-score {
    min-height: 120px;
  }

  .landing-final-cta {
    margin: 65px 20px;
    padding: 40px 24px;
    border-radius: 20px;
  }

  .landing-final-cta .button {
    width: 100%;
  }

  .visual-problem-section {
    padding: 68px 20px;
  }

  .visual-section-heading h2,
  .showcase-copy h2,
  .report-story-copy h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }

  .visual-section-heading > p {
    font-size: 14px;
  }

  .problem-bento {
    grid-template-rows: 350px 250px 250px;
  }

  .problem-tile {
    padding: 22px;
    border-radius: 18px;
  }

  .problem-tile > div:last-child {
    left: 22px;
    right: 22px;
    bottom: 21px;
  }

  .candidate-face {
    width: 135px;
    height: 135px;
  }

  .face-eye {
    top: 66px;
  }

  .face-eye.left {
    left: 39px;
  }

  .face-eye.right {
    right: 39px;
  }

  .experience-showcase {
    padding: 78px 20px;
  }

  .showcase-pills > span {
    font-size: 12px;
  }

  .practice-stage {
    min-height: 420px;
  }

  .stage-glow.one {
    width: 330px;
    height: 330px;
  }

  .stage-call {
    min-height: 300px;
    grid-template-columns: 1fr;
  }

  .stage-avatar {
    min-height: 150px;
  }

  .stage-avatar .avatar-shell {
    width: 95px;
    height: 95px;
  }

  .stage-question {
    padding: 24px;
  }

  .stage-question strong {
    font-size: 18px;
  }

  .stage-wave {
    margin-top: 18px;
  }

  .floating-context {
    display: none;
  }

  .report-story-section {
    padding: 0 20px 75px;
  }

  .report-story-card {
    border-radius: 22px;
  }

  .report-visual-side {
    min-height: 420px;
  }

  .report-dashboard {
    width: 89%;
    padding: 18px;
  }

  .report-score-ring {
    width: 82px;
    height: 82px;
    margin-right: 15px;
  }

  .report-score-ring strong {
    font-size: 25px;
  }

  .report-story-copy {
    padding: 10px 25px 38px;
  }

  .home-flow-section,
  .audience-section,
  .why-section,
  .proof-section,
  .enterprise-section,
  .faq-section {
    padding: 70px 20px;
  }

  .home-section-head h2,
  .enterprise-copy h2 {
    font-size: 34px;
    letter-spacing: -1.7px;
  }

  .home-flow-grid article {
    min-height: 300px;
  }

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

  .why-grid > div {
    min-height: 190px;
  }

  .proof-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .proof-card blockquote {
    font-size: 25px;
  }

  .proof-metrics strong {
    font-size: 24px;
  }

  .enterprise-visual {
    min-height: 340px;
  }

  .enterprise-node {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .main-node {
    width: 75px;
    height: 75px;
  }

  .line-a,
  .line-b,
  .line-c,
  .line-d {
    width: 135px;
  }

  .faq-list summary {
    padding-right: 35px;
    font-size: 15px;
  }

  .registration-layout {
    min-height: auto;
    padding: 38px 20px 65px;
  }

  .registration-copy h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .registration-copy > p {
    font-size: 15px;
  }

  .registration-card {
    padding: 23px 18px;
    border-radius: 17px;
  }

  .registration-card .form-grid.two {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .form-grid.two,
  .upload-row,
  .results-grid,
  .feedback-body,
  .practice-plan-card ol {
    grid-template-columns: 1fr;
  }

  .voice-picker {
    grid-template-columns: 1fr;
  }

  .camera-card {
    border-radius: 16px;
  }

  .camera-footer {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .camera-tip {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .privacy-chip {
    justify-self: end;
  }

  .or-divider {
    text-align: center;
  }

  .form-submit {
    align-items: stretch;
  }

  .form-submit .button {
    width: 100%;
  }

  .question-panel {
    padding: 25px 18px;
  }

  .question-panel > h2 {
    min-height: 0;
    font-size: 26px;
  }

  .answer-controls {
    flex-wrap: wrap;
  }

  .speech-note {
    width: 100%;
    margin-left: 0;
  }

  .interview-nav {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .self-view-card {
    width: 126px;
    top: 12px;
    right: 12px;
    border-radius: 10px;
  }

  .self-view-label {
    left: 7px;
    bottom: 6px;
  }

  .self-view-mic {
    width: 15px;
    height: 15px;
  }

  .remote-participant-label {
    max-width: calc(100% - 24px);
  }

  .remote-participant-label span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .results-hero {
    padding: 30px 24px;
    text-align: center;
  }

  .results-actions {
    align-items: stretch;
  }

  .results-actions > div {
    flex-direction: column;
  }

  .evidence-card-heading,
  .retry-lab-intro,
  .retry-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .readiness-pill {
    width: 120px;
  }

  .evidence-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .evidence-status {
    flex-direction: row;
    align-items: center;
  }

  .comparison-detail {
    grid-template-columns: 1fr;
  }

  .comparison-scores {
    gap: 12px;
  }

  .retry-actions .button {
    width: 100%;
  }

  .feedback-trigger {
    grid-template-columns: auto 1fr auto;
  }

  .feedback-trigger b,
  .answer-status {
    display: none;
  }

  .feedback-body {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .candidate-face,
  .thought-cloud,
  .thought-cloud i,
  .timer-orbit,
  .generic-chat span,
  .structure-art span,
  .stage-glow,
  .stage-wave i,
  .floating-context,
  .report-orbit,
  .report-mini-bars i::after {
    animation: none !important;
  }
}

@media print {
  .site-header,
  .results-actions,
  .header-badge,
  .mode-notice {
    display: none !important;
  }

  body {
    background: white;
  }

  #results-screen {
    max-width: none;
    padding: 0;
  }

  .screen {
    display: none !important;
  }

  #results-screen.active {
    display: block !important;
  }

  .result-card,
  .results-hero {
    break-inside: avoid;
    box-shadow: none;
  }

  .feedback-body {
    display: grid !important;
  }
}
