/* ════════════════════════════════════════════════════════════════
   PUNKTY — Ethereal Noir SPA
   style.css  |  Modulares Design-System
   ════════════════════════════════════════════════════════════════

   INDEX
   ├── 01. Design Tokens (Custom Properties)
   ├── 02. Reset & Base
   ├── 03. Utility Classes
   ├── 04. Canvas Hintergrund
   ├── 05. Navigation
   ├── 06. Page-System (SPA)
   ├── 07. Page Transition Overlay
   ├── 08. HOME – Hero
   ├── 09. HOME – Stats
   ├── 10. ABOUT – Layout
   ├── 11. ABOUT – Silhouette
   ├── 12. ABOUT – Content & Roadmap
   ├── 13. Globale Komponenten (Buttons, Glass, Scroll-Indicator)
   └── 14. Scroll Reveal Animationen
   ════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────
   01. DESIGN TOKENS
────────────────────────────────────────────────────────────── */
:root {
  /* Farben */
  --c-black:        #000000;
  --c-void:         #080808;
  --c-surface:      #0d0d0d;
  --c-glass:        rgba(255, 255, 255, 0.04);
  --c-glass-border: rgba(255, 255, 255, 0.09);
  --c-glass-hover:  rgba(255, 255, 255, 0.08);
  --c-white:        #ffffff;
  --c-white-dim:    rgba(255, 255, 255, 0.7);
  --c-white-muted:  rgba(255, 255, 255, 0.35);
  --c-white-ghost:  rgba(255, 255, 255, 0.12);

  /* Glow-Effekte */
  --glow-sm:  0 0 8px  rgba(255, 255, 255, 0.25);
  --glow-md:  0 0 20px rgba(255, 255, 255, 0.35),
              0 0 60px rgba(255, 255, 255, 0.08);
  --glow-lg:  0 0 40px rgba(255, 255, 255, 0.5),
              0 0 100px rgba(255, 255, 255, 0.12),
              0 0 200px rgba(255, 255, 255, 0.04);
  --glow-text: 0 0 12px rgba(255,255,255,0.9),
               0 0 40px rgba(255,255,255,0.4),
               0 0 80px rgba(255,255,255,0.15);

  /* Typografie */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  /* Schriftgrößen (fluid, clamp) */
  --fs-hero:    clamp(2rem,  10vw, 14rem);
  --fs-h1:      clamp(2rem, 6vw, 6rem);
  --fs-h2:      clamp(1.5rem, 4vw, 3.5rem);
  --fs-xl:      clamp(1.2rem, 2.5vw, 1.8rem);
  --fs-lg:      clamp(1rem,   1.8vw, 1.2rem);
  --fs-base:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.75rem;

  /* Abstände */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   2rem;
  --space-xl:   4rem;
  --space-2xl:  8rem;

  /* Animationen */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.85, 0, 0.15, 1);
  --dur-fast:   180ms;
  --dur-mid:    380ms;
  --dur-slow:   700ms;
  --dur-xslow:  1200ms;

  /* Layout */
  --nav-h:      64px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-full: 9999px;
}


/* ──────────────────────────────────────────────────────────────
   02. RESET & BASE
────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
}

img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }


/* ──────────────────────────────────────────────────────────────
   03. UTILITY CLASSES
────────────────────────────────────────────────────────────── */
.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;
}

/* Glassmorphism-Karte */
.glass {
  background:    var(--c-glass);
  border:        1px solid var(--c-glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: background var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}

.glass:hover {
  background:   var(--c-glass-hover);
  border-color: rgba(255,255,255,0.18);
  box-shadow:   var(--glow-sm);
}


/* ──────────────────────────────────────────────────────────────
   04. CANVAS HINTERGRUND
────────────────────────────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}


/* ──────────────────────────────────────────────────────────────
   05. NAVIGATION
────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-glass-border);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  transition: text-shadow var(--dur-mid) var(--ease-out);
}
.nav__logo:hover {
  text-shadow: var(--glow-md);
}

.nav__links {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.nav__link {
  padding: 0.4em 1.1em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-white-muted);
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              text-shadow var(--dur-fast) var(--ease-out);
}

.nav__link:hover {
  color: var(--c-white);
  border-color: var(--c-glass-border);
  background: var(--c-glass);
}

.nav__link--active {
  color: var(--c-white);
  border-color: var(--c-glass-border);
  background: var(--c-glass);
  text-shadow: var(--glow-sm);
}


/* ──────────────────────────────────────────────────────────────
   06. PAGE-SYSTEM (SPA)
────────────────────────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
}

.page {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

.page--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page[hidden] {
  display: none;
}


/* ──────────────────────────────────────────────────────────────
   07. PAGE TRANSITION OVERLAY
────────────────────────────────────────────────────────────── */
.transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--dur-slow) var(--ease-inout);
}

.transition-overlay--enter {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

.transition-overlay--exit {
  clip-path: inset(100% 0 0% 0);
}

.transition-overlay__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 10vw, 9rem);
  letter-spacing: 0.25em;
  color: var(--c-white);
  text-shadow: var(--glow-lg);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--dur-mid) var(--ease-out) 150ms,
              transform var(--dur-mid) var(--ease-out) 150ms;
}

.transition-overlay--enter .transition-overlay__text {
  opacity: 1;
  transform: scale(1);
}


/* ──────────────────────────────────────────────────────────────
   08. HOME – HERO
────────────────────────────────────────────────────────────── */
.page--home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left:  clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  gap: var(--space-xl);
  text-align: center;
}

.home__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 900px;
}

/* Eyebrow Tag */
.home__tagline {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--c-white-muted);
  text-transform: uppercase;
  border: 1px solid var(--c-glass-border);
  padding: 0.4em 1.2em;
  border-radius: var(--radius-full);
  background: var(--c-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeInDown var(--dur-slow) var(--ease-out) 200ms both;
}

/* Hero Titel – Letter animiert */
.home__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-hero);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-shadow: var(--glow-lg);
  display: flex;
  gap: 0.04em;
  user-select: none;
}

.home__title-letter {
  display: inline-block;
  animation: letterReveal var(--dur-slow) var(--ease-out) both;
  transition: text-shadow var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.home__title-letter:hover {
  text-shadow: var(--glow-lg);
  transform: translateY(-6px) scale(1.05);
}

/* Animationsverzögerung per Index */
.home__title-letter:nth-child(1) { animation-delay: 0.3s; }
.home__title-letter:nth-child(2) { animation-delay: 0.4s; }
.home__title-letter:nth-child(3) { animation-delay: 0.5s; }
.home__title-letter:nth-child(4) { animation-delay: 0.6s; }
.home__title-letter:nth-child(5) { animation-delay: 0.7s; }
.home__title-letter:nth-child(6) { animation-delay: 0.8s; }

.home__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--c-white-dim);
  line-height: 1.5;
  animation: fadeInUp var(--dur-slow) var(--ease-out) 0.9s both;
}
.home__subtitle em {
  font-style: normal;
  color: var(--c-white);
  font-weight: 500;
}

/* CTA Gruppe */
.home__cta-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp var(--dur-slow) var(--ease-out) 1.1s both;
}


/* ──────────────────────────────────────────────────────────────
   09. HOME – STATS
────────────────────────────────────────────────────────────── */
.home__stats {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp var(--dur-slow) var(--ease-out) 1.3s both;
}

.stat-card {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 120px;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-white);
  text-shadow: var(--glow-md);
  line-height: 1;
  margin-bottom: 0.4em;
}

.stat-card__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white-muted);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp var(--dur-slow) var(--ease-out) 1.5s both;
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--c-white-muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}


/* ──────────────────────────────────────────────────────────────
   10. ABOUT – LAYOUT
────────────────────────────────────────────────────────────── */
.page--about,
.page--projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--space-xl)) clamp(1.5rem, 5vw, 4rem) var(--space-2xl);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 900px) {
  .about__container {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .about__visual {
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
  }
}


/* ──────────────────────────────────────────────────────────────
   11. ABOUT – SILHOUETTE
────────────────────────────────────────────────────────────── */
.about__visual {
  position: relative;
}

.about__silhouette-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about__silhouette-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.1);
  transition: filter var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.about__silhouette-frame:hover .about__silhouette-img {
  filter: grayscale(80%) contrast(1.2) brightness(1.05);
  transform: scale(1.02);
}

/* Fallback wenn kein Bild geladen */
.about__silhouette-frame--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.about__silhouette-frame--fallback::after {
  content: "[ Silhouette ]";
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--c-white-muted);
  letter-spacing: 0.2em;
}

/* Ethereal Glow unter dem Bild */
.about__silhouette-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(255,255,255,0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-out);
}

.about__silhouette-frame:hover .about__silhouette-glow {
  opacity: 1.5;
}

.about__silhouette-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  color: var(--c-white-muted);
  white-space: nowrap;
  padding: 0.3em 0.8em;
  background: rgba(0,0,0,0.5);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Dekorative Linien & Ecken */
.about__visual-decoration {
  position: absolute;
  inset: -12px;
  pointer-events: none;
}

.deco-line {
  position: absolute;
  background: linear-gradient(to right, transparent, var(--c-white-ghost), transparent);
}
.deco-line--h { top: 0; left: 12%; right: 12%; height: 1px; }
.deco-line--v {
  top: 12%; bottom: 12%; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-white-ghost), transparent);
}

.deco-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--c-white-muted);
  border-style: solid;
}
.deco-corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; border-radius: 2px 0 0 0; }
.deco-corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; border-radius: 0 0 2px 0; }


/* ──────────────────────────────────────────────────────────────
   12. ABOUT – CONTENT & ROADMAP
────────────────────────────────────────────────────────────── */
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-white-muted);
}

.about__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.0;
  color: var(--c-white);
  text-shadow: var(--glow-md);
}

.about__heading-accent {
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
  color: transparent;
  text-shadow: none;
}

.about__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--c-white-muted), transparent);
}

.about__text {
  font-size: var(--fs-lg);
  color: var(--c-white-dim);
  line-height: 1.8;
}
.about__text strong { color: var(--c-white); font-weight: 600; }
.about__text em     { font-style: normal; color: var(--c-white); font-weight: 500; }

/* Roadmap */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.roadmap__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
}

/* Klickbare Link-Variante */
.roadmap__item--link {
  transition: all var(--dur-mid) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--c-glass-border);
}

.roadmap__item--link:hover {
  background: var(--c-glass-hover);
  border-color: var(--c-white-muted);
  transform: translateX(4px);
  box-shadow: var(--glow-sm);
}

.roadmap__icon {
  font-size: 1.2rem;
  color: var(--c-white-muted);
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap__item--link:hover .roadmap__icon {
  color: var(--c-white);
  text-shadow: var(--glow-sm);
  transform: scale(1.1);
}

.roadmap__title {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--c-white);
}

.roadmap__desc {
  font-size: var(--fs-sm);
  color: var(--c-white-muted);
  margin-top: 0.2em;
}

/* Pfeil für Links */
.roadmap__arrow {
  margin-left: auto;
  color: var(--c-white-muted);
  opacity: 0.5;
  transition: all var(--dur-mid) var(--ease-out);
}

.roadmap__item--link:hover .roadmap__arrow {
  opacity: 1;
  color: var(--c-white);
  transform: translateX(4px);
}

.roadmap__status {
  margin-left: auto;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.7em;
  border-radius: var(--radius-full);
  border: 1px solid;
  white-space: nowrap;
}
.roadmap__status--active  { color: #a0f0a0; border-color: rgba(160,240,160,0.3); background: rgba(160,240,160,0.06); }
.roadmap__status--soon    { color: #f0e0a0; border-color: rgba(240,224,160,0.3); background: rgba(240,224,160,0.06); }
.roadmap__status--concept { color: var(--c-white-muted); border-color: var(--c-glass-border); }

/* Zitat */
.about__quote {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--c-white-muted) !important;
}
.about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--c-white-dim);
  line-height: 1.6;
  margin-bottom: 0.6em;
}
.about__quote cite {
  font-size: var(--fs-sm);
  color: var(--c-white-muted);
  letter-spacing: 0.1em;
}

/* Back to Top */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
  z-index: 50;
}
.back-top--visible {
  opacity: 1;
  transform: translateY(0);
}
.back-top:hover {
  box-shadow: var(--glow-md);
}


/* ──────────────────────────────────────────────────────────────
   13. GLOBALE KOMPONENTEN
────────────────────────────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.8em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--c-white);
  color: var(--c-black);
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.btn--primary:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  color: var(--c-white-muted);
  border: 1px solid var(--c-glass-border);
  background: var(--c-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  color: var(--c-white);
  border-color: var(--c-white-muted);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}


/* ──────────────────────────────────────────────────────────────
   14. SCROLL REVEAL ANIMATIONEN
────────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Globale Keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes letterReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.8); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}


/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — Mobilgerät
────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .home__cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .btn { justify-content: center; }
  .home__stats { gap: 0.5rem; }
  .stat-card { min-width: 90px; padding: 0.8rem 1rem; }
}
