/* ============================================================
   Startseite — die öffentliche Seite unter der Hauptadresse.

   Setzt auf app.css auf und benutzt dessen Farben und Maße. Eine
   zweite Datei statt ein Anhang an app.css, weil sie genau einmal
   geladen wird: von einer Seite, die niemand sieht, der schon Kunde
   ist. In der Anwendung selbst wäre jede Zeile davon Ballast.
   ============================================================ */

.start {
  --breite: 68rem;
  color: var(--text);
}

/* ── Kopfleiste ─────────────────────────────────────────────── */

.st-kopf {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: color-mix(in srgb, var(--grund) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rand);
}

.st-kopf .marke { margin-right: auto; }

.st-kopf-navi {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.st-kopf-navi a.st-link {
  padding: .5rem .7rem;
  border-radius: var(--radius-klein);
  color: var(--text-leise);
  text-decoration: none;
  font-size: .92rem;
}

.st-kopf-navi a.st-link:hover { color: var(--text); background: var(--flaeche); }

@media (max-width: 640px) {
  .st-kopf-navi .nur-desktop { display: none; }
}

/* ── Grundraster ────────────────────────────────────────────── */

.st-band { padding: 4.5rem 1.25rem; }
.st-band.eng { padding: 3rem 1.25rem; }
.st-band.flaeche { background: var(--flaeche); border-block: 1px solid var(--rand); }

.st-innen {
  width: 100%;
  max-width: var(--breite);
  margin: 0 auto;
}

.st-band h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}

.st-vorspann {
  color: var(--text-leise);
  max-width: 44rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ── Kopfbereich ────────────────────────────────────────────── */

.st-held {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6.5rem) 1.25rem clamp(3rem, 7vw, 5rem);
  text-align: center;
}

/* Ein ruhiger Schein hinter der Überschrift. Kein Bild: eine
   Warenwirtschaft, die mit einem Stockfoto wirbt, wirkt wie eine,
   die nichts zu zeigen hat. */
.st-held::before {
  content: "";
  position: absolute;
  inset: -40% 15% auto;
  height: 32rem;
  background: radial-gradient(closest-side, var(--akzent-grund), transparent 75%);
  opacity: .85;
  pointer-events: none;
}

.st-held > * { position: relative; }

.st-marke-zeile {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem .35rem .4rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--rand);
  border-radius: 999px;
  background: var(--flaeche);
  color: var(--text-leise);
  font-size: .85rem;
}

.st-marke-zeile strong { color: var(--text); font-weight: 600; }

.st-held h1 {
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 20ch;
  margin: 0 auto 1.1rem;
}

.st-held h1 em {
  font-style: normal;
  color: var(--akzent-hell);
}

.st-held p.gross {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-leise);
  max-width: 46rem;
  margin: 0 auto 2rem;
}

.st-knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.st-fussnote { color: var(--text-schwach); font-size: .88rem; }

/* ── Zahlenband ─────────────────────────────────────────────── */

.st-zahlen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--rand);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  overflow: hidden;
}

.st-zahl {
  background: var(--flaeche);
  padding: 1.3rem 1.1rem;
  text-align: left;
}

.st-zahl strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  margin-bottom: .2rem;
}

.st-zahl span { color: var(--text-leise); font-size: .88rem; line-height: 1.5; }

/* ── Kacheln ────────────────────────────────────────────────── */

.st-gitter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.st-kachel {
  background: var(--flaeche);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.st-band.flaeche .st-kachel { background: var(--grund); }

.st-kachel .ico {
  width: 22px;
  height: 22px;
  color: var(--akzent-hell);
  margin-bottom: .7rem;
}

.st-kachel h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}

.st-kachel p {
  color: var(--text-leise);
  font-size: .92rem;
  line-height: 1.6;
}

/* ── Schritte ───────────────────────────────────────────────── */

.st-schritte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.4rem;
  counter-reset: schritt;
}

.st-schritt { padding-top: .4rem; }

.st-schritt::before {
  counter-increment: schritt;
  content: counter(schritt);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .8rem;
  border-radius: 50%;
  background: var(--akzent-grund);
  color: var(--akzent-hell);
  font-weight: 700;
  font-size: .95rem;
}

.st-schritt h3 { font-size: 1rem; margin-bottom: .35rem; }
.st-schritt p { color: var(--text-leise); font-size: .92rem; line-height: 1.6; }

/* ── Preis ──────────────────────────────────────────────────── */

.st-preis {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

@media (max-width: 780px) {
  .st-preis { grid-template-columns: 1fr; }
}

.st-preis-karte {
  background: var(--flaeche);
  border: 1px solid var(--rand-stark);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.st-band.flaeche .st-preis-karte { background: var(--grund); }

.st-preis-zahl {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: .4rem 0 .2rem;
}

.st-preis-zahl strong {
  font-size: 2.6rem;
  letter-spacing: -.03em;
  line-height: 1;
}

.st-preis-zahl span { color: var(--text-leise); }

.st-haken {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.st-haken li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-leise);
  font-size: .93rem;
  line-height: 1.55;
}

.st-haken li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: .95rem;
  height: .5rem;
  border-left: 2px solid var(--gruen);
  border-bottom: 2px solid var(--gruen);
  transform: rotate(-45deg);
}

/* ── Fragen ─────────────────────────────────────────────────── */

.st-frage {
  border-bottom: 1px solid var(--rand);
  padding: .2rem 0;
}

.st-frage summary {
  cursor: pointer;
  padding: 1rem .2rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.st-frage summary::-webkit-details-marker { display: none; }

.st-frage summary::after {
  content: "+";
  margin-left: auto;
  color: var(--text-schwach);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
}

.st-frage[open] summary::after { content: "–"; }

.st-frage p {
  padding: 0 .2rem 1.1rem;
  color: var(--text-leise);
  line-height: 1.65;
  max-width: 52rem;
}

/* ── Abschluss und Fuß ──────────────────────────────────────── */

.st-abschluss {
  text-align: center;
  border: 1px solid var(--rand-stark);
  border-radius: var(--radius);
  background: var(--flaeche);
  padding: clamp(2rem, 5vw, 3.2rem) 1.4rem;
}

.st-abschluss h2 { margin-bottom: .5rem; }

.st-abschluss p {
  color: var(--text-leise);
  max-width: 40rem;
  margin: 0 auto 1.6rem;
  line-height: 1.6;
}

.st-fuss {
  border-top: 1px solid var(--rand);
  padding: 2rem 1.25rem 3rem;
  color: var(--text-schwach);
  font-size: .88rem;
}

.st-fuss .st-innen {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  align-items: center;
}

.st-fuss a { color: var(--text-leise); text-decoration: none; }
.st-fuss a:hover { color: var(--text); text-decoration: underline; }
.st-fuss .weit { margin-left: auto; }

/* ── Schliff ────────────────────────────────────────────────── */

/* Nur auf dieser Seite: die Knöpfe sind hier das eigentliche Ziel und
   dürfen größer und deutlicher sein als in der Anwendung, wo sie den
   ganzen Tag danebenstehen. */
.start .knopf {
  border-radius: 10px;
  font-weight: 600;
}

.start .knopf.haupt {
  box-shadow: 0 6px 18px -8px var(--akzent);
}

.start .knopf.gross {
  padding: .85rem 1.6rem;
}

.st-kachel {
  transition: border-color .15s ease, transform .15s ease;
}

.st-kachel:hover {
  border-color: var(--rand-stark);
  transform: translateY(-2px);
}

/* Wer die Bewegung abgestellt hat, meint es ernst. */
@media (prefers-reduced-motion: reduce) {
  .st-kachel { transition: none; }
  .st-kachel:hover { transform: none; }
}

/* Die Trennlinie zwischen zwei Bändern derselben Farbe würde fehlen —
   zwei helle Bänder nebeneinander sehen sonst aus wie eines. */
.st-band.flaeche + .st-band.flaeche { border-top: 0; }

/* Auf dem Handy trägt der Kopfbereich weniger Luft, sonst steht der
   erste Knopf unter der Falz. */
@media (max-width: 560px) {
  .st-band { padding: 3rem 1.1rem; }
  .st-knoepfe .knopf { width: 100%; justify-content: center; }
  .st-kopf { padding: .7rem .9rem; }
  .st-kopf .marke-text { display: none; }
}
