:root {
  --bg: #f3f4ea;
  --panel: #fdfdf8;
  --accent: #4c8c5b;
  --accent-soft: #79a86f;
  --accent-soft2: #a7c49b;
  --brown: #8b5e3c;
  --brown-soft: #c8a98c;
  --border: #d7dec5;
  --text: #233323;
  --muted: #6b7a63;
  --error: #9c4f3b;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(37, 61, 32, 0.16);
  --shadow-inner: inset 0 0 0 1px rgba(69, 94, 64, 0.10);
  --spacing: 1.2rem;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
  --gruen: #3b7b4a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.stichwort {
	color: var(--gruen);
	font-weight: 600;
}



body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
radial-gradient(circle at 0 0, rgba(151, 188, 132, 0.35), transparent 55%),
radial-gradient(circle at 100% 100%, rgba(164, 126, 92, 0.35), transparent 55%),
var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.form-shell {
  width: 100%;
  max-width: 880px;
  background: radial-gradient(circle at top left, rgba(121, 168, 111, 0.22), transparent 60%),
  radial-gradient(circle at bottom right, rgba(200, 169, 140, 0.22), transparent 60%),
  var(--panel);
  border-radius: 28px;
  padding: 2.2rem 2.1rem 2.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(163, 181, 150, 0.55);
  position: relative;
  overflow: hidden;
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
linear-gradient(135deg, rgba(124, 164, 109, 0.12), transparent 50%),
linear-gradient(-45deg, rgba(181, 143, 104, 0.13), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.form-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.4rem;
}



.title-block h1 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.title-block p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 30rem;
}

.badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 146, 103, 0.55);
  background: linear-gradient(135deg, rgba(123, 165, 105, 0.25), rgba(191, 162, 126, 0.23));
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #f7fbf4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f5f9f1;
  box-shadow: 0 0 0 3px rgba(111, 156, 95, 0.4);
}

.grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 780px) {
  .grid--two {
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
align-items: flex-start;
  }
}

.feld {
  background: linear-gradient(145deg, rgba(247, 250, 244, 0.95), rgba(243, 239, 231, 0.85));
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem 1.3rem;
  border: 1px solid rgba(181, 198, 159, 0.7);
  box-shadow: var(--shadow-inner);
  position: relative;
  overflow: hidden;
}

.feld ul{
	margin: 10px 3px 20px 30px;
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--text);
	line-height: 1.5;
}

.feld::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
radial-gradient(circle at 0 100%, rgba(138, 176, 120, 0.16), transparent 55%),
radial-gradient(circle at 100% 0, rgba(189, 154, 117, 0.16), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.feld-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.feld legend,
.blocktitel {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}

.legend-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.question-group {
  display: grid;
  gap: 0.9rem;
}

.frage {
	margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
  text-shadow: 4px 4px 3px rgba(50, 50, 50, 0.2);
}

.reihe {
  display: flex;
  line-height: 1.1;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 3px;
}

.reihe-kompakt {
  display: flex;
  line-height: 0.9;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 3px;
}


.chip {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #a0b88f;
  background: #f5f8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 64px;
  
}

.chip input {
  opacity: 0;
  position: absolute;
}

.chip:hover {
  border-color: #4c8c5b;
}

.chip input:checked + span {
  color: white;
}

.chip:has(input:checked) {
  background: #4c8c5b !important;
  border-color: #4c8c5b;
}


.inputs-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .inputs-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}



.field label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.input-shell {
  position: relative;
}

.input-shell input,
.input-shell textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(176, 195, 153, 0.85);
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: radial-gradient(circle at 0 0, rgba(210, 225, 195, 0.25), transparent 65%),
  rgba(251, 252, 247, 0.96);
  box-shadow: 0 1px 0 rgba(152, 167, 135, 0.5);
  transition: border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-fast), background var(--transition-med);
}

.input-shell input::placeholder,
.input-shell textarea::placeholder {
  color: var(--muted);
  opacity: 0.82;
  font-size: 0.9rem;
}

.input-shell input:focus,
.input-shell textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow:
0 0 0 1px rgba(72, 109, 63, 0.18),
0 14px 30px rgba(53, 84, 44, 0.28);
  background: radial-gradient(circle at 100% 0, rgba(212, 218, 177, 0.45), transparent 60%),
  rgba(252, 254, 250, 0.98);
  transform: translateY(-1px);
}

.input-shell textarea {
  min-height: 140px;
  resize: vertical;
}

.helper-text {
  font-size: 0.78rem;
  color: var(--muted);
}

.helper-soft {
  color: rgba(107, 122, 99, 0.85);
  font-style: italic;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.submit-btn {
  position: relative;
  border-radius: 999px;
  border: 0;
  padding: 0.8rem 1.8rem;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  color: #fdfcf8;
  background: linear-gradient(135deg, var(--accent), var(--brown));
  box-shadow:
0 14px 34px rgba(44, 79, 40, 0.6),
0 0 0 1px rgba(229, 237, 221, 0.6) inset;
  transition: transform var(--transition-fast), box-shadow var(--transition-med), background var(--transition-med), letter-spacing var(--transition-med);
}

.submit-btn span {
  position: relative;
  top: 0.5px;
}

.submit-btn::after {
  content: "➝";
  font-size: 1rem;
  transform: translateX(0);
  transition: transform var(--transition-fast);
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
0 18px 40px rgba(40, 62, 32, 0.75),
0 0 0 1px rgba(245, 250, 238, 0.7) inset;
  letter-spacing: 0.13em;
}

.submit-btn:hover::after {
  transform: translateX(4px);
}

.submit-btn:active {
  transform: translateY(1px);
  box-shadow:
0 8px 18px rgba(35, 52, 29, 0.65),
0 0 0 1px rgba(239, 246, 231, 0.8) inset;
}

.footnote {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 260px;
  margin: 10px;
}

.footnote strong {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 599px) {
  .form-shell {
padding: 1.6rem 1.3rem 1.8rem;
border-radius: 22px;
  }

  .form-header {
flex-direction: column;
align-items: flex-start;
  }

  .feld {
padding: 1.2rem 1rem 1.15rem;
  }

  .footer-row {
align-items: stretch;
  }

  .submit-btn {
width: 100%;
justify-content: center;
  }

  .footnote {
max-width: none;
  }
}