.fuzzy-intro {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fuzzy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--glass-line, rgba(0, 0, 0, 0.1));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--green, #1f7a5c) 10%, transparent), color-mix(in srgb, var(--gold, #d6a72f) 8%, transparent)),
    var(--white, #fff);
}

.fuzzy-hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.15;
}

.fuzzy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.fuzzy-hero-actions .button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vertical-align: -3px;
  margin-right: 0.3rem;
}

.fuzzy-hero-meta {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted, #5b6b66);
}

.fuzzy-hero-illustration {
  display: flex;
  justify-content: center;
}

.fuzzy-hero-illustration svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.fuzzy-benefits {
  margin: 1rem 0 2rem;
}

.fuzzy-start-again {
  justify-content: center;
  margin: 0.5rem 0 2.5rem;
}

@media (max-width: 720px) {
  .fuzzy-hero {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 1.5rem;
  }

  .fuzzy-hero-illustration {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }
}

.fuzzy-steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 1rem 0;
}

.fuzzy-form-section {
  margin-top: 1.5rem;
}

.fuzzy-form-section .form-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.likert-item {
  border: 1px solid var(--glass-line, rgba(0, 0, 0, 0.12));
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin: 0 0 0.75rem;
}

.likert-item legend {
  font-weight: 600;
  padding: 0 0.25rem;
}

.likert-scale {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.likert-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.likert-option input {
  accent-color: var(--gold, #d6a72f);
}

.score-bar {
  position: relative;
  width: 100%;
  min-width: 120px;
  height: 0.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink, #123331) 12%, transparent);
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.score-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green, #1f7a5c), var(--teal, #1f9d8f), var(--gold, #d6a72f));
}

.fuzzy-methodology {
  margin-top: 2rem;
}

.fuzzy-methodology ol {
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
}

#resultsSection {
  margin-top: 2rem;
}
