<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hero Section Styles */
#hero {
  position: relative;
  height: 100vh;
  min-height: 70rem;
  display: flex;
  align-items: center;
  background-color: var(--color-background);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.1), transparent 50%),
             radial-gradient(circle at bottom left, rgba(0, 178, 255, 0.05), transparent 50%);
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 60rem;
}

.hero-content h1 {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-2);
  line-height: 1.1;
}

.subtitle {
  display: flex;
  align-items: center;
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  margin-bottom: var(--spacing-3);
  font-family: var(--font-monospace);
}

.typing-text {
  height: 3rem;
}

.cursor {
  display: inline-block;
  width: 0.3rem;
  height: 2.8rem;
  background-color: var(--color-primary);
  margin-left: 0.2rem;
  animation: blink 1s infinite;
}

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

.hero-description {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-4);
  max-width: 50rem;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-2);
}

.hero-image {
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-shield {
  position: relative;
  width: 30rem;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 2px solid var(--color-primary);
  animation: rotate 20s linear infinite;
}

.shield-inner {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 2px solid var(--color-secondary);
  animation: rotate 15s linear infinite reverse;
}

.shield-logo {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"&gt;&lt;rect width="100" height="100" fill="none" stroke="%23333" stroke-width="0.5"/&gt;&lt;/svg&gt;');
  opacity: 0.07;
  z-index: 2;
}

/* Glitch Effect */
.glitch {
  position: relative;
  animation: glitch 5s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--color-primary);
  z-index: -1;
}

.glitch::after {
  color: var(--color-secondary);
  z-index: -2;
}

@keyframes glitch {
  0% {
    transform: none;
    opacity: 1;
  }
  7% {
    transform: skew(-0.5deg, -0.9deg);
    opacity: 0.75;
  }
  10% {
    transform: none;
    opacity: 1;
  }
  27% {
    transform: none;
    opacity: 1;
  }
  30% {
    transform: skew(0.8deg, -0.1deg);
    opacity: 0.75;
  }
  35% {
    transform: none;
    opacity: 1;
  }
  52% {
    transform: none;
    opacity: 1;
  }
  55% {
    transform: skew(-1deg, 0.2deg);
    opacity: 0.75;
  }
  50% {
    transform: none;
    opacity: 1;
  }
  72% {
    transform: none;
    opacity: 1;
  }
  75% {
    transform: skew(0.4deg, 1deg);
    opacity: 0.75;
  }
  80% {
    transform: none;
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}</pre></body></html>