:root {
  --pc-bg: #0f1115;
  --pc-surface: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  --pc-surface-strong: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  --pc-border: rgba(255,255,255,0.09);
  --pc-border-strong: rgba(212,175,55,0.18);
  --pc-text: #f4f1ea;
  --pc-text-soft: rgba(244,241,234,0.8);
  --pc-text-muted: rgba(244,241,234,0.62);
  --pc-gold: var(--gold, #d4af37);
  --pc-gold-soft: rgba(212,175,55,0.14);
  --pc-green: #8fddb0;
  --pc-green-bg: rgba(62,153,99,0.18);
  --pc-yellow: #f1d276;
  --pc-yellow-bg: rgba(212,175,55,0.18);
  --pc-red: #f0b0b0;
  --pc-red-bg: rgba(185,87,87,0.18);
  --pc-shadow: 0 18px 45px rgba(0,0,0,0.55);
  --pc-shadow-soft: 0 10px 30px rgba(0,0,0,0.36);
  --pc-r-xl: 20px;
  --pc-r-lg: 16px;
  --pc-r-md: 12px;
  --pc-r-pill: 999px;
}

html {
  scroll-padding-top: 92px;
}

body.tool-shell--project-check {
  background: #0f1115;
  color: var(--pc-text);
}

body.tool-shell--project-check .r4x-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.tool-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.98), rgba(5, 6, 10, 0.9));
  border-bottom: 1px solid rgba(245, 210, 122, 0.28);
  backdrop-filter: blur(10px);
}

.tool-header__inner,
.tool-main__inner,
.tool-footer__inner {
  max-width: 920px;
  margin: 0 auto;
  width: min(100% - 32px, 920px);
}

.tool-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.tool-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
}

.tool-header__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 12px rgba(245, 210, 122, 0.6);
  border: 1px solid rgba(245, 210, 122, 0.9);
}

.tool-header__eyebrow,
.tool-step__label,
.result-hero__eyebrow,
.result-hero__action-label {
  color: var(--pc-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-header__eyebrow,
.tool-step__label,
.result-hero__eyebrow,
.result-hero__action-label {
  margin: 0 0 10px;
}

.tool-header__title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 30px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.tool-header__subtitle {
  margin: 4px 0 0;
  color: var(--pc-text-soft);
  font-size: 14px;
}

.tool-main {
  padding: 28px 0 48px;
}

.tool-progress {
  margin-bottom: 14px;
}

.tool-progress__label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: var(--pc-r-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--pc-text-soft);
  font-size: 13px;
  font-weight: 700;
}

.tool-step,
.tool-result {
  opacity: 1;
  transform: translateY(0);
}

.tool-step.is-entering .tool-card,
.tool-result.is-entering .tool-card {
  animation: pc-fade-up 240ms ease-out;
}

@keyframes pc-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tool-card {
  background: var(--pc-surface);
  border: 1px solid var(--pc-border-strong);
  border-radius: var(--pc-r-lg);
  box-shadow: var(--pc-shadow);
  overflow: hidden;
  margin-bottom: 18px;
}

.tool-card--intro,
.tool-card--result {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 28%),
    linear-gradient(180deg, rgba(212,175,55,0.10), rgba(255,255,255,0.01));
}

.tool-card__content {
  padding: 22px;
}

.tool-card__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 18px 22px 22px;
}

.tool-step__title {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 12px 0;
  font-weight: 700;
  max-width: 26ch;
}

.tool-step__subtitle,
.tool-step__intro,
.tool-question__help,
.tool-question__subhelp,
.tool-question__hint,
.tool-note,
.tool-optional-field__label,
.tool-validation,
.result-hero__summary,
.result-light-card__text,
.result-section__text,
.result-list__item,
.tool-footer__back-link {
  color: var(--pc-text-soft);
}

.tool-step__intro,
.tool-step__subtitle,
.tool-note,
.tool-question__help,
.tool-question__subhelp,
.result-hero__summary,
.result-section__text {
  font-size: 15px;
  line-height: 1.6;
}

.tool-bullet-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tool-bullet-list__item {
  position: relative;
  padding-left: 18px;
}

.tool-bullet-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pc-gold);
  transform: translateY(-50%);
}

.tool-note,
.tool-question__hint,
.result-list__item,
.tool-optional-field__textarea,
.tool-question,
.result-light-card,
.result-hero,
.result-badge {
  backdrop-filter: blur(4px);
}

.tool-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.tool-question-group {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.tool-question {
  padding: 16px;
  border-radius: var(--pc-r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.tool-question.is-invalid {
  border-color: rgba(185,87,87,0.45);
  box-shadow: inset 0 0 0 1px rgba(185,87,87,0.12);
}

.tool-question__label {
  font-size: clamp(18px, 2.7vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  font-weight: 700;
}

.tool-question__subhelp {
  color: var(--pc-text-muted);
}

.tool-question__hint {
  margin: 12px 0 0;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  font-size: 14px;
}

.tool-question__hint--positive {
  background: linear-gradient(180deg, rgba(62,153,99,0.14), rgba(255,255,255,0.01));
  border-color: rgba(62,153,99,0.30);
  color: #dff3e4;
}

.tool-question__hint--warning,
.tool-validation,
.tool-question__error {
  background: linear-gradient(180deg, rgba(185,87,87,0.14), rgba(255,255,255,0.01));
  border-color: rgba(185,87,87,0.30);
  color: #f0d1d1;
}

.tool-example-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--pc-text-soft);
}

.tool-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.tool-option {
  display: block;
  width: 100%;
  cursor: pointer;
}

.tool-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tool-option__visual {
  width: 100%;
  text-align: left;
  min-height: 56px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color: var(--pc-text);
  border-radius: var(--pc-r-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.tool-option__visual::before {
  content: '';
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.22);
  background: transparent;
  transition: all 140ms ease;
}

.tool-option:hover .tool-option__visual {
  border-color: rgba(255,255,255,0.20);
  background: linear-gradient(180deg, rgba(212,175,55,0.07), rgba(255,255,255,0.03));
  transform: translateY(-1px);
}

.tool-option.is-selected .tool-option__visual {
  border-color: var(--pc-gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.16), rgba(212,175,55,0.06));
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.14), 0 10px 28px rgba(0,0,0,0.18);
}

.tool-option.is-selected .tool-option__visual::before {
  border-color: var(--pc-gold);
  background: radial-gradient(circle at center, var(--pc-gold) 0 44%, transparent 45%);
}

.tool-option__label {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.tool-option__input:focus-visible + .tool-option__visual,
.tool-button:focus-visible,
.tool-header__logo-link:focus-visible,
.tool-footer__back-link:focus-visible,
.result-actions a:focus-visible,
.tool-optional-field__textarea:focus-visible {
  outline: 2px solid var(--pc-gold);
  outline-offset: 3px;
}

.tool-question__error {
  display: block;
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(185,87,87,0.30);
  font-size: 14px;
}

.tool-optional-field {
  margin-top: 18px;
}

.tool-optional-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.tool-optional-field__textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color: var(--pc-text);
  border-radius: var(--pc-r-md);
  padding: 14px 16px;
  resize: vertical;
  min-height: 96px;
}

.tool-validation {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(185,87,87,0.30);
  font-size: 14px;
}

.tool-button {
  appearance: none;
  min-height: 46px;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.tool-button:hover {
  transform: translateY(-1px);
}

.tool-button--primary {
  background: var(--pc-gold);
  color: #101114;
  box-shadow: 0 6px 14px rgba(212,175,55,0.12);
}

.tool-button--primary:hover {
  background: #e1bc49;
}

.tool-button--secondary {
  background: rgba(255,255,255,0.04);
  color: var(--pc-text);
  border-color: rgba(255,255,255,0.22);
}

.tool-button--secondary:hover {
  background: rgba(255,255,255,0.06);
}

.tool-button--ghost {
  background: transparent;
  color: rgba(244,241,234,0.78);
  border-color: rgba(255,255,255,0.22);
}

.result-hero {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--pc-r-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.result-hero__title {
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: 1.14;
  margin: 0 0 10px;
}

.result-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212,175,55,0.18);
  color: var(--pc-yellow);
  border: 1px solid rgba(212,175,55,0.25);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.result-lights,
.result-section {
  margin-top: 18px;
}

.result-lights__grid,
.result-columns {
  display: grid;
  gap: 16px;
}

.result-light-card {
  padding: 18px;
  background: var(--pc-surface-strong);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--pc-r-lg);
  box-shadow: var(--pc-shadow-soft);
}

.result-light-card__title,
.result-section__title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0 0 12px;
}

.result-light-card__status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  margin-bottom: 12px;
}

.result-light-card__status.is-green { background: var(--pc-green-bg); color: var(--pc-green); border: 1px solid rgba(62,153,99,0.30); }
.result-light-card__status.is-yellow { background: var(--pc-yellow-bg); color: var(--pc-yellow); border: 1px solid rgba(212,175,55,0.30); }
.result-light-card__status.is-red { background: var(--pc-red-bg); color: var(--pc-red); border: 1px solid rgba(185,87,87,0.30); }

.result-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-list__item {
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  font-size: 14px;
  line-height: 1.55;
}

.result-section--next-step .result-actions {
  margin-top: 8px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-footer {
  padding: 0 0 26px;
}

.tool-footer__back-link {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tool-footer__back-link:hover {
  color: var(--pc-text);
}

@media (min-width: 720px) {
  .tool-card__content {
    padding: 26px;
  }

  .result-hero {
    grid-template-columns: 1.45fr 0.8fr;
    align-items: start;
  }

  .result-lights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .result-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .tool-card__footer {
    flex-direction: column-reverse;
  }

  .tool-card__footer .tool-button,
  .result-actions .tool-button,
  .result-actions a.tool-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tool-header__inner,
  .tool-main__inner,
  .tool-footer__inner {
    width: min(100% - 24px, 920px);
  }

  .tool-header__logo {
    width: 48px;
    height: 48px;
  }

  .tool-main {
    padding-top: 22px;
  }

  .tool-card__content,
  .tool-card__footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}


body.tool-shell--project-check {
  padding-top: 0;
}

body.tool-shell--project-check .tool-main {
  padding-top: 22px;
}

body.tool-shell--project-check .page-footer {
  margin-top: 18px;
}

.result-light-card__status {
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: auto;
  font-size: 0.98rem;
}

.result-light-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 12px;
}

.result-light-card__status.is-green .result-light-card__dot {
  background: var(--pc-green);
  box-shadow: 0 0 0 4px rgba(103, 183, 122, 0.18), 0 0 14px rgba(103, 183, 122, 0.8);
}

.result-light-card__status.is-yellow .result-light-card__dot {
  background: var(--pc-yellow);
  box-shadow: 0 0 0 4px rgba(211, 177, 95, 0.18), 0 0 14px rgba(211, 177, 95, 0.8);
}

.result-light-card__status.is-red .result-light-card__dot {
  background: #ff8b8b;
  box-shadow: 0 0 0 4px rgba(217, 107, 107, 0.18), 0 0 14px rgba(217, 107, 107, 0.85);
}

.result-light-card__status.is-green,
.result-light-card__status.is-yellow,
.result-light-card__status.is-red {
  color: var(--pc-text);
}

.tool-question__error {
  margin: 10px 0 0;
  color: #f5d9d9;
  font-size: 0.9rem;
}

.tool-question.is-invalid {
  border-color: rgba(217, 107, 107, 0.5);
  box-shadow: 0 0 0 1px rgba(217, 107, 107, 0.18);
}

@media (max-width: 719px) {
  body.tool-shell--project-check {
    padding-top: 0;
  }
}




.tool-card__footer--intro {
  justify-content: space-between;
  align-items: center;
}

.tool-button--link-inline {
  background: transparent;
  border: 0;
  color: var(--pc-text);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  padding: 0;
  min-height: auto;
  margin-left: auto;
}

.tool-button--link-inline:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tool-button--link-inline:focus-visible {
  outline: 2px solid rgba(245, 210, 122, 0.9);
  outline-offset: 4px;
  border-radius: 6px;
}

.tool-question__help {
  color: var(--pc-text-soft);
}

.tool-question__help-label {
  color: #8fb8ff;
  font-weight: 700;
}

.tool-button.is-pulse {
  box-shadow: 0 0 0 0 rgba(245, 210, 122, 0.45);
  animation: pcPulse 1s ease-out 1;
}

@keyframes pcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 210, 122, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(245, 210, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 210, 122, 0);
  }
}

@media (max-width: 719px) {
  .tool-card__footer--intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .tool-card__footer--intro .tool-button--primary {
    width: auto;
  }

  .tool-card__footer--intro .tool-button--link-inline {
    width: auto;
    margin-left: auto;
    text-align: right;
  }
}

.tool-step__title:focus, .result-hero__title:focus {
  outline: none;
}


/* Premium Ergebnis Screen Overrides */
html, body.tool-shell--project-check {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

.tool-step__title,
.result-hero__title {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.tool-step__title::selection,
.result-hero__title::selection {
  background: rgba(212,175,55,0.16);
}

.result-hero {
  position: relative;
  gap: 22px;
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.18);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 20px 40px rgba(0,0,0,0.28);
}

.result-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.result-hero__eyebrow,
.result-hero__action-label {
  color: #d4af37;
  opacity: 0.96;
  margin-bottom: 10px;
}

.result-hero__title {
  font-size: clamp(30px, 4.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #f8f3e7;
  text-wrap: balance;
}

.result-hero__summary {
  max-width: 54ch;
  color: rgba(244,241,234,0.84);
  font-size: 17px;
  line-height: 1.68;
}

.result-hero__action {
  align-self: start;
}

.result-badge {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212,175,55,0.14), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 18px rgba(212,175,55,0.08);
  color: #eed27d;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.result-lights {
  margin-top: 30px;
}

.result-lights__grid {
  gap: 18px;
  margin-top: 16px;
}

.result-light-card {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 34px rgba(0,0,0,0.2);
  overflow: hidden;
}

.result-light-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}

.result-light-card__title,
.result-section__title {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
  color: #f8f3e7;
}

.result-section__title {
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.result-light-card__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: auto;
  padding: 0;
  margin-bottom: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #f4f1ea;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-light-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 12px;
}

.result-light-card__status.is-green .result-light-card__dot {
  background: #7ee0a4;
  box-shadow: 0 0 0 5px rgba(126,224,164,0.12), 0 0 18px rgba(126,224,164,0.9), 0 0 34px rgba(126,224,164,0.3);
}

.result-light-card__status.is-yellow .result-light-card__dot {
  background: #f4cf6a;
  box-shadow: 0 0 0 5px rgba(244,207,106,0.12), 0 0 18px rgba(244,207,106,0.92), 0 0 34px rgba(244,207,106,0.28);
}

.result-light-card__status.is-red .result-light-card__dot {
  background: #ff8a8a;
  box-shadow: 0 0 0 5px rgba(255,138,138,0.12), 0 0 18px rgba(255,138,138,0.95), 0 0 34px rgba(255,138,138,0.28);
}

.result-light-card__text {
  color: rgba(244,241,234,0.78);
  font-size: 16px;
  line-height: 1.62;
}

.result-columns,
.result-section {
  margin-top: 30px;
}

.result-list {
  gap: 12px;
}

.result-list__item {
  padding: 15px 16px 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.016));
  font-size: 16px;
  line-height: 1.62;
  color: rgba(244,241,234,0.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.result-list__item::before {
  width: 7px;
  height: 7px;
  left: 11px;
  top: 22px;
  background: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.55);
}

.result-section__text {
  color: rgba(244,241,234,0.88);
  font-size: 17px;
  line-height: 1.72;
  max-width: 62ch;
}

.result-actions {
  gap: 12px;
  margin-top: 12px;
}

.result-actions .tool-button,
.result-actions a.tool-button {
  min-height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.result-actions .tool-button--primary,
.result-actions a.tool-button--primary {
  background: linear-gradient(180deg, #f1d172, #dfbd5c);
  color: #131313;
  box-shadow: 0 10px 26px rgba(212,175,55,0.18), inset 0 1px 0 rgba(255,255,255,0.3);
}

.result-actions .tool-button--secondary,
.result-actions a.tool-button--secondary,
.result-actions .tool-button--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.14);
  color: #f4f1ea;
}

.result-actions .tool-button--ghost {
  color: rgba(244,241,234,0.94);
}

@media (min-width: 720px) {
  .result-hero {
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.72fr);
    padding: 24px 24px 22px;
  }

  .result-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 719px) {
  .result-hero {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .result-hero__title {
    font-size: 32px;
    line-height: 1.04;
  }

  .result-light-card {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .result-light-card__title {
    font-size: 22px;
  }

  .result-light-card__text,
  .result-list__item,
  .result-section__text {
    font-size: 15px;
  }

  .result-actions {
    gap: 10px;
  }

  .result-actions .tool-button,
  .result-actions a.tool-button {
    width: 100%;
  }
}


/* ===== Project Check Result Screen Premium Upgrade ===== */
:root {
  --pc-gold-premium: #caa64b;
  --pc-gold-deep: #8f6b1b;
  --pc-card-hi: rgba(255,255,255,0.06);
  --pc-card-lo: rgba(255,255,255,0.02);
  --pc-card-edge: rgba(255,255,255,0.10);
  --pc-green-premium: #63d38e;
  --pc-yellow-premium: #e4c15a;
  --pc-red-premium: #ff8f8f;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tool-card--result {
  background:
    radial-gradient(circle at top right, rgba(202,166,75,0.16), transparent 28%),
    radial-gradient(circle at top left, rgba(202,166,75,0.08), transparent 22%),
    linear-gradient(180deg, rgba(202,166,75,0.08) 0%, rgba(255,255,255,0.015) 24%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(202,166,75,0.34);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(202,166,75,0.04);
}

.tool-card--result .tool-card__content {
  padding: 30px 30px 28px;
}

#screen-result .tool-step__title {
  max-width: 18ch;
  font-size: clamp(2.15rem, 4.2vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 850;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,0.03);
  margin-bottom: 16px;
}

#screen-result .tool-step__label {
  color: #e3c36b;
  margin-bottom: 12px;
}

.result-hero {
  position: relative;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(202,166,75,0.24);
  background:
    radial-gradient(circle at top right, rgba(202,166,75,0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 18px 34px rgba(0,0,0,0.22);
}

.result-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.result-hero__title {
  font-size: clamp(2.2rem, 4.1vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  font-weight: 900;
  text-wrap: balance;
}

.result-hero__summary {
  max-width: 38ch;
  color: rgba(244,241,234,0.9);
  font-size: 1.09rem;
  line-height: 1.65;
}

.result-hero__action-label,
.result-hero__eyebrow {
  color: #d8b555;
  letter-spacing: 0.07em;
}

.result-badge {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(202,166,75,0.18), rgba(202,166,75,0.1));
  color: #f2de9f;
  border: 1px solid rgba(202,166,75,0.36);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 18px rgba(202,166,75,0.12);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.result-section__title,
.result-light-card__title {
  font-size: 1.22rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 850;
  margin: 0 0 14px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.03);
}

.result-lights {
  margin-top: 28px;
}

.result-lights__grid {
  gap: 18px;
  margin-top: 16px;
}

.result-light-card {
  position: relative;
  overflow: hidden;
  padding: 20px 18px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 32px rgba(0,0,0,0.26);
}

.result-light-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.result-light-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 14px;
  min-height: 18px;
}

.result-light-card__status > span:not(.result-light-card__dot):not(.sr-only) {
  display: none !important;
}

.result-light-card__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 14px;
}

.result-light-card.is-green {
  border-color: rgba(99,211,142,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 34px rgba(0,0,0,0.26),
    0 0 0 1px rgba(99,211,142,0.04),
    0 0 26px rgba(99,211,142,0.08);
}

.result-light-card.is-yellow {
  border-color: rgba(228,193,90,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 34px rgba(0,0,0,0.26),
    0 0 0 1px rgba(228,193,90,0.04),
    0 0 26px rgba(228,193,90,0.08);
}

.result-light-card.is-red {
  border-color: rgba(255,143,143,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 34px rgba(0,0,0,0.26),
    0 0 0 1px rgba(255,143,143,0.04),
    0 0 26px rgba(255,143,143,0.08);
}

.result-light-card.is-green .result-light-card__dot {
  background: var(--pc-green-premium);
  box-shadow: 0 0 0 5px rgba(99,211,142,0.12), 0 0 20px rgba(99,211,142,0.95);
}

.result-light-card.is-yellow .result-light-card__dot {
  background: var(--pc-yellow-premium);
  box-shadow: 0 0 0 5px rgba(228,193,90,0.12), 0 0 20px rgba(228,193,90,0.95);
}

.result-light-card.is-red .result-light-card__dot {
  background: var(--pc-red-premium);
  box-shadow: 0 0 0 5px rgba(255,143,143,0.12), 0 0 20px rgba(255,143,143,0.95);
}

.result-light-card__text {
  color: rgba(244,241,234,0.88);
  font-size: 1rem;
  line-height: 1.72;
}

.result-columns {
  margin-top: 26px;
  gap: 18px;
}

.result-list {
  gap: 12px;
}

.result-list__item {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  color: rgba(244,241,234,0.9);
  font-size: 1rem;
  line-height: 1.65;
}

#result-warnings-list .result-list__item {
  border-color: rgba(255,143,143,0.13);
  background:
    linear-gradient(180deg, rgba(255,143,143,0.05), rgba(255,255,255,0.02));
}

#result-strengths-list .result-list__item {
  border-color: rgba(99,211,142,0.13);
  background:
    linear-gradient(180deg, rgba(99,211,142,0.045), rgba(255,255,255,0.02));
}

#result-checks-list .result-list__item {
  border-color: rgba(202,166,75,0.14);
  background:
    linear-gradient(180deg, rgba(202,166,75,0.05), rgba(255,255,255,0.02));
}

#result-action-text {
  color: rgba(244,241,234,0.93);
  font-size: 1.08rem;
  line-height: 1.76;
  max-width: 70ch;
}

.result-section--next-step {
  margin-top: 34px;
}

.result-actions {
  gap: 14px;
  margin-top: 14px;
}

.result-actions .tool-button,
.result-actions a.tool-button {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.result-actions .tool-button--primary {
  background: linear-gradient(180deg, #ebce73 0%, #d8b455 100%);
  color: #141414;
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 14px 26px rgba(202,166,75,0.18),
    inset 0 1px 0 rgba(255,255,255,0.34);
}

.result-actions .tool-button--primary:hover {
  background: linear-gradient(180deg, #f0d883 0%, #ddb95d 100%);
}

.result-actions .tool-button--secondary,
.result-actions .tool-button--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: var(--pc-text);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.result-actions .tool-button--secondary:hover,
.result-actions .tool-button--ghost:hover {
  border-color: rgba(202,166,75,0.22);
  background: linear-gradient(180deg, rgba(202,166,75,0.06), rgba(255,255,255,0.02));
}

@media (min-width: 720px) {
  .result-actions .tool-button,
  .result-actions a.tool-button {
    min-width: 208px;
  }
}

@media (max-width: 719px) {
  .tool-card--result .tool-card__content {
    padding: 24px 20px 24px;
  }

  #screen-result .tool-step__title {
    max-width: 12ch;
    font-size: clamp(2rem, 7vw, 2.45rem);
  }

  .result-hero {
    padding: 18px;
  }

  .result-light-card {
    padding: 18px 16px 16px;
  }

  .result-actions {
    gap: 12px;
  }

  .result-actions .tool-button,
  .result-actions a.tool-button {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Typography alignment with Kauf Check ===== */
#screen-intro .tool-step__title,
#screen-result .tool-step__title {
  font-size: clamp(30px, 5vw, 42px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.015em !important;
  font-weight: 700 !important;
}

.tool-step[data-screen="screen-profile"] .tool-step__title,
.tool-step[data-screen="screen-attention"] .tool-step__title,
.tool-step[data-screen="screen-utility"] .tool-step__title,
.tool-step[data-screen="screen-substance"] .tool-step__title,
.tool-step[data-screen="screen-credibility"] .tool-step__title,
.tool-step[data-screen="screen-tokenomics"] .tool-step__title,
.tool-step[data-screen="screen-hype"] .tool-step__title {
  font-size: clamp(24px, 4vw, 32px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.015em !important;
  font-weight: 700 !important;
  max-width: 26ch !important;
}

.result-hero__title {
  font-size: clamp(24px, 4.5vw, 32px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.015em !important;
  font-weight: 700 !important;
  margin: 0 0 10px 0 !important;
}

.result-light-card__title,
.result-section__title {
  font-size: 24px !important;
  line-height: 1.14 !important;
  letter-spacing: -0.015em !important;
  font-weight: 700 !important;
}

.result-section__title {
  font-size: 16px !important;
  line-height: 1.28 !important;
}

.result-actions .tool-button,
.result-actions a.tool-button {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  min-height: 52px !important;
  padding: 0 18px !important;
}

.result-badge {
  font-weight: 800 !important;
}

@media (max-width: 719px) {
  #screen-result .tool-step__title {
    font-size: clamp(30px, 8vw, 42px) !important;
    max-width: 14ch !important;
  }

  .result-hero__title {
    font-size: clamp(24px, 6vw, 32px) !important;
  }

  .result-light-card__title {
    font-size: 22px !important;
  }
}


/* ===== Project Check Result Screen Refinement v12 ===== */
#screen-result .tool-step__title {
  max-width: 18ch;
  font-size: clamp(1.95rem, 4vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: #f7f2e7;
  text-wrap: balance;
}

#screen-result .tool-step__label,
#screen-result .result-hero__eyebrow,
#screen-result .result-hero__action-label {
  color: #d7b45a;
}

#screen-result .result-hero {
  gap: 22px;
  padding: 24px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(202,166,75,0.30);
  background:
    radial-gradient(circle at top right, rgba(202,166,75,0.13), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.022));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 22px 46px rgba(0,0,0,0.30);
}

#screen-result .result-hero__title {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fbf6ea;
}

#screen-result .result-hero__summary {
  max-width: 56ch;
  color: rgba(244,241,234,0.86);
  font-size: 1rem;
  line-height: 1.7;
}

#screen-result .result-badge {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(202,166,75,0.16), rgba(202,166,75,0.07));
  border: 1px solid rgba(202,166,75,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 24px rgba(202,166,75,0.10);
  color: #f0d684;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

#screen-result .result-lights {
  margin-top: 34px;
}

#screen-result .result-lights__grid {
  gap: 18px;
}

#screen-result .result-light-card {
  position: relative;
  padding: 18px 17px 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.022));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 34px rgba(0,0,0,0.26);
}

#screen-result .result-light-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 1;
}

#screen-result .result-light-card--chance {
  border-color: rgba(103,211,142,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 34px rgba(0,0,0,0.26), 0 0 0 1px rgba(103,211,142,0.05);
}
#screen-result .result-light-card--chance::after {
  box-shadow: inset 0 0 0 1px rgba(103,211,142,0.04), 0 0 34px rgba(103,211,142,0.11);
}

#screen-result .result-light-card--risk {
  border-color: rgba(255,143,143,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 34px rgba(0,0,0,0.26), 0 0 0 1px rgba(255,143,143,0.05);
}
#screen-result .result-light-card--risk::after {
  box-shadow: inset 0 0 0 1px rgba(255,143,143,0.04), 0 0 34px rgba(255,143,143,0.12);
}

#screen-result .result-light-card--clarity {
  border-color: rgba(228,193,90,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 34px rgba(0,0,0,0.26), 0 0 0 1px rgba(228,193,90,0.05);
}
#screen-result .result-light-card--clarity::after {
  box-shadow: inset 0 0 0 1px rgba(228,193,90,0.04), 0 0 34px rgba(228,193,90,0.12);
}

#screen-result .result-light-card__title {
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #faf5ea;
  margin-bottom: 12px;
}

#screen-result .result-light-card__status {
  margin-bottom: 14px;
}

#screen-result .result-light-card__dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
}

#screen-result .result-light-card__status.is-green .result-light-card__dot {
  background: #63d38e;
  box-shadow: 0 0 0 5px rgba(99,211,142,0.13), 0 0 20px rgba(99,211,142,0.92), 0 0 38px rgba(99,211,142,0.30);
}
#screen-result .result-light-card__status.is-yellow .result-light-card__dot {
  background: #e4c15a;
  box-shadow: 0 0 0 5px rgba(228,193,90,0.13), 0 0 20px rgba(228,193,90,0.92), 0 0 38px rgba(228,193,90,0.30);
}
#screen-result .result-light-card__status.is-red .result-light-card__dot {
  background: #ff8f8f;
  box-shadow: 0 0 0 5px rgba(255,143,143,0.13), 0 0 20px rgba(255,143,143,0.94), 0 0 38px rgba(255,143,143,0.32);
}

#screen-result .result-light-card__text {
  color: rgba(244,241,234,0.84);
  font-size: 0.98rem;
  line-height: 1.68;
}

#screen-result .result-section,
#screen-result .result-columns {
  margin-top: 32px;
}

#screen-result .result-section__title {
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #f7f2e7;
  margin-bottom: 14px;
}

#screen-result #result-warnings-section .result-list,
#screen-result #result-strengths-section .result-list {
  gap: 12px;
}

#screen-result #result-warnings-section .result-list__item,
#screen-result #result-strengths-section .result-list__item,
#screen-result #result-checks-section .result-list__item {
  position: relative;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18);
  font-size: 0.98rem;
  line-height: 1.66;
  color: rgba(244,241,234,0.87);
}

#screen-result #result-warnings-section .result-list__item::before,
#screen-result #result-strengths-section .result-list__item::before,
#screen-result #result-checks-section .result-list__item::before {
  display: none;
}

#screen-result #result-warnings-section .result-list__item {
  border-color: rgba(255,143,143,0.18);
  background: linear-gradient(180deg, rgba(255,143,143,0.06), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18), 0 0 24px rgba(255,143,143,0.05);
}

#screen-result #result-strengths-section .result-list__item {
  border-color: rgba(103,211,142,0.18);
  background: linear-gradient(180deg, rgba(103,211,142,0.06), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18), 0 0 24px rgba(103,211,142,0.05);
}

#screen-result #result-checks-section .result-list__item {
  border-color: rgba(202,166,75,0.16);
  background: linear-gradient(180deg, rgba(202,166,75,0.055), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18), 0 0 24px rgba(202,166,75,0.04);
}

#screen-result .result-section__text {
  color: rgba(244,241,234,0.9);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 62ch;
}

#screen-result .result-actions {
  gap: 14px;
  margin-top: 14px;
}

#screen-result .result-actions .tool-button,
#screen-result .result-actions a.tool-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.012em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

#screen-result .result-actions .tool-button--primary,
#screen-result .result-actions a.tool-button--primary {
  background: linear-gradient(180deg, #f0cf71 0%, #dfbd5c 100%);
  color: #121212;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 28px rgba(202,166,75,0.20), inset 0 1px 0 rgba(255,255,255,0.28);
}

#screen-result .result-actions .tool-button--secondary,
#screen-result .result-actions a.tool-button--secondary,
#screen-result .result-actions .tool-button--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  color: #f4f1ea;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
}

#screen-result .result-actions .tool-button--secondary:hover,
#screen-result .result-actions a.tool-button--secondary:hover,
#screen-result .result-actions .tool-button--ghost:hover {
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

@media (min-width: 720px) {
  #screen-result .result-hero {
    grid-template-columns: minmax(0, 1.48fr) minmax(220px, 0.72fr);
  }
}

@media (max-width: 719px) {
  #screen-result .tool-card--result .tool-card__content {
    padding: 24px 18px 22px;
  }

  #screen-result .tool-step__title {
    font-size: 2rem;
    line-height: 1.04;
  }

  #screen-result .result-hero {
    padding: 18px 16px;
    border-radius: 18px;
  }

  #screen-result .result-hero__title {
    font-size: 2rem;
  }

  #screen-result .result-light-card {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  #screen-result .result-light-card__title {
    font-size: 1.2rem;
  }

  #screen-result .result-light-card__text,
  #screen-result .result-list__item,
  #screen-result .result-section__text {
    font-size: 0.95rem;
  }

  #screen-result .result-actions {
    gap: 10px;
  }
}

/* Final premium result pass. Status color must always match dot, border, glow and tint */
#screen-result .result-light-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

#screen-result .result-light-card.is-green {
  border-color: rgba(103, 211, 142, 0.34);
  background:
    radial-gradient(circle at top left, rgba(103, 211, 142, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(103, 211, 142, 0.045), rgba(255,255,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 34px rgba(0,0,0,0.26),
    0 0 0 1px rgba(103, 211, 142, 0.05),
    0 0 34px rgba(103, 211, 142, 0.14);
}

#screen-result .result-light-card.is-yellow {
  border-color: rgba(228, 193, 90, 0.36);
  background:
    radial-gradient(circle at top left, rgba(228, 193, 90, 0.11), transparent 42%),
    linear-gradient(180deg, rgba(228, 193, 90, 0.05), rgba(255,255,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 34px rgba(0,0,0,0.26),
    0 0 0 1px rgba(228, 193, 90, 0.06),
    0 0 34px rgba(228, 193, 90, 0.16);
}

#screen-result .result-light-card.is-red {
  border-color: rgba(255, 143, 143, 0.38);
  background:
    radial-gradient(circle at top left, rgba(255, 143, 143, 0.115), transparent 42%),
    linear-gradient(180deg, rgba(255, 143, 143, 0.052), rgba(255,255,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 34px rgba(0,0,0,0.26),
    0 0 0 1px rgba(255, 143, 143, 0.06),
    0 0 34px rgba(255, 143, 143, 0.16);
}

/* Remove fixed semantic color by card type. Status color is the source of truth */
#screen-result .result-light-card--chance,
#screen-result .result-light-card--risk,
#screen-result .result-light-card--clarity {
  border-color: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 34px rgba(0,0,0,0.26);
}

#screen-result .result-light-card--chance::after,
#screen-result .result-light-card--risk::after,
#screen-result .result-light-card--clarity::after {
  box-shadow: none;
}

#screen-result .result-light-card.is-green::after {
  box-shadow: inset 0 0 0 1px rgba(103, 211, 142, 0.04), 0 0 28px rgba(103, 211, 142, 0.10);
}

#screen-result .result-light-card.is-yellow::after {
  box-shadow: inset 0 0 0 1px rgba(228, 193, 90, 0.05), 0 0 28px rgba(228, 193, 90, 0.11);
}

#screen-result .result-light-card.is-red::after {
  box-shadow: inset 0 0 0 1px rgba(255, 143, 143, 0.05), 0 0 28px rgba(255, 143, 143, 0.12);
}

/* Slightly stronger premium buttons */
#screen-result .result-actions .tool-button,
#screen-result .result-actions a.tool-button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#screen-result .result-actions .tool-button--primary,
#screen-result .result-actions a.tool-button--primary {
  background: linear-gradient(180deg, #f2d57d 0%, #dfbe61 100%);
  box-shadow: 0 16px 30px rgba(202,166,75,0.24), inset 0 1px 0 rgba(255,255,255,0.30);
}

#screen-result .result-actions .tool-button--secondary,
#screen-result .result-actions a.tool-button--secondary,
#screen-result .result-actions .tool-button--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 12px 24px rgba(0,0,0,0.19), inset 0 1px 0 rgba(255,255,255,0.04);
}


/* ===== Project Check Result Screen Premium Polish v14 ===== */
#screen-result .tool-card--result {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 20, 28, 0.98) 0%, rgba(10, 13, 19, 0.99) 100%);
  border: 1px solid rgba(202, 166, 75, 0.22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

#screen-result .tool-card--result::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(202,166,75,0.12) 10%, rgba(202,166,75,0.42) 50%, rgba(202,166,75,0.12) 90%, transparent 100%);
}

#screen-result .tool-step__label {
  color: #d1ad55;
  letter-spacing: 0.07em;
}

#screen-result .tool-step__title {
  color: #f6f3ec;
  text-shadow: none;
  margin-bottom: 20px;
}

#screen-result .result-hero {
  position: relative;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 38px rgba(0,0,0,0.24);
}

#screen-result .result-hero::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 112px;
  height: 2px;
  background: linear-gradient(90deg, rgba(202,166,75,0.95), rgba(202,166,75,0.14));
  border-radius: 999px;
}

#screen-result .result-hero::after {
  display: none;
}

#screen-result .result-hero__title {
  color: #f7f3eb;
  text-shadow: none;
  margin-bottom: 10px;
}

#screen-result .result-hero__summary {
  max-width: 52ch;
  color: rgba(244,241,234,0.86);
}

#screen-result .result-hero__action {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(202,166,75,0.18);
  background:
    linear-gradient(180deg, rgba(202,166,75,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

#screen-result .result-hero__eyebrow,
#screen-result .result-hero__action-label,
#screen-result .result-section__title {
  color: #d2af59;
  letter-spacing: 0.06em;
}

#screen-result .result-badge {
  position: relative;
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 16px 0 40px;
  border-radius: 999px;
  background: rgba(9, 11, 16, 0.82);
  border: 1px solid rgba(202,166,75,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  color: #f2db94;
}

#screen-result .result-badge::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #d7b45a;
  box-shadow: 0 0 0 4px rgba(215,180,90,0.12), 0 0 16px rgba(215,180,90,0.28);
}

#screen-result .result-lights {
  margin-top: 30px;
}

#screen-result .result-light-card {
  padding: 20px 18px 18px;
  border-radius: 20px;
}

#screen-result .result-light-card__title {
  margin-bottom: 14px;
}

#screen-result .result-light-card__status {
  margin-bottom: 16px;
}

#screen-result .result-light-card__dot {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
}

#screen-result .result-columns {
  gap: 18px;
}

#screen-result .result-columns > .result-section,
#screen-result .tool-card__content > .result-section {
  position: relative;
  padding: 18px 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.036), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 16px 30px rgba(0,0,0,0.18);
}

#screen-result .tool-card__content > .result-section::before,
#screen-result .result-columns > .result-section::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 88px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(202,166,75,0.78), rgba(202,166,75,0));
}

#screen-result #result-warnings-section::before {
  background: linear-gradient(90deg, rgba(255,143,143,0.86), rgba(255,143,143,0));
}

#screen-result #result-strengths-section::before {
  background: linear-gradient(90deg, rgba(103,211,142,0.82), rgba(103,211,142,0));
}

#screen-result #result-checks-section::before,
#screen-result .result-section--next-step::before {
  background: linear-gradient(90deg, rgba(202,166,75,0.86), rgba(202,166,75,0));
}

#screen-result .result-list__item {
  position: relative;
  padding: 16px 16px 16px 18px;
  border-radius: 16px;
}

#screen-result .result-list__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: rgba(202,166,75,0.48);
}

#screen-result #result-warnings-section .result-list__item::after {
  background: rgba(255,143,143,0.72);
}

#screen-result #result-strengths-section .result-list__item::after {
  background: rgba(103,211,142,0.72);
}

#screen-result #result-checks-section .result-list__item::after {
  background: rgba(202,166,75,0.78);
}

#screen-result .result-section__text {
  color: rgba(244,241,234,0.89);
}

#screen-result .result-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

#screen-result .result-actions .result-action-btn {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
  text-decoration: none;
}

#screen-result .result-action-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: 0 0 42px;
  font-size: 20px;
  line-height: 1;
}

#screen-result .result-action-btn__icon svg {
  width: 20px;
  height: 20px;
}

#screen-result .result-action-btn__text {
  min-width: 0;
  display: grid;
  gap: 4px;
}

#screen-result .result-action-btn__label {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#screen-result .result-action-btn__meta {
  display: block;
  font-size: 0.74rem;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: rgba(244,241,234,0.64);
}

#screen-result .result-action-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(244,241,234,0.7);
  background: rgba(255,255,255,0.04);
}

#screen-result .result-actions .tool-button--primary,
#screen-result .result-actions a.tool-button--primary {
  background: linear-gradient(180deg, #eed07a 0%, #d8b256 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 34px rgba(202,166,75,0.20), inset 0 1px 0 rgba(255,255,255,0.28);
}

#screen-result .result-actions .tool-button--primary .result-action-btn__icon,
#screen-result .result-actions a.tool-button--primary .result-action-btn__icon {
  color: #131519;
  background: rgba(255,255,255,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
}

#screen-result .result-actions .tool-button--primary .result-action-btn__label,
#screen-result .result-actions a.tool-button--primary .result-action-btn__label,
#screen-result .result-actions .tool-button--primary .result-action-btn__arrow,
#screen-result .result-actions a.tool-button--primary .result-action-btn__arrow {
  color: #121316;
}

#screen-result .result-actions .tool-button--primary .result-action-btn__meta,
#screen-result .result-actions a.tool-button--primary .result-action-btn__meta {
  color: rgba(18,19,22,0.72);
}

#screen-result .result-actions .tool-button--primary .result-action-btn__arrow,
#screen-result .result-actions a.tool-button--primary .result-action-btn__arrow {
  background: rgba(255,255,255,0.24);
}

#screen-result .result-actions .tool-button--secondary,
#screen-result .result-actions a.tool-button--secondary,
#screen-result .result-actions .tool-button--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 26px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.04);
}

#screen-result .result-actions .tool-button--secondary .result-action-btn__icon,
#screen-result .result-actions a.tool-button--secondary .result-action-btn__icon,
#screen-result .result-actions .tool-button--ghost .result-action-btn__icon {
  color: #eed386;
  background: rgba(202,166,75,0.10);
  border: 1px solid rgba(202,166,75,0.16);
}

#screen-result .result-actions .tool-button--secondary:hover,
#screen-result .result-actions a.tool-button--secondary:hover,
#screen-result .result-actions .tool-button--ghost:hover {
  border-color: rgba(202,166,75,0.22);
  background: linear-gradient(180deg, rgba(202,166,75,0.065), rgba(255,255,255,0.022));
}

#screen-result .result-actions .tool-button:hover,
#screen-result .result-actions a.tool-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 959px) {
  #screen-result .result-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  #screen-result .tool-card--result::before {
    left: 18px;
    right: 18px;
  }

  #screen-result .result-hero {
    padding: 18px 16px;
  }

  #screen-result .result-hero__action {
    padding: 14px;
  }

  #screen-result .result-columns > .result-section,
  #screen-result .tool-card__content > .result-section {
    padding: 16px;
  }

  #screen-result .result-actions .result-action-btn {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 13px 14px;
    gap: 12px;
  }

  #screen-result .result-action-btn__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  #screen-result .result-action-btn__label {
    font-size: 0.94rem;
  }
}

/* ===== Final premium refinement v15 ===== */
#screen-result .tool-card--result {
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.008));
  border: 1px solid rgba(212,175,55,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.42);
}

#screen-result .tool-card--result .tool-card__content {
  padding: 30px 28px 28px;
}

#screen-result .tool-step__label,
#screen-result .result-hero__eyebrow,
#screen-result .result-hero__action-label,
#screen-result .result-section__title,
#screen-result .result-lights > .result-section__title {
  color: #d4af37;
}

#screen-result .tool-step__title {
  max-width: 15ch;
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 1.01;
  letter-spacing: -0.035em;
  font-weight: 820;
  margin-bottom: 18px;
  text-shadow: none;
}

#screen-result .result-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  margin-top: 16px;
  padding: 24px 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.012));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

#screen-result .result-hero::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.7), rgba(212,175,55,0.14) 38%, transparent 72%);
}

#screen-result .result-hero::after {
  display: none;
}

#screen-result .result-hero__title {
  font-size: clamp(2rem, 3.7vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  font-weight: 820;
  text-shadow: none;
}

#screen-result .result-hero__summary {
  max-width: 39ch;
  color: rgba(244,241,234,0.84);
  font-size: 1rem;
  line-height: 1.68;
}

#screen-result .result-hero__action {
  min-width: 210px;
  padding-left: 8px;
}

#screen-result .result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(212,175,55,0.06);
  color: #f1d276;
  box-shadow: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#screen-result .result-lights {
  margin-top: 28px;
}

#screen-result .result-lights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

#screen-result .result-light-card {
  padding: 18px 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

#screen-result .result-light-card::before {
  display: none;
}

#screen-result .result-light-card__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 780;
  color: #f4f1ea;
}

#screen-result .result-light-card__status {
  margin-bottom: 14px;
  min-height: 14px;
}

#screen-result .result-light-card__dot {
  width: 11px;
  height: 11px;
  flex-basis: 11px;
}

#screen-result .result-light-card.is-green,
#screen-result .result-light-card.is-yellow,
#screen-result .result-light-card.is-red {
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

#screen-result .result-light-card.is-green {
  border-color: rgba(99,211,142,0.24);
}

#screen-result .result-light-card.is-yellow {
  border-color: rgba(228,193,90,0.24);
}

#screen-result .result-light-card.is-red {
  border-color: rgba(255,143,143,0.26);
}

#screen-result .result-light-card.is-green .result-light-card__dot {
  background: #74d398;
  box-shadow: 0 0 0 4px rgba(116,211,152,0.10), 0 0 10px rgba(116,211,152,0.28);
}

#screen-result .result-light-card.is-yellow .result-light-card__dot {
  background: #e4c15a;
  box-shadow: 0 0 0 4px rgba(228,193,90,0.10), 0 0 10px rgba(228,193,90,0.26);
}

#screen-result .result-light-card.is-red .result-light-card__dot {
  background: #ff8f8f;
  box-shadow: 0 0 0 4px rgba(255,143,143,0.10), 0 0 10px rgba(255,143,143,0.26);
}

#screen-result .result-light-card__text {
  color: rgba(244,241,234,0.82);
  font-size: 0.99rem;
  line-height: 1.66;
}

#screen-result .result-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

#screen-result .result-section {
  padding: 18px 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.010));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

#screen-result .result-columns .result-section,
#screen-result #result-checks-section,
#screen-result .result-section--next-step,
#screen-result .result-section:not(:first-child) {
  margin-top: 0;
}

#screen-result .result-columns + .result-section,
#screen-result #result-checks-section,
#screen-result .result-section--next-step {
  margin-top: 16px;
}

#screen-result .result-section__title {
  margin: 0 0 12px;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 780;
}

#screen-result #result-action-text {
  color: rgba(244,241,234,0.84);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 70ch;
}

#screen-result .result-list {
  display: grid;
  gap: 10px;
}

#screen-result .result-list__item {
  position: relative;
  padding: 14px 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.018);
  box-shadow: none;
  color: rgba(244,241,234,0.86);
  font-size: 0.98rem;
  line-height: 1.62;
}

#screen-result .result-list__item::before {
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  height: auto;
  border-radius: 999px;
  transform: none;
  opacity: 1;
}

#screen-result #result-warnings-list .result-list__item {
  border-color: rgba(255,143,143,0.14);
  background: rgba(255,143,143,0.035);
}

#screen-result #result-strengths-list .result-list__item {
  border-color: rgba(99,211,142,0.14);
  background: rgba(99,211,142,0.032);
}

#screen-result #result-checks-list .result-list__item {
  border-color: rgba(212,175,55,0.16);
  background: rgba(212,175,55,0.04);
}

#screen-result .result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

#screen-result .result-actions .result-action-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.98rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

#screen-result .result-action-btn__icon,
#screen-result .result-action-btn__meta,
#screen-result .result-action-btn__arrow {
  display: none !important;
}

#screen-result .result-action-btn__text {
  display: inline;
  min-width: 0;
}

#screen-result .result-action-btn__label {
  display: inline;
  color: inherit;
  font: inherit;
}

#screen-result .result-actions .tool-button--primary,
#screen-result .result-actions a.tool-button--primary {
  background: #d4af37;
  color: #101114;
  border: 1px solid rgba(255,255,255,0.08);
}

#screen-result .result-actions .tool-button--secondary,
#screen-result .result-actions a.tool-button--secondary,
#screen-result .result-actions .tool-button--ghost {
  background: rgba(255,255,255,0.03);
  color: #f4f1ea;
  border: 1px solid rgba(255,255,255,0.14);
}

#screen-result .result-actions .tool-button--primary:hover,
#screen-result .result-actions .tool-button--secondary:hover,
#screen-result .result-actions a.tool-button--secondary:hover,
#screen-result .result-actions .tool-button--ghost:hover {
  transform: translateY(-1px);
}

#screen-result .result-actions .tool-button--secondary:hover,
#screen-result .result-actions a.tool-button--secondary:hover,
#screen-result .result-actions .tool-button--ghost:hover {
  border-color: rgba(212,175,55,0.22);
  background: rgba(212,175,55,0.04);
}

@media (min-width: 720px) {
  #screen-result .result-actions .result-action-btn {
    min-width: 176px;
  }
}

@media (max-width: 899px) {
  #screen-result .result-lights__grid {
    grid-template-columns: 1fr;
  }

  #screen-result .result-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  #screen-result .tool-card--result .tool-card__content {
    padding: 24px 20px 24px;
  }

  #screen-result .tool-step__title {
    max-width: 11ch;
    font-size: clamp(1.95rem, 7vw, 2.45rem);
  }

  #screen-result .result-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 18px;
  }

  #screen-result .result-hero::before {
    left: 18px;
    right: 18px;
  }

  #screen-result .result-hero__action {
    min-width: 0;
    padding-left: 0;
  }

  #screen-result .result-section,
  #screen-result .result-light-card {
    padding: 16px;
  }

  #screen-result .result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  #screen-result .result-actions .result-action-btn {
    width: 100%;
  }
}

/* ===== Project Check Result Screen Refinement v16 ===== */
#screen-result .result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 18px 0 46px;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.07em;
}

#screen-result .result-badge::before {
  left: 18px;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 3px rgba(215,180,90,0.10), 0 0 12px rgba(215,180,90,0.22);
}

#screen-result #result-warnings-section .result-list__item,
#screen-result #result-strengths-section .result-list__item,
#screen-result #result-checks-section .result-list__item {
  overflow: hidden;
  border-color: rgba(255,255,255,0.08);
}

#screen-result #result-warnings-section .result-list__item::after,
#screen-result #result-strengths-section .result-list__item::after,
#screen-result #result-checks-section .result-list__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.25px solid var(--pc-result-item-accent, transparent);
  clip-path: inset(0 calc(100% - 28px) 0 0 round 16px);
  pointer-events: none;
  opacity: 0.95;
}

#screen-result #result-warnings-section .result-list__item {
  --pc-result-item-accent: rgba(255, 143, 143, 0.80);
  background: linear-gradient(180deg, rgba(255,143,143,0.055), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18), 0 0 18px rgba(255,143,143,0.04);
}

#screen-result #result-strengths-section .result-list__item {
  --pc-result-item-accent: rgba(103, 211, 142, 0.78);
  background: linear-gradient(180deg, rgba(103,211,142,0.055), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18), 0 0 18px rgba(103,211,142,0.04);
}

#screen-result #result-checks-section .result-list__item {
  --pc-result-item-accent: rgba(202, 166, 75, 0.82);
  background: linear-gradient(180deg, rgba(202,166,75,0.05), rgba(255,255,255,0.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.18), 0 0 18px rgba(202,166,75,0.035);
}


/* ===== Project Check Result Screen Refinement v17 ===== */
#screen-result .tool-step__title {
  margin-bottom: 22px;
}

#screen-result .result-hero {
  gap: 20px;
  padding: 24px 24px 22px;
}

#screen-result .result-hero__title {
  margin-bottom: 12px;
  font-weight: 760;
  letter-spacing: -0.026em;
}

#screen-result .result-hero__summary {
  line-height: 1.68;
}

#screen-result .result-hero__action {
  padding: 17px 18px 16px;
}

#screen-result .result-badge {
  min-height: 42px;
  padding: 0 18px 0 50px;
  font-size: 12px;
}

#screen-result .result-badge::before {
  left: 19px;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 3px rgba(215,180,90,0.10), 0 0 10px rgba(215,180,90,0.20);
}

#screen-result .result-light-card {
  min-height: 208px;
  padding: 22px 20px 19px;
}

#screen-result .result-light-card__title,
#screen-result .result-section__title {
  font-weight: 740;
  letter-spacing: -0.018em;
}

#screen-result .result-light-card__title {
  margin-bottom: 12px;
}

#screen-result .result-light-card__status {
  margin-bottom: 14px;
}

#screen-result .result-light-card__text {
  line-height: 1.64;
}

#screen-result .result-columns {
  gap: 20px;
}

#screen-result .result-columns > .result-section,
#screen-result .tool-card__content > .result-section {
  padding: 20px 20px 18px;
}

#screen-result .result-section__title {
  margin-bottom: 14px;
}

#screen-result .result-list {
  gap: 13px;
}

#screen-result .result-list__item {
  padding: 16px 18px 16px 20px;
  line-height: 1.62;
}

#screen-result .result-section__text {
  line-height: 1.68;
  max-width: 64ch;
}

#screen-result .result-actions {
  margin-top: 18px;
  gap: 12px;
}

#screen-result .result-actions .result-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  gap: 0;
}

#screen-result .result-action-btn__icon,
#screen-result .result-action-btn__meta,
#screen-result .result-action-btn__arrow {
  display: none !important;
}

#screen-result .result-action-btn__label {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.012em;
}

#screen-result #result-warnings-section .result-list__item::after,
#screen-result #result-strengths-section .result-list__item::after,
#screen-result #result-checks-section .result-list__item::after {
  border-width: 1.4px;
  clip-path: inset(0 calc(100% - 42px) 0 0 round 16px);
}

@media (max-width: 719px) {
  #screen-result .tool-step__title {
    margin-bottom: 18px;
  }

  #screen-result .result-hero {
    gap: 18px;
    padding: 20px 18px 18px;
  }

  #screen-result .result-hero__action {
    padding: 15px 15px 14px;
  }

  #screen-result .result-badge {
    padding-left: 48px;
  }

  #screen-result .result-light-card {
    min-height: 0;
    padding: 19px 17px 17px;
  }

  #screen-result .result-columns > .result-section,
  #screen-result .tool-card__content > .result-section {
    padding: 18px 17px 17px;
  }

  #screen-result .result-actions .result-action-btn {
    min-height: 48px;
    padding: 0 18px;
  }

  #screen-result .result-action-btn__label {
    font-size: 15px;
  }

  #screen-result #result-warnings-section .result-list__item::after,
  #screen-result #result-strengths-section .result-list__item::after,
  #screen-result #result-checks-section .result-list__item::after {
    clip-path: inset(0 calc(100% - 38px) 0 0 round 16px);
  }
}


/* Result pathways monetization architecture */
#screen-result .result-pathways {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
#screen-result .result-pathways__secondary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#screen-result .result-pathway {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 208px;
  padding: 18px 18px 18px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid rgba(198, 154, 51, 0.22);
  background: linear-gradient(180deg, rgba(12,14,20,0.985), rgba(7,9,14,0.965));
  box-shadow:
    0 14px 36px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.03);
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#screen-result .result-pathway::before {
  content: none;
}
#screen-result .result-pathway::after {
  content: 'Info-Seite öffnen ↗';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 154, 51, 0.30);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: #efd48a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
#screen-result .result-pathway:hover,
#screen-result .result-pathway:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198, 154, 51, 0.46);
  box-shadow:
    0 20px 46px rgba(0,0,0,0.35),
    0 0 0 1px rgba(198,154,51,0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
#screen-result .result-pathway:hover::after,
#screen-result .result-pathway:focus-visible::after {
  border-color: rgba(198, 154, 51, 0.46);
  background: linear-gradient(180deg, rgba(198,154,51,0.14), rgba(255,255,255,0.03));
}
#screen-result .result-pathway:focus-visible {
  outline: none;
}
#screen-result .result-pathway__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(198, 154, 51, 0.22);
  background: linear-gradient(180deg, rgba(198,154,51,0.16), rgba(255,255,255,0.04));
  color: #f4e2a4;
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
#screen-result .result-pathway--primary {
  border-color: rgba(198, 154, 51, 0.42);
  background: radial-gradient(circle at top left, rgba(198,154,51,0.14), transparent 35%), linear-gradient(180deg, rgba(13,16,23,0.99), rgba(8,10,15,0.97));
}
#screen-result .result-pathway__product {
  display: inline-flex;
  align-self: flex-start;
  max-width: calc(100% - 48px);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(198, 154, 51, 0.22);
  background: rgba(198, 154, 51, 0.10);
  color: #f0d58b;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}
#screen-result .result-pathway__title {
  max-width: 22ch;
  font-size: clamp(1.18rem, 0.88rem + 0.72vw, 1.45rem);
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: -0.018em;
  color: #f7f8fb;
}
#screen-result .result-pathway__text {
  max-width: 52ch;
  font-size: 15.5px;
  line-height: 1.58;
  color: rgba(236, 240, 247, 0.92);
}
#screen-result .result-pathway--secondary .result-pathway__title {
  font-size: clamp(1.08rem, 0.92rem + 0.45vw, 1.28rem);
  line-height: 1.18;
  font-weight: 740;
}
#screen-result .result-actions--utility {
  margin-top: 18px;
}
@media (max-width: 900px) {
  #screen-result .result-pathways__secondary {
    grid-template-columns: 1fr;
  }
}


.result-context { margin: 14px 0 6px; }
.result-context__label { margin: 0 0 10px; font-size: 13px; color: rgba(236,240,247,.82); font-weight: 700; letter-spacing: .01em; }
.result-context__choices { display: flex; flex-wrap: wrap; gap: 10px; }
.result-context__choice { appearance: none; border: 1px solid rgba(214,170,54,.22); background: rgba(255,255,255,.03); color: #eef2f7; border-radius: 999px; padding: 10px 14px; font: inherit; font-size: 14px; line-height: 1.25; cursor: pointer; transition: border-color .16s ease, background .16s ease, transform .16s ease; }
.result-context__choice:hover, .result-context__choice:focus-visible { border-color: rgba(214,170,54,.42); background: rgba(214,170,54,.08); outline: none; }
.result-context__choice.is-active { border-color: rgba(214,170,54,.52); background: rgba(214,170,54,.14); color: #f6e2a0; box-shadow: 0 0 0 1px rgba(214,170,54,.12) inset; }


/* ===== Result typography polish v67 ===== */
#screen-result,
#screen-result * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-synthesis-weight: none;
}
#screen-result .result-hero,
#screen-result .result-light-card,
#screen-result .result-columns > .result-section,
#screen-result .tool-card__content > .result-section,
#screen-result .result-pathway,
#screen-result .result-action-btn {
  box-shadow: 0 10px 24px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.02);
}
#screen-result .result-hero {
  background: linear-gradient(180deg, rgba(14,16,22,.985), rgba(9,11,16,.97));
  border-color: rgba(198,154,51,.20);
}
#screen-result .result-hero::before,
#screen-result .result-hero::after {
  opacity: .5;
  filter: none;
}
#screen-result .result-hero__eyebrow,
#screen-result .result-hero__action-label,
#screen-result .result-section__title,
#screen-result .result-lights > .result-section__title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .075em;
}
#screen-result .result-hero__title {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.06;
  letter-spacing: -.024em;
  font-weight: 700;
  color: #f7f8fb;
  text-shadow: none;
}
#screen-result .result-hero__summary,
#screen-result .result-section__text,
#screen-result .result-list__item,
#screen-result .result-pathway__text {
  font-size: 15.5px;
  line-height: 1.62;
  letter-spacing: -.003em;
  color: rgba(244,241,234,.9);
  text-shadow: none;
}
#screen-result .result-hero__summary { max-width: 64ch; }
#screen-result .result-badge {
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: .01em;
}
#screen-result .result-light-card {
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}
#screen-result .result-light-card__title {
  font-size: 12px;
  letter-spacing: .07em;
  font-weight: 800;
}
#screen-result .result-light-card__status {
  font-size: 14px;
  letter-spacing: -.008em;
  font-weight: 760;
  box-shadow: none;
}
#screen-result .result-light-card__text {
  font-size: 14.5px;
  line-height: 1.58;
  color: rgba(244,241,234,.88);
}
#screen-result .result-pathway {
  min-height: 212px;
  border-color: rgba(198,154,51,.17);
  background: linear-gradient(180deg, rgba(12,14,20,.99), rgba(8,10,15,.975));
}
#screen-result .result-pathway:hover,
#screen-result .result-pathway:focus-visible {
  box-shadow: 0 14px 30px rgba(0,0,0,.28), 0 0 0 1px rgba(198,154,51,.11), inset 0 1px 0 rgba(255,255,255,.03);
}
#screen-result .result-pathway::after {
  font-size: 12.5px;
  font-weight: 780;
  letter-spacing: .012em;
}
#screen-result .result-pathway__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 21px;
}
#screen-result .result-pathway__product {
  font-size: 12.5px;
  line-height: 1.24;
  font-weight: 780;
  letter-spacing: .008em;
}
#screen-result .result-pathway__title {
  font-size: clamp(1.14rem, .96rem + .52vw, 1.34rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #f7f8fb;
}
#screen-result .result-pathway--secondary .result-pathway__title {
  font-size: clamp(1.03rem, .92rem + .34vw, 1.18rem);
  line-height: 1.16;
  font-weight: 690;
}
#screen-result .result-pathway__text {
  max-width: 54ch;
  font-size: 15px;
}
#screen-result .result-context__label,
#screen-result .result-context__choice,
#screen-result .result-action-btn__label {
  font-size: 14px;
  letter-spacing: -.006em;
}
#screen-result .result-context__choice,
#screen-result .result-action-btn__label {
  font-weight: 650;
}
@media (max-width: 719px) {
  #screen-result .result-hero__title { font-size: 30px; }
  #screen-result .result-hero__summary,
  #screen-result .result-section__text,
  #screen-result .result-list__item,
  #screen-result .result-pathway__text { font-size: 15px; }
  #screen-result .result-pathway { min-height: 0; padding: 17px; }
  #screen-result .result-pathway__title { font-size: 1.1rem; }
}
