/* ============================================================
   Waffenschrank — Marketing-Site
   Design „Steel & Brass" (dark only)
   Keine externen Fonts, keine CDNs, kein Tracking, kein JS-Zwang.
   ============================================================ */

/* Display-Schrift der App (Oswald 500/600), self-hosted — kein CDN-Request
   zur Laufzeit. Variable Font, latin-Subset, 21 KB. */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("fonts/oswald-latin-var.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;
}

/* Latin Extended-A für die polnische und tschechische Fassung: Der
   Subset oben kennt ě, ř, ą, ł & Co. nicht — die Überschriften fielen
   dort mitten im Wort auf die Systemschrift zurück. Diese beiden
   Schnitte (je ~5 KB) laden nur Browser, die solche Zeichen auch setzen
   müssen; die deutsche und die englische Fassung holen sie nie.

   Bewusst als EIGENE Familie hinter "Oswald" im Stack: Legt man sie als
   weitere Schnitte derselben Familie an, ignoriert Chrome sie — bei
   abweichendem font-weight-Bereich greift die unicode-range-Aufteilung
   innerhalb einer Familie nicht. Über die Familien-Fallback-Kette
   funktioniert es, und 500/600 bleiben getrennt.
   Die Display-Schrift wird ausschließlich in 500 und 600 gesetzt. */
@font-face {
  font-family: "Oswald Ext";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/oswald-latext-500.woff2") format("woff2");
  unicode-range: U+0100-017F;
}

@font-face {
  font-family: "Oswald Ext";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/oswald-latext-600.woff2") format("woff2");
  unicode-range: U+0100-017F;
}

:root {
  /* ---- Stahl ---- */
  --steel-950: #060806;
  --steel-900: #080B08;
  --steel-850: #0A0D0A;
  --steel-800: #0C100C;
  --steel-700: #131812;
  --steel-600: #171D16;
  --steel-500: #20261E;
  --steel-line: #2C3329;
  --steel-line-soft: rgba(44, 51, 41, 0.62);

  /* ---- Messing ---- */
  --brass: #C9A959;
  --brass-bright: #E4C97F;
  --brass-pale: #F4E7C2;
  --brass-deep: #8A6D2F;
  --brass-ink: #1C1405;
  --brass-glow: rgba(201, 169, 89, 0.14);
  --brass-hair: rgba(201, 169, 89, 0.55);

  /* ---- Text ---- */
  --ink: #EDEDE4;
  --ink-soft: #C3C6B8;
  --ink-mute: #8D9184;

  /* ---- 8er-Raster ---- */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-half: 4px;

  /* ---- Maße ---- */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shell: 1160px;
  --gutter: clamp(20px, 5vw, 40px);
  --bar-h: 64px;

  /* ---- Kurven ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);

  /* ---- Typo: kondensierter System-Stack, KEIN Webfont-Download ---- */
  --font-display: "Oswald", "Oswald Ext", "Roboto Condensed", "Archivo Narrow",
    "Helvetica Neue Condensed", "HelveticaNeue-CondensedBold",
    "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  color-scheme: dark;
  accent-color: var(--brass);
}

* { box-sizing: border-box; min-width: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + 24px);
  -webkit-text-size-adjust: 100%;
  scrollbar-color: #3A4235 var(--steel-900);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--steel-800);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Stahl-Verlauf + Messingschimmer + Jagdgrün (secondaryContainer der App:
   #274E32 / #0E2F17) — das Grün trägt den Hintergrund, Messing bleibt Akzent. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 640px at 50% -12%, rgba(201, 169, 89, 0.12), transparent 62%),
    radial-gradient(1000px 680px at 110% 12%, rgba(39, 78, 50, 0.30), transparent 64%),
    radial-gradient(1100px 760px at -12% 68%, rgba(21, 56, 33, 0.34), transparent 66%),
    radial-gradient(820px 560px at 55% 112%, rgba(39, 78, 50, 0.20), transparent 62%),
    radial-gradient(760px 520px at 96% 90%, rgba(201, 169, 89, 0.05), transparent 60%),
    linear-gradient(180deg, #0F150E 0%, #0C120B 34%, #08100A 100%);
}

/* Feine Rausch-Textur */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--brass); color: var(--brass-ink); }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--steel-900); }
::-webkit-scrollbar-thumb {
  background: #333B2F;
  border: 3px solid var(--steel-900);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brass-deep); }

/* ---------- Layout ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 980px; }

section { padding-block: clamp(80px, 10vw, 144px); position: relative; }

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--steel-line) 16%, rgba(201, 169, 89, 0.28) 50%, var(--steel-line) 84%, transparent);
}

/* ---------- Typografie ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word; /* Sicherheitsnetz gegen lange Komposita */
}

h1 { font-size: clamp(2.4rem, 7.6vw, 4.6rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.05rem); line-height: 1.02; }
h3 { font-size: 1.1rem; letter-spacing: 0.085em; line-height: 1.2; }

p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--brass-bright);
  text-decoration-color: rgba(201, 169, 89, 0.4);
  text-underline-offset: 3px;
  transition: color 0.18s var(--ease);
}
a:hover { color: var(--brass); }

b, strong { font-weight: 600; color: var(--ink); }
.hero__sub strong, .trust li strong { color: var(--brass, #C9A959); font-weight: 650; }

.eyebrow {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* Brand-Zeilen-Muster des App-Dashboards: Mini-Icon in Messing vor den
   gesperrten Versalien (Original-MDI-Pfade, z.B. safe-square-outline). */
.eyebrow__icon {
  width: 15px;
  height: 15px;
  flex: none;
  margin-right: calc(var(--sp-2) * -1 + 9px);
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 89, 0.5), transparent);
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }
.eyebrow--center::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 89, 0.6));
}
.eyebrow--center::after {
  display: block;
  flex: none;
  width: 44px;
  background: linear-gradient(90deg, rgba(201, 169, 89, 0.6), transparent);
}

.lede {
  font-size: clamp(1.05rem, 2.1vw, 1.26rem);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
}

.section-head { max-width: 66ch; margin-bottom: clamp(var(--sp-5), 5vw, var(--sp-8)); }
.section-head h2 { margin-bottom: var(--sp-2); }

/* Hairline-Karte mit Verlaufsrand (border-box-Trick, kein backdrop-filter nötig) */
.hairline {
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background-image:
    linear-gradient(168deg, rgba(24, 30, 22, 0.94), rgba(11, 15, 11, 0.94)),
    linear-gradient(152deg, rgba(201, 169, 89, 0.42), rgba(201, 169, 89, 0.05) 44%, rgba(44, 51, 41, 0.95));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -30px 60px -40px rgba(0, 0, 0, 0.9),
    0 24px 48px -34px rgba(0, 0, 0, 0.95);
}

/* ---------- Kopfzeile ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 12, 9, 0.78);
  backdrop-filter: saturate(170%) blur(20px);
  -webkit-backdrop-filter: saturate(170%) blur(20px);
}

/* Unterkante in der Hairline-Sprache von .rule/.footer — Kopf und Fuß der
   Seite tragen dieselbe Linie. */
.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-line) 16%, rgba(201, 169, 89, 0.28) 50%, var(--steel-line) 84%, transparent);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  min-height: var(--bar-h);
}

/* Lesefortschritt — reine CSS-Scroll-Timeline mit stillem Fallback */
.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass), var(--brass-pale));
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .progress {
      animation: progress-grow linear both;
      animation-timeline: scroll(root block);
    }
  }
}

@keyframes progress-grow { to { transform: scaleX(1); } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}

.brand__glyph {
  width: 34px;
  height: 34px;
  display: block;
  flex: none;
  color: var(--brass);
  transition: transform 0.5s var(--ease-out), filter 0.3s var(--ease);
}

.brand:hover .brand__glyph {
  transform: rotate(72deg);
  filter: drop-shadow(0 0 12px rgba(201, 169, 89, 0.45));
}

.brand__word {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 1.12rem;
  white-space: nowrap;
}

/* Domain als Marke: „.APP" läuft in denselben Versalien mit, nur in Messing
   abgesetzt. */
.brand__tld {
  color: var(--brass);
  transition: color 0.18s var(--ease);
}

.brand:hover .brand__tld { color: var(--brass-bright); }

.topnav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 28px); }

.topnav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 500;
  padding-block: 6px;
  transition: color 0.18s var(--ease);
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.28s var(--ease-out);
}

.topnav a:hover { color: var(--brass); }
.topnav a:hover::after { transform: scaleX(0.6); }
.topnav a[aria-current="true"] { color: var(--brass); }
.topnav a[aria-current="true"]::after { transform: scaleX(1); }

.topbar__cta {
  display: none;
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--brass);
  border: 1px solid rgba(201, 169, 89, 0.42);
  border-radius: 999px;
  padding: 7px 15px;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.topbar__cta:hover { background: rgba(201, 169, 89, 0.14); color: var(--brass-bright); }

/* Mobiles Menü: normaler <button> + kleines Script (unten im Body) statt
   <details>/<summary> — dessen native Dreieck-Anzeige liess sich in keiner
   Engine zuverlässig unterdrücken (appearance/list-style/::marker griffen
   nicht überall). display:contents lässt Button + nav wie direkte
   Flex-Kinder von .topbar__inner layouten, damit sich am Desktop-Markup
   nichts ändert. */
.mobile-nav { display: contents; }

.menu-toggle {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--steel-line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.menu-toggle__icon { width: 20px; height: 20px; flex: none; }
.menu-toggle__icon--close { display: none; }
.mobile-nav.is-open .menu-toggle__icon--open { display: none; }
.mobile-nav.is-open .menu-toggle__icon--close { display: block; }

@media (max-width: 760px) {
  .topbar__inner { position: relative; }
  .menu-toggle { display: inline-flex; }
  .topbar__cta { display: none; }

  .topnav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 11, 8, 0.98);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border-bottom: 1px solid var(--steel-line);
    padding: var(--sp-1) var(--gutter) var(--sp-3);
  }

  .mobile-nav.is-open .topnav { display: flex; }

  .topnav a:not(.topbar__cta) {
    padding: 13px 0;
    border-bottom: 1px solid var(--steel-line-soft);
    font-size: 0.95rem;
  }

  .topnav a:not(.topbar__cta):last-of-type { border-bottom: none; }

  /* Seiten mit eigenem CTA (Impressum/Datenschutz: "Zur Startseite") zeigen
     ihn als Pill am Ende des aufgeklappten Menüs statt versteckt. */
  .topnav .topbar__cta {
    display: inline-block;
    margin-top: var(--sp-2);
    text-align: center;
  }

  /* Mit „.APP" wird die Wortmarke lang — auf schmalen Screens mitschrumpfen,
     damit sie neben dem Menü-Button nie anstößt. */
  .brand__word { font-size: clamp(0.82rem, 4vw, 1.05rem); letter-spacing: 0.13em; }
  .brand__glyph { width: 30px; height: 30px; }
  .brand { gap: 9px; }
}

/* ---------- Hero ---------- */

.hero {
  /* Knapper Abstand zum Header — auf 13"/14"-Notebooks sollen die
     Trust-Chips ohne Scrollen sichtbar bleiben. */
  padding-block: clamp(24px, 4vw, 56px) clamp(var(--sp-6), 8vw, var(--sp-10));
  text-align: center;
}

/* Exakt wie auf tapandtype.io (.app-icon-large): Kachel + Hairline stecken
   im Asset selbst, hier nur die iOS-Rundung (22/88 = 25%) und derselbe
   leichte Schatten — kein zusätzlicher Blur/Glow, der auf dem Jagdgrün
   eine dunkle Korona um die Kachel bildet. */
.hero__icon {
  display: block;
  width: clamp(88px, 14vw, 128px);
  height: clamp(88px, 14vw, 128px);
  margin: 0 auto var(--sp-2);
  border-radius: 25%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__word {
  /* Obergrenze so gewählt, dass „Waffenschrank" auch im breitesten
     Fallback-Font (nicht kondensiert) nie über die Shell hinausläuft. */
  font-size: clamp(2.1rem, 9.5vw, 7.4rem);
  letter-spacing: 0.008em;
  line-height: 0.94;
  margin-bottom: var(--sp-2);
  /* Gedämpfter als vorher: kein fast-weißer Scheitel (--brass-pale) mehr,
     der bei dieser Schriftgröße blendete — Verlauf bleibt im Messing-Ton
     der App (vgl. darkColors.primary #D6B25E in theme.ts). */
  background: linear-gradient(180deg, var(--brass-bright) 0%, var(--brass) 48%, var(--brass-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(201, 169, 89, 0.1));
}

.hero__claim {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.86rem, 2.5vw, 1.3rem);
  color: var(--ink);
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}

.hero__claim span { color: var(--brass); }

.hero__sub {
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 auto var(--sp-3);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.hero__note {
  margin-top: var(--sp-3);
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ---------- Buttons / Store-Badges ---------- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 24px 13px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid;
  min-width: 236px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}

.store svg { width: 26px; height: 26px; flex: none; }

.store__text { display: flex; flex-direction: column; line-height: 1.16; text-align: left; }

.store__small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  opacity: 0.82;
}

.store__big {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.store--primary {
  background: linear-gradient(180deg, var(--brass-bright), var(--brass) 54%, #AE8E48);
  border-color: #E8D49B;
  color: var(--brass-ink);
  box-shadow: 0 14px 36px -16px rgba(201, 169, 89, 0.8);
}

/* Messing-Schliff, der beim Hover durchläuft */
.store--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.5) 50%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}

.store--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px -16px rgba(201, 169, 89, 0.95);
  color: var(--brass-ink);
}

.store--ghost {
  background: linear-gradient(170deg, rgba(32, 38, 30, 0.62), rgba(12, 16, 12, 0.62));
  border-color: var(--steel-line);
  color: var(--ink-soft);
}

.store--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 89, 0.5);
  color: var(--ink);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9);
}

/* Vertrauens-Leiste */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1) 12px;
  margin: var(--sp-3) 0 0;
  padding: 0;
}

.trust li {
  list-style: none;
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  color: var(--ink-soft);
  border: 1px solid var(--steel-line);
  background: rgba(19, 24, 18, 0.7);
  border-radius: 999px;
  padding: 7px 15px;
}

/* ---------- Feature-Grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(268px, 100%), 1fr));
  gap: var(--sp-2);
}

.card {
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background-image:
    linear-gradient(168deg, rgba(24, 30, 22, 0.94), rgba(11, 15, 11, 0.94)),
    linear-gradient(152deg, rgba(201, 169, 89, 0.3), rgba(201, 169, 89, 0.03) 42%, rgba(44, 51, 41, 0.95));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 40px -34px rgba(0, 0, 0, 0.95);
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 89, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 169, 89, 0.14), transparent 66%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 30px 56px -34px rgba(0, 0, 0, 1),
    0 0 44px -22px rgba(201, 169, 89, 0.4);
}

.card:hover::before, .card:hover::after { opacity: 1; }

/* Icon im Messing-Chip — dieselbe Fassung wie der iconChip der App
   (ProFeatureList): 44px-Kachel, getönter Grund, Hairline. Das Padding
   verkleinert die Strichgrafik auf ~22px, ganz ohne Wrapper-Element. */
.card__icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  box-sizing: border-box;
  color: var(--brass);
  background: rgba(201, 169, 89, 0.09);
  border: 1px solid rgba(201, 169, 89, 0.22);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2);
  display: block;
  position: relative;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease);
}

.card:hover .card__icon {
  background: rgba(201, 169, 89, 0.16);
  border-color: rgba(201, 169, 89, 0.4);
}

.card h3 { margin-bottom: var(--sp-1); color: var(--ink); position: relative; }

.card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.58; margin: 0; position: relative; }

.card__tag {
  display: inline-block;
  margin-top: var(--sp-2);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
  border: 1px solid rgba(201, 169, 89, 0.3);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 500;
  position: relative;
}

/* ---------- Datenschutz ---------- */

.privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(820px 400px at 20% 44%, var(--brass-glow), transparent 68%);
  pointer-events: none;
}

.privacy__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(var(--sp-4), 6vw, var(--sp-10));
  align-items: center;
}

@media (max-width: 880px) {
  .privacy__inner { grid-template-columns: 1fr; }
}

.privacy h2 { margin-bottom: var(--sp-2); }

.pledge { list-style: none; padding: 0; margin: var(--sp-4) 0 0; display: grid; }

.pledge li {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding: var(--sp-2) 2px;
  border-top: 1px solid var(--steel-line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.pledge li:last-child { border-bottom: 1px solid var(--steel-line); }

.pledge b {
  color: var(--ink);
  font-family: var(--font-display);
  font-stretch: 87.5%;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Gleiche Chip-Fassung wie die Feature-Icons, eine Nummer kleiner. */
.pledge svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  box-sizing: border-box;
  color: var(--brass);
  background: rgba(201, 169, 89, 0.09);
  border: 1px solid rgba(201, 169, 89, 0.22);
  border-radius: var(--radius-xs);
  flex: none;
  margin-top: 2px;
}

.vault {
  width: min(100%, 340px);
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  /* Squircle statt Kreis — sonst wirkt es wie ein zweites, rundes App-Icon
     neben der eckigen Kachel im Hero/Header. */
  border-radius: 25%;
  border: 1px solid var(--steel-line);
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 169, 89, 0.13), transparent 62%),
    linear-gradient(160deg, rgba(23, 29, 22, 0.85), rgba(9, 12, 9, 0.85));
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.7), 0 0 80px -40px rgba(201, 169, 89, 0.5);
  position: relative;
}

.vault::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22%;
  border: 1px dashed rgba(201, 169, 89, 0.18);
}

.vault svg { width: 56%; height: 56%; opacity: 0.94; color: var(--brass); position: relative; }

/* ---------- Preise ---------- */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--sp-2);
  align-items: stretch;
  margin-top: var(--sp-1);
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(168deg, rgba(22, 28, 21, 0.94), rgba(10, 14, 10, 0.95)),
    linear-gradient(152deg, rgba(201, 169, 89, 0.24), rgba(201, 169, 89, 0.03) 44%, rgba(44, 51, 41, 0.95));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 48px -36px rgba(0, 0, 0, 0.95);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease);
}

.plan:hover { transform: translateY(-4px); }

.plan--featured {
  background-image:
    linear-gradient(168deg, rgba(38, 33, 20, 0.95), rgba(12, 15, 11, 0.96)),
    linear-gradient(152deg, rgba(201, 169, 89, 0.85), rgba(201, 169, 89, 0.18) 48%, rgba(201, 169, 89, 0.55));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 60px -36px rgba(0, 0, 0, 1),
    0 0 70px -34px rgba(201, 169, 89, 0.6);
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: var(--sp-3);
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass-ink);
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  border-radius: 999px;
  padding: 4px 13px;
  box-shadow: 0 8px 20px -10px rgba(201, 169, 89, 0.9);
}

.plan__name {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--brass);
  font-size: 0.78rem;
  margin: 0 0 var(--sp-2);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 var(--sp-half);
}

.plan__amount {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.plan--featured .plan__amount {
  background: linear-gradient(180deg, var(--brass-pale), var(--brass) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan__per {
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-display);
  font-stretch: 87.5%;
}

.plan__hint { font-size: 0.82rem; color: var(--ink-mute); margin: 0 0 var(--sp-2); }

.plan__list { list-style: none; padding: 0; margin: 0 0 var(--sp-3); display: grid; gap: 7px; }

.plan__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.plan__list li::before {
  content: "";
  width: 14px;
  height: 8px;
  margin-top: 6px;
  flex: none;
  border-left: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.plan__foot {
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--steel-line-soft);
  font-size: 0.76rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.pricing__note {
  margin-top: var(--sp-3);
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-align: center;
  max-width: 68ch;
  margin-inline: auto;
}

/* Free vs. Pro */
/* Sichtbar nur für Screenreader (Tabellen-Caption). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Echte Zeile-für-Zeile-Gegenüberstellung statt Fließtext-Blurbs — jede
   Zeile spiegelt eine Sperre aus PRO_FEATURE_KEYS (src/features/pro/
   ProFeatureList.tsx), damit Marketing und App-Gating nie auseinanderlaufen. */
.compare {
  padding: 0;
  overflow: hidden;
}

/* Überleitung von der Free/Pro-Tabelle zu den Zahlungs-Rhythmen: erst der
   Beweis („das ist gratis"), dann die Plan-Wahl. */
.pricing__lead {
  margin: clamp(var(--sp-5), 6vw, var(--sp-8)) 0 var(--sp-3);
  color: var(--ink);
}

.compare__scroll { overflow-x: auto; }

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare__table th,
.compare__table td {
  padding: 13px var(--sp-2);
  text-align: center;
  border-bottom: 1px solid var(--steel-line-soft);
  white-space: nowrap;
}

.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }

.compare__feature { text-align: left; }

.compare__table thead th {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink-soft);
  border-bottom-color: var(--steel-line);
}

.compare__table tbody th {
  text-align: left;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: normal;
}

.compare__table tbody th span { display: block; color: var(--ink-mute); font-size: 0.8rem; }

/* Pro-Spalte trägt einen Messing-Schimmer, damit der Blick geführt wird —
   ohne komplett bunt zu werden. */
.compare__pro-col {
  background: linear-gradient(180deg, rgba(201, 169, 89, 0.1), rgba(201, 169, 89, 0.04));
  color: var(--brass-bright);
  font-weight: 600;
}

.compare__table thead .compare__pro-col { color: var(--brass); }

.compare__icon { width: 19px; height: 19px; color: var(--brass-bright); }
.compare__icon--off { width: 14px; height: 14px; color: var(--ink-mute); opacity: 0.6; }

/* Auf schmalen Screens kompakter, damit die Tabelle ohne Seitwärts-Scrollen
   passt — sie ist jetzt das Kernelement der Sektion, nicht mehr der Anhang. */
@media (max-width: 560px) {
  .compare__table th,
  .compare__table td { padding: 12px 7px; }
  .compare__table thead th { font-size: 0.62rem; letter-spacing: 0.05em; }
  .compare__table tbody th { font-size: 0.85rem; }
  .compare__table tbody th span { font-size: 0.73rem; }
  .compare__table tbody td { font-size: 0.82rem; }
}

/* ---------- FAQ ---------- */

.faq { display: grid; max-width: 880px; }

details { border-top: 1px solid var(--steel-line); padding: 2px 0; }
details:last-of-type { border-bottom: 1px solid var(--steel-line); }

summary {
  cursor: pointer;
  list-style: none;
  padding: var(--sp-3) 44px var(--sp-3) 0;
  position: relative;
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color 0.18s var(--ease);
}

summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--brass); }
/* Offene Frage bleibt markiert — nicht nur beim Hover. */
details[open] summary { color: var(--brass); }

summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease-out), margin-top 0.28s var(--ease-out);
}

details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }

details > p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  padding: 0 6% var(--sp-3) 0;
  margin: 0;
  max-width: 74ch;
}

/* ---------- Schluss-CTA ---------- */

.closing { text-align: center; }
.closing .lede { margin-inline: auto; margin-bottom: var(--sp-4); }
.closing h2 { margin-bottom: var(--sp-2); }

/* ---------- Footer ---------- */

/* Footer = Abspann der Marke: Spalten mit Eyebrow-Köpfen (wie die Sektionen),
   Hairline-Verlauf statt flacher Kante, und als Klammer zum Hero ein großer,
   sehr leiser Wortmarken-Schriftzug als Textur am unteren Rand. */
.footer {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-8) var(--sp-6);
  background:
    radial-gradient(640px 220px at 50% 0%, rgba(201, 169, 89, 0.055), transparent 70%),
    rgba(6, 9, 6, 0.62);
}

/* Obere Kante in der Hairline-Sprache der Seite (vgl. .rule). */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-line) 16%, rgba(201, 169, 89, 0.28) 50%, var(--steel-line) 84%, transparent);
}

.footer__shell { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  /* Vier Spalten neben der Marke: Entdecken, App, Rechtliches, Sprache. */
  grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(112px, 1fr));
  gap: var(--sp-5) var(--sp-4);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
}

.footer__tag { color: var(--ink-mute); font-size: 0.88rem; max-width: 34ch; margin: 0; }

/* tap&type-Credit — Blitz-Logo wie auf kontoo.app */
.tt-credit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.88rem;
}

.tt-credit a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.tt-credit a svg { flex: none; }
.tt-credit a:hover { color: var(--ink); }

.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }

.footer__head {
  font-family: var(--font-display);
  font-stretch: 87.5%;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 3px;
}

.footer__col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.18s var(--ease);
}

.footer__col a:hover { color: var(--brass); }

/* „App Store — demnächst": ehrlich stillgelegt, wird zum Release ein Link. */
.footer__soon { color: var(--ink-mute); font-size: 0.92rem; }

.footer__soon em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--steel-line);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 7px;
  vertical-align: 2px;
}

.footer__legal {
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--steel-line-soft);
  font-size: 0.79rem;
  color: var(--ink-mute);
  /* Drei Spalten: Credit links, Copyright exakt mittig, Claim rechts. Grid
     statt flex, weil space-between die Mitte nur bei gleich breiten Aussen-
     spalten trifft — und die sind hier verschieden lang. */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-1) var(--sp-3);
}

.footer__legal > :first-child { justify-self: start; }
.footer__legal > :nth-child(2) { justify-self: center; text-align: center; }
.footer__legal > :last-child { justify-self: end; text-align: right; }

/* Schmale Schirme: untereinander und linksbündig — nebeneinander wäre es
   Kleinkram-Gedränge. */
@media (max-width: 720px) {
  .footer__legal { grid-template-columns: 1fr; }
  .footer__legal > * { justify-self: start !important; text-align: left !important; }
}

/* Großer Abspann-Schriftzug: reine Textur (≤8 % Messing), unten angeschnitten —
   das Gegenstück zum Hero, nicht anklickbar, nicht selektierbar. */

@media (max-width: 1040px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sprachwahl im Fuß ---------- */

/* Die Sprachnamen stehen als Endonym da (Deutsch, English, Polski,
   Čeština) — so findet jeder seine Sprache, ohne die aktuelle lesen
   zu können. */
.footer__lang a[aria-current="true"] {
  color: var(--brass);
  font-weight: 600;
  cursor: default;
}

/* „(German)" hinter Impressum/Datenschutz in den fremdsprachigen
   Fassungen: Die Rechtstexte bleiben deutsch, das soll man vor dem
   Klick wissen. */
.footer__note {
  color: var(--ink-mute);
  font-size: 0.76rem;
  margin-left: 4px;
  white-space: nowrap;
}

/* ---------- Sprach-Hinweis (kein Redirect) ---------- */

/* Dezenter Vorschlag, wenn der Browser eine andere Fassung bevorzugt.
   position:fixed und eingeblendet erst per JS — kein Layout-Shift,
   kein Eingriff in den Seitenfluss. Siehe site/lang.js. */
.langnote {
  position: fixed;
  left: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 45;
  max-width: min(430px, calc(100vw - 110px));
  border: 1px solid var(--steel-line);
  border-radius: var(--radius-md);
  background: rgba(10, 13, 10, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

@supports (backdrop-filter: blur(8px)) {
  /* Nur leicht durchscheinend: Der Kasten liegt über Inhalt und muss
     auf Anhieb lesbar sein. */
  .langnote { background: rgba(10, 13, 10, 0.93); backdrop-filter: blur(10px); }
}

.langnote[hidden] { display: none; }
.langnote.is-on { opacity: 1; transform: none; }

.langnote__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px 11px 14px;
}

.langnote__icon { flex: none; width: 20px; height: 20px; color: var(--brass); }

.langnote__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.langnote__cta {
  flex: none;
  color: var(--brass);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--brass-hair);
  transition: color 0.18s var(--ease);
}

.langnote__cta:hover { color: var(--brass-bright); }

.langnote__close {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 999px;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}

.langnote__close svg { width: 15px; height: 15px; }
.langnote__close:hover { color: var(--ink); background: var(--steel-600); }

/* Schmale Schirme: neben dem Zurück-nach-oben-Knopf bleibt Platz,
   Text und Knopf brechen um. */
@media (max-width: 560px) {
  .langnote { left: 12px; right: 74px; max-width: none; }
  .langnote__inner { flex-wrap: wrap; }
  .langnote__text { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .langnote { transition: none; transform: none; }
}

/* ---------- Zurück nach oben ---------- */

.totop {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brass);
  text-decoration: none;
  border: 1px solid rgba(201, 169, 89, 0.32);
  background: rgba(10, 14, 10, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 1);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-out), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.totop svg { width: 18px; height: 18px; }
.totop:hover { border-color: var(--brass); background: rgba(201, 169, 89, 0.14); transform: translateY(-2px); }

.js .totop { opacity: 0; transform: translateY(10px); pointer-events: none; }
.js .totop.is-on { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Rechtsseiten ---------- */

.legal-page { padding-block: clamp(var(--sp-6), 8vw, var(--sp-10)) clamp(var(--sp-8), 9vw, 104px); }

.legal-page h1 {
  font-size: clamp(1.75rem, 6vw, 3.3rem);
  margin-bottom: var(--sp-1);
  hyphens: auto;
}

.legal-meta {
  color: var(--ink-mute);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.legal-body { max-width: 72ch; }

.legal-body h2 {
  font-size: 1.05rem;
  letter-spacing: 0.13em;
  color: var(--brass);
  margin: var(--sp-5) 0 var(--sp-2);
}

.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--ink-soft); font-size: 1rem; }
.legal-body address { font-style: normal; color: var(--ink-soft); }

.legal-note {
  margin-top: var(--sp-6);
  padding: var(--sp-3);
  border-left: 2px solid rgba(201, 169, 89, 0.55);
  background: rgba(19, 24, 18, 0.6);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-mute);
  font-size: 0.9rem;
}

.backlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: var(--sp-4);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-family: var(--font-display);
  font-stretch: 87.5%;
  font-weight: 500;
  border: 1px solid var(--steel-line);
  border-radius: 999px;
  padding: 8px 16px 8px 13px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease-out);
}

.backlink:hover { border-color: rgba(201, 169, 89, 0.5); color: var(--brass); transform: translateX(-2px); }
.backlink svg { width: 14px; height: 14px; }

/* ---------- Motion (Progressive Enhancement) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.8s var(--ease-out),
      transform 0.8s var(--ease-out);
  }

  .js .reveal.is-visible { opacity: 1; transform: none; }

  .js .reveal[data-delay="1"] { transition-delay: 60ms; }
  .js .reveal[data-delay="2"] { transition-delay: 120ms; }
  .js .reveal[data-delay="3"] { transition-delay: 180ms; }
  .js .reveal[data-delay="4"] { transition-delay: 240ms; }
  .js .reveal[data-delay="5"] { transition-delay: 300ms; }
  .js .reveal[data-delay="6"] { transition-delay: 360ms; }
  .js .reveal[data-delay="7"] { transition-delay: 420ms; }
  .js .reveal[data-delay="8"] { transition-delay: 480ms; }

  /* Sanftes Aufsetzen der Icon-Kachel (das alte Einroll-Rad steckt jetzt im Bild). */
  .hero__icon {
    animation: icon-in 1s var(--ease-out) both;
  }

  .store--primary:hover::after { animation: sheen 0.9s var(--ease) forwards; }

}

@keyframes icon-in {
  from { transform: translateY(8px) scale(0.94); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes sheen {
  to { transform: translateX(120%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 169, 89, 0.8); }
  50% { box-shadow: 0 0 3px rgba(201, 169, 89, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Fokus & Skip-Link ---------- */

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--brass-ink);
  padding: 10px 18px;
  z-index: 100;
  border-radius: 0 0 var(--radius-xs) 0;
  font-weight: 600;
}

.skip-link:focus { left: 0; }

/* ---- Support-Seite: Marketing-Optik statt Rechtsseiten-Layout ---- */

.support-page { padding-block: clamp(var(--sp-6), 8vw, var(--sp-10)) clamp(var(--sp-8), 9vw, 104px); }

/* Seiten-Titel im Format der Abschnitts-Überschriften — die Hero-Größe von h1
   ist der Startseite vorbehalten. */
.support-page h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.05rem);
  line-height: 1.02;
  margin-bottom: var(--sp-2);
}

.section-sub { color: var(--ink-soft); max-width: 58ch; }

/* Karte als Link (Kontakt): Karten-Look behalten, Link-Deko weg. */
.card--link { display: block; text-decoration: none; color: inherit; }
.card--link:hover h3 { color: var(--brass); }

.support-contact { margin-bottom: clamp(var(--sp-6), 7vw, var(--sp-10)); }
.support-faq-head { margin-bottom: var(--sp-3); }

@media print {
  body::before, body::after, .topbar, .totop, .cta-row { display: none; }
  body { background: #fff; color: #000; }
}

/* Deutschland-Flagge im Entwickler-Credit — als Emoji (Nutzer-Entscheid).
   Windows-Chromium zeigt mangels Flaggen in Segoe UI Emoji „DE" als
   Buchstaben-Fallback; auf Apple/Android/Firefox die echte Flagge. */
.tt-credit__flag { font-size: 1em; line-height: 1; flex: none; }
