:root {
      /* Farbpalette ans Foto angepasst */
      --bg: #050806;             /* Fast schwarz, mit grünlichem Einschlag */
      --bg-soft: #0d1510;        /* Dunkles Waldgrün */
      --text: #f3f5f1;           /* Warmes Offwhite */
      --muted: #a6b0a3;

      --accent: #7f9b4e;         /* Moosgrün (angelehnt an Hoodie/Foliage) */
      --accent-light: #b6c97b;
      --accent-dark: #38442a;

      --border-inner: #dce5c2;
      --border-outer: #1d2617;

      --earth: #5a3b2b;          /* Waldboden */
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, #17221a 0, var(--bg-soft) 40%, var(--bg) 80%);
      color: var(--text);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.5rem 3.5rem;
    }

    .wrapper {
      max-width: 960px;
      width: 100%;
      text-align: center;
      animation: fadeUp 0.9s ease-out;
    }

    header {
      margin-bottom: 0.3rem;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0;
    }

    .brand-logo img,
    .brand-logo svg {
      /* verhindert Schrumpfen in Flex-Containern */
      flex: 0 0 auto;

      /* responsive Größe */
      height: clamp(180px, 20vw, 260px);
      width: auto;

      /* vermeidet Baseline-Lücke */
      display: block;

      /* verhindert Überlaufen */
      max-width: min(1040px, 90vw);
    }

    /* falls SVG als <img src="...svg"> eingebunden ist */
    .brand-logo img[src$=".svg"] {
      height: clamp(180px, 20vw, 260px);
      width: auto;
    }

    .brand-tagline {
      font-size: 0.82rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .title {
      font-size: clamp(2.1rem, 3.2vw, 2.8rem);
      letter-spacing: 0.06em;
      margin-top: 0.3rem;
      text-transform: uppercase;
    }

    .hero-claim {
      font-size: 0.95rem;
      margin-top: 0.7rem;
      color: var(--muted);
    }

    .hero-claim strong {
      color: var(--accent-light);
      font-weight: 600;
    }

    .subtitle {
      font-size: 0.95rem;
      opacity: 0.9;
      margin-top: 0.5rem;
      color: var(--muted);
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(182, 201, 123, 0.7);
      background: rgba(8, 13, 8, 0.9);
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #eaf5de;
    }

    .hero-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent-light);
      box-shadow: 0 0 12px rgba(182, 201, 123, 0.8);
    }

    /* Bildrahmen mit Wald-/Boden-Farben */
    .image-frame {
      position: relative;
      margin-inline: auto;
      margin-top: 2.1rem;
      max-width: 720px;
      border-radius: 24px;
      padding: 11px;
      background:
        linear-gradient(140deg,
          #060a07 0%,
          #1b261a 20%,
          #30422c 40%,
          #7f9b4e 60%,
          #b68b5f 80%,
          #0b0906 100%);
      box-shadow:
        0 0 0 2px var(--border-outer),
        0 20px 45px rgba(0, 0, 0, 0.75);
      overflow: hidden;
      isolation: isolate;
      animation: framePulse 5s ease-in-out infinite alternate;
    }

    /* “Laub“-Glow um den Rahmen herum */
    .image-frame::before {
      content: "";
      position: absolute;
      inset: -35%;
      background:
        radial-gradient(circle at 0% 0%, rgba(196, 221, 150, 0.2) 0, transparent 55%),
        radial-gradient(circle at 100% 10%, rgba(114, 142, 77, 0.6) 0, transparent 52%),
        radial-gradient(circle at 0% 100%, rgba(57, 83, 54, 0.85) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(15, 25, 16, 0.95) 0, transparent 60%);
      mix-blend-mode: soft-light;
      opacity: 0.9;
      pointer-events: none;
      z-index: -1;
    }

    .image-inner {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      background: radial-gradient(circle at top, #1c2b1a 0, #050807 65%);
      border: 2px solid rgba(229, 240, 210, 0.7);
    }

    .main-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 0.6s ease-out, filter 0.45s ease-out;
      filter:
        saturate(1.1)
        contrast(1.06)
        brightness(0.98);
    }

    .image-inner:hover .main-image {
      transform: scale(1.05);
      filter:
        saturate(1.2)
        contrast(1.12)
        brightness(1);
    }

    /* Logo-Overlay */
    .logo-badge {
      position: absolute;
      left: 1.4rem;
      top: 1.3rem;
      padding: 0.5rem 0.9rem;
      background: rgba(3, 5, 3, 0.85);
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      border: 1px solid rgba(182, 201, 123, 0.7);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
    }

    .logo-badge img,
    .logo-badge svg {
      flex: 0 0 auto;
      height: 28px;
      width: auto;
      display: block;
      max-width: 140px;
    }

    .logo-badge span {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #f7f9f3;
      white-space: nowrap;
    }

    /* Claim unten rechts */
    .tagline {
      position: absolute;
      right: 1.3rem;
      bottom: 1.3rem;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      background: rgba(8, 13, 8, 0.88);
      color: #eaf5de;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: 1px solid rgba(170, 201, 115, 0.8);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8);
    }

    .coming-soon {
      margin-top: 1.9rem;
      font-size: 0.9rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent-light);
    }

    /* Feature-Grid unter dem Hero */
    .feature-grid {
      margin-top: 1.8rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.3rem;
      font-size: 0.87rem;
    }

    .feature-card {
      background: linear-gradient(
        145deg,
        rgba(7, 12, 9, 0.95),
        rgba(9, 16, 11, 0.98)
      );
      border-radius: 16px;
      padding: 1rem 1rem 0.9rem;
      border: 1px solid rgba(154, 189, 117, 0.4);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.65);
      text-align: left;
    }

    .feature-title {
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.4rem;
      color: var(--accent-light);
    }

    .feature-body {
      color: #dfead3;
      line-height: 1.5;
      font-size: 0.84rem;
    }

    /* CTA-Bar */
    .cta-bar {
      margin-top: 2rem;
      padding: 1rem 1.1rem;
      border-radius: 18px;
      border: 1px solid rgba(154, 189, 117, 0.6);
      background: radial-gradient(circle at top left, #172216 0, #070b08 70%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta-text {
      font-size: 0.9rem;
      text-align: left;
      color: #e4efda;
    }

    .cta-text span {
      display: block;
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 0.15rem;
    }

    .cta-button {
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      border: 1px solid rgba(182, 201, 123, 0.9);
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #f7f9f3;
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      white-space: nowrap;
      transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
        background 0.2s ease-out;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.7);
    }

    .cta-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(0, 0, 0, 0.85);
      background: linear-gradient(135deg, var(--accent-light), var(--accent));
    }

    .cta-button:active {
      transform: translateY(0);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
    }

    .cta-button-arrow {
      font-size: 0.9rem;
      transform: translateY(1px);
    }

    footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.7rem 1.5rem 0.9rem;
      display: flex;
      justify-content: center;
      gap: 1.6rem;
      font-size: 0.8rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
      backdrop-filter: blur(8px);
    }

    footer a {
      color: rgba(222, 233, 216, 0.85);
      text-decoration: none;
      position: relative;
      cursor: pointer;
    }

    footer a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: rgba(191, 214, 153, 0.9);
      transition: width 0.25s ease;
    }

    footer a:hover::after {
      width: 100%;
    }

    /* Animationen */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes framePulse {
      0% {
        box-shadow:
          0 0 0 2px var(--border-outer),
          0 20px 45px rgba(0, 0, 0, 0.75);
      }
      100% {
        box-shadow:
          0 0 0 2px var(--border-outer),
          0 26px 60px rgba(0, 0, 0, 0.9);
      }
    }

    /* Responsiv */
    @media (max-width: 840px) {
      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-button {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-top: 1.6rem;
      }

      header {
        margin-bottom: 1.4rem;
      }

      .brand-logo img,
      .brand-logo svg {
        height: 156px;
        width: auto;
        max-width: 90vw;
      }

      .title {
        font-size: 1.7rem;
      }

      .subtitle {
        margin-top: 0.4rem;
      }

      .hero-pill {
        font-size: 0.72rem;
      }

      .image-frame {
        margin-top: 1.6rem;
        padding: 9px;
      }

      .logo-badge {
        left: 0.95rem;
        top: 0.9rem;
        padding: 0.45rem 0.8rem;
      }

      .logo-badge img,
      .logo-badge svg {
        height: 26px;
        width: auto;
        max-width: 120px;
      }

      .logo-badge span {
        display: none; /* auf Handy nur Logo anzeigen */
      }

      .tagline {
        right: 0.9rem;
        bottom: 0.9rem;
        font-size: 0.7rem;
        padding-inline: 0.85rem;
      }

      .coming-soon {
        margin-top: 1.4rem;
        font-size: 0.8rem;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      footer {
        font-size: 0.75rem;
        gap: 1rem;
      }
    }
	
	/* Legal-Seiten Layout */
.feature-grid.is-legal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Mobile Optimierung speziell für Legal-Seiten */
@media (max-width: 640px) {

  .feature-grid.is-legal {
    grid-template-columns: 1fr;
  }

  .feature-title {
    font-size: 0.82rem;
    letter-spacing: 0.10em;
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .feature-card {
    padding: 1.05rem 1.05rem 0.95rem;
  }

  .feature-body {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}