/* Moderne Demo-Card mit Farbverlauf und Glassmorphism */
.modern-card-demo {
  position: relative;
  margin: 40px auto 0 auto;
  max-width: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 40px 0 rgba(124,58,237,0.18), 0 2px 24px 0 rgba(6,182,212,0.12);
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(17,24,39,0.55);
  border: 2.5px solid transparent;
  transition: box-shadow 0.3s, border 0.3s;
}
.modern-card-demo:hover {
  box-shadow: 0 16px 60px 0 rgba(124,58,237,0.28), 0 4px 32px 0 rgba(6,182,212,0.18);
  border: 2.5px solid var(--accent-2);
}
/* Dezenter Verlauf: nur Lila und Blau */
.modern-card-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  background-size: 200% 200%;
  opacity: 0.28;
  filter: blur(10px) saturate(1.1);
  animation: modern-card-gradient-move 7s ease-in-out infinite;
}
@keyframes modern-card-gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.modern-card-content {
  position: relative;
  z-index: 1;
  padding: 38px 32px 32px 32px;
  text-align: center;
}
.modern-card-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.6rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modern-card-content p {
  color: #e0e7ff;
  font-size: 1.08rem;
  text-shadow: 0 2px 12px rgba(124,58,237,0.08);
}
/* Status-Button in der Navigation */
.btn-status {
  background: linear-gradient(90deg, #22c55e 60%, #06b6d4 100%);
  color: #0b0f1a;
  font-weight: 700;
  border: 1.5px solid #22c55e;
  margin-right: 8px;
  box-shadow: 0 2px 12px rgba(34,197,94,0.10);
  transition: background 0.2s, border 0.2s;
}
.btn-status:hover {
  background: linear-gradient(90deg, #06b6d4 60%, #22c55e 100%);
  border-color: #06b6d4;
}
/* Galerie-Bilder Fix */
.gallery-img {
  display: block;
  width: 100%;
  height: 200px;
  max-width: 320px;
  max-height: 200px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(124,58,237,0.10);
  margin: 0 auto 10px auto;
  background: #181c2a;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gallery-anim-text {
  margin-top: 24px;
  text-align: center;
}

.animated-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent-4), var(--accent));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: animated-gradient 2.5s linear infinite;
}

@keyframes animated-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
/* Roadmap Empty Card */
.roadmap-empty-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--card);
  border: 1.5px dashed var(--accent);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(124,58,237,0.08);
  padding: 38px 32px;
  margin: 44px auto 0 auto;
  max-width: 520px;
  text-align: left;
}
.roadmap-empty-icon {
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(124,58,237,0.12));
}
.roadmap-empty-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  color: var(--accent);
}
.roadmap-empty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
:root {
  --bg: #0b0f1a;
  --bg-soft: #111827;
  --card: rgba(17, 24, 39, 0.75);
  --border: rgba(148, 163, 184, 0.2);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #7c3aed;
  --accent-2: #06b6d4;
  --accent-3: #f43f5e;
  --accent-4: #22c55e;
  --gold: #fbbf24;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.6);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.25), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.18), transparent 40%),
    radial-gradient(circle at 70% 75%, rgba(244, 63, 94, 0.16), transparent 45%),
    radial-gradient(circle at 40% 55%, rgba(34, 197, 94, 0.14), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 20, 0.7);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
}

.nav-links a:hover { opacity: 1; }

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero {
  padding: 90px 0 60px;
  position: relative;
  background: radial-gradient(circle at 10% -10%, rgba(124, 58, 237, 0.45), transparent 55%),
              radial-gradient(circle at 45% 0%, rgba(6, 182, 212, 0.35), transparent 50%),
              radial-gradient(circle at 85% 10%, rgba(251, 191, 36, 0.25), transparent 45%),
              radial-gradient(circle at 70% 90%, rgba(59, 130, 246, 0.25), transparent 45%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% 0 -10%;
  background: conic-gradient(from 180deg at 50% 20%, rgba(124, 58, 237, 0.18), rgba(6, 182, 212, 0.14), rgba(251, 191, 36, 0.14), rgba(34, 197, 94, 0.12), rgba(124, 58, 237, 0.18));
  filter: blur(40px);
  opacity: 0.9;
  z-index: -1;
  animation: aurora 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 45%),
              radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.06), transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #ddd6fe;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  margin: 18px 0 12px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff, #c4b5fd, #99f6e4, #fde68a, #fca5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-bar {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #dbe4ff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.btn {
  border: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0b0f1a;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #06b6d4, #f43f5e);
  color: #0b0f1a;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn:hover { transform: translateY(-2px); }

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  outline: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.25), 0 0 60px rgba(6, 182, 212, 0.2);
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent 55%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-card h3 {
  margin-top: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.18);
}

.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.stat h4 {
  margin: 0;
  color: var(--gold);
  font-size: 20px;
}

.section {
  padding: 70px 0;
}

.stats-strip {
  padding: 20px 0 50px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.strip-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.strip-item h3 {
  margin: 0;
  color: var(--gold);
  font-size: 20px;
}

.section-title {
  font-size: 30px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #c7d2fe, #99f6e4, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 32px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.value-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* Modernisierte Value-Card mit Farbverlauf und Glassmorphism */
.value-card {
  position: relative;
  background: rgba(17,24,39,0.55);
  border-radius: 24px;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 8px 32px 0 rgba(124,58,237,0.13), 0 2px 18px 0 rgba(6,182,212,0.10);
  backdrop-filter: blur(14px) saturate(1.1);
  border: 2px solid transparent;
  overflow: hidden;
  transition: box-shadow 0.3s, border 0.3s;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  background-size: 200% 200%;
  opacity: 0.18;
  filter: blur(10px) saturate(1.1);
  animation: modern-card-gradient-move 7s ease-in-out infinite;
  pointer-events: none;
}
.value-card:hover {
  box-shadow: 0 16px 48px 0 rgba(124,58,237,0.22), 0 4px 32px 0 rgba(6,182,212,0.16);
  border: 2px solid var(--accent-2);
}
.value-card > * {
  position: relative;
  z-index: 1;
}
.value-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.value-card p {
  color: #e0e7ff;
  font-size: 1.04rem;
  text-shadow: 0 2px 10px rgba(124,58,237,0.07);
}

.feature-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  min-height: 160px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 24px rgba(244, 63, 94, 0.15);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.45);
}

.feature-card h4 {
  margin: 0 0 8px;
}

.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.story-card {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(6,182,212,0.35), rgba(244,63,94,0.25));
  border: 1px solid rgba(148,163,184,0.2);
  padding: 14px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(124, 58, 237, 0.3), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 40px rgba(2, 6, 23, 0.45);
}

.gallery-item span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-weight: 600;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 6px 10px;
  border-radius: 999px;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.45), rgba(6,182,212,0.35), rgba(244,63,94,0.25));
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  padding: 40px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

.legal-page {
  min-height: 100vh;
  padding: 90px 0 60px;
}

.legal-hero {
  text-align: center;
  margin-bottom: 24px;
}

.legal-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.legal-card {
  background: rgba(12, 16, 28, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(14px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.legal-section {
  margin-top: 20px;
}

.legal-section h2 {
  margin-bottom: 10px;
  color: #c7d2fe;
}

.section-modern {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(11, 15, 26, 0));
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.info-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 18px;
  padding: 18px;
  min-height: 140px;
}

.glow-panel {
  background: rgba(8, 12, 20, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.5);
  position: relative;
  overflow: hidden;
}

.glow-panel::before {
  content: "";
  position: absolute;
  inset: -20% 0 0 0;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.35), transparent 55%);
  pointer-events: none;
}

.glow-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 12px;
  font-weight: 600;
}

.ios-warning {
  color: #fca5a5;
  font-weight: 700;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-hero {
  text-align: center;
  margin-bottom: 24px;
}

.status-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 16px;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.status-legend i {
  display: inline-block;
  margin-right: 6px;
}

.status-incident {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.3);
  margin-bottom: 20px;
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.status-side {
  display: grid;
  gap: 18px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.status-card {
  background: rgba(12, 16, 28, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.45);
}

.status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-name {
  font-weight: 700;
  font-size: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.status-dot--degraded {
  background: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.status-dot--down {
  background: #f43f5e;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.8);
}

.status-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.status-badge--degraded {
  background: rgba(251, 191, 36, 0.16);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

.status-badge--down {
  background: rgba(244, 63, 94, 0.16);
  border-color: rgba(244, 63, 94, 0.35);
  color: #fca5a5;
}

.status-meta {
  color: var(--muted);
  font-size: 13px;
}

.notify-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 16px 18px;
}

.notify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.notify-input {
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(8, 12, 20, 0.7);
  color: var(--text);
  font-family: inherit;
}

.notify-consent {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.status-table th,
.status-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.status-table th {
  color: var(--muted);
  font-weight: 600;
}

.perf-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  overflow: hidden;
}

.perf-bar span {
  position: absolute;
  inset: 0;
  width: 82%;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(6, 182, 212, 0.9));
  border-radius: 999px;
}

.perf-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-stats strong {
  display: block;
  font-size: 18px;
  color: var(--gold);
}

.mini-stats span {
  color: var(--muted);
  font-size: 12px;
}

.marquee {
  padding: 30px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-weight: 600;
  color: #cbd5f5;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.timeline-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 18px;
}

.testimonial-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(11, 15, 26, 0));
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 18px;
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: var(--muted);
}

.press {
  padding: 20px 0 60px;
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgba(229, 231, 235, 0.6);
}

.press-logos span {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.18);
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.faq-item {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { transform: translateX(-120%); opacity: 0; }
  40% { opacity: 0.45; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes aurora {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50% { transform: translateY(-12px) scale(1.05); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 720px) {
  .hero { padding: 70px 0 40px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero p { font-size: 15px; }
  .hero-grid { gap: 24px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .nav-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 10px; }
  .nav-links a.btn { width: 100%; justify-content: center; }
  .trust-bar { gap: 8px; }
  .trust-item { font-size: 11px; }
  .section { padding: 52px 0; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }
  .features, .value-grid, .info-grid, .gallery, .timeline, .faq, .testimonials, .press-logos { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card, .glow-panel, .cta-banner, .legal-card { padding: 20px; }
  .btn { width: 100%; justify-content: center; }
  .status-summary,
  .status-incident {
    flex-direction: column;
    align-items: flex-start;
  }
  .status-layout { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero { padding: 60px 0 32px; }
  .strip-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .badge { font-size: 11px; }
}
