:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --panel: #ffffff;
  --ink: #1d2522;
  --muted: #68736d;
  --line: #d9ded7;
  --accent: #256d65;
  --accent-dark: #164c47;
  --danger: #b42318;
  --soft: #e9f1ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--accent-dark);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.dashboard-shell {
  width: min(1120px, calc(100% - 32px));
  padding-top: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
}

.dashboard-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 12px;
  padding: 18px max(16px, calc((100vw - 1120px) / 4)) 16px;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: var(--panel);
}

.dashboard-banner-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.dashboard-logo {
  display: block;
  width: 118px;
  height: auto;
  flex: 0 0 auto;
}

.dashboard-logo-link {
  display: block;
  flex: 0 0 auto;
}

.dashboard-banner h1 {
  margin: 0 0 4px;
}

.dashboard-company {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.dashboard-banner .actions {
  margin-left: auto;
}

.account-setup-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 14px;
  border: 1px solid #c8d9d5;
  border-radius: 8px;
  background: #fbfcfa;
}

.listings-heading {
  margin: 0 0 4px;
  font-size: 30px;
  font-weight: 700;
}

.listings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 8px;
}

.listings-subcopy {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.listing-back-row {
  margin: 14px 0 12px;
}

.field-error {
  min-height: 20px;
  margin: -4px 0 10px;
  color: var(--danger);
  font-style: italic;
}

.duplicate-resume-note {
  margin: 6px 0 0;
  color: var(--muted);
}

.brand {
  font-weight: 750;
  font-size: 20px;
}

.muted {
  color: var(--muted);
}

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

.panel,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel {
  padding: 24px;
}

.auth-panel {
  width: min(440px, calc(100% - 32px));
  margin: 48px auto 9vh;
}

.auth-page {
  background: var(--bg);
}

.auth-home-header {
  display: flex;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.auth-home-logo {
  display: block;
  width: 118px;
  height: auto;
}

.account-panel {
  width: min(720px, 100%);
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.password-toggle {
  min-width: 74px;
}

.auth-switch {
  margin-top: 18px;
}

.auth-error {
  color: var(--danger);
  font-style: italic;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.card {
  padding: 18px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  letter-spacing: 0;
}

p {
  line-height: 1.55;
}

.job-description,
.job-description-preview {
  white-space: pre-wrap;
}

.description-file-viewer {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.document-preview-frame {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.document-preview-html {
  max-height: 680px;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  white-space: normal;
}

.document-preview-html p,
.document-preview-html h3 {
  margin: 0 0 12px;
}

.document-preview-html table {
  width: 100%;
  margin: 14px 0;
  border-collapse: collapse;
}

.document-preview-html td {
  padding: 8px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.docx-list-item {
  padding-left: 20px;
  text-indent: -12px;
}

label {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.compact-date-field input {
  width: min(100%, 260px);
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 14px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

button.secondary,
.button.secondary {
  background: var(--soft);
  color: var(--accent-dark);
  border-color: #c8d9d5;
}

button.danger {
  background: #fff;
  color: var(--danger);
  border-color: #f0b8b2;
}

button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tab-row {
  margin-bottom: 16px;
}

.tab-active {
  background: var(--accent-dark) !important;
  color: #fff !important;
  border-color: var(--accent-dark) !important;
}

.hidden {
  display: none !important;
}

.description-input-group {
  display: grid;
  gap: 14px;
  margin: 12px 0;
}

.description-field-label {
  margin: 0;
}

.description-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.description-choice.has-uploaded-description {
  display: block;
}

.description-choice-panel {
  min-height: 180px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.description-choice-panel input[type="file"] {
  margin-top: 12px;
}

.description-or {
  align-self: center;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.uploaded-description {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  text-align: center;
}

.description-preview-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.description-preview-heading {
  justify-content: space-between;
}

.description-preview-panel .job-description-preview {
  max-height: 260px;
  margin: 0;
  overflow: auto;
}

.description-preview-panel .document-preview-frame {
  min-height: 520px;
}

.viva-type-section {
  display: grid;
  gap: 12px;
  margin: 12px 0;
}

.viva-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.viva-type-option {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  font-size: 15px;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.viva-type-option-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 35%, transparent);
}

.viva-type-option-muted {
  background: #f1f3ef;
  opacity: 0.68;
}

.viva-type-option > span,
.viva-type-option > label:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
}

.viva-type-option em {
  color: var(--muted);
  line-height: 1.5;
}

.custom-viva-summary {
  color: var(--muted);
  line-height: 1.5;
}

.checkbox-setting {
  justify-content: center;
  text-align: center;
}

.open-ended-setting {
  justify-self: center;
  max-width: 620px;
}

.open-ended-setting input {
  flex: 0 0 auto;
  width: auto;
}

.inline-setting {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.inline-setting select {
  width: auto;
  min-width: 86px;
}

.required-question-fields {
  display: grid;
  gap: 10px;
}

.required-question-input::placeholder {
  font-style: italic;
}

.description-edit-card {
  width: min(760px, calc(100% - 24px));
}

.description-edit-card textarea {
  min-height: 420px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 18px;
  align-items: start;
}

.recording-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.copy-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.copy-link-block {
  display: grid;
  gap: 6px;
}

.copy-feedback {
  color: var(--muted);
  font-size: 14px;
}

.session-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.listing-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.listing-panel-head h1 {
  margin-bottom: 0;
}

.listing-panel-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.session-card-head h3 {
  margin-bottom: 8px;
}

.session-visibility-actions {
  flex: 0 0 auto;
}

.hidden-sessions {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.hidden-sessions summary {
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.hidden-sessions-body {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.hidden-session-card {
  background: #fbfcfa;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.42);
}

.site-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 24px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.site-modal-card p {
  margin: 0 0 16px;
}

.upload-modal-card {
  width: min(460px, calc(100% - 24px));
}

.device-check-card {
  width: min(560px, calc(100% - 24px));
}

.viva-info-card {
  width: min(640px, calc(100% - 24px));
}

.viva-info-card h3 {
  margin-bottom: 10px;
}

.viva-info-copy {
  color: var(--ink);
}

.viva-info-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
  padding-left: 22px;
}

.viva-info-list li::marker {
  color: var(--accent);
}

.good-luck-box {
  margin: 8px 0 18px;
  font-weight: 800;
}

.device-check-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  margin: 12px 0 14px;
  border-radius: 8px;
  background: #111827;
  object-fit: cover;
}

.device-check-meter {
  margin: 14px 0 28px;
}

.countdown-modal-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.countdown-modal-card h3 {
  margin: 0;
}

.upload-progress-block {
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
  margin: 20px auto 0;
}

.upload-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.upload-progress-header strong {
  flex: 0 0 auto;
  color: var(--accent-dark);
}

.upload-progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.upload-progress > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--accent);
  transition: width 180ms ease;
}

.site-modal-actions {
  justify-content: flex-end;
}

.resume-modal-card {
  width: min(760px, calc(100% - 24px));
}

.resume-content {
  max-height: min(70vh, 640px);
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
  color: var(--ink);
  font: 14px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.resume-content .document-preview-frame,
.resume-content .document-preview-html {
  max-height: none;
}

.resume-content .document-preview-frame {
  min-height: 620px;
}

.resume-content .document-preview-html {
  font: 15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: normal;
}

video {
  width: 100%;
  max-height: 420px;
  background: #121816;
  border-radius: 8px;
}

.session-video-wrap {
  display: grid;
  gap: 10px;
}

.video-question-flags {
  position: relative;
  min-height: 48px;
  margin: 2px 10px 0;
  border-top: 4px solid var(--line);
}

.video-question-flag {
  position: absolute;
  top: -2px;
  left: var(--flag-left);
  display: grid;
  justify-items: center;
  min-height: 44px;
  width: auto;
  min-width: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
}

.video-question-flag::before {
  display: block;
  width: 3px;
  height: 18px;
  margin: 0 0 4px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.video-question-flag span {
  display: block;
  padding: 2px 5px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: #f8faf8;
  line-height: 1.2;
}

.video-question-flag:hover span,
.video-question-flag:focus-visible span {
  background: var(--accent);
  color: #fff;
}

.interview-frame {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.camera-pane {
  display: grid;
  gap: 10px;
}

.stage {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 320px;
  text-align: center;
}

.readiness-list {
  display: grid;
  gap: 12px;
  width: min(520px, 100%);
  margin: 10px auto 18px;
  padding-left: 22px;
  text-align: left;
}

.readiness-list li {
  padding-left: 4px;
}

.readiness-list li::marker {
  color: var(--accent);
}

.readiness-list li span {
  display: inline-block;
  width: calc(100% - 34px);
  vertical-align: middle;
}

.readiness-list input {
  width: auto;
  margin-left: 12px;
  vertical-align: middle;
}

.question-stage {
  display: grid;
  grid-template-rows: minmax(96px, auto) 132px 106px 48px;
  row-gap: 12px;
  align-items: center;
  justify-items: center;
  width: min(720px, 100%);
  min-height: 410px;
}

.question-stage-copy {
  align-self: end;
  width: 100%;
}

.question-stage-copy h1 {
  margin-bottom: 10px;
}

.question-stage-eyebrow,
.question-stage-helper {
  min-height: 24px;
  margin: 0 0 8px;
}

.question-stage-helper {
  margin: 0;
}

.question-stage-indicator,
.question-stage-timer {
  display: grid;
  place-items: center;
  width: 100%;
}

.question-stage-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-self: start;
  min-height: 48px;
  width: 100%;
}

.meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.meter > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.timer,
.countdown {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 800;
  line-height: 1;
}

.voice-indicator {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin: 0 auto;
}

.loader-dot {
  width: 54px;
  height: 54px;
  margin: 22px auto;
  border-radius: 999px;
  background: var(--line);
  position: relative;
}

.loader-dot.small {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin: 0;
}

.loader-dot.small::after {
  inset: 9px;
}

.loader-dot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: var(--accent);
  animation: pulse-sphere 1s ease-in-out infinite;
}

.loader-dot.ended-early-loader::after {
  background: var(--danger);
  animation-name: pulse-danger;
}

.voice-indicator > span {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(37, 109, 101, 0.35);
  animation: pulse-sphere 1.2s ease-in-out infinite;
}

.voice-indicator.idle > span {
  animation: none;
  box-shadow: 0 0 0 1px rgba(37, 109, 101, 0.18);
}

.centered-actions {
  justify-content: center;
}

.answer-actions {
  margin-top: 18px;
}

.answer-actions button {
  min-width: 148px;
}

.session-loading {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.session-question-panel {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 36px);
}

.question-links-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  padding-top: 6px;
}

.session-video-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.resume-panel {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.resume-panel-heading h3 {
  margin: 0;
}

.question-link {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.question-link button {
  width: 100%;
}

.question-link details {
  margin-top: 12px;
}

.question-link details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-dark);
}

.transcript-window-label {
  margin: 8px 0 10px;
  font-size: 13px;
}

.copy-toast {
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid #c8d9d5;
  border-radius: 8px;
  background: #f3faf8;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.shared-session-label {
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes pulse-sphere {
  0%,
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(37, 109, 101, 0.35);
  }

  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 18px rgba(37, 109, 101, 0);
  }
}

@keyframes pulse-danger {
  0%,
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(180, 35, 24, 0.35);
  }

  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 18px rgba(180, 35, 24, 0);
  }
}

.question {
  font-size: 24px;
  line-height: 1.35;
}

.status {
  min-height: 20px;
  margin: 0 0 6px;
  color: var(--muted);
}

.home-page {
  background: #f7f8f5;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px max(16px, calc((100vw - 1120px) / 4)) 16px;
  border: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  background: var(--panel);
}

.home-nav a {
  text-decoration: none;
}

.home-nav .button.secondary {
  color: var(--accent-dark);
}

.home-logo {
  display: block;
  width: 118px;
  height: auto;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  padding: 118px max(28px, calc((100vw - 1180px) / 2)) 80px;
  color: #fff;
  background:
    linear-gradient(135deg, #102f2c 0%, #173f3a 54%, #275f57 100%);
}

.hero-copy {
  width: min(680px, 100%);
}

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

.home-hero .eyebrow {
  color: #9ee5d3;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 26px;
  color: #e3eee9;
  font-size: 20px;
  line-height: 1.48;
}

.hero-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.hero-actions .button,
.final-cta .button {
  min-height: 48px;
  padding: 12px 18px;
  background: #eaf7f3;
  color: #123d39;
}

.hero-actions p {
  margin: 0;
  color: #c9d9d3;
  font-size: 14px;
}

.home-section,
.final-cta {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.steps-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.steps-grid h3 {
  font-size: 22px;
}

.feature-band {
  width: 100%;
  max-width: none;
  padding-right: max(28px, calc((100vw - 1120px) / 2));
  padding-left: max(28px, calc((100vw - 1120px) / 2));
  background: #eef3ef;
}

.feature-table {
  display: grid;
  border-top: 1px solid #cdd8d0;
}

.feature-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid #cdd8d0;
}

.feature-table strong {
  font-size: 18px;
}

.feature-table p {
  margin: 0;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

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

.faq-list details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-bottom: 60px;
  padding: 58px;
  border-radius: 8px;
  background: #173f3a;
  color: #f6fbf9;
}

.final-cta p {
  max-width: 720px;
  margin: 0;
  color: #d6e6e1;
  font-size: 19px;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 20px, 1120px);
    padding-top: 18px;
  }

  .dashboard-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 0;
  }

  .topbar,
  .split,
  .review-layout,
  .interview-frame,
  .recording-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
  }

  .dashboard-banner,
  .listing-panel-head {
    flex-direction: column;
  }

  .dashboard-banner-intro {
    align-items: flex-start;
  }

  .dashboard-logo {
    width: 92px;
  }

  .dashboard-banner .actions {
    margin-left: 0;
  }

  .listings-header {
    flex-direction: column;
  }

  .session-card-head {
    flex-direction: column;
  }

  .session-question-panel {
    position: static;
    max-height: none;
  }

  .question-links-scroll {
    max-height: min(420px, 60vh);
  }

  .panel {
    padding: 18px;
  }

  .description-choice {
    grid-template-columns: 1fr;
  }

  .viva-type-grid {
    grid-template-columns: 1fr;
  }

  .description-or {
    justify-self: center;
  }

  .home-nav {
    padding: 14px 12px;
  }

  .home-nav .button {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .home-logo,
  .auth-home-logo {
    width: 92px;
  }

  .home-hero {
    min-height: 88vh;
    padding: 64px 20px 54px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 42px;
  }

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

  .home-section,
  .final-cta {
    width: min(100% - 28px, 1120px);
    padding: 48px 0;
  }

  .steps-grid,
  .faq-section,
  .feature-table > div {
    grid-template-columns: 1fr;
  }

  .feature-band {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq-section {
    gap: 16px;
  }

  .final-cta {
    padding: 28px;
  }
}
