/* Getting Started Page Styles */
.getting-started-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.getting-started-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.getting-started-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.getting-started-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.status-overview {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.status-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.status-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.status-card:nth-child(1) { animation-delay: 0.1s; }
.status-card:nth-child(2) { animation-delay: 0.2s; }
.status-card:nth-child(3) { animation-delay: 0.3s; }
.status-card:nth-child(4) { animation-delay: 0.4s; }

.status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
}

.status-card.completed {
  border-color: #00ff88;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.status-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.status-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.status-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Architecture Page Styles */
.architecture-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.architecture-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.architecture-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.architecture-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.ecosystem-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.ecosystem-diagram {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ecosystem-layer {
  margin-bottom: 3rem;
  text-align: center;
}

.ecosystem-layer h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--accent);
}

.ecosystem-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.component-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.component-card:nth-child(1) { animation-delay: 0.1s; }
.component-card:nth-child(2) { animation-delay: 0.2s; }
.component-card:nth-child(3) { animation-delay: 0.3s; }
.component-card:nth-child(4) { animation-delay: 0.4s; }

.component-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent);
}

.component-card.completed {
  border-color: #00ff88;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.component-card.in-progress {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.component-card.planned {
  border-color: #ff6b35;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.component-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.component-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.component-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Multi-device Section */
.multidevice-section {
  padding: 6rem 0;
  background: var(--bg);
}

.multidevice-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
}

.multidevice-status {
  text-align: center;
  margin-bottom: 4rem;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-badge.completed {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.sync-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--accent);
}

/* Security Section */
.security-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.security-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.security-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
}

.security-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.security-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.security-card ul {
  list-style: none;
  padding: 0;
}

.security-card li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.security-card strong {
  color: var(--text);
}

/* Developers Page Styles */
.developers-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.developers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.developers-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.developers-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Value Proposition */
.value-proposition {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.value-proposition h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
  border-color: var(--accent);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Success Stories */
.success-stories {
  padding: 6rem 0;
  background: var(--bg);
}

.success-stories h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
}

.story-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.story-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.story-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.story-content p {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.story-content blockquote {
  font-style: italic;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 0;
}

/* Advantages Section */
.advantages-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.advantages-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.advantage-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

.comparison-bad {
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 0.5rem;
  color: #ff6b35;
}

.comparison-good {
  padding: 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 0.5rem;
  color: #00ff88;
}

/* Quick Start Section */
.quick-start-section {
  padding: 3rem 0;
  background: var(--bg);
}

.quick-start-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.quick-start-steps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quick-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.code-block {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 1rem;
}

.code-block pre {
  padding: 1.5rem;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

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

.benefit-item {
  color: #00ff88;
  font-weight: 500;
}

/* Network Effect Section */
.network-effect-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  text-align: center;
}

.network-effect-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--text);
}

.network-visual {
  position: relative;
  max-width: 600px;
  margin: 0 auto 4rem;
  height: 300px;
}

.network-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.network-node {
  background: var(--accent);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  white-space: nowrap;
}

.network-node.main {
  background: linear-gradient(135deg, var(--accent) 0%, #00ff88 100%);
  font-size: 1.25rem;
  padding: 1.5rem 2rem;
}

.network-connections {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.network-connections .network-node {
  position: absolute;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

.network-connections .network-node:nth-child(1) {
  top: 20%;
  left: 10%;
}

.network-connections .network-node:nth-child(2) {
  top: 20%;
  right: 10%;
}

.network-connections .network-node:nth-child(3) {
  bottom: 20%;
  left: 10%;
}

.network-connections .network-node:nth-child(4) {
  bottom: 20%;
  right: 10%;
}

.network-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.network-benefit {
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.network-benefit h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.network-benefit p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Revolution CTA */
.revolution-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg) 100%);
  text-align: center;
}

.revolution-cta h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
}

.revolution-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.revolution-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .architecture-hero h1,
  .developers-hero h1 {
    font-size: 2.5rem;
  }
  
  .sync-process {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .quick-step {
    flex-direction: column;
    text-align: center;
  }
  
  .network-visual {
    height: 200px;
  }
  
  .network-connections .network-node {
    position: static;
    margin: 0.5rem;
    display: inline-block;
  }
  
  .security-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Installation Section Styling */
.installation-hero {
  text-align: center;
  margin: 3rem 0;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  border-radius: 1.5rem;
  color: #000;
  position: relative;
  overflow: hidden;
}

.installation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.installation-hero h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.installation-hero p {
  font-size: 1.4rem;
  opacity: 1;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.installation-process {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 5rem 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.installation-details {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.install-section {
  margin-bottom: 5rem;
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.install-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

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

.section-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-card {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  min-width: 280px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.download-card:hover::before {
  left: 100%;
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent);
}

.download-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.download-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.download-card p {
  color: #cccccc;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.highlight-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  transition: all 0.3s ease;
  padding: 2px 4px;
  border-radius: 4px;
}

.highlight-link:hover {
  color: #ffffff;
  background: var(--accent);
  border-bottom-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.command-sequence {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.command-step {
  text-align: center;
  position: relative;
}

.command-label {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: block;
}

.command-block {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--bg-secondary) 100%);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  position: relative;
  overflow-x: auto;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.command-block::before {
  content: '$ ';
  color: var(--accent);
  font-weight: bold;
}

.command-block:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.command-block code {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Add success indicator */
.install-section:last-child {
  margin-bottom: 8rem;
  padding-bottom: 8rem;
}

.install-section:last-child::after {
  content: '✨ Ready to sync!';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
  .installation-hero h2 {
    font-size: 2.2rem;
  }
  
  .installation-hero p {
    font-size: 1.2rem;
  }
  
  .installation-process {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .download-options {
    flex-direction: column;
    align-items: center;
  }
  
  .install-section {
    padding: 2rem;
  }
  
  .section-header h3 {
    font-size: 1.8rem;
  }
}

/* What Happens Next Section */
.what-happens-section {
  margin: 6rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

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

.section-hero h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-hero p {
  font-size: 1.3rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Capabilities Section */
.capabilities-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.capability-category {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s ease;
}

.capability-category:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.category-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.category-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

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

.capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.capability-item:hover {
  background: rgba(0, 212, 255, 0.1);
}

.check-icon {
  font-size: 1.2rem;
  color: var(--accent);
}

.capability-item span:last-child {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

/* Multi-Device Section */
.multidevice-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.status-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.sync-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  width: 100%;
}

/* Privacy Protection Section */
.privacy-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.privacy-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.privacy-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.privacy-card.dont-collect::before {
  background: linear-gradient(90deg, #ff4444 0%, #ff6666 100%);
}

.privacy-card.do-know::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.privacy-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.privacy-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.privacy-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.privacy-card ul {
  list-style: none;
  padding: 0;
}

.privacy-card li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.privacy-card li strong {
  color: #ffffff;
}

.big-zero {
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
  margin: 2rem 0;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.big-zero + p {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

/* Questions Section */
.questions-section {
  margin: 8rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.questions-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.questions-grid {
  display: grid;
  gap: 2rem;
}

.question-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.question-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.question-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.question-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.question-card h3::before {
  content: '❓';
  font-size: 1.2rem;
}

.question-card p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced result highlight */
.result-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

@keyframes glow {
  from { box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3); }
  to { box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5); }
}

.sync-feature {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sync-feature:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.sync-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sync-feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.sync-feature p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.usage-guide {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-top: 4rem;
  border: 2px solid var(--border);
}

.usage-guide h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.usage-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.usage-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.usage-content {
  flex: 1;
}

.usage-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.usage-content p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.usage-command {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.8rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.usage-command code {
  color: var(--accent);
  font-weight: 600;
}

/* Help Section */
.help-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.help-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s ease;
}

.help-card:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.help-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.help-icon {
  font-size: 2.5rem;
}

.help-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.help-item {
  margin-bottom: 2rem;
}

.help-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.help-item p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.help-item code {
  background: #1a1a1a;
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.next-step-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.next-step-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.next-step-link:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.link-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.link-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.link-content p {
  color: #cccccc;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .capabilities-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }
  
  .usage-step {
    flex-direction: column;
    text-align: center;
  }
  
  .section-hero h2 {
    font-size: 2.2rem;
  }
}

/* Enhanced Architecture Page Sections */

/* Smart Synchronization - 2 columns */
.sync-features-section .sync-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.sync-features-section .sync-feature {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sync-features-section .sync-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.sync-features-section .sync-feature:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

/* Enhanced Decentralized Section */
.decentralized-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.decentralized-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.decentralized-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.decentralized-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.decentralized-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.decentralized-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* Enhanced Technical Section */
.technical-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.technical-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.technical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.technical-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.technical-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.technical-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* Enhanced Ecosystem Section */
.ecosystem-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.ecosystem-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.ecosystem-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.ecosystem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.ecosystem-card:hover::after {
  left: 100%;
}

.ecosystem-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.ecosystem-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.4));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.ecosystem-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.ecosystem-card p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Add special styling for each card type */
.ecosystem-card:nth-child(1) .ecosystem-icon {
  color: #ff6b6b;
}

.ecosystem-card:nth-child(2) .ecosystem-icon {
  color: #4ecdc4;
}

.ecosystem-card:nth-child(3) .ecosystem-icon {
  color: #45b7d1;
}

.ecosystem-card:nth-child(4) .ecosystem-icon {
  color: #96ceb4;
}

@media (max-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Add more bottom margin to architecture CTA section */
.architecture-hero + * .cta-section,
div[class*="architecture"] .cta-section {
  margin-bottom: 12rem;
}
/* Technical Foundation Section */
.technical-foundation-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.technical-foundation-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.tech-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.tech-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.tech-card p {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Funding Section */
.funding-section {
  margin: 8rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.funding-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funding-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 4rem;
}

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

.funding-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.funding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
}

.funding-card:hover {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.funding-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.funding-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.funding-card p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin: 8rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.cta-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-hero h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.cta-code {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-code::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.code-header h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.cta-code .code-block {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.cta-code pre {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%);
  border: 2px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.cta-benefit:hover {
  border-color: var(--accent);
  transform: translateX(10px);
}

.cta-benefit .benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
}

.cta-benefit h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 768px) {
  .tech-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .funding-grid {
    grid-template-columns: 1fr;
  }
}

/* Developer Page Specific Styles */
.sync-title {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.sync-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0 2rem 0;
}

.sync-feature {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.sync-feature h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.sync-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.problem-solution {
  margin: 3rem 0;
}

.problem-solution h2 {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.problem-card, .solution-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.problem-card {
  background: var(--bg-secondary);
}

.problem-card h3 {
  color: #ff6b6b;
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.solution-card {
  background: var(--bg-secondary);
}

.solution-card h3 {
  color: var(--accent);
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.problem-card ul, .solution-card ul {
  margin: 0;
  padding-left: 1.5rem;
}

.problem-card li, .solution-card li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--text);
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sync-features {
    grid-template-columns: 1fr;
  }
}
