/* tashk – Landingpage. Dunkles Layout in den Markenfarben (Slate/Pink/Grün + Akzent-Blau).
   Schriften lokal gebündelt nach Design-System: Work Sans = Headlines,
   Source Sans 3 = Text/UI (Outfit ist dem Logo vorbehalten). Kein CDN; Pfade absolut.

   AUFBAU: MOBILE-FIRST.
   1) Basis-/Komponenten-Stile = mobil (schmal, 1-spaltig, Hamburger-Menü)
   2) @media (min-width: 640px)  = Tablet
   3) @media (min-width: 1024px) = Desktop
   (Breakpoints am Ende der Datei, von schmal nach breit.) */

/* ── Gebündelte Webfonts (lokal, kein Netzwerk) – Design-System ── */
@font-face {
  font-family: 'Work Sans'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../fonts/worksans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Work Sans'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../fonts/worksans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3'; font-style: normal; font-weight: 200 900; font-display: swap;
  src: url('../fonts/sourcesans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3'; font-style: normal; font-weight: 200 900; font-display: swap;
  src: url('../fonts/sourcesans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* ── Schriften (Design-System) ── */
  --font-display: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* ── Marke (aus dem Logo, themenunabhängig) ── */
  --brand-slate: #1E293B;
  --brand-pink:  #EC4899;
  --brand-green: #10B981;

  /* ── Dunkles Theme (Website = Marken-Default) ── */
  color-scheme: dark;
  --bg:        #0B0F19;
  --bg-2:      #0f172a;
  --surface:   #111C34;
  --surface-2: #1a2540;
  --border:    #1E2D4D;
  --border-2:  #2A3C63;
  --text:      #E6EDF7;
  --text-2:    #AAB6CC;
  --text-3:    #7C8AA6;
  --accent:    #3B82F6;
  --accent-2:  #2563EB;
  --accent-fg: #FFFFFF;
  --accent-bg: #1E2A3F;

  /* ── Semantik ── */
  --success: #4ade80; --warning: #fbbf24; --danger: #f87171; --info: #3B82F6;

  /* ── Marken-Verlauf (Karten / Release-Timeline) ── */
  --grad-brand: linear-gradient(90deg, var(--brand-pink), var(--accent), var(--brand-green));

  /* ── Radien ── */
  --radius-sm: 6px; --radius: 10px; --radius-lg: 16px; --radius-xl: 22px; --radius-pill: 999px;

  /* ── Schatten (weich, tief, niedrige Deckkraft) ── */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 14px -6px rgba(0,0,0,.25);
  --shadow-md: 0 12px 32px -10px rgba(0,0,0,.30);
  --shadow-lg: 0 20px 44px -16px rgba(0,0,0,.45);
  --shadow-accent: 0 8px 24px -8px var(--accent);

  /* ── Motion (kräftige Easings) ── */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast: 0.12s; --dur: 0.16s; --dur-slow: 0.28s;

  /* ── Layout ── */
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
/* Headlines/Display = Work Sans (Design-System); Gewichte 600–700, enges Tracking */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
img { display: block; }

/* ════════════════════════════════════════════════════════════════════
   BASIS = MOBIL
   ════════════════════════════════════════════════════════════════════ */

/* ── Navigation (mobil: Logo + Hamburger; Menü als Panel unter dem Header) ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 10px 16px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo { height: 34px; width: auto; display: block; }

/* Hamburger – nur mobil sichtbar (ab Tablet ausgeblendet) */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none;
  background: transparent; border: 1px solid var(--border-2); border-radius: var(--radius);
  color: var(--text); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ic-close { display: none; }
.nav.open .nav-toggle .ic-menu { display: none; }
.nav.open .nav-toggle .ic-close { display: block; }

/* Menü mobil: ausklappbares Panel, standardmäßig versteckt (entzerrt: mehr Luft zwischen
   Einträgen, Sprach-Umschalter optisch abgetrennt) */
.nav-links {
  position: absolute; top: 100%; left: 0; right: 0;
  display: none; flex-direction: column; align-items: stretch; gap: 8px;
  padding: 12px 14px 18px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.nav.open .nav-links { display: flex; }
.nav-links a {
  text-decoration: none; color: var(--text-2); font-weight: 600; font-size: 16px;
  padding: 14px 16px; border-radius: var(--radius); transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
/* Aktiver Menüpunkt: farblich hinterlegt (CTA behält seinen Akzent-Hintergrund + Ring) */
.nav-links a.is-active:not(.nav-cta) {
  background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--text);
}
.nav-cta { background: var(--accent-2); color: #fff !important; text-align: center; }
.nav-cta:hover { background: var(--accent); }
.nav-cta.is-active { box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 55%, transparent); }
/* Sprach-Umschalter im mobilen Menü abgetrennt (mehr Abstand zu den Links) */
.nav-links .lang-switch { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.ic-win { flex: none; }

/* ── Sprach-Umschalter (mobil: inline im Menü; Desktop: schwebendes Dropdown) ── */
.lang-switch { position: relative; }
.lang-switch > summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 14px; border: 1px solid var(--border-2); border-radius: var(--radius);
  color: var(--text-2); font-weight: 700; font-size: 14px;
  transition: color .15s, border-color .15s;
}
.lang-switch > summary::-webkit-details-marker { display: none; }
.lang-switch > summary:hover { color: var(--text); border-color: var(--accent); }
.lang-globe { width: 16px; height: 16px; }
.lang-chev { width: 12px; height: 12px; opacity: .8; transition: transform .18s ease; }
.lang-switch[open] > summary .lang-chev { transform: rotate(180deg); }
.lang-menu {
  position: static; margin: 6px 0 0; padding: 6px; list-style: none;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px;
}
.lang-menu li { margin: 0; }
.lang-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-decoration: none; color: var(--text-2); font-weight: 600; font-size: 14px;
  padding: 10px 12px; border-radius: 9px; transition: background .12s, color .12s;
}
.lang-opt:hover { background: var(--bg-2); color: var(--text); }
.lang-opt.is-active { color: #fff; background: var(--accent-2); }
.lang-opt .lang-code { font-size: 11px; font-weight: 700; opacity: .7; letter-spacing: .04em; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--radius-pill); border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur), border-color var(--dur), opacity var(--dur);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent-2); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent); }
.btn-primary[disabled] { background: var(--border-2); color: var(--text-2); box-shadow: none; cursor: not-allowed; opacity: .8; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  color: var(--text-2); background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid var(--border-2);
}
.badge-soft { color: var(--text-3); background: transparent; }
a.badge-cta { text-decoration: none; cursor: pointer; color: var(--text); transition: border-color .15s, background .15s, transform .12s ease; }
a.badge-cta:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 18%, transparent); }
a.badge-cta:active { transform: scale(.97); }

/* ── Coming-Soon (Produktiv-Root während der Beta) ── */
.soon-body { min-height: 100vh; display: flex; flex-direction: column; }
.soon {
  position: relative; flex: 1 1 auto; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; text-align: center; padding: 48px 22px;
}
.soon > *:not(.hero-glow) { position: relative; z-index: 1; }
.soon-logo { height: 54px; width: auto; }
.soon-title {
  font-size: clamp(30px, 7vw, 56px); font-weight: 700; letter-spacing: -.025em;
  line-height: 1.08; max-width: 18ch;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.soon-text { font-size: 18px; color: var(--text-2); line-height: 1.6; max-width: 540px; }
.soon-foot { justify-content: center; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 18px 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 480px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(closest-side, color-mix(in srgb, var(--accent) 35%, transparent), transparent 70%),
    radial-gradient(closest-side, color-mix(in srgb, var(--brand-pink) 22%, transparent), transparent 70%);
  background-position: 35% 30%, 70% 60%;
  background-repeat: no-repeat; filter: blur(20px); opacity: .55;
}
.hero > *:not(.hero-glow) { position: relative; z-index: 1; }
.hero-title { font-size: clamp(30px, 8vw, 60px); font-weight: 700; letter-spacing: -0.025em; max-width: 16ch; }
/* Marken-Tagline (wie im Logo: Pink, Versalien, gesperrt) */
.hero-tagline {
  margin-top: -6px; color: var(--brand-pink);
  font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-sub { font-size: clamp(15px, 4vw, 20px); color: var(--text-2); max-width: 60ch; }
.hero-actions {
  display: flex; flex-direction: column; align-items: stretch; gap: 10px;
  width: 100%; max-width: 320px; margin: 6px auto 0;
}
.hero-actions .btn { width: 100%; }
/* Produkt-Shot (Board-Screenshot) im Hero – steht ganz oben, vor dem Text */
.hero-shot { position: relative; z-index: 1; width: 100%; max-width: 980px; margin: 0 auto 4px; }
.hero-shot img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--border-2); border-radius: 12px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .85), 0 6px 20px -10px rgba(0, 0, 0, .55);
}

/* ── Sections ── */
/* scroll-margin-top: Anker-Sprünge nicht unter den sticky Header laufen lassen */
.section { max-width: var(--maxw); margin: 0 auto; padding: 40px 18px; scroll-margin-top: 76px; }
.section-title { font-size: clamp(24px, 5vw, 34px); font-weight: 700; text-align: center; }
.section-sub { text-align: center; color: var(--text-2); margin-top: 10px; font-size: 16px; }

/* ── Funktionen (Karten-Raster) – mobil 1-spaltig ── */
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
.card {
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 88%, #000));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 20px 22px;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur);
}
.card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 15px; }
/* Modul-Icon mit Marken-Verlauf (Farbwechsel über url(#ic-grad)) */
.brand-grad-def { position: absolute; width: 0; height: 0; overflow: hidden; }
.feat-ic-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-bottom: 16px;
  border-radius: 13px; border: 1px solid var(--border-2);
  background: color-mix(in srgb, var(--accent) 9%, var(--surface));
}
.feat-ic { width: 26px; height: 26px; display: block; }

/* ── Warum (Liste) – mobil 1-spaltig ── */
.why { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 0; max-width: none; }
.why .section-title { max-width: var(--maxw); margin: 0 auto; }
.why-grid { max-width: var(--maxw); margin: 26px auto 0; display: grid; grid-template-columns: 1fr; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-dot { flex: none; width: 12px; height: 12px; margin-top: 6px; border-radius: 50%; background: var(--brand-green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-green) 22%, transparent); }
.why-item h3 { font-size: 17px; margin-bottom: 4px; }
.why-item p { color: var(--text-2); font-size: 15px; }

/* ── Download-CTA-Band (Landing) ── */
.cta-band {
  text-align: center; max-width: 760px; margin: 0 auto; padding: 32px 18px;
  background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 16%, var(--surface)), var(--surface));
  border: 1px solid var(--border-2); border-radius: var(--radius-xl);
}
.cta-band .btn { margin-top: 20px; }

/* ── Download-Seite ── */
.page-head { max-width: var(--maxw); margin: 0 auto; padding: 40px 18px 4px; text-align: center; }
.page-head .hero-title { font-size: clamp(28px, 7vw, 48px); margin: 0 auto; }
.page-head .hero-sub { margin: 12px auto 0; }
.section-tight { padding-top: 24px; padding-bottom: 24px; }
.download-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 14%, var(--surface)), var(--surface));
  border: 1px solid var(--border-2); border-radius: var(--radius-xl); padding: 28px 18px;
}
.dl-meta { display: flex; gap: 10px; justify-content: center; margin: 16px 0 20px; flex-wrap: wrap; }
.dl-note { color: var(--text-3); font-size: 14px; margin-top: 14px; }
.download-portable { margin-top: 16px; }
.download-portable .dl-note { margin: 0 auto 18px; max-width: 460px; }

/* ── Release Notes ── */
.releasenotes { max-width: 760px; margin: 30px auto 0; display: flex; flex-direction: column; gap: 14px; }
.rn-entry {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 20px;
}
/* Verlaufs-Balken nur links; folgt durch overflow:hidden + border-radius den
   runden oberen/unteren linken Ecken (krümmt mit, statt gerade abzuschneiden). */
.rn-entry::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand-pink), var(--accent), var(--brand-green));
  pointer-events: none;
}
.rn-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.rn-version { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.rn-latest {
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill);
  color: #fff; background: var(--brand-green);
}
.rn-date { margin-left: auto; color: var(--text-3); font-size: 14px; font-variant-numeric: tabular-nums; }
.rn-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.rn-list li { position: relative; padding-left: 26px; color: var(--text-2); font-size: 15px; }
.rn-list li::before {
  content: ""; position: absolute; left: 4px; top: 8px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.rn-empty { text-align: center; color: var(--text-3); margin-top: 24px; }

/* ── Footer ── */
.site-foot { text-align: center; color: var(--text-3); font-size: 14px; padding: 32px 18px; border-top: 1px solid var(--border); }
.foot-sep { margin: 0 8px; opacity: .5; }

/* ── Doku (mobil: einspaltig, TOC ausgeblendet) ── */
.docs { max-width: var(--maxw); margin: 0 auto; padding: 8px 18px 56px; }
.docs-toc { display: none; }
.docs-body { min-width: 0; }
.doc-sec { scroll-margin-top: 76px; margin-bottom: 36px; }
.doc-sec:last-child { margin-bottom: 0; }
.doc-h2 { font-size: clamp(22px, 4.5vw, 28px); font-weight: 700; margin-bottom: 14px; }
.doc-h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.doc-p { color: var(--text-2); margin-bottom: 12px; max-width: 70ch; }
.doc-p strong { color: var(--text); font-weight: 700; }
.doc-lead { font-size: 17px; }
.doc-modules { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.doc-module {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px; scroll-margin-top: 80px;
}
.doc-module .feat-ic-wrap { margin-bottom: 0; flex: none; }
.doc-module-body { min-width: 0; }
.doc-module-body p { color: var(--text-2); font-size: 15px; max-width: 66ch; }

/* ════════════════════════════════════════════════════════════════════
   TABLET  (ab 640px)
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  /* Navigation horizontal, Hamburger weg, Menü inline */
  .nav { padding: 14px 24px; gap: 16px; }
  .nav-logo { height: 44px; }
  .nav-toggle { display: none; }
  .nav-links {
    position: static; display: flex; flex-direction: row; align-items: center; gap: 8px;
    padding: 0; background: none; border: none; box-shadow: none;
  }
  .nav-links a { font-size: 15px; padding: 8px 14px; border-radius: var(--radius-pill); }
  .nav-links a:hover { background: transparent; }

  /* Sprach-Umschalter zurück zum schwebenden Dropdown (mobile Abtrennung zurücksetzen) */
  .nav-links .lang-switch { margin-top: 0; padding-top: 0; border-top: none; }
  .lang-switch { margin-left: 4px; }
  .lang-switch > summary { padding: 8px 12px; border-radius: var(--radius-pill); font-size: 13px; }
  .lang-menu {
    position: absolute; right: 0; top: calc(100% + 8px); z-index: 60;
    min-width: 184px; max-height: 320px; overflow-y: auto; border-radius: 14px;
    box-shadow: var(--shadow-lg); animation: lang-pop var(--dur-fast) var(--ease-out);
  }

  /* Hero/Buttons */
  .soon-logo { height: 66px; }
  .hero { padding: 18px 24px 52px; gap: 18px; }
  .hero-tagline { font-size: 14px; margin-top: -8px; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; width: auto; max-width: none; }
  .hero-actions .btn { width: auto; }
  .hero-shot img { border-radius: 14px; }

  /* Sektionen + Raster */
  .section { padding: 56px 24px; scroll-margin-top: 84px; }
  .section-sub { font-size: 17px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }
  .card { padding: 22px 22px 24px; }

  .cta-band { padding: 44px 28px; border-radius: var(--radius-xl); }
  .cta-band .btn { margin-top: 22px; }
  .page-head { padding: 64px 24px 8px; }
  .page-head .hero-sub { margin-top: 14px; }
  .section-tight { padding-top: 28px; padding-bottom: 28px; }
  .download-card { padding: 40px 28px; border-radius: var(--radius-xl); }
  .releasenotes { margin-top: 36px; gap: 16px; }
  .rn-entry { padding: 22px 24px; }
  .site-foot { padding: 40px 24px; }
  .docs { padding: 16px 24px 64px; }
  .doc-module { padding: 20px 22px; }
}

/* ════════════════════════════════════════════════════════════════════
   DESKTOP  (ab 1024px)
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero { padding: 18px 24px 56px; }
  .section { padding: 64px 24px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Doku: zweispaltig mit sticky Inhaltsverzeichnis */
  .docs { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; padding-top: 12px; }
  .docs-toc { display: block; position: sticky; top: 92px; }
  .docs-toc-title { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin: 0 0 10px; }
  .docs-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
  .docs-toc a { display: block; padding: 7px 12px; border-left: 2px solid var(--border); color: var(--text-2); text-decoration: none; font-size: 14px; transition: color var(--dur), border-color var(--dur), background var(--dur); }
  .docs-toc a:hover { color: var(--text); border-color: var(--accent); background: var(--surface); }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lang-menu { animation: none; }
}
@keyframes lang-pop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
