:root {
  --accent: #22af6b;
  --text: #1c3c2c;
  --muted: rgba(0,0,0,0.55);
}

body {
  margin: 0;
  font-family: "Lato", "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(90deg, #e2f3cd 0%, #a9c9ff 100%);
  color: #1c3c2c; /* Textfarbe dunkelgrün */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
.container {
  max-width: 600px;
  padding: 2rem;
}
h1 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
}
p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: 0;
}
.signup {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 2rem 0;
}

.signup input {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.signup button {
  background: var(--accent);
  color: var(--bg);
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.signup button:hover {
  opacity: 0.9;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.consent {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: left;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.consent a { color: var(--text); text-decoration: underline; }
.brand-heading {
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin: clamp(2rem, 6vw, 4rem) 0 1.25rem;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--text);       /* sorgt dafür, dass ENTSCHEIDER normal gefärbt ist */
}

.track {
  letter-spacing: 0.097em;
}

.accent {
  color: var(--accent);     /* nur das _IN wird grün */
  font-weight: 400;
}
.nopad {
  letter-spacing: 0;          /* sorgt dafür, dass der Punkt eng am Text steht */
}