/*
 * GutachterSoftNext 6.0 - Auftritt unter sunumdemo.site
 *
 * Die Farben und Formen sind bewusst dieselben wie in der Anwendung
 * (web/app/globals.css). Wer von der Website in die Anwendung wechselt, soll
 * nicht das Gefühl haben, das Haus gewechselt zu haben.
 *
 * Kein Bauschritt, keine Abhängigkeiten: eine Datei, von oben nach unten
 * gelesen - Grundlagen, Bausteine, Abschnitte, Bewegung, schmale Geräte.
 */

/* --- Grundlagen ---------------------------------------------------------- */

:root {
  --navy: #021b3e;
  --navy-2: #062b5a;
  --navy-3: #0a3a75;
  --primary: #075cff;
  --primary-2: #0f6fff;
  --bg: #f4f7fb;
  --panel: #ffffff;
  --panel-2: #f8faff;
  --text: #071c43;
  --muted: #63749a;
  --muted-dark: #9db3d6;
  --line: #dbe3f0;
  --line-soft: #e9eef6;
  --green: #149447;
  --orange: #f29318;
  --shadow: 0 10px 32px rgba(23, 50, 91, 0.08);
  --shadow-lg: 0 28px 70px rgba(2, 27, 62, 0.18);
  --radius: 14px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/*
 * `height: auto` ist hier nicht kosmetisch: Die Bilder tragen width- und
 * height-Attribute, damit der Browser den Platz schon vor dem Laden kennt und
 * die Seite nicht springt. Ohne diese Zeile begrenzt max-width zwar die Breite,
 * die Höhe bliebe aber beim Attributwert stehen - das Bild würde in die Länge
 * gezogen.
 */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow--light { color: #6ba8ff; }

/*
 * Die Kopfleiste bleibt beim Scrollen stehen und ist 74px hoch. Ohne diesen
 * Abstand verschwindet die Überschrift eines angesprungenen Abschnitts genau
 * darunter - der Sprung landet sichtbar zu weit oben.
 */
:where(section, article, div)[id],
.dl-platform, .req-table, .hash-list { scroll-margin-top: 92px; }

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--panel); }
.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* --- Schaltflächen ------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 26px; border: 1px solid transparent; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 10px 26px rgba(7, 92, 255, 0.32); }
.btn--primary:hover { background: var(--primary-2); box-shadow: 0 16px 34px rgba(7, 92, 255, 0.4); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.06); }
.btn--outline { background: var(--panel); color: var(--text); border-color: var(--line); box-shadow: var(--shadow); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--small { height: 42px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* --- Marke --------------------------------------------------------------- */

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-shield {
  width: 38px; height: 42px; flex: 0 0 auto; position: relative;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(145deg, #fff 0 19%, #153962 20% 67%, #0872ed 68% 83%, #19b6f2 84%);
  clip-path: polygon(50% 0, 94% 21%, 94% 70%, 50% 100%, 6% 70%, 6% 21%);
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.23));
}
.brand-shield::after {
  content: ""; position: absolute; inset: 6px 7px 8px; border: 2px solid #fff;
  clip-path: polygon(50% 0, 100% 22%, 100% 70%, 50% 100%, 0 70%, 0 22%);
}
.brand-shield b, .brand-shield i { position: relative; z-index: 1; font-size: 19px; line-height: 1; font-style: normal; }
.brand-shield i { font-size: 12px; margin-top: 12px; margin-left: -1px; }
.brand-name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.brand-name span { font-weight: 700; }

/* --- Kopfleiste ---------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 27, 62, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { background: rgba(2, 27, 62, 0.97); box-shadow: 0 12px 30px rgba(2, 15, 35, 0.25); }
.site-header__inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.site-nav a { font-size: 14.5px; font-weight: 500; color: #cfe0f8; position: relative; padding: 4px 0; transition: color 0.18s ease; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: #4f9bff; transition: right 0.22s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px; color: #fff; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 3px auto; background: #fff; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* --- Titelbereich -------------------------------------------------------- */

.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1200px 620px at 78% -12%, #0a4694 0%, transparent 62%), var(--navy);
  padding: 92px 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(760px 480px at 22% 26%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(760px 480px at 22% 26%, #000 0%, transparent 78%);
}
.hero__glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(15, 111, 255, 0.42) 0%, transparent 68%);
  top: -220px; right: -140px; animation: float-slow 15s ease-in-out infinite;
}
.hero__glow--2 {
  width: 460px; height: 460px; top: auto; bottom: -240px; right: auto; left: -180px;
  background: radial-gradient(circle, rgba(25, 182, 242, 0.24) 0%, transparent 68%);
  animation-delay: -7s;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.2vw, 58px); margin: 18px 0 20px; letter-spacing: -0.03em; }
.hero h1 span { color: #57a0ff; }
.hero__lead { font-size: 18.5px; color: #bcd2ee; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.hero__points { display: grid; gap: 12px; }
.hero__points li { display: flex; align-items: flex-start; gap: 11px; color: #cfe0f8; font-size: 15px; }
.hero__points svg { width: 19px; height: 19px; color: #3fd07f; margin-top: 3px; }

.hero__shot { position: relative; }
.hero__shot img {
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg); animation: float-slow 9s ease-in-out infinite;
}
.hero__badge {
  position: absolute; bottom: -22px; left: -26px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: var(--panel); color: var(--text); border-radius: 12px;
  padding: 13px 18px; box-shadow: var(--shadow-lg);
  animation: float-slow 9s ease-in-out infinite; animation-delay: -4.5s;
}
.hero__badge svg { width: 26px; height: 26px; color: var(--green); }
.hero__badge b { display: block; font-size: 14px; }
.hero__badge small { color: var(--muted); font-size: 12.5px; }

.hero__strip {
  position: relative; margin-top: 78px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero__strip div { padding: 26px 0 30px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.hero__strip div:last-child { border-right: 0; }
.hero__strip b { display: block; font-size: 27px; color: #fff; }
.hero__strip small { color: #92aed4; font-size: 13.5px; }

/* --- Karten -------------------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c4d5ef; }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center; background: #eaf2ff; color: var(--primary);
}
.card__icon svg { width: 25px; height: 25px; }
.card--alt .card__icon { background: #e8f7ee; color: var(--green); }
.card--warm .card__icon { background: #fff3e2; color: var(--orange); }

.numbered { counter-reset: schritt; display: grid; gap: 18px; }
.numbered li {
  position: relative; padding-left: 62px; min-height: 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.numbered li::before {
  counter-increment: schritt; content: counter(schritt, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 14px;
}
.numbered b { font-size: 16px; }
.numbered span { color: var(--muted); font-size: 15px; }

/* --- Funktionsübersicht -------------------------------------------------- */

.feature-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.feature-split + .feature-split { margin-top: 96px; }
.feature-split--flip .feature-split__text { order: 2; }
.feature-split h3 { font-size: clamp(24px, 3vw, 32px); margin: 16px 0 16px; }
.feature-split p { color: var(--muted); font-size: 16.5px; }
.feature-list { display: grid; gap: 11px; margin-top: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; }
.feature-list svg { width: 19px; height: 19px; color: var(--primary); margin-top: 4px; }
.shot {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--panel);
}
.shot__bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: #eef3fb; border-bottom: 1px solid var(--line); }
.shot__bar i { width: 10px; height: 10px; border-radius: 50%; background: #cbd7e9; }
.shot__bar span { margin-left: 8px; font-size: 12px; color: var(--muted); }

/* --- Modulraster --------------------------------------------------------- */

.modules { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.module {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 16px; text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.module:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow); }
.module svg { width: 24px; height: 24px; color: var(--primary); margin-bottom: 10px; }
.module b { display: block; font-size: 14.5px; }
.module small { color: var(--muted); font-size: 12.5px; }

/* --- Ausgaben ------------------------------------------------------------ */

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plan {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: grid; gap: 18px; box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan--featured { border-color: var(--primary); box-shadow: 0 18px 46px rgba(7, 92, 255, 0.2); position: relative; }
.plan--featured::before {
  content: "Empfohlen"; position: absolute; top: -13px; left: 26px;
  background: var(--primary); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.plan__name { font-size: 19px; font-weight: 700; }
.plan__seats { color: var(--muted); font-size: 14.5px; margin-top: 3px; }
.plan__price { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; }
.plan__price small { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan__features { display: grid; gap: 9px; }
.plan__features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; }
.plan__features svg { width: 17px; height: 17px; color: var(--green); margin-top: 3px; flex: 0 0 auto; }
.plan__features li.is-off { color: var(--muted); }
.plan__features li.is-off svg { color: var(--line); }

/* --- Fragen -------------------------------------------------------------- */

.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] { border-color: #bed4f6; box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16.5px; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 11px; height: 11px; flex: 0 0 auto;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translateY(-3px); transition: transform 0.22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq p { color: var(--muted); margin-top: 14px; font-size: 15.5px; }

/* --- Aufruf -------------------------------------------------------------- */

.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(900px 420px at 50% -30%, #0a4694 0%, transparent 60%), var(--navy);
  padding: 88px 0;
}
.cta h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.cta p { color: #bcd2ee; font-size: 17.5px; max-width: 620px; margin: 0 auto 32px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --- Fußbereich ---------------------------------------------------------- */

.site-footer { background: var(--navy); color: #9db3d6; padding: 66px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: 0.02em; }
.site-footer li + li { margin-top: 9px; }
.site-footer a { font-size: 14.5px; transition: color 0.18s ease; }
.site-footer a:hover { color: #fff; }
.site-footer__about { max-width: 320px; }
.site-footer__about p { font-size: 14.5px; margin-top: 16px; }
.site-footer .brand-name { color: #fff; }
.site-footer__bar {
  margin-top: 52px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 28px; display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; font-size: 13.5px;
}
.status-dot { display: inline-flex; align-items: center; gap: 8px; }
.status-dot i { width: 8px; height: 8px; border-radius: 50%; background: #5b6f8f; transition: background 0.3s ease; }
.status-dot.is-up i { background: var(--green); box-shadow: 0 0 0 4px rgba(20, 148, 71, 0.18); }
.status-dot.is-down i { background: #e8384f; box-shadow: 0 0 0 4px rgba(232, 56, 79, 0.18); }

/* --- Downloadseite ------------------------------------------------------- */

.dl-hero { color: #fff; background: radial-gradient(1000px 520px at 70% -20%, #0a4694 0%, transparent 62%), var(--navy); padding: 84px 0 78px; text-align: center; }
.dl-hero h1 { font-size: clamp(34px, 4.6vw, 50px); margin: 18px 0 18px; }
.dl-hero p { color: #bcd2ee; font-size: 18px; max-width: 640px; margin-inline: auto; }
.dl-version { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: #9db3d6; }
.dl-version b { color: #fff; }
.dl-version i { width: 4px; height: 4px; border-radius: 50%; background: #4c628a; }

.dl-detected {
  margin: -46px auto 0; position: relative; z-index: 2;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 26px 30px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.dl-detected__icon { width: 56px; height: 56px; border-radius: 14px; background: #eaf2ff; color: var(--primary); display: grid; place-items: center; }
.dl-detected__icon svg { width: 30px; height: 30px; }
.dl-detected__text { flex: 1; min-width: 220px; }
.dl-detected__text b { font-size: 17px; }
.dl-detected__text p { color: var(--muted); font-size: 14.5px; }

.dl-platform { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.dl-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dl-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.dl-card__head svg { width: 36px; height: 36px; color: var(--text); }
.dl-card__head h3 { font-size: 21px; }
.dl-card__head small { color: var(--muted); font-size: 14px; }
.dl-files { display: grid; gap: 12px; margin-top: 24px; }
.dl-file {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 11px; background: var(--panel-2);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dl-file:hover { border-color: var(--primary); background: #f2f7ff; }
.dl-file b { font-size: 15px; display: block; }
.dl-file small { color: var(--muted); font-size: 13px; }
.dl-file .btn { height: 42px; padding: 0 18px; font-size: 14px; }
.dl-note { margin-top: 22px; padding: 16px 18px; border-radius: 11px; background: #fff8ec; border: 1px solid #f6e2c0; color: #7a5a1e; font-size: 14px; display: flex; gap: 11px; }
.dl-note svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; }

.req-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.req-table th, .req-table td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line-soft); }
.req-table th { color: var(--muted); font-weight: 600; width: 220px; }
.req-table tr:last-child th, .req-table tr:last-child td { border-bottom: 0; }

.hash-list { display: grid; gap: 10px; }
.hash-list div { display: grid; gap: 3px; padding: 14px 16px; background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: 10px; }
.hash-list b { font-size: 14px; }
.hash-list code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; color: var(--muted); word-break: break-all; }

/* --- Rechtliche Seiten --------------------------------------------------- */

.legal { padding: 64px 0 96px; }
.legal__inner { max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 12px; }
.legal h2 { font-size: 21px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal p + p { margin-top: 12px; }
.legal ul { display: grid; gap: 8px; margin-top: 12px; padding-left: 20px; list-style: disc; }
.legal dl { display: grid; grid-template-columns: 200px 1fr; gap: 10px 20px; margin-top: 16px; }
.legal dt { font-weight: 600; }
.legal dd { margin: 0; color: var(--muted); }
.legal .platzhalter {
  background: #fff8ec; border: 1px solid #f6e2c0; color: #7a5a1e;
  padding: 16px 18px; border-radius: 11px; font-size: 14.5px; margin: 22px 0;
}
.legal .platzhalter b { display: block; margin-bottom: 4px; }

/* --- Bewegung ------------------------------------------------------------ */

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.66s ease, transform 0.66s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }

/*
 * Wer im Betriebssystem weniger Bewegung eingestellt hat, bekommt sie auch
 * hier nicht. Die Inhalte müssen dann trotzdem sichtbar sein - deshalb wird
 * die Ausgangslage der Einblendung mit zurückgesetzt und nicht nur die Dauer.
 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- Schmale Geräte ------------------------------------------------------ */

@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .wrap { width: min(var(--wrap), 100% - 32px); }
  .section { padding: 68px 0; }
  .site-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-2); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px 20px; display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .site-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn--ghost { display: none; }
  .hero { padding-top: 62px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__shot { order: -1; }
  .hero__badge { left: 0; bottom: -18px; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__strip div:nth-child(2) { border-right: 0; }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-split--flip .feature-split__text { order: 0; }
  .feature-split + .feature-split { margin-top: 62px; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .dl-platform { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .legal dl { grid-template-columns: 1fr; gap: 2px 0; }
  .legal dd { margin-bottom: 10px; }
}

@media (max-width: 620px) {
  .plans, .modules { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__strip { grid-template-columns: 1fr; }
  .hero__strip div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .dl-file { grid-template-columns: 1fr; }
  .req-table th { width: auto; }
  .req-table, .req-table tbody, .req-table tr, .req-table th, .req-table td { display: block; }
  .req-table th { padding-bottom: 2px; border-bottom: 0; }
}
