@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap");

:root {
  --bg-primary: #010514;
  --bg-secondary: rgba(15, 23, 42, 0.9);
  --card-border: rgba(148, 163, 184, 0.4);
  --text-muted: #94a3b8;
  --text-strong: #f1f5f9;
  --accent-blue: #3b82f6;
  --accent-magenta: #c026d3;
  --accent-orange: #f97316;
  --accent-pink: #ec4899;
  --glass-bg: rgba(15, 23, 42, 0.8);
  --glass-border: rgba(148, 163, 184, 0.2);
}

 *,
 *::before,
 *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #010514 0%, #020617 25%, #010a1a 50%, #020617 75%, #010514 100%);
  color: #f1f5f9;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 0, 102, 0.25), transparent 40%),
    radial-gradient(circle at 20% 30%, rgba(41, 98, 255, 0.35), transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(156, 39, 176, 0.2), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 107, 53, 0.15), transparent 35%);
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: pulse 15s ease-in-out infinite;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(41, 98, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.06) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  background-position: 0 0, 50px 50px, 25px 25px;
  opacity: 0.3;
  animation: particle-float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.55;
  }
}

/* Neue Animationen */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) translateX(-5px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-20px) translateX(-10px) scale(1.05);
    opacity: 0.7;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(41, 98, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(41, 98, 255, 0.6), 0 0 60px rgba(156, 39, 176, 0.4);
  }
}

@keyframes slide-in-up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

/* Anchor targets: avoid sticky header overlap */
section[id],
.anchor {
  scroll-margin-top: 110px;
}

.anchor {
  height: 0;
}

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

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 3rem;
}

main {
  /* minimaler Abstand, damit Hero nicht direkt an die Sticky-Nav "klebt" */
  padding-top: 0.75rem;
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(32px);
  background: rgba(1, 5, 20, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  /* verhindert "abgeschnitten"/andersfarbig durch Margin-Collapse vom ersten Kind */
  padding-top: max(0.75rem, env(safe-area-inset-top));
  padding-bottom: 0.75rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* mehr Luft oben/unten, damit die CTA-Buttons nicht "anliegen" */
  padding: 1.15rem 2rem;
  gap: 1rem;
  margin: 0;
}

/* Premium Text Logo */
.brand-text-logo {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  /* Fallback (Browser ohne background-clip:text): Logo muss sichtbar bleiben */
  color: #e5e7eb;
  line-height: 1.15;
  padding-right: 0.08em; /* verhindert "abgeschnittenes o" in einigen Clients */
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  animation: logo-shimmer 4s ease-in-out infinite;
  text-decoration: none;
  position: relative;
}

/* Gradient-Text nur aktivieren, wenn unterstützt */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand-text-logo {
    color: transparent;
    background: linear-gradient(135deg,
      #2962ff 0%,
      #9c27b0 25%,
      #ff6b35 50%,
      #ff4081 75%,
      #2962ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Safari */
  }
}

.brand-text-logo::before {
  content: "";
  position: absolute;
  inset: -0.2em;
  background: linear-gradient(135deg,
    rgba(41, 98, 255, 0.1) 0%,
    rgba(156, 39, 176, 0.1) 25%,
    rgba(255, 107, 53, 0.1) 50%,
    rgba(255, 64, 129, 0.1) 75%,
    rgba(41, 98, 255, 0.1) 100%);
  background-size: 200% 200%;
  border-radius: 0.5em;
  animation: logo-glow 4s ease-in-out infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
}

.logo-fck {
  font-weight: 800;
  letter-spacing: -0.01em;
  animation: text-float 6s ease-in-out infinite;
}

.logo-algo {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-style: italic;
  animation: text-float 6s ease-in-out infinite reverse;
}

.footer-logo {
  font-size: 1.4rem;
}

.footer-logo::before {
  display: none;
}

/* Logo Animations */
@keyframes logo-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes logo-glow {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.8;
  }
}

@keyframes text-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
}

.logo {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #9ca3af;
  transition: color 0.15s ease;
  padding: 0.25rem 0.1rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f9fafb;
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(41, 98, 255, 0.7);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
}

.nav-cta .btn {
  white-space: nowrap;
}

/* Fallback: Browser ohne Flexbox-gap Support (sonst kleben Links zusammen) */
@supports not (gap: 1rem) {
  .nav-links a + a {
    margin-left: 2.4rem;
  }

  .nav-cta > * + * {
    margin-left: 0.75rem;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  background: transparent;
  color: #e5e7eb;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #c026d3 50%, #ec4899 100%);
  background-size: 200% 200%;
  color: #010514;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: gradient-shift 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-monthly {
  /* Monthly: default premium/shiny (most users start here) */
  background: linear-gradient(135deg, #ec4899 0%, #c026d3 45%, #3b82f6 100%);
  box-shadow: 0 18px 55px rgba(236, 72, 153, 0.28), 0 10px 30px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-monthly:hover {
  box-shadow: 0 28px 80px rgba(236, 72, 153, 0.35), 0 16px 45px rgba(59, 130, 246, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-yearly {
  /* Yearly: less shiny by default (no gradient) */
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
  box-shadow: 0 10px 28px rgba(3, 7, 18, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: none;
}

.btn-yearly:hover {
  /* On hover: match monthly "shiny" energy */
  background: linear-gradient(135deg, #ec4899 0%, #c026d3 45%, #3b82f6 100%);
  border-color: transparent;
  color: #010514;
  animation: gradient-shift 3s ease-in-out infinite;
  box-shadow: 0 28px 80px rgba(236, 72, 153, 0.33), 0 16px 45px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
  border-color: #2962ff;
  background: rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: #9ca3af;
}

.btn-ghost:hover {
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
}

.btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
}

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

.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  animation: slide-in-up 1s ease-out;
}

.hero::before,
.hero::after,
.hero .particle-1,
.hero .particle-2,
.hero .particle-3 {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41, 98, 255, 0.4), transparent 70%);
  top: 10%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 102, 0.3), transparent 60%);
  top: 60%;
  right: 15%;
  animation: float 10s ease-in-out infinite reverse;
  mix-blend-mode: screen;
}

.hero .particle-1 {
  width: 8px;
  height: 8px;
  background: rgba(156, 39, 176, 0.8);
  top: 30%;
  left: 70%;
  animation: particle-float 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.6);
}

.hero .particle-2 {
  width: 6px;
  height: 6px;
  background: rgba(255, 107, 53, 0.9);
  top: 70%;
  left: 30%;
  animation: particle-float 8s ease-in-out infinite 2s;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
}

.hero .particle-3 {
  width: 10px;
  height: 10px;
  background: rgba(41, 98, 255, 0.7);
  top: 50%;
  left: 50%;
  animation: particle-float 7s ease-in-out infinite 4s;
  box-shadow: 0 0 25px rgba(41, 98, 255, 0.8);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.hero-right {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  justify-items: stretch;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4.4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.accent {
  background: linear-gradient(120deg, var(--accent-blue), var(--accent-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.highlight {
  color: var(--accent-blue);
  font-weight: 600;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.6rem;
}

.hero-bullets li {
  font-weight: 500;
}

.hero-bullets li::before {
  content: "▹";
  color: var(--accent-blue);
  margin-right: 0.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.85rem;
  color: #6b7280;
  max-width: 30rem;
}

.hero-preview {
  display: grid;
  gap: 1rem;
  position: relative;
  justify-items: stretch;
}

.hero-live-panel {
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 1.8rem;
  background: linear-gradient(160deg, rgba(41, 98, 255, 0.18), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 30px 70px rgba(3, 7, 18, 0.85);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-live-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.8rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(192, 38, 211, 0.35), rgba(236, 72, 153, 0.35));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.hero-live-panel::after {
  /* Removed: this created a "milky/white cloud" look on some displays */
  content: none;
}

.live-head,
.live-metrics,
.live-bar,
.live-notes {
  position: relative;
  z-index: 1;
}

.live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.live-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c7d2fe;
  margin: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.live-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
  animation: live-dot 1.8s ease-in-out infinite;
}

@keyframes live-dot {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.15); opacity: 1; }
}

.live-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.live-metric {
  padding: 0.65rem 0.75rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: grid;
  gap: 0.25rem;
}

.live-metric .k {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.live-metric .v {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e5e7eb;
}

.live-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.live-fill {
  display: block;
  height: 100%;
  width: 74%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.95), rgba(192, 38, 211, 1), rgba(236, 72, 153, 0.95));
  background-size: 200% 200%;
  animation: gradient-shift 2.2s ease-in-out infinite, glow-pulse 3.2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.22);
  position: relative;
}

/* Removed "spark cloud" to keep the bar clean */

.live-notes {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  gap: 1rem;
  flex-wrap: wrap;
}

.live-notes span {
  max-width: 100%;
}

.chart-card {
  width: 100%;
  max-width: none;
  border-radius: 1.8rem;
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.22), rgba(2, 6, 23, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 40px 90px rgba(3, 7, 18, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.chart-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.8rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(192, 38, 211, 0.3), rgba(236, 72, 153, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}

.chart-caption {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: none;
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.chart-header .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  display: inline-block;
}

.chart-header .dot.red {
  background: #ef4444;
}

.chart-header .dot.yellow {
  background: #eab308;
}

.chart-header .dot.green {
  background: #2962ff;
}

.chart-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: #9ca3af;
}

.chart-body {
  position: relative;
  padding: 1.25rem 1.25rem 1rem;
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.2), rgba(15, 23, 42, 1));
}

.chart-main {
  height: 195px;
  background-image: url("/static/indikator.png");
  /* Wichtig: keine X/Y-Verzerrung (120% 120% quetscht das Bild) */
  background-size: cover;
  background-position: 50% 55%;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.chart-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 98, 255, 0.18), transparent 42%, rgba(156, 39, 176, 0.22));
  mix-blend-mode: screen;
}

.chart-main::before {
  content: "";
  position: absolute;
  top: 6%;
  bottom: 6%;
  width: 2px;
  left: -8%;
  border-radius: 999px;
  background: linear-gradient(180deg,
    rgba(59, 130, 246, 0.0),
    rgba(192, 38, 211, 0.55),
    rgba(236, 72, 153, 0.0));
  opacity: 0.45;
  filter: blur(0.2px);
  mix-blend-mode: screen;
  animation: chart-edge-sweep 6.0s ease-in-out infinite;
  pointer-events: none;
}

@keyframes chart-edge-sweep {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: 0.45; }
  88% { opacity: 0.45; }
  100% { transform: translateX(118%); opacity: 0; }
}

.chart-indicator {
  margin-top: 0.75rem;
  height: 32px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at left, rgba(41, 98, 255, 0.35), transparent 60%);
}

.chart-indicator.mfi {
  background: radial-gradient(circle at right, rgba(126, 87, 194, 0.45), transparent 60%);
}

.chart-indicator::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.1) 10%, transparent 10%, transparent 50%, rgba(15, 23, 42, 0.25) 50%, rgba(15, 23, 42, 0.25) 60%, transparent 60%);
  background-size: 24px 100%;
  opacity: 0.9;
}

.chart-signal {
  position: absolute;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
}

.chart-signal.signal-long {
  top: 24px;
  left: 18px;
  background: rgba(41, 98, 255, 0.2);
  color: #c7d2fe;
  border: 1px solid rgba(41, 98, 255, 0.75);
}

.chart-signal.signal-short {
  bottom: 26px;
  right: 18px;
  background: rgba(248, 113, 113, 0.15);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.7);
}

.immersive {
  padding: 3.8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.immersive::before,
.immersive::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.immersive::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(41, 98, 255, 0.2), transparent 70%);
  top: -10%;
  right: -10%;
  border-radius: 50%;
  animation: gradient-shift 12s ease-in-out infinite;
  mix-blend-mode: screen;
}

.immersive::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(156, 39, 176, 0.15), transparent 60%);
  bottom: -5%;
  left: 20%;
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
  mix-blend-mode: screen;
}

.immersive-inner {
  position: relative;
  z-index: 1;
}

.immersive-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.immersive-card {
  padding: 2.4rem;
  border-radius: 1.4rem;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.7);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
  position: relative;
}

.immersive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.4rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(41, 98, 255, 0.3), rgba(156, 39, 176, 0.3), rgba(255, 107, 53, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.immersive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.9);
}

.immersive-card:hover::before {
  opacity: 1;
}

.immersive-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.immersive-card p {
  margin: 0;
  color: #cbd5f5;
  font-size: 0.95rem;
  flex: 1;
}

/* ---- Trust Section ---- */
.trust {
  padding: 1.5rem 0 2.5rem;
}

.trust-inner {
  text-align: center;
}

.trust-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.trust-item {
  padding: 2rem 1.8rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, rgba(41, 98, 255, 0.15), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.4);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.trust-item {
  animation: float 8s ease-in-out infinite;
}

.trust-item:nth-child(2) {
  animation-delay: 2s;
}

.trust-item:nth-child(3) {
  animation-delay: 4s;
}

.trust-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.6);
  background: radial-gradient(circle at top left, rgba(41, 98, 255, 0.25), rgba(15, 23, 42, 0.98));
  animation-play-state: paused;
}

.trust-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ---- Thesis / Market Reality Section ---- */
.thesis {
  padding: 3.5rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(41, 98, 255, 0.12), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.thesis-inner {
  position: relative;
}

.thesis-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.25rem;
}

.thesis-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin: 0 0 0.9rem;
}

.thesis-header h2 {
  margin: 0;
  font-size: clamp(2.0rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f1f5f9, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thesis-lead {
  margin: 0.9rem auto 0;
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.65;
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.thesis-copy {
  padding: 2.2rem;
  border-radius: 1.4rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 30px 70px rgba(3, 7, 18, 0.75);
}

.thesis-copy h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.thesis-copy p {
  margin: 0 0 0.9rem;
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.75;
}

.thesis-points {
  list-style: none;
  margin: 0.8rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.thesis-points li::before {
  content: "▹";
  color: #2962ff;
  margin-right: 0.4rem;
}

.thesis-points strong {
  color: #f1f5f9;
  font-weight: 600;
}

.thesis-note {
  margin: 0.95rem 0 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

.thesis-cards {
  display: grid;
  gap: 1rem;
}

.thesis-card {
  padding: 1.4rem 1.35rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, rgba(41, 98, 255, 0.10), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 45px rgba(3, 7, 18, 0.55);
}

.thesis-card h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.thesis-card p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
}

.thesis-card-accent {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.18), rgba(2, 6, 23, 0.96));
  border-color: rgba(59, 130, 246, 0.35);
}

/* ---- Generic Sections ---- */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: radial-gradient(circle at top right, rgba(41, 98, 255, 0.12), rgba(15, 23, 42, 1));
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f1f5f9, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  margin-top: 0.75rem;
  color: #9ca3af;
}

/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 1fr;
}

.feature-card {
  padding: 2.2rem;
  border-radius: 1.4rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 25px 50px rgba(3, 7, 18, 0.7);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-magenta), #ff6b35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 35px 70px rgba(3, 7, 18, 0.9);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex: 1;
}

/* ---- New Indicator Suite Layout ---- */
.main-indicator-showcase {
  margin-bottom: 3rem;
}

.indicator-hero-card {
  background: linear-gradient(135deg, rgba(12, 18, 37, 0.98), rgba(2, 6, 23, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 1.6rem;
  padding: 3rem;
  box-shadow: 0 35px 70px rgba(3, 7, 18, 0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.indicator-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-magenta), #ff6b35);
}

.indicator-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.indicator-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #f1f5f9, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.indicator-badge {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-magenta));
  color: #010514;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.indicator-code {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.1rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.indicator-description {
  font-size: 1.1rem;
  color: #cbd5f5;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Features Grid */
.indicator-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-block {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(3, 7, 18, 0.6);
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(3, 7, 18, 0.8);
}

.feature-block h4 {
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  color: #f1f5f9;
  font-weight: 600;
}

.feature-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-block li {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
}

.feature-block li strong {
  color: #f1f5f9;
  font-weight: 600;
}

/* Secondary Indicators */
.secondary-indicators {
  text-align: center;
}

.secondary-indicators h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #f1f5f9;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.secondary-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.85));
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(3, 7, 18, 0.5);
  transition: all 0.3s ease;
}

.secondary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(3, 7, 18, 0.7);
}

.secondary-card h4 {
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  color: #f1f5f9;
  font-weight: 600;
}

.secondary-card p {
  font-size: 1rem;
  color: #cbd5f5;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.secondary-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.secondary-features span {
  font-size: 0.9rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
}

.secondary-features span::before {
  content: "✓";
  color: var(--accent-blue);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* ---- Indicator Demo / Screenshots ---- */
.indicator-showcase-main {
  margin-bottom: 2.5rem;
}

.indicator-main-inner {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, rgba(41, 98, 255, 0.22), rgba(15, 23, 42, 1));
}

.indicator-main-inner img {
  width: 100%;
  display: block;
}

.indicator-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(41, 98, 255, 0.2);
  color: #c7d2fe;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.indicator-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.indicator-copy h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.indicator-copy p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

.indicator-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.indicator-copy li::before {
  content: "▹";
  color: #2962ff;
  margin-right: 0.35rem;
}

.indicator-shot-small {
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
}

.indicator-shot-small img {
  width: 100%;
  display: block;
  border-radius: 0.9rem;
  margin-top: 0.7rem;
}

.indicator-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.pricing-card {
  padding: 2.4rem;
  border-radius: 1.4rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 30px 60px rgba(3, 7, 18, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 340px;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-cta {
  margin-top: auto;
  display: grid;
  gap: 0.85rem;
}

.pricing-cta form {
  margin: 0;
}

/* Einheitliche Button-Höhe im Pricing */
.pricing-card .btn.btn-block {
  min-height: 52px;
  padding: 0 1.25rem;
}

.pricing-card .btn.btn-block.btn-lg {
  min-height: 52px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.4rem;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(41, 98, 255, 0.4),
    rgba(156, 39, 176, 0.4),
    rgba(255, 107, 53, 0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px rgba(3, 7, 18, 0.95);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.secondary {
  background: rgba(15, 23, 42, 0.8);
}

.pricing-label {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.8rem;
  /* In .pricing-card (flex column), children are stretched by default */
  align-self: flex-start;
  width: fit-content;
}

.pricing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
}

.price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #9ca3af;
}

.price .price-old {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  /* alter Preis: gut lesbar, aber als "alt" erkennbar */
  color: rgba(241, 245, 249, 0.82);
  margin-right: 0.55rem;
  text-decoration-line: line-through;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  /* Nutzerwunsch: Strich weiß */
  text-decoration-color: rgba(241, 245, 249, 0.95);
  text-decoration-skip-ink: auto;
}

.price-subnote {
  margin: -0.4rem 0 0.6rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.pricing-card ul li::before {
  content: "✓";
  color: #2962ff;
  margin-right: 0.4rem;
}

.pricing-note {
  margin-top: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ---- Steps ---- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.steps li > .step-number {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.steps li > h3,
.steps li > p {
  grid-column: 2;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: radial-gradient(circle at top left, #2962ff, #9c27b0);
  color: #020617;
}

.steps h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ---- FAQ ---- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  grid-auto-rows: 1fr;
}

.faq-item {
  border-radius: 1.3rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.97), rgba(5, 9, 26, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.5);
  /* kompakt im Default (keine leeren "Bubbles") */
  padding: 1.15rem 1.3rem;
  box-shadow: 0 20px 40px rgba(3, 7, 18, 0.7);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(3, 7, 18, 0.8);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.99), rgba(5, 9, 26, 0.95));
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #6b7280;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item:hover summary::after,
.faq-item:focus-within summary::after {
  content: "–";
}

.faq-item p {
  /* eingeklappt im Default; klappt auf bei Hover/Fokus oder wenn per Click geöffnet */
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
  font-size: 0.9rem;
  color: #9ca3af;
}

.faq-item[open] p,
.faq-item:hover p,
.faq-item:focus-within p {
  margin-top: 0.7rem;
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/* ---- Footer & Legal ---- */
.footer {
  padding: 2.5rem 0 1.5rem;
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #6b7280;
  max-width: 20rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
}

.footer-column h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-column a {
  display: block;
  margin-bottom: 0.3rem;
  color: #9ca3af;
}

.footer-column a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(31, 41, 55, 1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.legal {
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 1);
}

.legal h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.legal p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* ---- Simple Forms / Dashboard ---- */
.fa-form {
  margin-top: 1.5rem;
  max-width: 480px;
  display: grid;
  gap: 1rem;
}

.fa-field {
  display: grid;
  gap: 0.35rem;
}

.fa-field label {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.fa-label-note {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 400;
}

.fa-field input {
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  padding: 0.55rem 0.75rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.fa-field input:focus {
  outline: none;
  border-color: #2962ff;
  box-shadow: 0 0 0 1px rgba(41, 98, 255, 0.6);
}

.fa-help {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.dashboard-card {
  margin-top: 1.5rem;
  padding: 1.4rem 1.4rem 1.3rem;
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.dashboard-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.dashboard-card p {
  margin: 0.15rem 0;
  font-size: 0.9rem;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.dashboard-sidebar {
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 1.1rem 1rem;
}

.dashboard-sidebar h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.dashboard-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.25rem;
}

.dashboard-nav a,
.dashboard-nav button {
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.7rem;
  border-radius: 0.6rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 0.9rem;
  cursor: pointer;
}

.dashboard-nav a:hover,
.dashboard-nav button:hover {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.dashboard-nav a.is-active {
  background: rgba(41, 98, 255, 0.18);
  color: #c7d2fe;
}

.dashboard-content {
  width: 100%;
}

.dashboard-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.dashboard-success {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(34, 197, 94, 0.5);
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.95));
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 520px;
}

.dashboard-success-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 2px solid #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #bbf7d0;
  flex-shrink: 0;
}

.dashboard-success h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.dashboard-success p {
  margin: 0;
  font-size: 0.85rem;
  color: #d1d5db;
}

.btn-danger {
  border-color: rgba(248, 113, 113, 0.8);
  color: #fecaca;
}

.btn-danger:hover {
  border-color: rgba(248, 113, 113, 1);
  background: rgba(248, 113, 113, 0.1);
  color: #fee2e2;
}

@media (max-width: 960px) {
  .dashboard-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-sidebar {
    order: -1;
  }
}

/* ---- Responsive ---- */
/* Ultra-wide screens */
@media (min-width: 1800px) {
  .container {
    max-width: 2000px;
    padding: 0 4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .feature-grid,
  .indicator-grid,
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    /* Mobile: Text (hero-content) first, then preview/live */
    order: 2;
  }

  .live-metrics {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thesis-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thesis-copy {
    padding: 1.7rem;
  }

  .indicator-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .indicator-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .indicator-hero-card {
    padding: 2rem;
  }

  .indicator-header h3 {
    font-size: 1.5rem;
  }

  .indicator-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chart-main,
  .chart-main::before,
  .live-fill,
  .live-badge::before {
    animation: none !important;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

  .nav-inner {
    padding-inline: 1rem;
    padding-block: 1.25rem;
  }

  /* Mobile header CTA: prevent awkward wrapping like "Get\nStarted" */
  .nav-cta {
    gap: 0.5rem;
  }

  .nav-cta .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .container {
    padding-inline: 1rem;
  }

  /* Mobile: weiterhin indikator.png, aber besserer Crop (ohne X/Y-Verzerrung) */
  .chart-main {
    height: 220px;
    background-image: url("/static/indikator.png");
    background-size: cover;
    background-position: 50% 60%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


