:root {
  --cyan: #61c8d8;
  --green: #39aa35;
  --red: #df151c;
  --ink: #151515;
  --paper: #f7f5ef;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.top,
.committee-top {
  height: 84px;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  background: #fff;
  gap: 42px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-size: 13px;
  line-height: 1.05;
}
.mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  transform: rotate(-3deg);
}
.mark span {
  color: var(--green);
}
nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
}
.nav-cta,
.big-button {
  background: #111;
  color: #fff;
  padding: 17px 23px;
  font-weight: 800;
}
.collect-button {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  padding: 17px 23px;
  font-weight: 900;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-field {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 7vw 4vw;
  overflow: hidden;
}
.green-field {
  background: linear-gradient(135deg, #276d35, #68b73f);
}
.grey-field {
  background: linear-gradient(135deg, #cacaca, #555);
}
.green-field:after,
.grey-field:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 45px,
    #ffffff10 46px 49px
  );
}
.tag {
  background: #fff;
  width: max-content;
  padding: 6px 10px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: clamp(33px, 4.25vw, 67px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  margin: 10px 0;
  position: relative;
  z-index: 2;
}
.hero h1 span {
  display: inline;
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.cyan,
.cyan-card {
  background: var(--cyan);
}
.green,
.green-card {
  background: var(--green);
}
.red,
.red-card {
  background: var(--red);
}
.play-shape {
  position: absolute;
  font-size: 420px;
  color: #ffffff18;
  right: -40px;
  bottom: -80px;
  font-weight: 900;
}
.quiet-shape {
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.78;
  color: #fff;
  opacity: 0.22;
  transform: rotate(-7deg);
  position: relative;
  z-index: 2;
}
.intro,
.arguments,
.join {
  padding: 110px 8vw;
}
.overline {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 11px;
  font-weight: 900;
}
.intro h2,
.arguments h2,
.join h2,
.committee-hero h1 {
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin: 25px 0;
}
.intro h2 span,
.arguments h2 span,
.join h2 span,
.committee-hero h1 span {
  color: var(--green);
}
.intro-copy {
  font-size: 21px;
  line-height: 1.55;
  max-width: 720px;
  margin-left: 32%;
}
.demands {
  padding: 0 8vw 110px;
  display: grid;
  gap: 18px;
}
.demand {
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  max-width: 1050px;
}
.demand:nth-child(2) {
  margin-left: 7%;
}
.demand:nth-child(3) {
  margin-left: 14%;
}
.demand > strong {
  font-size: 72px;
  color: #fff;
  line-height: 1;
}
.demand h3 {
  font-size: 27px;
  margin: 0;
}
.demand h4 {
  font-size: 17px;
  margin: 6px 0 14px;
}
.demand p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 750px;
}
.red-card {
  color: #fff;
}
.arguments {
  background: #fff;
}
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 60px;
}
.tiles p {
  padding: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.tiles p:last-child {
  grid-column: 1/-1;
  max-width: 750px;
}
.callout {
  background: var(--red);
  color: #fff;
  padding: 50px 8vw;
}
.callout p {
  font-size: clamp(28px, 4vw, 55px);
  font-weight: 900;
  line-height: 1.22;
  max-width: 1200px;
  margin: 0;
}
.join {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  background: #eee;
}
.join > div:last-child {
  padding-top: 70px;
  font-size: 19px;
  line-height: 1.6;
}
.big-button {
  display: inline-block;
  margin-top: 22px;
}
footer {
  background: #111;
  color: #fff;
  padding: 65px 7vw;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
footer small {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
footer a {
  font-weight: 800;
}
footer p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}
.committee {
  min-height: 100vh;
  background: #efede6;
}
.committee-top button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 13px 18px;
  font-weight: 800;
}
.committee-hero {
  padding: 90px 8vw 60px;
  max-width: 1000px;
}
.committee-hero p:last-child {
  font-size: 19px;
  line-height: 1.6;
  max-width: 650px;
}
.committee-grid {
  padding: 0 8vw 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.committee-grid article {
  padding: 35px;
  min-height: 320px;
}
.committee-grid small {
  font-weight: 900;
}
.committee-grid h2 {
  font-size: 30px;
  margin: 30px 0 15px;
}
.committee-grid p {
  line-height: 1.55;
}
.committee-grid a {
  font-weight: 900;
  display: inline-block;
  margin-top: 25px;
  border-bottom: 2px solid;
}
.status {
  font-weight: 900;
}
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}
.login-card {
  width: min(520px, calc(100% - 36px));
  background: #fff;
  padding: 55px;
}
.login-card h1 {
  font-size: 52px;
  line-height: 0.95;
  margin: 25px 0;
}
.login-card p {
  line-height: 1.55;
}
.login-card label {
  display: block;
  font-weight: 800;
  margin: 28px 0 8px;
}
.login-card input {
  width: 100%;
  padding: 15px;
  border: 2px solid #111;
  font-size: 17px;
}
.login-card button {
  width: 100%;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 17px;
  margin-top: 12px;
  font-weight: 900;
  font-size: 16px;
}
.error {
  color: var(--red);
  font-weight: 800;
}
@media (max-width: 850px) {
  nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-field {
    min-height: 500px;
  }
  .grey-field {
    min-height: 380px;
  }
  .intro-copy {
    margin-left: 0;
  }
  .demand:nth-child(n) {
    margin-left: 0;
  }
  .tiles,
  .join,
  .committee-grid {
    grid-template-columns: 1fr;
  }
  .tiles p:last-child {
    grid-column: auto;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .join > div:last-child {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .top,
  .committee-top {
    height: 72px;
    padding: 0 18px;
  }
  .nav-cta {
    display: none;
  }
  .hero-field {
    padding: 55px 20px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .intro,
  .arguments,
  .join,
  .committee-hero {
    padding: 75px 22px;
  }
  .intro h2,
  .arguments h2,
  .join h2,
  .committee-hero h1 {
    font-size: 50px;
  }
  .intro-copy {
    font-size: 18px;
  }
  .demands {
    padding: 0 18px 75px;
  }
  .demand {
    grid-template-columns: 1fr;
    padding: 27px 24px;
  }
  .demand > strong {
    font-size: 55px;
  }
  .demand h3 {
    font-size: 23px;
  }
  .tiles {
    margin-top: 35px;
  }
  .callout {
    padding: 42px 22px;
  }
  .committee-grid {
    padding: 0 18px 75px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 55px 22px;
  }
}

/* Flyer-nahe Kampagnengestaltung. Die echte Aux Next wird verwendet, sobald
   lizenzierte Webfont-Dateien bereitgestellt werden. */
:root {
  --cyan: #62c9d8;
  --green: #3aaa35;
  --red: #df151b;
  --paper: #fff;
  --aux: "aaux-next", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}
body {
  background: #fff;
  font-family: var(--aux);
  font-stretch: condensed;
}
.top {
  height: 72px;
  border-bottom: 0;
  padding: 0 3.8vw;
}
.logo {
  font-size: 14px;
  font-weight: 800;
}
.mark {
  width: 50px;
  height: 50px;
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--cyan);
}
nav {
  font-size: 15px;
}
.nav-cta {
  background: var(--red);
  font-size: 15px;
  padding: 15px 20px;
}
.hero {
  min-height: 720px;
  grid-template-columns: 1fr 1fr;
  background: #ddd;
}
.hero-field {
  padding: 6vw 3.8vw;
}
.green-field {
  background:
    linear-gradient(0deg, #17831966, #17831966),
    repeating-linear-gradient(35deg, #4dab37 0 38px, #35982c 39px 74px);
}
.grey-field {
  background: repeating-linear-gradient(
    125deg,
    #bcbcbc 0 42px,
    #969696 43px 85px
  );
}
.green-field:after,
.grey-field:after {
  background: linear-gradient(90deg, transparent, #00000018);
}
.tag {
  font-size: 18px;
  padding: 7px 11px;
  margin-bottom: 18px;
  box-shadow: 5px 5px 0 #0002;
}
.hero h1 {
  font-size: clamp(37px, 4.15vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
}
.hero h1 span {
  padding: 0 0.14em 0.04em;
  line-height: 1.22;
}
.quiet-shape {
  font-size: clamp(70px, 8vw, 128px);
  opacity: 0.8;
  line-height: 0.82;
  color: #fff;
  text-shadow: 8px 8px 0 #0002;
}
.play-shape {
  font-size: 500px;
  color: #ffffff17;
}
.intro {
  padding: 95px 7.5vw 75px;
  border-top: 7px solid var(--cyan);
}
.overline {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.intro h2,
.arguments h2,
.join h2 {
  font-weight: 800;
  letter-spacing: -0.045em;
}
.intro-copy {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
  margin-left: 27%;
}
.demands {
  padding: 0 7.5vw 95px;
  gap: 14px;
}
.demand {
  border-radius: 0;
  box-shadow: 10px 10px 0 #00000012;
  max-width: 1160px;
  padding: 30px 36px;
}
.demand:nth-child(2) {
  margin-left: 5%;
}
.demand:nth-child(3) {
  margin-left: 10%;
}
.demand > strong {
  font-size: 88px;
  font-weight: 900;
  color: #fff;
}
.demand h3 {
  font-size: 31px;
  line-height: 1.05;
  font-weight: 900;
}
.demand h4 {
  font-size: 20px;
  line-height: 1.15;
  margin-top: 9px;
}
.demand p {
  font-size: 17px;
  line-height: 1.45;
}
.arguments {
  padding: 95px 7.5vw;
  background: #f4f4f2;
  border-top: 2px dotted var(--cyan);
}
.tiles {
  display: block;
  margin-top: 45px;
}
.tiles p {
  width: max-content;
  max-width: 70%;
  font-size: 24px;
  padding: 20px 24px;
  margin: 0 0 18px;
  box-shadow: 8px 8px 0 #00000012;
}
.tiles p:nth-child(even) {
  margin-left: 34%;
}
.tiles p:nth-child(3) {
  margin-left: 10%;
}
.tiles p:last-child {
  margin-left: 0;
  max-width: 82%;
}
.callout {
  margin: 0;
  background: #fff;
  padding: 70px 7.5vw;
}
.callout p {
  background: var(--red);
  padding: 30px 34px;
  max-width: 1100px;
  box-shadow: 14px 14px 0 #111;
  color: #fff;
}
.join {
  padding: 95px 7.5vw;
  background: linear-gradient(120deg, #fff 0 55%, var(--cyan) 55%);
}
.big-button {
  background: var(--red);
  box-shadow: 7px 7px 0 #111;
  font-size: 18px;
}
footer {
  border-top: 8px solid var(--green);
}

/* Presse und Sammelkoordination */
.press {
  padding: 95px 7.5vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  background: #fff;
}
.press h2,
.media-reports h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}
.press h2 {
  color: var(--red);
}
.press-copy {
  align-self: end;
}
.press-copy p {
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.45;
}
.press-button,
.footer-collect {
  display: inline-block;
  padding: 17px 23px;
  font-weight: 800;
}
.press-button {
  background: var(--cyan);
  color: #111;
}
.media-reports {
  padding: 95px 7.5vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  background: var(--paper);
}
.media-reports h2 {
  max-width: 8ch;
  color: var(--green);
}
.media-report {
  align-self: end;
  padding: 28px;
  border-top: 10px solid var(--green);
  background: #fff;
}
.media-report > p:first-child {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
}
.media-report h3 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.08;
}
.media-report h3 + p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.45;
}
.report-link {
  display: inline-block;
  padding: 15px 20px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.initiative-committee {
  padding: 95px 7.5vw;
  background: #fff;
}
.initiative-committee-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}
.initiative-committee h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.initiative-committee figure {
  margin: 0;
}
.initiative-committee img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  box-shadow: 14px 14px 0 var(--green);
}
.initiative-committee figcaption {
  margin-top: 34px;
}
.initiative-committee figcaption p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.initiative-committee ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 1100px;
  font-size: 18px;
  line-height: 1.7;
}
.initiative-committee li {
  display: inline;
}
.initiative-committee li:not(:last-child)::after {
  content: ", ";
}
.initiative-committee li.keep-together {
  white-space: nowrap;
}
.support-committee {
  padding: 95px 7.5vw;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  background: var(--cyan);
}
.support-intro h2 {
  max-width: 9ch;
  margin: 0 0 28px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.support-intro > p:last-child {
  max-width: 560px;
  font-size: 21px;
  line-height: 1.45;
}
.support-form {
  padding: 34px;
  background: #fff;
  box-shadow: 14px 14px 0 #111;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.support-form label {
  font-size: 15px;
  font-weight: 800;
}
.support-form label > span {
  font-weight: 400;
}
.support-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 10px 12px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: inherit;
}
.support-form input:focus-visible,
.support-form button:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 3px;
}
.form-wide {
  grid-column: 1 / -1;
}
.checkbox-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 24px;
  line-height: 1.4;
}
.checkbox-row input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--green);
}
.form-privacy,
.form-preview-note {
  font-size: 14px;
  line-height: 1.45;
}
.form-privacy {
  margin: 24px 0 0;
}
.form-preview-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 6px solid var(--red);
  background: #f1f1ef;
  font-weight: 700;
}
.support-form button {
  margin-top: 25px;
  padding: 17px 23px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.support-form button:disabled {
  background: #777;
  cursor: not-allowed;
}
.supporters {
  padding: 95px 7.5vw;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  background: #fff;
}
.supporters h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--green);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.supporters-content {
  align-self: end;
  padding: 28px;
  border-top: 10px solid var(--green);
  background: var(--paper);
}
.supporters-empty {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.supporters-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.supporters-list li {
  padding-bottom: 14px;
  border-bottom: 2px solid #d9ded9;
}
.supporters-list strong,
.supporters-list span {
  display: block;
}
.supporters-list strong {
  font-size: 18px;
}
.supporters-list span {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer-collect {
  margin-top: 8px;
  background: var(--green);
  color: #fff;
}
.login-page {
  background: linear-gradient(135deg, var(--cyan) 0 50%, var(--green) 50%);
}
.login-card {
  border-radius: 0;
  box-shadow: 18px 18px 0 #111;
}
.login-card h1 {
  font-family: var(--aux);
  font-weight: 900;
}
.login-card button {
  box-shadow: 6px 6px 0 #111;
}
@media (max-width: 850px) {
  .press,
  .media-reports,
  .initiative-committee-head,
  .support-committee,
  .supporters {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-field {
    min-height: 520px;
  }
  .demand:nth-child(n) {
    margin-left: 0;
  }
  .tiles p,
  .tiles p:nth-child(n) {
    width: auto;
    max-width: none;
    margin-left: 0;
  }
  .join {
    background: #eee;
  }
}
@media (max-width: 560px) {
  .press,
  .media-reports,
  .initiative-committee,
  .support-committee,
  .supporters {
    padding: 70px 22px;
  }
  .support-form {
    padding: 28px 20px;
    box-shadow: 9px 9px 0 #111;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-wide {
    grid-column: auto;
  }
  .media-report {
    padding: 24px 20px;
  }
  .press-button {
    width: 100%;
    text-align: center;
  }
  .report-link {
    width: 100%;
    text-align: center;
  }
  .support-form button {
    width: 100%;
  }
  .initiative-committee-head {
    display: block;
    margin-bottom: 28px;
  }
  .initiative-committee-head .overline {
    margin-bottom: 12px;
  }
  .initiative-committee img {
    box-shadow: 8px 8px 0 var(--green);
  }
  .initiative-committee figcaption {
    margin-top: 26px;
  }
  .initiative-committee ul {
    font-size: 16px;
    line-height: 1.65;
  }
  .supporters-list {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
  .tag {
    font-size: 14px;
  }
  .hero-field {
    padding: 52px 20px;
  }
  .demand {
    padding: 25px 22px;
  }
  .demand > strong {
    font-size: 64px;
  }
  .demand h3 {
    font-size: 26px;
  }
  .demand p {
    font-size: 16px;
  }
  .tiles p {
    font-size: 20px;
  }
  .callout p {
    padding: 24px 20px;
    box-shadow: 9px 9px 0 #111;
  }
  .login-card {
    padding: 38px 25px;
    box-shadow: 10px 10px 0 #111;
  }
}

/* Finale Flyerlogik: klare Flächen, viel Weissraum, keine Effekte. */
body {
  font-family: var(--aux);
  font-stretch: normal;
  font-synthesis: none;
  background: #fff;
}
.top {
  height: 76px;
  padding: 0 6vw;
  border-bottom: 1px solid #e7e7e7;
}
.mark {
  box-shadow: none;
  transform: none;
}
.nav-cta {
  box-shadow: none;
}
.hero {
  min-height: 650px;
  grid-template-columns: 1fr 1fr;
}
.hero-field {
  padding: 5vw 4vw;
}
.green-field {
  background: #358f38;
}
.grey-field {
  background: #7f7f7f;
}
.green-field:after,
.grey-field:after,
.play-shape {
  display: none;
}
.tag {
  box-shadow: none;
  font-size: 17px;
}
.hero h1 {
  font-weight: 800;
  line-height: 1.14;
}
.quiet-shape {
  opacity: 0.78;
  text-shadow: none;
  transform: none;
}
.intro {
  border-top: 0;
  padding: 100px 13.5vw 70px;
}
.intro h2 {
  font-size: clamp(45px, 5.5vw, 78px);
}
.intro-copy {
  margin: 35px 0 0;
  max-width: 920px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}
.demands {
  padding: 15px 13.5vw 110px;
  gap: 48px;
}
.demand {
  display: grid;
  grid-template-columns: 120px 1fr;
  max-width: none;
  padding: 0;
  background: transparent !important;
  color: #1b1b1b;
  box-shadow: none;
}
.demand:nth-child(n) {
  margin-left: 0;
}
.demand > strong {
  font-size: 112px;
  line-height: 0.82;
}
.demand:nth-child(1) > strong {
  color: var(--cyan);
}
.demand:nth-child(2) > strong {
  color: var(--green);
}
.demand:nth-child(3) > strong {
  color: var(--red);
}
.demand h3 {
  font-size: 31px;
  line-height: 1.08;
}
.demand h4 {
  font-size: 20px;
  line-height: 1.2;
}
.demand p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 950px;
}
.demand:nth-child(1) h3,
.demand:nth-child(1) h4 {
  color: #55b8c8;
}
.demand:nth-child(2) h3,
.demand:nth-child(2) h4 {
  color: var(--green);
}
.demand:nth-child(3) h3,
.demand:nth-child(3) h4 {
  color: #cf2a1d;
}
.arguments {
  padding: 95px 13.5vw 115px;
  background: #fff;
  border: 0;
}
.arguments h2 {
  font-size: clamp(44px, 5vw, 70px);
}
.tiles {
  margin-top: 55px;
}
.tiles p {
  box-shadow: none;
  color: #fff;
  font-weight: 400;
  line-height: 1.42;
  padding: 24px 28px;
}
.tiles p:nth-child(1) {
  width: 70%;
}
.tiles p:nth-child(2) {
  width: 48%;
  margin: 38px 0 0;
}
.tiles p:nth-child(3) {
  width: 56%;
  margin: -145px 0 0 50%;
}
.tiles p:nth-child(4) {
  width: 63%;
  margin: 28px 0 0 46%;
}
.tiles p:nth-child(5) {
  width: 78%;
  margin: 28px 0 0;
}
.tiles p strong {
  font-weight: 800;
}
.callout {
  padding: 0 0 85px;
  background: #fff;
}
.callout p {
  margin-left: 8%;
  background: var(--red);
  box-shadow: none;
  padding: 36px 42px;
  max-width: 84%;
  font-size: clamp(28px, 3.2vw, 47px);
  line-height: 1.35;
}
.join {
  padding: 95px 13.5vw;
  background: #f2f2f2;
}
.big-button {
  box-shadow: none;
}
.login-page {
  background: #f3f3f1;
}
.login-card {
  box-shadow: none;
  border-top: 12px solid var(--cyan);
}
.login-card button {
  box-shadow: none;
}
@media (max-width: 850px) {
  .intro,
  .arguments,
  .join {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .demands {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .tiles p:nth-child(n) {
    width: auto;
    margin: 18px 0 0;
  }
  .callout p {
    max-width: 88%;
    margin-left: 6%;
  }
}
@media (max-width: 560px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-field {
    min-height: 430px;
  }
  .grey-field {
    min-height: 260px;
  }
  .intro,
  .arguments,
  .join {
    padding: 70px 22px;
  }
  .demands {
    padding: 5px 22px 75px;
    gap: 44px;
  }
  .demand {
    grid-template-columns: 76px 1fr;
    gap: 10px;
  }
  .demand > strong {
    font-size: 76px;
  }
  .demand h3 {
    font-size: 24px;
  }
  .demand h4 {
    font-size: 17px;
  }
  .callout p {
    max-width: calc(100% - 36px);
    margin-left: 18px;
    padding: 26px 22px;
  }
}

/* Flyer-Titelseite: geteiltes Motiv, Kampagnenzeilen über die ganze Breite. */
.hero {
  display: block;
  position: relative;
  min-height: 720px;
  background: #333;
  overflow: hidden;
}
.hero-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-photo {
  background-size: cover;
  background-position: center;
}
.hero-photo-green {
  background-image:
    linear-gradient(#00000005, #00000005), url("/hero-wiese-kinder.jpg");
  background-position: center 48%;
}
.hero-photo-grey {
  background-image: url("/hero-knabe-sw.jpg");
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4vw 7vh;
}
.hero-overlay:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    #00000009 55%,
    #00000026 100%
  );
  z-index: -1;
}
.hero-overlay .tag {
  margin: 0 0 24px;
  width: max-content;
  color: #191919;
  font-size: 20px;
}
.hero-overlay h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5.35vw, 82px);
  line-height: 1.17;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.hero-overlay h1 span {
  display: inline;
  padding: 0 0.13em 0.04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-lead,
.hero-tail {
  padding: 0 !important;
  background: transparent !important;
  color: #fff;
}
.hero-overlay .cyan,
.hero-overlay .green,
.hero-overlay .red {
  color: #fff;
}
.hero-overlay .cyan {
  background: var(--cyan);
}
.hero-overlay .green {
  background: var(--green);
}
.hero-overlay .red {
  background: var(--red);
}
@media (max-width: 850px) {
  .hero {
    min-height: 690px;
  }
  .hero-overlay {
    padding: 0 25px 55px;
  }
  .hero-overlay h1 {
    font-size: clamp(34px, 7vw, 59px);
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 670px;
  }
  .hero-images {
    grid-template-columns: 1fr;
  }
  .hero-photo-grey {
    display: none;
  }
  .hero-photo-green {
    filter: brightness(0.78);
  }
  .hero-overlay {
    padding: 0 18px 45px;
  }
  .hero-overlay .tag {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .hero-overlay h1 {
    font-size: 36px;
    line-height: 1.24;
  }
  .hero-overlay h1 br {
    display: none;
  }
  .hero-overlay h1 span {
    line-height: 1.32;
  }
  .hero-lead,
  .hero-tail {
    display: inline;
  }
}

/* Schriftgewichte analog Flyer: Satz normal, Kernaussagen gezielt fett. */
.hero-overlay h1 {
  font-weight: 400;
}
.hero-overlay .cyan,
.hero-overlay .green,
.hero-overlay .red {
  font-weight: 800;
}
.hero-overlay .hero-lead,
.hero-overlay .hero-tail {
  font-weight: 400;
}
.intro-copy {
  font-weight: 400;
}
.intro-copy strong,
.demand p strong,
.tiles strong {
  font-weight: 800;
}
.demand h3 {
  font-weight: 800;
}
.demand h4 {
  font-weight: 700;
}
.tiles p {
  font-weight: 400;
}
.callout p {
  font-weight: 400;
}
.callout p strong {
  font-weight: 800;
}
.join > div:last-child {
  font-weight: 400;
}
.demand p strong {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  display: inline;
}

/* Papier-Unterschrift und Flyer-Download */
.signature {
  padding: 95px 13.5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--cyan);
}
.signature h2 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 24px 0 0;
  font-weight: 400;
}
.signature h2 span {
  font-weight: 800;
}
.signature-copy {
  padding-top: 48px;
}
.signature-copy p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 650px;
}
.signature-copy strong {
  font-weight: 800;
}
.download-button {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
}
.signature-copy small {
  display: block;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .signature {
    padding: 75px 8vw;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .signature-copy {
    padding-top: 10px;
  }
}
@media (max-width: 560px) {
  .signature {
    padding: 70px 22px;
  }
  .signature h2 {
    font-size: 48px;
  }
  .signature-copy p {
    font-size: 19px;
  }
  .download-button {
    width: 100%;
    text-align: center;
    padding: 17px 16px;
  }
}

/* Ruhige Anordnung der Argument-Boxen ohne Überlappungen */
.arguments .tiles {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 28px;
  align-items: start;
}
.arguments .tiles p {
  width: auto;
  max-width: none;
  margin: 0;
  min-height: 0;
}
.arguments .tiles p:nth-child(1) {
  grid-column: 1/9;
}
.arguments .tiles p:nth-child(2) {
  grid-column: 1/7;
}
.arguments .tiles p:nth-child(3) {
  grid-column: 7/13;
}
.arguments .tiles p:nth-child(4) {
  grid-column: 5/13;
}
.arguments .tiles p:nth-child(5) {
  grid-column: 1/10;
}
@media (max-width: 850px) {
  .arguments .tiles {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .arguments .tiles p:nth-child(n) {
    grid-column: 1;
    width: auto;
    margin: 0;
  }
}

/* Navigation und Footer ohne provisorischen Schriftzug */
.top nav {
  margin-right: auto;
}
footer {
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}
@media (max-width: 560px) {
  footer {
    grid-template-columns: 1fr;
  }
}
