.result-screen {
  width: min(100%, 576px);
  margin: 0 auto;
  padding: 4px 0 24px;
}

.result-screen .analysis-brand {
  margin: 0 0 28px;
  text-align: left;
}

.result-heading {
  margin: 0 0 27px;
  text-align: center;
}

.result-heading .question-kicker {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 auto 13px;
  color: #c94f3c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.result-heading .question-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc6a57;
  box-shadow: 0 0 0 5px #f9e6e1;
}

.result-heading h2 {
  max-width: 540px;
  margin: 0 auto;
  color: #11131a;
  font-size: clamp(27px, 5.2vw, 32px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.045em;
}

.result-heading h2 > span {
  color: #c9543f;
}

.exhaustion-card {
  display: grid;
  min-height: 64px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid #e7ded9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 9px 25px rgb(58 38 30 / 6%);
}

.exhaustion-card small {
  color: #687077;
  font-size: 9px;
}

.exhaustion-card strong {
  grid-column: 2;
  grid-row: 1;
  padding: 7px 12px;
  color: #151820;
  border-radius: 99px;
  background: #fff0f2;
  font-size: 12px;
  line-height: 1;
}

.exhaustion-card strong span {
  margin-right: 3px;
  color: #ed3d5a;
}

.sleep-score {
  position: relative;
  margin-top: 14px;
  padding: 16px 18px 14px;
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(105deg, #ef3d5e 0%, #f48522 48%, #69c91f 100%);
  box-shadow: 0 14px 31px rgb(111 73 37 / 16%);
}

.sleep-score::after {
  content: "";
  position: absolute;
  top: -62px;
  right: -18px;
  width: 132px;
  height: 132px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
}

.sleep-score header,
.sleep-score footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sleep-score header span {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.sleep-score header b {
  padding: 6px 10px;
  border-radius: 99px;
  background: rgb(255 255 255 / 18%);
  font-size: 9px;
}

.score-track {
  position: relative;
  z-index: 1;
  height: 6px;
  margin: 28px 0 13px;
  border-radius: 99px;
  background: rgb(255 255 255 / 93%);
}

.score-track i {
  position: absolute;
  top: 50%;
  width: 17px;
  height: 17px;
  background: #fff;
  border: 4px solid #ed4960;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgb(65 35 24 / 26%);
  transform: translate(-50%, -50%);
}

.score-track i span {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: max-content;
  padding: 6px 9px;
  color: #5b4a43;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 10px rgb(74 42 29 / 15%);
  font: 600 9px/1 "DM Sans", sans-serif;
  transform: translateX(-50%);
}

.sleep-score footer span {
  font-size: 9px;
  font-weight: 700;
}

.result-section {
  margin-top: 29px;
  text-align: center;
}

.result-section h3 {
  margin: 0 0 11px;
  color: #11131a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-section p {
  max-width: 500px;
  margin: 0 auto;
  color: #545963;
  font-size: 11px;
  line-height: 1.65;
}

.diagnosis {
  padding: 0 12px;
}

.meaning {
  padding: 20px;
  border: 1px solid #e8dfda;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 26px rgb(58 38 30 / 5%);
}

.meaning ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none;
}

.meaning li {
  display: grid;
  min-height: 42px;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  color: #424750;
  border-radius: 11px;
  background: #fff7f7;
  font-size: 10px;
  line-height: 1.45;
}

.meaning li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #e44b61;
  border-radius: 50%;
  background: #ffe4e8;
  font-size: 11px;
  font-weight: 900;
}

.result-good-news {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-top: 16px;
  padding: 18px 19px;
  border: 1px solid #badbd0;
  border-radius: 16px;
  background: #f4fbf8;
  box-shadow: none;
}

.result-good-news > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #188464;
  font-size: 13px;
}

.result-good-news h3 {
  margin: 1px 0 6px;
  font-size: 12px;
  text-transform: uppercase;
}

.result-good-news p {
  margin: 0;
  color: #4e5d58;
  font-size: 10px;
  line-height: 1.55;
}

.method-can {
  margin-top: 16px;
  padding: 18px 19px;
  border: 1px solid #ebe5e1;
  border-radius: 16px;
  background: #faf8f7;
  text-align: left;
}

.method-can > p {
  margin: 0 0 12px;
  color: #6e6865;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.method-can ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-can li {
  position: relative;
  min-height: 44px;
  padding: 9px 9px 9px 29px;
  color: #464b49;
  border: 1px solid #eeeae7;
  border-radius: 10px;
  background: #fff;
  font-size: 9px;
  line-height: 1.45;
}

.method-can li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 10px;
  color: #188464;
  font-weight: 900;
}

.result-warning {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 15px;
  padding: 13px 15px;
  color: #72522d;
  border: 1px solid #f0dfbc;
  border-radius: 12px;
  background: #fff9ea;
  font-size: 10px;
}

.result-quote {
  max-width: 470px;
  margin: 18px auto;
  color: #413d3b;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
}

.result-button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 14px 29px rgb(24 132 100 / 23%);
  text-decoration: none;
}

.result-button > span {
  margin-right: 9px;
  font-size: 18px;
}

.result-disclaimer {
  margin: 11px 0 0;
  color: #99918c;
  text-align: center;
  font-size: 8px;
}

@media (max-width: 480px) {
  .result-screen .analysis-brand { margin-bottom: 23px; font-size: 29px; }
  .result-heading { margin-bottom: 22px; }
  .result-heading h2 { font-size: 26px; }
  .method-can ul { grid-template-columns: 1fr; }
  .sleep-score { padding-inline: 15px; }
  .meaning { padding: 16px 14px; }
}
