* { box-sizing: border-box; }

:root {
  --bg: #f3f4f6;
  --panel: #ffffff;
  --ink: #08080a;
  --muted: #5f636d;
  --line: #e1e4e8;
  --purple: #7c3aed;
  --purple-dark: #4c1d95;
  --blue: #2383c5;
  --danger: #b91c1c;
  --success: #15803d;
  --navy: #1e293b;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}

body, button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

#app {
  min-height: 100vh;
}

.mobile-screen-message {
  display: none;
}

.hero-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}

.hero-inner {
  width: min(1180px, calc(100vw - 72px));
  min-height: 640px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: riseIn .45s ease both;
}

.hero-kicker {
  margin: 0 0 8px;
  color: #8f231c;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 0 0 34px;
  color: #030303;
  font-size: 70px;
  line-height: .98;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
}

.hero-image {
  animation: riseIn .6s ease .08s both;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(80, 20, 125, .18));
}

.cz-action,
.cz-button {
  min-width: 160px;
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  padding: 0 24px;
  background: #b33224;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.cz-action {
  min-width: 205px;
  min-height: 66px;
  font-size: 24px;
}

.cz-action:hover,
.cz-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .16);
}

.cz-action:focus-visible,
.cz-button:focus-visible,
.ghost-button:focus-visible,
.flag:focus-visible {
  outline: 4px solid rgba(124, 58, 237, .22);
  outline-offset: 3px;
}

.details-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 40px;
}

.details-form {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  padding: 20px;
}

.details-form label:not(.consent) {
  display: grid;
  gap: 8px;
  color: #111827;
  font-weight: 700;
}

.details-form label span {
  color: #dc2626;
}

.details-form input:not([type="checkbox"]) {
  min-height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.details-form small {
  min-height: 18px;
  color: #dc2626;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #374151;
  line-height: 1.45;
}

.consent input {
  margin-top: 4px;
}

.quiz-screen {
  min-height: 100vh;
  position: relative;
  background: var(--bg);
  padding: 78px 32px 44px;
}

.question-counter {
  position: absolute;
  top: 22px;
  right: 34px;
  padding: 8px 14px;
  background: #f3f4f6;
  font-size: 18px;
  font-weight: 700;
}

.question-counter span {
  color: var(--blue);
}

.question-header {
  width: min(820px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.question-header h2 {
  margin: 0 0 30px;
  color: #000;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
}

.question-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.mail-preview {
  width: min(1216px, 100%);
  min-height: 600px;
  margin: 0 auto;
  overflow: visible;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.mail-preview.compact {
  min-height: auto;
}

.mail-toolbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  color: #333;
  font-size: 14px;
}

.mail-tools {
  margin-left: auto;
  color: #6b7280;
  word-spacing: 12px;
}

.mail-preview h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 28px 14px;
  color: #070707;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.mail-meta {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 16px 28px 28px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #98d8bd;
  font-weight: 900;
}

.mail-meta p {
  margin: 0 0 8px;
  font-size: 14px;
}

.muted {
  color: #555;
  font-size: 12px !important;
}

.mail-body {
  padding: 28px 32px 34px;
  color: #080808;
  font-size: 20px;
  line-height: 1.52;
}

.mail-body p {
  margin: 0 0 18px;
}

.mail-body ul {
  margin: 0 0 18px 22px;
}

.danger-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  background: #b91c1c;
  color: #fff;
  font-weight: 800;
}

.mail-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 4px;
  padding: 0 20px;
  color: #fff;
  font-weight: 800;
}

.mail-button.blue {
  background: #2563eb;
}

.muted-link {
  color: #2563eb;
  text-decoration: underline;
  word-break: break-word;
}

.note-box {
  border: 1px solid #fde047;
  border-radius: 6px;
  background: #fefce8;
  padding: 12px;
  font-size: 14px;
}

.qr-box {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 8px;
  border: 8px solid #fff;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 20px, #111 20px 30px, transparent 30px),
    linear-gradient(#111 10px, transparent 10px 20px, #111 20px 30px, transparent 30px),
    #e5e7eb;
  box-shadow: 0 0 0 1px #d1d5db;
  color: transparent;
  vertical-align: middle;
}

.attachment {
  padding: 14px 32px;
  border-top: 1px solid var(--line);
  color: #4b5563;
  font-size: 14px;
}

.flag {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid #9ca3af;
  border-radius: 6px;
  background: #e5e7eb;
  color: #374151;
  font-size: 15px;
  font-weight: 900;
  vertical-align: middle;
}

.flag-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  vertical-align: middle;
}

.flag.selected {
  border-color: #dc2626;
  background: #fff;
  color: #dc2626;
}

.flag.correct {
  border-color: #059669;
  background: #fff;
  color: #dc2626;
}

.flag.wrong,
.flag.missed {
  border-color: #dc2626;
  background: #fff;
  color: #dc2626;
}

.flag span {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.flag.wrong span,
.flag.missed span {
  background: #ef4444;
}

.scenario-progress {
  width: min(520px, 100%);
  margin: 0 auto 34px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.scenario-progress button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #e5e7eb;
  color: #111827;
  font-weight: 800;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}

.scenario-progress button.done {
  background: #22c55e;
  color: #fff;
}

.scenario-progress button.active {
  background: #2383c5;
  color: #fff;
  transform: scale(1.08);
}

.scenario-progress span {
  width: 82px;
  height: 2px;
  margin: 20px 8px 0;
  background: #d1d5db;
}

.choice-panel {
  width: min(900px, 100%);
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
}

.choice-panel.narrow {
  width: min(760px, 100%);
}

.choice-panel p {
  margin: 0 0 4px;
  font-size: 20px;
}

.option-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  padding: 16px 18px;
  line-height: 1.45;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.option-row:hover {
  border-color: #93c5fd;
  background: #f9fbff;
}

.option-row.correct {
  border-color: #22c55e;
  background: #f0fdf4;
  color: #166534;
}

.option-row.wrong {
  border-color: #ef4444;
  background: #fef2f2;
  color: #991b1b;
}

.option-row b {
  margin-left: auto;
  white-space: nowrap;
  font-size: 13px;
}

.option-row input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.download-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px;
}

.report-cover {
  min-height: 640px;
  padding: 38px;
  background: linear-gradient(145deg, #15233a, #1f3154);
  color: #fff;
}

.report-cover h3 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.08;
}

.report-cover h4 {
  margin-top: 90px;
  font-size: 24px;
}

.report-cover p {
  font-size: 18px;
  line-height: 1.5;
}

.download-form {
  background: #fff;
  padding: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .16);
  overflow: visible;
}

.input-flag {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 5px;
  column-gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}

.input-flag > span {
  grid-column: 1 / -1;
  color: #555;
  font-size: 12px;
}

.input-flag input {
  grid-column: 1;
  height: 42px;
  min-width: 0;
  border: 1px solid #c7c7c7;
  padding: 0 10px;
  background: #fff;
}

.input-flag .flag-wrap {
  grid-column: 2;
  position: relative;
  right: auto;
  bottom: auto;
  align-self: center;
  justify-self: end;
}

.check-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}

.check-row .flag-wrap {
  margin-left: auto;
  margin-right: 0;
  margin-top: -4px;
  flex: 0 0 auto;
}

.fake-download {
  width: 100%;
  min-height: 46px;
  border: 0;
  background: #111827;
  color: #fff;
  font-weight: 900;
}

.image-question {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.image-question img {
  width: 100%;
  border-radius: 8px;
}

.matrix-table {
  width: min(1150px, 100%);
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .09);
}

.matrix-table th {
  background: var(--navy);
  color: #fff;
  padding: 20px 16px;
  text-align: left;
  font-size: 16px;
}

.matrix-table th:not(:first-child) {
  width: 150px;
  text-align: center;
}

.matrix-table td {
  border: 1px solid #d6d9df;
  padding: 18px 16px;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.45;
}

.matrix-row-label {
  position: relative;
}

.matrix-table td:not(:first-child) {
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}

.matrix-table td:not(:first-child):hover {
  background: #eff6ff;
}

.matrix-table td.correct {
  background: #f0fdf4;
  border-color: #22c55e;
}

.matrix-table td.wrong {
  background: #fef2f2;
  border-color: #ef4444;
}

.matrix-table td b {
  display: block;
  margin-top: 6px;
  color: #166534;
  font-size: 12px;
}

.matrix-table td.wrong b {
  color: #991b1b;
}

.matrix-radio {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.matrix-radio input {
  position: absolute;
  opacity: 0;
}

.matrix-radio span {
  width: 20px;
  height: 20px;
  border: 1px solid #5f636d;
  border-radius: 50%;
  background: #fff;
}

.matrix-radio input:checked + span {
  border: 6px solid var(--blue);
}

.linkedin-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.linkedin-card {
  position: relative;
  border: 4px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  text-align: left;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.linkedin-card:hover {
  transform: translateY(-2px);
}

.linkedin-card.selected {
  border-color: var(--purple);
  box-shadow: 0 18px 40px rgba(124, 58, 237, .18);
}

.linkedin-version {
  display: block;
  margin: 0 0 12px;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.linkedin-frame {
  overflow: hidden;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

.linkedin-top {
  min-height: 58px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 16px;
}

.linkedin-top b {
  color: #0a66c2;
  font-size: 24px;
  font-weight: 900;
}

.linkedin-top label {
  min-width: 0;
}

.linkedin-top input {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  background: #eef3f8;
  padding: 0 12px;
  color: #4b5563;
}

.linkedin-top nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #5f636d;
  font-size: 12px;
}

.linkedin-author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 16px 8px;
}

.linkedin-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1f2937;
  color: #fff;
  font-weight: 900;
}

.linkedin-author h3 {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 900;
}

.linkedin-author p {
  margin: 0;
  color: #5f636d;
  font-size: 12px;
  line-height: 1.45;
}

.linkedin-copy {
  padding: 0 16px 12px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
}

.linkedin-copy p {
  margin: 0 0 10px;
}

.linkedin-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.linkedin-metrics,
.linkedin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #5f636d;
  font-size: 13px;
}

.linkedin-metrics {
  border-bottom: 1px solid #e5e7eb;
}

.linkedin-metrics span:first-child {
  margin-right: auto;
}

.linkedin-actions {
  justify-content: space-around;
  font-weight: 800;
}

.feedback {
  width: min(900px, 100%);
  display: none;
  margin: 28px auto 0;
  border-left: 4px solid var(--success);
  border-radius: 8px;
  background: #dcfce7;
  padding: 22px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.feedback.show {
  display: block;
}

.feedback h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feedback p {
  margin: 0;
  line-height: 1.6;
}

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

.answer-details > div {
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  background: #f8fff9;
  padding: 18px 20px;
  animation: riseIn .18s ease both;
}

.answer-details > div.wrong {
  border-color: #fecaca;
  background: #fff7f7;
}

.answer-details__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.answer-details__top b {
  color: #111827;
  font-size: 18px;
}

.answer-details__top span {
  color: #166534;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-details .wrong .answer-details__top span {
  color: #991b1b;
}

.answer-details p {
  color: #374151;
  font-size: 14px;
}

.answer-details__nav {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 96px 1fr 96px;
  align-items: center;
  gap: 12px;
}

.answer-details__nav strong {
  justify-self: center;
  color: #374151;
  font-size: 13px;
}

.answer-details__nav button {
  min-height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font-weight: 800;
}

.answer-details__nav button:not(:disabled):hover {
  border-color: #2383c5;
  color: #0f5f91;
}

.answer-details__nav button:disabled {
  cursor: default;
  opacity: .45;
}

.review-popover {
  position: absolute;
  z-index: 30;
  left: calc(100% + 14px);
  top: 50%;
  width: min(360px, 42vw);
  display: grid;
  gap: 10px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fff7f7;
  padding: 14px;
  color: #222;
  text-align: left;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .18);
  transform: translateY(-50%);
  animation: riseIn .18s ease both;
}

.review-popover::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid #fecaca;
  border-bottom: 1px solid #fecaca;
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
}

.review-popover.correct {
  border-color: #bbf7d0;
  background: #f8fff9;
}

.review-popover.correct::before {
  border-color: #bbf7d0;
}

.review-popover__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-popover__top b {
  color: #111827;
  font-size: 15px;
}

.review-popover__top em {
  color: #991b1b;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.review-popover.correct .review-popover__top em {
  color: #166534;
}

.review-popover__body {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

.review-popover__nav {
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  align-items: center;
  gap: 10px;
}

.review-popover__nav strong {
  justify-self: center;
  color: #374151;
  font-size: 12px;
}

.review-popover__nav button {
  min-height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.review-popover__nav button:not(:disabled):hover {
  border-color: #2383c5;
  color: #0f5f91;
}

.review-popover__nav button:disabled {
  cursor: default;
  opacity: .45;
}

.flag-wrap .review-popover,
.option-row .review-popover,
.linkedin-card .review-popover {
  left: 0;
  right: auto;
  top: calc(100% + 10px);
  width: min(420px, 42vw);
  transform: none;
}

.flag-wrap .review-popover::before,
.option-row .review-popover::before,
.linkedin-card .review-popover::before {
  left: 18px;
  right: auto;
  top: -8px;
  border-left: 1px solid #fecaca;
  border-top: 1px solid #fecaca;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.flag-wrap .review-popover.correct::before,
.option-row .review-popover.correct::before,
.linkedin-card .review-popover.correct::before {
  border-color: #bbf7d0;
}

.option-row .review-popover {
  left: 44px;
}

.flag-wrap .review-popover {
  width: min(360px, 38vw);
}

.download-form .flag-wrap .review-popover {
  left: auto;
  right: calc(100% + 12px);
  top: 50%;
  width: min(330px, 34vw);
  transform: translateY(-50%);
}

.download-form .flag-wrap .review-popover::before {
  left: auto;
  right: -8px;
  top: 50%;
  border-left: 0;
  border-top: 1px solid #fecaca;
  border-right: 1px solid #fecaca;
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}

.download-form .flag-wrap .review-popover.correct::before {
  border-color: #bbf7d0;
}

.matrix-row-label .review-popover {
  left: 18px;
  top: calc(100% + 8px);
  transform: none;
}

.matrix-row-label .review-popover::before {
  left: 24px;
  top: -8px;
  border-left: 1px solid #fecaca;
  border-top: 1px solid #fecaca;
  border-bottom: 0;
  transform: rotate(45deg);
}

.matrix-row-label .review-popover.correct::before {
  border-color: #bbf7d0;
}

.action-row {
  width: min(900px, 100%);
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.ghost-button {
  min-width: 130px;
  min-height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font-weight: 800;
}

.result-screen {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 50vw);
  align-items: end;
  gap: 36px;
  overflow: hidden;
  background: #fff;
  padding: 48px 6vw 0;
}

.result-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: auto 112%;
  background-position: 94% 100%;
  opacity: .06;
  pointer-events: none;
}

.result-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  align-self: center;
  padding-bottom: 48px;
}

.result-copy h1 {
  margin: 0 0 28px;
  font-size: 48px;
  line-height: 1.1;
}

.result-copy h1 span {
  display: block;
  color: #b33224;
  font-size: 22px;
}

.result-box {
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .12);
}

.scoreline {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 28px;
  font-weight: 900;
}

.result-box h2 {
  margin: 0 0 12px;
  font-size: 36px;
}

.result-box h2 span {
  color: var(--purple);
}

.result-box p,
.result-box li {
  color: #374151;
  font-size: 17px;
  line-height: 1.55;
}

.result-box h3 {
  margin-bottom: 8px;
}

.submission {
  min-height: 24px;
  margin: 20px 0;
  color: #374151;
  font-weight: 800;
}

.submission.error {
  color: #b91c1c;
}

.result-person {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  height: min(92vh, 720px);
  object-fit: cover;
  object-position: left bottom;
  align-self: end;
  justify-self: center;
  filter: drop-shadow(0 30px 40px rgba(15, 23, 42, .15));
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 54px 0;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .download-grid,
  .image-question,
  .linkedin-grid,
  .result-screen {
    grid-template-columns: 1fr;
  }

  .result-person {
    width: min(520px, 78vw);
    height: auto;
    max-height: 410px;
    object-fit: contain;
    order: -1;
  }
}

@media (max-width: 767px) {
  body {
    display: grid;
    place-items: center;
    padding: 24px;
    background: #fbf8ff;
  }

  #app {
    display: none;
  }

  .mobile-screen-message {
    min-height: calc(100vh - 48px);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    max-width: 360px;
    text-align: center;
  }

  .mobile-screen-message__eyebrow {
    margin: 0;
    color: var(--purple);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-screen-message__title {
    margin: 0;
    color: #20132f;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
  }

  .mobile-screen-message__copy {
    margin: 0;
    color: #5c516b;
    font-size: 16px;
    line-height: 1.55;
  }
}
