@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@300;400;500;800&display=swap");

:root {
  --bg: #0a0a0a;
  --bg2: rgba(20, 20, 20, 0.8);
  --bg3: #111111;
  --border: rgba(255, 255, 255, 0.05);
  --border-mid: rgba(255, 255, 255, 0.1);
  --teal: #00d4ff;
  --teal-dim: #00b8e6;
  --text: #e8e8e8;
  --text-dim: #888888;
  --white: #ffffff;
  --black: #000000;
  --warn: #e6c45a;
  --alert: #f06a6a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1.25rem;
}

strong {
  color: var(--teal);
  font-weight: 500;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--white);
  background: var(--bg3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--text-dim);
}

td.aegis,
th.aegis {
  color: var(--teal);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav-brand {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1.5rem;
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-dot {
  width: 9px;
  height: 9px;
  background: var(--teal);
  display: inline-block;
  animation: blink 1.6s infinite;
}

@keyframes blink {
  0%,
  54%,
  100% {
    opacity: 1;
  }
  55%,
  82% {
    opacity: 0.22;
  }
}

.nav-links {
  height: 60px;
  display: flex;
  align-items: stretch;
  margin-left: auto;
}

.nav-links a {
  min-width: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid rgba(26, 40, 48, 0.5);
  color: var(--text-dim);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: rgba(0, 201, 167, 0.08);
}

.nav-cta {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
  padding: 0 1.1rem;
  color: var(--black);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 2px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  background: var(--bg2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

section {
  padding: 110px 2rem;
  border-top: 1px solid var(--border);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  border-top: 0;
}

.hero {
  position: relative;
  min-height: auto;
  padding: 120px 2rem 56px;
  overflow: hidden;
  border-top: 0;
  background-image:
    linear-gradient(rgba(34, 53, 63, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 53, 63, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -180px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.18), transparent 68%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  border: 1px solid var(--border-mid);
  background: var(--bg2);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.hero-visual-caption,
.image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  color: var(--teal);
  background: rgba(5, 8, 10, 0.78);
  border-top: 1px solid var(--border-mid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-badge,
.eyebrow,
.label,
.stat-label,
.card-label,
.agent-list li,
.step-number,
.meta {
  font-family: "IBM Plex Mono", monospace;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin-bottom: 2rem;
  color: var(--teal);
  border: 1px solid var(--border-mid);
  background: rgba(8, 13, 16, 0.82);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.02;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(28px, 3.5vw, 48px);
}

/* Neue Premium Gradients fuer Headlines */
h1 {
  background: linear-gradient(135deg, #ffffff 0%, #a0e8f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 840px;
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: -0.02em;
}

h2 {
  background: linear-gradient(135deg, #ffffff 0%, #b3eefc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  margin-bottom: 0.9rem;
  font-size: 20px;
}

h1 em,
h2 em {
  -webkit-text-fill-color: var(--teal);
  color: var(--teal);
  font-style: normal;
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
}

.lead {
  max-width: 640px;
  color: var(--text-dim);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
}

.hero .lead {
  max-width: 580px;
  margin-top: 1.6rem;
  font-size: 18px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 26px;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-teal {
  color: var(--black);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
}

.btn-teal:hover {
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline:hover {
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15) inset;
  transform: translateY(-2px);
}

.hero-advantage {
  max-width: 620px;
  margin-top: 2.1rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid var(--border-mid);
  background: linear-gradient(180deg, rgba(13, 18, 22, 0.96) 0%, rgba(10, 14, 18, 0.82) 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-advantage-kicker {
  margin-bottom: 0.55rem;
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-advantage h3 {
  margin-bottom: 0.75rem;
  font-size: 24px;
}

.hero-advantage p {
  margin-bottom: 0.85rem;
  color: rgba(232, 232, 232, 0.78);
  font-size: 15px;
  line-height: 1.72;
}

.hero-advantage-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-advantage-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

.hero-advantage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.55);
}
.ticker {
  overflow: hidden;
  background: var(--teal);
  color: var(--black);
  border-top: 0;
}

.ticker-inner {
  width: max-content;
  display: flex;
  gap: 3rem;
  padding: 0.55rem 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.bg2 {
  background: var(--bg2);
}

.bg3 {
  background: var(--bg3);
}

.grid-2,
.grid-3,
.grid-4,
.product-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.align-start {
  align-items: start;
}

.gap-lg {
  gap: 2rem;
}

.card,
.stat-box,
.screenshot-box,
.model-box,
.proof-box,
.image-panel,
.modal-panel,
.form-panel {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-mid);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover,
.stat-box:hover,
.model-box:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.08);
}

.card {
  padding: 2rem;
}

.card-teal {
  border-left: 3px solid var(--teal);
  box-shadow: -2px 0 15px rgba(0, 212, 255, 0.1);
}

.featured {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.55rem;
  color: var(--black);
  background: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.stat-box {
  padding: 1.75rem;
  text-align: center;
}

.stats-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0.25rem;
  background: var(--border-mid);
  border: 1px solid var(--border-mid);
}

.num {
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.num-xl {
  font-size: 96px;
}

.num-lg {
  font-size: 64px;
}

.num-md {
  font-size: 42px;
}

.num-sm {
  font-size: 28px;
}

.num {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.stat-label {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

blockquote {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  color: var(--white);
  border-left: 3px solid var(--teal);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.35;
}

.text-muted {
  color: var(--text-dim);
}

.link-teal {
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-box {
  padding: 2rem;
}

.dimension-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.dimension-row:last-child {
  border-bottom: 0;
}

.dimension-label,
.layer-label,
.card-label,
.meta {
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track {
  height: 2px;
  margin: 0.65rem 0;
  background: var(--border-mid);
}

.track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal);
  transition: width 1s ease;
}

.visible .track span,
.track.visible span {
  width: var(--w, 90%);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  padding: 0.25rem 0.45rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.proof-box {
  padding: 2rem;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel.tall img {
  min-height: 560px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-mid);
  border: 1px solid var(--border-mid);
  margin-top: 2rem;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.finding {
  margin-top: 1rem;
  padding: 1rem;
  color: var(--warn);
  border: 1px solid rgba(230, 196, 90, 0.35);
  background: rgba(230, 196, 90, 0.05);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.screenshot-box {
  overflow: hidden;
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text-dim);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  display: inline-block;
}

.dot.red {
  background: #f06a6a;
}

.dot.yellow {
  background: #e6c45a;
}

.dot.green {
  background: var(--teal);
}

.terminal-content {
  min-height: 290px;
  padding: 1.25rem;
  overflow-x: auto;
  color: var(--text-dim);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
  white-space: pre;
}

.ok {
  color: var(--teal);
}

.warn {
  color: var(--warn);
}

.alert {
  color: var(--alert);
}

.cta-band {
  color: var(--black);
  background: var(--teal);
}

.cta-band h2,
.cta-band p {
  color: var(--black);
}

.cta-band .btn-outline {
  color: var(--black);
  border-color: var(--black);
}

.cta-band .btn-teal {
  background: var(--black);
  border-color: var(--black);
  color: var(--teal);
}

.agent-list,
.feature-list,
.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.agent-list li,
.feature-list li,
.check-list li {
  color: var(--text-dim);
  font-size: 13px;
}

.feature-list li::before {
  content: "-> ";
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
}

.check-list li::before {
  content: "✓ ";
  color: var(--teal);
}

.muted-list li::before {
  content: "~ ";
  color: var(--warn);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem;
  margin: 1rem 0;
}

.price span:not(.num) {
  color: var(--text-dim);
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.full-width {
  grid-column: 1 / -1;
}

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

.faq-card h3 {
  font-weight: 500;
  line-height: 1.35;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-mid);
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-panel {
  padding: 2rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 8, 10, 0.86);
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(560px, 100%);
  padding: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-brand {
    padding-left: 1rem;
  }

  .nav-cta {
    margin-right: 1rem;
    padding: 0 0.8rem;
  }

  section,
  .hero {
    padding: 80px 1.25rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .page-hero {
    padding-top: 120px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .hero-layout,
  .product-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .dimension-row {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 360px;
  }

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

@media (max-width: 520px) {
  .nav-cta {
    font-size: 10px;
  }

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

  .hero {
    padding-top: 92px;
    padding-bottom: 40px;
  }

  .hero-layout {
    gap: 1.5rem;
  }

  .hero-advantage {
    margin-top: 1.4rem;
    padding: 0.95rem;
  }

  .hero-advantage h3 {
    font-size: 21px;
  }

  .num-xl {
    font-size: 72px;
  }

  .num-lg {
    font-size: 52px;
  }
}

/* --- Zusätzliche Badge-Farben für AEGIS Produkte --- */
.badge.central { background: rgba(0,255,136,0.15); color: #00ff88; border: 1px solid #00b865; }
.badge.selftest { background: rgba(255,179,0,0.15); color: #ffb300; border: 1px solid #ffb300; }
.badge.onetime { background: rgba(255,68,68,0.15); color: #ff4444; border: 1px solid #ff4444; }
.badge.home { background: rgba(0,191,255,0.15); color: #00bfff; border: 1px solid #00bfff; }
