/* ===== TECHNOLOGY PAGE STYLES ===== */

/* Technology Hero Section */
.technology-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.tech-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tech-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #00ff88, transparent),
    radial-gradient(2px 2px at 40px 70px, #00ff88, transparent),
    radial-gradient(1px 1px at 90px 40px, #00ff88, transparent),
    radial-gradient(1px 1px at 130px 80px, #00ff88, transparent),
    radial-gradient(2px 2px at 160px 30px, #00ff88, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: techParticles 20s linear infinite;
}

@keyframes techParticles {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

.tech-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: techGrid 30s linear infinite;
}

@keyframes techGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.tech-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  animation: techWaves 15s ease-in-out infinite;
}

@keyframes techWaves {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.tech-nexus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: techNexus 10s ease-in-out infinite;
}

@keyframes techNexus {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.tech-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tech-hero-text {
  color: white;
}

.tech-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #00ff88;
}

.tech-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-gradient {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.tech-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-weight: 600;
}

.highlight-item i {
  color: #00ff88;
  font-size: 1.25rem;
}

.tech-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Technology Visualization */
.tech-hero-visual {
  position: relative;
  height: 500px;
}

.tech-visualization {
  position: relative;
  width: 100%;
  height: 100%;
}

.tech-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}

.core-hologram {
  position: relative;
  width: 100%;
  height: 100%;
}

.hologram-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  animation: hologramRotate 20s linear infinite;
}

.hologram-layer.layer-1 {
  animation-delay: 0s;
}

.hologram-layer.layer-2 {
  animation-delay: -6.67s;
  transform: scale(1.2);
}

.hologram-layer.layer-3 {
  animation-delay: -13.33s;
  transform: scale(1.4);
}

@keyframes hologramRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.core-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.tech-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tech-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.tech-node:hover {
  transform: scale(1.1);
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.ai-node {
  top: 20%;
  left: 20%;
}

.security-node {
  top: 20%;
  right: 20%;
}

.consensus-node {
  bottom: 20%;
  left: 20%;
}

.network-node {
  bottom: 20%;
  right: 20%;
}

.node-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  border-radius: 12px;
  animation: nodeGlow 3s ease-in-out infinite;
}

@keyframes nodeGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.node-icon {
  font-size: 1.5rem;
  color: #00ff88;
  margin-bottom: 0.25rem;
}

.node-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.tech-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  animation: connectionFlow 3s ease-in-out infinite;
}

.ai-connection {
  top: 30%;
  left: 30%;
  width: 40%;
  transform: rotate(-45deg);
  animation-delay: 0s;
}

.security-connection {
  top: 30%;
  right: 30%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 0.75s;
}

.consensus-connection {
  bottom: 30%;
  left: 30%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 1.5s;
}

.network-connection {
  bottom: 30%;
  right: 30%;
  width: 40%;
  transform: rotate(-45deg);
  animation-delay: 2.25s;
}

@keyframes connectionFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #00ff88, transparent);
  margin-bottom: 0.5rem;
}

.scroll-text {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Architecture Section */
.architecture-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #00ff88;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.architecture-overview {
  margin-bottom: 4rem;
}

.architecture-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.arch-layer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.arch-layer:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.layer-header i {
  font-size: 2rem;
  color: #00ff88;
}

.layer-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.layer-components {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.component {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.architecture-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* AI Section */
.ai-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.ai-components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.ai-component-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.ai-component-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.component-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.component-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.component-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.neural-types,
.federated-features,
.anomaly-methods,
.predictive-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.neural-type,
.method-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
}

.neural-type i,
.method-item i {
  color: #00ff88;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.neural-type span,
.method-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.neural-type small,
.method-item small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.feature-item,
.prediction-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.feature-item i,
.prediction-item i {
  color: #00ff88;
}

.ai-applications {
  margin-top: 4rem;
}

.ai-applications h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.application-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.application-item:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.app-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.application-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.application-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Security Section */
.security-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  color: white;
}

.security-layers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.security-layer {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.security-layer:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.layer-visual {
  position: relative;
  width: 120px;
  height: 120px;
}

.layer-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  z-index: 2;
}

.layer-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  animation: ringRotate 10s linear infinite;
}

.ring.ring-1 {
  animation-delay: 0s;
}

.ring.ring-2 {
  animation-delay: -3.33s;
  transform: scale(1.2);
}

.ring.ring-3 {
  animation-delay: -6.67s;
  transform: scale(1.4);
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.layer-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.layer-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.crypto-algorithms,
.zk-protocols,
.firewall-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.algorithm,
.protocol,
.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.algorithm i,
.protocol i,
.feature i {
  color: #00ff88;
}

.security-metrics {
  margin-top: 4rem;
}

.security-metrics h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  border-radius: 4px;
  transition: width 2s ease;
}

/* Consensus Section */
.consensus-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: white;
}

.consensus-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.consensus-component {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.consensus-component:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.component-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.component-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.component-animation {
  width: 100px;
  height: 60px;
  position: relative;
}

.mining-animation,
.staking-animation,
.vrf-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.block,
.coin,
.random-beacon {
  width: 20px;
  height: 20px;
  background: #00ff88;
  border-radius: 4px;
  animation: componentPulse 2s ease-in-out infinite;
}

.block:nth-child(2) {
  animation-delay: 0.5s;
}

.block:nth-child(3) {
  animation-delay: 1s;
}

@keyframes componentPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.component-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.component-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pow-features,
.pos-features,
.vrf-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pow-features .feature,
.pos-features .feature,
.vrf-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.pow-features .feature i,
.pos-features .feature i,
.vrf-features .feature i {
  color: #00ff88;
}

.consensus-performance {
  margin-top: 4rem;
}

.consensus-performance h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.performance-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.performance-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.performance-metric:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.metric-content {
  flex: 1;
}

.metric-content .metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.25rem;
}

.metric-content .metric-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Network Section */
.network-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.network-protocols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.protocol-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.protocol-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.protocol-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.protocol-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.protocol-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.protocol-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.protocol-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.protocol-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.protocol-features .feature i {
  color: #00ff88;
}

.geographic-optimization {
  margin-bottom: 4rem;
}

.geographic-optimization h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.geo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.geo-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.geo-feature:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.geo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.geo-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.geo-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.network-performance {
  margin-top: 4rem;
}

.network-performance h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.network-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.network-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.network-metric:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.network-metric .metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.network-metric .metric-content {
  flex: 1;
}

.network-metric .metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.25rem;
}

.network-metric .metric-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  color: white;
}

.comparison-chart {
  margin-bottom: 4rem;
}

.chart-category {
  margin-bottom: 3rem;
}

.category-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #00ff88;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bar-fill {
  height: 40px;
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  border-radius: 20px;
  position: relative;
  transition: width 2s ease;
  min-width: 20px;
}

.chart-bar.rsc .bar-fill {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
}

.chart-bar.competitor .bar-fill {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.bar-label {
  font-weight: 600;
  min-width: 150px;
}

.innovation-highlights {
  margin-top: 4rem;
}

.innovation-highlights h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.innovations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.innovation-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.innovation-item:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.innovation-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.innovation-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.innovation-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* CTA Section */
.tech-cta {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: white;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #00ff88, transparent),
    radial-gradient(2px 2px at 40px 70px, #00ff88, transparent),
    radial-gradient(1px 1px at 90px 40px, #00ff88, transparent),
    radial-gradient(1px 1px at 130px 80px, #00ff88, transparent),
    radial-gradient(2px 2px at 160px 30px, #00ff88, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: techParticles 20s linear infinite;
}

.cta-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: techGrid 30s linear infinite;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: techNexus 10s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #00ff88;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.25rem;
}

.cta-stat .stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #00ff88;
  border: 1px solid #00ff88;
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tech-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .tech-hero-title {
    font-size: 2.5rem;
  }
  
  .tech-highlights {
    grid-template-columns: 1fr;
  }
  
  .tech-hero-actions {
    justify-content: center;
  }
  
  .architecture-diagram {
    grid-template-columns: 1fr;
  }
  
  .ai-components-grid {
    grid-template-columns: 1fr;
  }
  
  .security-layers {
    grid-template-columns: 1fr;
  }
  
  .consensus-components {
    grid-template-columns: 1fr;
  }
  
  .network-protocols {
    grid-template-columns: 1fr;
  }
  
  .cta-stats {
    gap: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .tech-hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .tech-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
