/* ═══════════════════════════════════════════════════════════════
   SICHERHEITS-ASSISTENT — ANTIGRAVITY LANDING PAGE
   Design: Glassmorphism · Spatial Depth · Weightless Motion
   Gato Dynamics · 2026
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Core Palette */
  --bg-deep: #06080d;
  --bg-surface: #0c1018;
  --bg-card: #111825;

  /* Accent Colors */
  --cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  --cyan-soft: rgba(0, 229, 255, 0.08);
  --blue: #1a73e8;
  --blue-glow: rgba(26, 115, 232, 0.3);

  /* Threat Level Colors */
  --color-gefahr: #ff1744;
  --color-verdaechtig: #ffc107;
  --color-sicher: #00c853;
  --color-kein-scam: #90a4ae;

  /* Glass System */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(0, 229, 255, 0.25);
  --glass-blur: 16px;
  --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --glass-shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--cyan-glow);

  /* Typography */
  --font: 'Outfit', sans-serif;
  --text-primary: #f0f4f8;
  --text-secondary: #8899aa;
  --text-muted: #5a6a7a;

  /* Spacing */
  --section-gap: 120px;
  --card-radius: 20px;
  --content-max: 1200px;

  /* Animation Defaults */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-default: 0.35s var(--ease-smooth);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition-default);
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── HELPER CLASSES ─── */
.text-center {
  text-align: center;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.icon-gefahr { color: var(--color-gefahr); }
.icon-verdaechtig { color: var(--color-verdaechtig); }
.icon-sicher { color: var(--color-sicher); }
.icon-kein-scam { color: var(--color-kein-scam); }
.icon-cyan { color: var(--cyan); }

/* ─── SUBTLE AMBIENT BACKGROUND ─── */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
}

.ambient-glow--top {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05), transparent 70%);
  top: -100px;
  right: 5%;
}

.ambient-glow--bottom {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.04), transparent 70%);
  bottom: 10%;
  left: 5%;
}

/* ─── LAYOUT CONTAINER ─── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: var(--section-gap) 0;
  position: relative;
}

/* ─── GLASSMORPHISM CARD SYSTEM ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  transition:
    background var(--transition-default),
    border-color var(--transition-default),
    box-shadow var(--transition-default),
    transform var(--transition-default);
  will-change: transform;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-6px);
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION & GATO LOGO EYE GLOW
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition-default), -webkit-backdrop-filter var(--transition-default), backdrop-filter var(--transition-default);
}

.nav.scrolled {
  background: rgba(6, 8, 13, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

/* GATO DYNAMICS VECTOR LOGO */
.gato-logo-svg {
  width: 36px;
  height: 36px;
  color: var(--cyan);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.nav-logo:hover .gato-logo-svg {
  transform: scale(1.10);
  color: var(--cyan);
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.95));
}

.gato-logo-svg-footer {
  width: 32px;
  height: 32px;
  color: var(--cyan);
  flex-shrink: 0;
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.footer-brand {
  cursor: pointer;
}

.footer-brand:hover .gato-logo-svg-footer {
  transform: scale(1.10);
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.9));
}

/* GATO INLINE ICON ON BUTTONS */
.gato-inline-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  flex-shrink: 0;
  color: currentColor;
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-default);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition-default);
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav-download {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-info-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 8px;
}

.text-green {
  color: #10b981 !important;
}

.icon-red {
  color: #e11d48 !important;
  border-color: rgba(225, 29, 72, 0.25) !important;
  background: rgba(225, 29, 72, 0.08) !important;
}

.nav-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 4px;
}

/* ─── EINHEITLICHES NAV-BUTTON SYSTEM ─── */
.btn-nav {
  width: 132px;
  height: 36px;
  padding: 0 8px;
  font-size: 0.81rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform var(--transition-default), box-shadow var(--transition-default), background var(--transition-default), border-color var(--transition-default);
  will-change: transform;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
}

.btn-nav i,
.btn-nav svg,
.btn-nav .gato-inline-icon {
  font-size: 15px;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 1. Web-App Button (Gato Blau) */
.btn-nav-blue {
  background: linear-gradient(135deg, #0099ff 0%, #0066ee 100%);
  color: #ffffff;
  border: 1px solid rgba(0, 153, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 153, 255, 0.35);
}

.btn-nav-blue:hover {
  background: linear-gradient(135deg, #1aa3ff 0%, #0077ff 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(0, 153, 255, 0.6);
  border-color: rgba(0, 229, 255, 0.8);
}

/* 2. Chrome Extension Button (Violett) */
.btn-nav-purple {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: #ffffff;
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
}

.btn-nav-purple:hover {
  background: linear-gradient(135deg, #b76eff 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.6);
  border-color: rgba(192, 132, 252, 0.8);
}

/* 3. Startseite Button (Grün) */
.btn-nav-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.btn-nav-green:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6);
  border-color: rgba(52, 211, 153, 0.8);
}

/* 4. Dezent / Ghost Link Button */
.btn-nav-ghost {
  width: auto;
  height: 38px;
  padding: 0 12px;
  font-size: 0.83rem;
  font-weight: 500;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-nav-ghost:hover {
  border-color: var(--cyan);
  background: var(--glass-bg-hover);
  color: var(--cyan);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }
  .nav-logo .gato-logo-svg {
    width: 30px;
    height: 30px;
  }
  .brand-title {
    font-size: 13.5px;
  }
  .nav-subtext {
    font-size: 10px;
  }
  .nav-actions-group {
    gap: 8px;
  }
  .btn-nav {
    width: auto;
    min-width: 0;
    padding: 0 10px;
    height: 36px;
    font-size: 0.8rem;
    gap: 6px;
  }
  .btn-nav-ghost {
    height: 36px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
  .btn-lg {
    width: 100% !important;
    max-width: 320px !important;
    height: 50px !important;
    font-size: 0.90rem !important;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 10px;
  }
  .nav-logo {
    gap: 8px;
  }
  .brand-title {
    font-size: 12px;
  }
  .nav-subtext {
    font-size: 9px;
  }
  .nav-actions-group {
    gap: 5px;
  }
  .btn-nav {
    padding: 0 8px;
    height: 33px;
    font-size: 0.72rem;
    gap: 4px;
    border-radius: 8px;
  }
  .btn-nav i,
  .btn-nav svg,
  .btn-nav .gato-inline-icon {
    width: 15px !important;
    height: 15px !important;
    font-size: 14px;
  }
  .btn-nav-ghost {
    display: none;
  }
  .btn-lg {
    width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    font-size: 0.86rem !important;
  }
}

.btn-nav-cta,
.btn-purple-cta {
  height: 36px;
  width: 132px;
  padding: 0 8px;
  font-size: 0.81rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-sizing: border-box;
}

.btn-lg {
  height: 40px;
  min-width: 0;
  padding: 0 16px;
  font-size: 0.90rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  gap: 7px;
  white-space: nowrap;
}

.btn-lg i,
.btn-lg svg,
.btn-lg .gato-inline-icon {
  font-size: 17px;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  height: 44px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  white-space: nowrap;
  transition:
    transform var(--transition-default),
    box-shadow var(--transition-default),
    background var(--transition-default),
    border-color var(--transition-default);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0099ff 0%, #0066ee 100%);
  color: #ffffff !important;
  border: 1px solid rgba(0, 153, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 153, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1aa3ff 0%, #0077ff 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 26px rgba(0, 153, 255, 0.6);
  border-color: rgba(0, 229, 255, 0.8);
}

.btn-purple-primary {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: #ffffff !important;
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

.btn-purple-primary:hover {
  background: linear-gradient(135deg, #b76eff 0%, #8b5cf6 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 26px rgba(168, 85, 247, 0.6);
  border-color: rgba(192, 132, 252, 0.8);
}

.btn-purple-cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(124, 58, 237, 0.35) 100%);
  border: 1px solid rgba(168, 85, 247, 0.6);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.25);
}

.btn-purple-cta:hover {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: #ffffff !important;
  border-color: #c084fc;
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

.btn-nav-sub {
  padding: 0 12px;
  height: 34px;
  font-size: 0.80rem;
  border-radius: 8px;
}

.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #ffffff !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  background: var(--glass-bg-hover);
  color: var(--cyan) !important;
}

.btn-cta-launch {
  font-size: 0.95rem;
  padding: 0 28px;
  height: 48px;
}

.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.highlight-purple {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-purple {
  color: #c084fc !important;
}

.pricing-pill-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pill-tag {
  background: #a855f7;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.pill-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.pill-price span {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

.pill-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.pricing-container-centered {
  max-width: 580px;
  margin: 0 auto;
}

.pricing-card-pro {
  background: #090d16;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(168, 85, 247, 0.2);
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-header-pro {
  border-bottom: 1px solid #1e293b;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.pricing-badge-pro {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #10b981;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.price-period {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 600;
}

.price-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.4;
}

.pricing-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-perk-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.perk-main-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.35;
}

.perk-main-row i {
  font-size: 1rem;
  flex-shrink: 0;
}

.perk-sub-row {
  padding-left: 28px;
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.35;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ─── HERO REALISTIC UI MOCKUP ─── */
/* ═══════════════════════════════════════════════════════════════
   AUTHENTIC APP UI MOCKUP (KOTLIN / ANDROID THEME)
   ═══════════════════════════════════════════════════════════════ */
.hero-preview-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 490px;
}

/* External Top Scroll Cue Pill (Above Mockup) with Gato Logo */
.mockup-external-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 16, 32, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.45);
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(0, 229, 255, 0.22);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mockup-external-cue:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 25px var(--cyan-glow);
  color: #fff;
}

.mockup-external-cue .gato-inline-icon {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.cue-arrow-bounce {
  color: var(--cyan);
  font-size: 0.85rem;
  animation: cue-bounce 1.5s infinite ease-in-out;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.app-mockup-frame {
  width: 100%;
  max-width: 490px;
  background: #070b13;
  border: 1px solid rgba(0, 119, 255, 0.35);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 119, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #0a0f1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-mockup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-mockup-brand .gato-inline-icon {
  width: 24px;
  height: 24px;
  margin-right: 2px;
  color: var(--cyan);
}

.app-mockup-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.app-mockup-menu-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.app-mockup-body {
  padding: 16px;
  max-height: 540px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.35) rgba(10, 15, 29, 0.5);
}

.app-mockup-body > * {
  flex-shrink: 0;
}

.app-mockup-body::-webkit-scrollbar {
  width: 6px;
}

.app-mockup-body::-webkit-scrollbar-track {
  background: rgba(10, 15, 29, 0.5);
}

.app-mockup-body::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.35);
  border-radius: 10px;
}

/* Info Banner */
.app-info-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 119, 255, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.45;
  font-weight: 500;
}

/* Input Card */
.app-input-card {
  background: #0d1629;
  border: 1px solid #1a73e8;
  border-radius: 12px;
  overflow: hidden;
}

.app-input-header {
  background: #1a73e8;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-input-box {
  background: #ffffff;
  color: #0f172a;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  font-family: inherit;
}

/* Divider */
.app-divider-text {
  text-align: center;
  position: relative;
  margin: 2px 0;
}

.app-divider-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.app-divider-text span {
  position: relative;
  z-index: 1;
  background: #070b13;
  padding: 0 12px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
}

/* Spracheingabe Button */
.app-btn-speech {
  background: rgba(225, 29, 72, 0.04);
  border: 1.5px solid #e11d48;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Medien Card */
.app-media-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 119, 255, 0.35);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-btn-media-item {
  background: rgba(0, 119, 255, 0.06);
  border: 1px solid rgba(0, 119, 255, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Grüner Haupt-Button mit Gato Logo */
.app-btn-submit-green {
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.app-btn-submit-green:hover {
  background: #059669;
  transform: translateY(-1px);
}

.app-btn-submit-green .gato-inline-icon {
  width: 22px;
  height: 22px;
  margin-right: 2px;
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* Analysis Result */
.app-analysis-result {
  background: #0a1020;
  border: 1px solid rgba(0, 119, 255, 0.35);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-result-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.app-result-section-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-result-section-label.margin-t-16 {
  margin-top: 6px;
}

.app-badge-verdaechtig {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid #f59e0b;
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Explanation Card */
.app-explanation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}

.app-explanation-card p {
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin: 0;
}

.app-report-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.app-btn-report {
  font-size: 0.7rem;
  font-weight: 600;
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Gefahrensignale */
.app-signals-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-signal-item {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.app-signal-icon {
  color: #ef4444;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.app-signal-text {
  font-size: 0.78rem;
  color: #f1f5f9;
  line-height: 1.4;
}

/* Handlungsempfehlungen */
.app-actions-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-action-item {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.app-action-num {
  background: #10b981;
  color: #06080d;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.app-action-text {
  font-size: 0.78rem;
  color: #f1f5f9;
  line-height: 1.4;
}

.app-action-text strong {
  color: #34d399;
}

/* Disclaimer Box */
.app-disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  color: #92400e;
  margin-top: 4px;
}

.app-disclaimer-icon {
  font-size: 1.1rem;
  color: #d97706;
  flex-shrink: 0;
}

.app-disclaimer-text {
  font-size: 0.74rem;
  line-height: 1.35;
}

.app-disclaimer-text strong {
  color: #78350f;
}

/* Result Actions */
.app-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.app-btn-share {
  background: #059669;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  cursor: default;
}

.app-btn-pdf {
  background: #1e1528;
  color: #f43f5e;
  border: 1px solid #e11d48;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════════════
   UNIFIED MULTIMODAL HUB & DOCKING SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.multimodal-unified-hub {
  margin-top: 50px;
  background: rgba(6, 11, 24, 0.7);
  border: 1px solid rgba(0, 119, 255, 0.35);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 119, 255, 0.15);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .features-grid-3,
  .features-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Feature Card (Docked State: Open Bottom, Electric Blue Top Neon Line) */
.feature-card {
  padding: 24px 20px 22px 20px;
  text-align: left;
  background: rgba(10, 17, 34, 0.75);
  border-top: 2.5px solid #0077ff;
  border-left: 1px solid rgba(0, 119, 255, 0.25);
  border-right: 1px solid rgba(0, 119, 255, 0.25);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: inset 0 3px 12px rgba(0, 119, 255, 0.15);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.38s ease,
              border-color 0.38s ease,
              border-radius 0.3s ease,
              background 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Floating Pop-Out State (Herausgleitend mit geschlossenem Cyan-Rahmen) */
.feature-card:hover,
.feature-card.active {
  transform: translateY(-10px) scale(1.02);
  background: rgba(12, 22, 45, 0.96);
  border: 1px solid var(--cyan);
  border-top: 2.5px solid var(--cyan);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px var(--cyan-glow);
  z-index: 10;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  background: var(--cyan-soft);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.15);
  transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.feature-card:hover .feature-icon,
.feature-card.active .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.feature-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex-grow: 1;
}

/* Gato-Einsatz-Tipp Bubble in Feature Card */
.feature-tip-bubble {
  margin-top: 14px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tip-header .gato-inline-icon {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  filter: drop-shadow(0 0 4px var(--cyan));
}

.tip-content {
  font-size: 0.81rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* Combo Banner (Dock-Sockel: Offen nach oben, verbunden) */
.combo-banner {
  margin-top: 0;
  padding: 22px 26px;
  background: rgba(0, 119, 255, 0.04);
  border-top: none;
  border-left: 1px solid rgba(0, 119, 255, 0.25);
  border-right: 1px solid rgba(0, 119, 255, 0.25);
  border-bottom: 1px solid rgba(0, 119, 255, 0.35);
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 1;
}

.combo-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.combo-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.combo-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.combo-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}



/* ═══════════════════════════════════════════════════════════════
   THREAT LEVELS
   ═══════════════════════════════════════════════════════════════ */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.threat-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.threat-card--gefahr::before { background: var(--color-gefahr); box-shadow: 0 0 20px rgba(255, 23, 68, 0.5); }
.threat-card--verdaechtig::before { background: var(--color-verdaechtig); box-shadow: 0 0 20px rgba(255, 193, 7, 0.5); }
.threat-card--sicher::before { background: var(--color-sicher); box-shadow: 0 0 20px rgba(0, 200, 83, 0.5); }
.threat-card--kein-scam::before { background: var(--color-kein-scam); box-shadow: 0 0 20px rgba(144, 164, 174, 0.3); }

.threat-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.threat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.threat-card--gefahr h3 { color: var(--color-gefahr); }
.threat-card--verdaechtig h3 { color: var(--color-verdaechtig); }
.threat-card--sicher h3 { color: var(--color-sicher); }
.threat-card--kein-scam h3 { color: var(--color-kein-scam); }

.threat-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST SECTION
   ═══════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.trust-item {
  text-align: center;
  padding: 36px 20px;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
}

.cta-card {
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.15);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(26, 115, 232, 0.04));
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--card-radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), transparent 50%, var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.cta-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
}

.cta-action-box {
  margin: 24px 0 16px;
}

.pwa-tip-box {
  margin-top: 36px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.pwa-tip-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pwa-tip-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pwa-tip-text strong {
  color: var(--cyan);
}

.pwa-tip-text em {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 640px) {
  .pwa-tip-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.footer-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 32px;
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   GSAP ANIMATION STATES (GSAP handles opacity dynamically)
   ═══════════════════════════════════════════════════════════════ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  /* Default to visible so page is immediately readable if JS/GSAP is delayed */
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-info-badges {
    justify-content: center;
  }

  .hero-preview-wrapper {
    margin-top: 30px;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .threat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-gap: 60px;
  }

  .nav-inner {
    padding: 0 12px;
  }

  .nav-logo {
    gap: 8px;
  }

  .gato-logo-svg {
    width: 28px;
    height: 28px;
  }

  .brand-title {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .nav-subtext {
    display: block;
    font-size: 0.64rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.1px;
    margin-left: 0;
  }

  .nav-actions-group {
    gap: 6px;
  }

  .btn-nav-cta,
  .btn-purple-cta {
    height: 34px !important;
    min-width: 86px !important;
    padding: 0 10px !important;
    font-size: 0.76rem !important;
    border-radius: 8px !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto;
    margin-right: auto;
    gap: 12px !important;
  }

  .hero-cta-group .btn-lg {
    width: 100% !important;
    min-width: 100% !important;
    height: 52px !important;
    font-size: 0.92rem !important;
    justify-content: center !important;
  }

  .hero {
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .ui-mockup-card {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-info-badges {
    justify-content: center;
  }

  .features-grid,
  .steps-grid,
  .threat-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .combo-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid::before {
    display: none;
  }

  .cta-card {
    padding: 50px 20px;
  }

  .cta-card h2 {
    font-size: 1.6rem;
  }

  .notify-form {
    flex-direction: column;
    width: 100%;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ─── REDUCED MOTION PREFERENCE ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-shield-ring,
  .gato-logo-img,
  .hero-gato-center {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INFO & LEGAL MODAL SYSTEM (1:1 KOTLIN DESIGN — ABLENKUNGSFREI)
   ═══════════════════════════════════════════════════════════════ */
.landing-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 8, 13, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-sizing: border-box;
}

.landing-modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-modal-card {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  height: 90vh;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  border: 1.5px solid #0F2C59;
  animation: modalPopIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
  from {
    transform: scale(0.95) translateY(16px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Schlanke, elegante dunkelblaue Akzentleiste (1:1 wie Kotlin Surface 10.dp) */
.landing-modal-top-bar {
  background: #0F2C59;
  height: 10px;
  width: 100%;
  flex-shrink: 0;
}

.landing-modal-body {
  flex: 1 1 0%;
  min-height: 0;
  padding: 20px 24px 10px 24px;
  overflow-y: auto;
  color: #0F172A;
  font-size: 15px;
  line-height: 1.68;
  background: #FFFFFF;
  -webkit-overflow-scrolling: touch;
}

.landing-modal-body p {
  margin: 0 0 12px 0;
  color: #0F172A;
}

.landing-modal-body h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F2C59;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.3;
}

.landing-modal-body h2 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F2C59;
  margin-top: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 4px;
}

.landing-modal-body h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: #0F2C59;
  margin-top: 14px;
  margin-bottom: 6px;
}

.landing-modal-body strong {
  color: #000000;
  font-weight: 700;
}

.landing-modal-body ul,
.landing-modal-body ol {
  padding-left: 22px;
  margin-bottom: 14px;
  color: #0F172A;
}

.landing-modal-body li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.landing-modal-body a {
  color: #0284C7;
  text-decoration: underline;
  font-weight: 600;
}

.landing-modal-body a:hover {
  color: #0369A1;
}

.landing-modal-body hr {
  border: none;
  border-top: 1px solid #CBD5E1;
  margin: 16px 0;
}

.landing-modal-body blockquote {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-left: 4px solid #EF4444;
  border-radius: 6px;
  padding: 10px 14px;
  margin: 12px 0;
  color: #991B1B;
  font-size: 13.5px;
  line-height: 1.55;
}

.landing-modal-body blockquote strong {
  color: #7F1D1D;
}

.landing-modal-footer {
  padding: 12px 20px 16px 20px;
  border-top: 1px solid #E2E8F0;
  background: #FFFFFF;
  flex-shrink: 0;
}

.landing-modal-footer .btn-primary {
  width: 100%;
  background: #0F2C59;
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 44, 89, 0.3);
}

.landing-modal-footer .btn-primary:hover {
  background: #1E3A8A;
}

@media (max-width: 640px) {
  .landing-modal-overlay {
    padding: 0 !important;
  }

  .landing-modal-card {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
  }

  .landing-modal-body {
    padding: 12px 14px 6px 14px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   CHROME EXTENSION SHOWCASE SECTION
   ═══════════════════════════════════════════════════════ */
.extension-section {
  padding: 60px 0;
  position: relative;
}

.extension-card {
  padding: 40px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.1);
}

.extension-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.extension-text-col h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0 16px;
  color: #FFFFFF;
}

.extension-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.ext-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.ext-feat-item i {
  font-size: 1.1rem;
  margin-top: 3px;
}

.ext-feat-item strong {
  color: #FFFFFF;
  display: block;
}

.extension-pricing-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.badge-free-label {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-pro-label {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   HIGH-DPI NATIVE SIDEPANEL SHOWCASE (GESTOCHEN SCHARF)
   ═══════════════════════════════════════════════════════ */
.extension-sidepanel-showcase {
  background: #090d16;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 18px;
  padding: 14px;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(56, 189, 248, 0.18);
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extension-sidepanel-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(56, 189, 248, 0.28);
  border-color: rgba(56, 189, 248, 0.5);
}

/* Header */
.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e293b;
}

.showcase-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gato-showcase-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.showcase-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.showcase-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.showcase-header-right {
  display: flex;
  gap: 5px;
}

.showcase-icon-box {
  width: 24px;
  height: 24px;
  background: #0d131f;
  border: 1px solid #1e293b;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  color: #64748b;
}

/* Wächter Bar */
.showcase-watcher {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 7px;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9.5px;
}

.watcher-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.watcher-gato-svg {
  width: 13px;
  height: 13px;
}

.watcher-text {
  color: #94a3b8;
  font-weight: 600;
}

.watcher-domain {
  color: #38bdf8;
  font-family: monospace;
  font-weight: 600;
}

/* Input Card */
.showcase-input-card {
  background: #0d131f;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 10px;
}

.showcase-label {
  font-size: 9.5px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 5px;
}

.showcase-textarea {
  background: #070a12;
  border: 1px solid #1e293b;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 10.5px;
  color: #f1f5f9;
  min-height: 40px;
  margin-bottom: 7px;
}

.showcase-buttons-row {
  display: flex;
  gap: 4px;
  margin-bottom: 7px;
}

.mini-cyber-btn {
  flex: 1;
  padding: 4px 2px;
  border-radius: 5px;
  font-size: 8.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.mini-cyber-btn.btn-cyan {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

.mini-cyber-btn.btn-emerald {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.mini-cyber-btn.btn-purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
}

.showcase-submit-btn {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #FFFFFF;
  padding: 6px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.4px;
}

.gato-btn-mini-svg {
  width: 14px;
  height: 14px;
}

/* Result Card */
.showcase-result-card {
  background: #0d131f;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.threat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.threat-pill--gefahr {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
}

.gato-pill-svg {
  width: 13px;
  height: 13px;
}

.showcase-time {
  font-size: 9.5px;
  color: #64748b;
}

.showcase-section-title {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.showcase-text {
  font-size: 9.5px;
  color: #cbd5e1;
  line-height: 1.4;
  margin: 0;
}

.showcase-list {
  margin: 0;
  padding-left: 14px;
  font-size: 9px;
  line-height: 1.35;
}

.showcase-list.list-red {
  color: #fca5a5;
}

.showcase-list.list-green {
  color: #86efac;
}

.showcase-list li {
  margin-bottom: 2px;
}

.showcase-footer {
  text-align: center;
  padding-top: 6px;
  border-top: 1px solid #1e293b;
  font-size: 8px;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-p-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #94a3b8;
}

.gato-f-svg {
  width: 10px;
  height: 10px;
}

/* ═══════════════════════════════════════════════════════
   EXTENSION HIGHLIGHT BANNER (AUFGERÄUMTES TEASER DESIGN)
   ═══════════════════════════════════════════════════════ */
.extension-combo-card {
  padding: 40px;
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(168, 85, 247, 0.18);
  position: relative;
  overflow: hidden;
}

.combo-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.extension-chip {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.pricing-mini-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
}

.extension-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.ext-banner-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ext-banner-teaser-visual {
  display: flex;
  justify-content: center;
}

.teaser-glass-box {
  background: rgba(9, 13, 22, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(168, 85, 247, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.teaser-icon-glow {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(56, 189, 248, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #c084fc;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
  margin-bottom: 6px;
}

.teaser-glass-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.teaser-glass-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .extension-banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ═══════════════════════════════════════════════════════
   DEDICATED EXTENSION LANDING PAGE & GIGANTISCHES IN KÜRZE BANNER
   ═══════════════════════════════════════════════════════ */
section.hero.ext-hero {
  min-height: unset !important;
  height: auto !important;
  display: block !important;
  padding-top: 85px !important;
  padding-bottom: 50px !important;
  position: relative !important;
  overflow: hidden !important;
}

.ext-hero-content {
  align-items: flex-start !important;
  position: relative;
  z-index: 2;
}

section#pricing {
  position: relative !important;
  overflow: hidden !important;
}

/* GIGANTISCHES DIAGONALES "IN KÜRZE" BANNER (QUER RÜBER ÜBER DEN PREISBEREICH) */
.giant-diagonal-ribbon {
  position: absolute;
  top: 56%;
  left: -25%;
  width: 150%;
  transform: translateY(-50%) rotate(-12deg);
  background: rgba(168, 85, 247, 0.08);
  border-top: 3px dashed rgba(168, 85, 247, 0.45);
  border-bottom: 3px dashed rgba(168, 85, 247, 0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 16px 0;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.16);
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.giant-diagonal-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  font-weight: 900;
  letter-spacing: 16px;
  color: rgba(233, 213, 255, 0.20);
  -webkit-text-stroke: 2.5px rgba(192, 132, 252, 0.65);
  text-shadow: 0 0 35px rgba(168, 85, 247, 0.45);
  text-transform: uppercase;
}

.giant-diagonal-track span {
  display: inline-block;
}

@media (max-width: 768px) {
  section.hero.ext-hero {
    padding-top: 75px !important;
  }
  .giant-diagonal-ribbon {
    top: 40%;
    transform: rotate(-12deg);
    padding: 10px 0;
  }
  .giant-diagonal-track {
    font-size: clamp(2.5rem, 10vw, 4rem);
    letter-spacing: 8px;
    gap: 20px;
  }
}

/* ═══════════════════════════════════════════════
   SYSTEMWEITER MODAL CLOSE X-BUTTON
   ═══════════════════════════════════════════════ */
.landing-modal-card {
  position: relative !important;
}

.modal-close-icon-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.modal-close-icon-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════
   UNIVERSAL MULTILINGUAL FULL-WIDTH HEADLINE SECTION
   ═══════════════════════════════════════════════ */
.multilingual-fullwidth-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 5;
  text-align: center;
}

.multilingual-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.multilingual-grand-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.45;
  color: #cbd5e1;
  max-width: 1040px;
  margin: 0 auto;
  letter-spacing: -0.3px;
}

.multilingual-grand-gradient {
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(1.55rem, 3.8vw, 2.65rem);
  font-weight: 900;
  line-height: 1.3;
  background: linear-gradient(90deg, #38bdf8 0%, #c084fc 45%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(168, 85, 247, 0.35));
}



