:root {
  
  --background: #1a1b2e;
  --foreground: #f0f0f5;
  --card: #1f2040;
  --card-foreground: #f0f0f5;
  --muted: #2a2b4a;
  --muted-foreground: #9ca3af;
  --border: #2d2e50;
  --secondary: #2a2b4a;
  
  
  --cyber-green: #22c55e;
  --cyber-green-glow: #4ade80;
  --cyber-red: #ef4444;
  --cyber-blue: #3b82f6;
  --terminal-bg: #0f101a;
  --alert-red: #ef4444;
  
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-glow-green {
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 20px rgba(34, 197, 94, 0.3);
}

.box-glow-green {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3), 0 0 40px rgba(34, 197, 94, 0.1);
}

.box-glow-red {
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), 0 0 40px rgba(239, 68, 68, 0.1);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--cyber-green);
  color: #0f172a;
}

.btn-primary:hover {
  background-color: rgba(34, 197, 94, 0.9);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
  border: none;
}

.btn-ghost:hover {
  color: var(--cyber-green);
  background: rgba(34, 197, 94, 0.1);
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-bg .glow-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.ambient-bg .glow-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(45, 46, 80, 0.5);
  background: rgba(26, 27, 46, 0.8);
  backdrop-filter: blur(12px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  color: var(--cyber-green);
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: rgba(34, 197, 94, 0.2);
  filter: blur(12px);
  border-radius: 50%;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.logo-text span {
  color: var(--cyber-green);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(45, 46, 80, 0.5);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu .nav-link {
  display: block;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(45, 46, 80, 0.5);
}

.hero {
  position: relative;
  padding: 8rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
}

.hero-content.visible {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  width: fit-content;
}

.pulse-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.pulse-dot .ping {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cyber-green);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot .dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyber-green);
}

.hero-badge-text {
  font-size: 0.875rem;
  color: var(--cyber-green);
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title span {
  color: var(--cyber-green);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

.avatar-group {
  display: flex;
}

.avatar-group > * + * {
  margin-left: -0.5rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--background);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.social-proof-text p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.social-proof-text p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-terminal {
  opacity: 0;
}

.hero-terminal.visible {
  animation: fadeInRight 1s ease 0.3s forwards;
}

.terminal {
  position: relative;
}

.terminal-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(34, 197, 94, 0.1);
  filter: blur(24px);
  border-radius: 1rem;
}

.terminal-window {
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--terminal-bg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(45, 46, 80, 0.5);
  background: rgba(42, 43, 74, 0.3);
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.terminal-dots span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: var(--cyber-red); }
.terminal-dots span:nth-child(2) { background: #f59e0b; }
.terminal-dots span:nth-child(3) { background: var(--cyber-green); }

.terminal-title {
  margin-left: 1rem;
  font-size: 0.875rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted-foreground);
}

.terminal-content {
  padding: 1rem;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}

.terminal-content::-webkit-scrollbar {
  width: 6px;
}

.terminal-content::-webkit-scrollbar-track {
  background: transparent;
}

.terminal-content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.terminal-line {
  margin-bottom: 0.25rem;
  display: none;
}

.terminal-line.visible {
  display: block;
}

.terminal-line.command { color: var(--cyber-green); }
.terminal-line.success { color: var(--cyber-green); }
.terminal-line.warning { color: #f59e0b; font-weight: 600; }
.terminal-line.fix { color: #06b6d4; }
.terminal-line.result { color: var(--cyber-green); font-weight: 700; font-size: 1rem; }
.terminal-line.divider { color: rgba(34, 197, 94, 0.5); }
.terminal-line.info { color: var(--muted-foreground); }
.terminal-line.header { color: var(--cyber-blue); font-weight: 600; }
.terminal-line.phase { color: #a78bfa; font-weight: 600; }
.terminal-line.tree { color: var(--muted-foreground); padding-left: 0.5rem; }
.terminal-line.detail { color: #6b7280; padding-left: 1rem; font-size: 0.8rem; }
.terminal-line.scan { color: var(--cyber-blue); }
.terminal-line.box { color: var(--cyber-blue); }
.terminal-line.alert-box { color: #f59e0b; }
.terminal-line.summary-box { color: var(--cyber-green); }
.terminal-line.progress { color: var(--cyber-green); letter-spacing: -1px; }
.terminal-line.compliance { color: #818cf8; font-weight: 600; }
.terminal-line.ascii { color: var(--cyber-green); font-size: 0.6rem; line-height: 1; }

.terminal-cursor {
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  background: var(--cyber-green);
  animation: blink 1s step-end infinite;
}

.terminal-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(45, 46, 80, 0.5);
  background: rgba(42, 43, 74, 0.2);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator svg {
  width: 1rem;
  height: 1rem;
}

.status-indicator span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--cyber-green);
}

.status-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyber-green);
}

.terminal-progress {
  margin-top: 1rem;
  height: 0.25rem;
  background: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}

.terminal-progress-bar {
  height: 100%;
  background: var(--cyber-green);
  transition: width 0.5s ease-out;
}

.architecture {
  padding: 6rem 0;
}

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

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title span {
  color: var(--cyber-green);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.architecture-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .architecture-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.architecture-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .architecture-line {
    display: block;
  }
}

.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--cyber-green);
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.step-card:hover .step-icon-wrapper {
  background: rgba(34, 197, 94, 0.2);
}

.step-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: var(--cyber-green);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--muted-foreground);
}

.step-arrow {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

@media (min-width: 1024px) {
  .step-arrow {
    display: none;
  }
}

.step-arrow-desktop {
  display: none;
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  z-index: 10;
}

@media (min-width: 1024px) {
  .step-arrow-desktop {
    display: flex;
  }
}

.arrow-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow .arrow-circle {
  width: 2.5rem;
  height: 2.5rem;
  transform: rotate(90deg);
}

.arrow-circle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cyber-green);
}

.data-flow {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.data-flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(42, 43, 74, 0.5);
}

.data-flow-dots {
  display: flex;
  gap: 0.25rem;
}

.data-flow-dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyber-green);
  animation: pulse 1.5s ease-in-out infinite;
}

.data-flow-dots span:nth-child(2) { animation-delay: 0.15s; }
.data-flow-dots span:nth-child(3) { animation-delay: 0.3s; }
.data-flow-dots span:nth-child(4) { animation-delay: 0.45s; }
.data-flow-dots span:nth-child(5) { animation-delay: 0.6s; }

.data-flow-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: 'JetBrains Mono', monospace;
}

.features {
  padding: 6rem 0;
  background: rgba(42, 43, 74, 0.2);
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  margin-bottom: 1.5rem;
}

.features-badge span {
  font-size: 0.875rem;
  color: var(--cyber-green);
  font-weight: 500;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.5s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.feature-card-glow {
  position: absolute;
  inset: 0;
  background: rgba(34, 197, 94, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
}

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

.feature-icon {
  position: relative;
  margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--cyber-green);
}

.feature-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-description {
  position: relative;
  color: var(--muted-foreground);
}

.feature-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 1rem 1rem;
}

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

.additional-features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .additional-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.additional-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(45, 46, 80, 0.5);
  background: rgba(31, 32, 64, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.additional-feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.additional-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.additional-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cyber-green);
}

.additional-feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.additional-feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.protection {
  padding: 5rem 0;
}

.protection-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .protection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protection-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.protection-card-content {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}

.protection-card-content .log-line {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.log-timestamp {
  color: var(--muted-foreground);
}

.log-text {
  color: var(--foreground);
}

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

.log-ai {
  color: var(--cyber-blue);
}

.log-success {
  color: var(--cyber-green);
}

.log-redacted {
  background: var(--foreground);
  color: var(--background);
  padding: 0 0.25rem;
  border-radius: 0.125rem;
}

.alert-highlight {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  margin: 0 -0.5rem;
}

.protection-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.protection-card-footer svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.protection-card-footer h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.protection-card-footer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}


.port-item {
  background: rgba(42, 43, 74, 0.5);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.port-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}

.port-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.port-status.danger {
  background: var(--cyber-red);
  color: white;
}

.port-status.secure {
  background: var(--cyber-green);
  color: #0f172a;
}

.port-status.private {
  background: var(--cyber-blue);
  color: white;
}

.soc2-alert {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.5s ease;
}

.soc2-alert.visible {
  opacity: 1;
  transform: translateY(0);
}

.soc2-alert-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--alert-red);
  font-weight: 600;
  font-size: 0.875rem;
}

.soc2-alert-header svg {
  width: 1rem;
  height: 1rem;
}

.soc2-alert p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}


.audit-report {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  background: rgba(42, 43, 74, 0.3);
}

.audit-header h4 {
  font-weight: 600;
}

.audit-header p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.audit-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.audit-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.audit-score-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--cyber-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-score-circle span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.audit-score-text p:first-child {
  font-weight: 600;
}

.audit-score-text p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.audit-frameworks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.audit-framework {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-framework span:first-child {
  font-size: 0.875rem;
}

.audit-framework-status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--cyber-green);
  font-size: 0.875rem;
  font-weight: 500;
}

.audit-framework-status svg {
  width: 1rem;
  height: 1rem;
}

.stats {
  padding: 5rem 0;
}

.stats-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--card), var(--card), rgba(34, 197, 94, 0.05));
  padding: 3rem;
  overflow: hidden;
}

.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 50px, currentColor 50px, currentColor 51px),
    repeating-linear-gradient(0deg, transparent, transparent 50px, currentColor 50px, currentColor 51px);
}

.stats-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyber-green);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.stat-value.counter-complete {
  animation: counterPulse 0.5s ease;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); text-shadow: 0 0 30px rgba(34, 197, 94, 0.8); }
}

.stat-item:hover .stat-value {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--foreground);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyber-green), var(--cyber-blue));
  z-index: 100;
  transition: width 0.1s ease-out;
}

.tilt-card {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

@keyframes glowingBorder {
  0%, 100% {
    box-shadow: 0 0 5px var(--cyber-green), 0 0 10px var(--cyber-green), 0 0 15px var(--cyber-green);
  }
  50% {
    box-shadow: 0 0 10px var(--cyber-green), 0 0 20px var(--cyber-green), 0 0 30px var(--cyber-green);
  }
}

.glowing-border {
  animation: glowingBorder 2s ease-in-out infinite;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(34, 197, 94, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(34, 197, 94, 0.3) 10%, transparent 10%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.ripple:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.stats-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--cyber-green), transparent 50%, var(--cyber-blue));
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.3;
}

.stat-item {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: rgba(34, 197, 94, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-icon {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

.stat-item:hover .stat-icon svg {
  opacity: 1 !important;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

@keyframes smoothReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.smooth-reveal {
  animation: smoothReveal 0.8s ease forwards;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyber-green), var(--cyber-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.pulse-ring {
  animation: pulseRing 2s infinite;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 197, 94, 0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--cyber-green);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

.trust {
  padding: 4rem 0;
  border-top: 1px solid rgba(45, 46, 80, 0.5);
  border-bottom: 1px solid rgba(45, 46, 80, 0.5);
  background: rgba(42, 43, 74, 0.1);
}

.trust-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trust-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .trust-badges {
    gap: 4rem;
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}

.trust-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-badge-icon {
  position: relative;
}

.trust-badge-box {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  border: 2px solid rgba(45, 46, 80, 0.5);
  background: rgba(42, 43, 74, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-box {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

.trust-badge-box span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted-foreground);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.trust-badge:hover .trust-badge-box span {
  color: var(--foreground);
}

.trust-badge-check {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--cyber-green);
}

.trust-badge-subtitle {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.testimonials {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(34, 197, 94, 0.3);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyber-green);
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.cta {
  padding: 6rem 0;
}

.cta-card {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), var(--card), var(--card));
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-card {
    padding: 4rem;
  }
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  height: 24rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-content {
  position: relative;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  margin-bottom: 2rem;
}

.cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--cyber-green);
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(31, 32, 64, 0.5);
  padding: 3rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(34, 197, 94, 0.5));
}

.footer-line:last-child {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.5), var(--border), transparent);
}

.footer-tagline {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.footer-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(42, 43, 74, 0.5);
}

.footer-badge-inner span:first-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-badge-inner span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.footer-copyright span {
  color: var(--cyber-green);
  font-weight: 500;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.coming-soon-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  text-align: center;
}

.coming-soon-logo {
  margin-bottom: 1.5rem;
}

.coming-soon-logo .logo {
  display: inline-flex;
  justify-content: center;
}

.coming-soon-logo .logo-icon {
  width: 3rem;
  height: 3rem;
}

.coming-soon-logo .logo-text {
  font-size: 1.5rem;
}

.coming-soon-card {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(31, 32, 64, 0.5);
  backdrop-filter: blur(8px);
}

.coming-soon-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-icon.green {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.coming-soon-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.coming-soon-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.coming-soon-icon.green svg {
  color: var(--cyber-green);
}

.coming-soon-icon.blue svg {
  color: var(--cyber-blue);
}

.coming-soon-card h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.coming-soon-card > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.coming-soon-badge.green {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.coming-soon-badge.blue {
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
}

.coming-soon-badge .pulse-dot .ping {
  background: var(--cyber-green);
}

.coming-soon-badge .pulse-dot .dot {
  background: var(--cyber-green);
}

.coming-soon-badge.blue .pulse-dot .ping {
  background: var(--cyber-blue);
}

.coming-soon-badge.blue .pulse-dot .dot {
  background: var(--cyber-blue);
}

.coming-soon-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
}

.coming-soon-badge.green span:last-child {
  color: var(--cyber-green);
}

.coming-soon-badge.blue span:last-child {
  color: var(--cyber-blue);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.integrations {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(45, 46, 80, 0.5);
}

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

.integrations-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.integrations-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .integrations-logos {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .integrations-logos {
    gap: 4rem;
  }
}

.integration-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.integration-logo:hover {
  opacity: 1;
}

.integration-logo svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.integration-logo:first-child svg {
  color: #0080ff;
}

.integration-logo:hover svg {
  color: var(--cyber-green);
}

.integration-logo:first-child:hover svg {
  color: #0080ff;
}

.integration-logo span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-links {
    gap: 2rem;
  }
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-container {
  width: 100%;
  max-width: 28rem;
}

.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.auth-logo .logo-icon {
  width: 3rem;
  height: 3rem;
}

.auth-logo .logo-icon svg {
  width: 3rem;
  height: 3rem;
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-home-link:hover {
  color: var(--cyber-green);
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

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

.auth-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper svg {
  position: absolute;
  left: 1rem;
  color: var(--muted-foreground);
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.input-wrapper input::placeholder {
  color: var(--muted-foreground);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
  border-color: var(--cyber-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1rem;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted-foreground);
  pointer-events: none;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--muted-foreground);
}

.checkbox-wrapper input {
  display: none;
}

.checkbox-wrapper .checkmark {
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--border);
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  position: relative;
}

.checkbox-wrapper input:checked + .checkmark {
  background: var(--cyber-green);
  border-color: var(--cyber-green);
}

.checkbox-wrapper input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #0f172a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  color: var(--cyber-green);
  text-decoration: none;
  font-size: 0.875rem;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
}

.social-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.auth-footer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.auth-footer a {
  color: var(--cyber-green);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.auth-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-trust .trust-item svg {
  color: var(--cyber-green);
}

.auth-trust .trust-item span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.demo-card {
  max-width: 32rem;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.demo-badge svg {
  color: var(--cyber-blue);
}

.demo-badge span {
  font-size: 0.875rem;
  color: var(--cyber-blue);
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

.checkbox-group .checkbox-wrapper {
  padding: 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.checkbox-group .checkbox-wrapper:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.checkbox-group .checkbox-wrapper:has(input:checked) {
  border-color: var(--cyber-green);
  background: rgba(34, 197, 94, 0.05);
}

.demo-benefits {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(42, 43, 74, 0.3);
  border: 1px solid rgba(45, 46, 80, 0.5);
  border-radius: 0.75rem;
}

.benefit-item svg {
  color: var(--cyber-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-item h4 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.legal-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cyber-green);
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-section li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.legal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--cyber-green);
  border-radius: 50%;
}

.legal-contact {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  line-height: 2;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.security-badge-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  color: var(--cyber-green);
}

.security-badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.security-badge span {
  font-weight: 600;
  font-size: 0.875rem;
}

.status-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.status-content {
  max-width: 48rem;
  margin: 0 auto;
}

.status-header {
  margin-bottom: 3rem;
}

.status-overall {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.status-overall.operational {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), var(--card));
}

.status-indicator-large {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  color: var(--cyber-green);
}

.status-indicator-large svg {
  width: 2rem;
  height: 2rem;
}

.status-overall h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.status-overall p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.status-section {
  margin-bottom: 3rem;
}

.status-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.status-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.status-dot.operational {
  background: var(--cyber-green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.status-dot.degraded {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.status-dot.outage {
  background: var(--cyber-red);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.status-name {
  font-weight: 500;
}

.status-label {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.status-label.operational {
  background: rgba(34, 197, 94, 0.2);
  color: var(--cyber-green);
}

.status-label.degraded {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.status-label.outage {
  background: rgba(239, 68, 68, 0.2);
  color: var(--cyber-red);
}

.uptime-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .uptime-grid {
    grid-template-columns: 1fr;
  }
}

.uptime-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  text-align: center;
}

.uptime-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyber-green);
  margin-bottom: 0.25rem;
}

.uptime-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.response-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.response-card {
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.response-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.response-header span:first-child {
  font-weight: 500;
}

.response-value {
  color: var(--cyber-green);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.response-bar {
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}

.response-fill {
  height: 100%;
  background: var(--cyber-green);
  border-radius: 9999px;
}

.incident-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.incident-item {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.incident-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.incident-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.incident-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.incident-dot.resolved {
  background: var(--cyber-green);
}

.incident-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.incident-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.incident-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.incident-status.resolved {
  background: rgba(34, 197, 94, 0.2);
  color: var(--cyber-green);
}

.status-subscribe-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
}

@media (max-width: 480px) {
  .subscribe-form {
    flex-direction: column;
  }
}

.subscribe-form .input-wrapper {
  flex: 1;
}

.subscribe-form .input-wrapper input {
  width: 100%;
}

/* Success Message Styles */
.success-message {
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  color: var(--cyber-green);
  filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
}

.success-message h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.success-message .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
