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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #0f172a 100%);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #0ea5e9;
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 1;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  backdrop-filter: blur(20px);
  background: rgba(10, 14, 39, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  width: 80px;
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 14px;
}

.nav-links a:hover {
  color: #0ea5e9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-nav {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
  font-size: 14px;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 50px;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #0ea5e9 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #94a3b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat {
  text-align: center;
  padding: 20px 15px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0ea5e9;
  display: block;
}

.stat-label {
  color: #94a3b8;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  height: 500px;
  min-height: 300px;
}

.network-visual {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(14, 165, 233, 0.3);
  overflow: hidden;
}

.node {
  position: absolute;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 50%;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
  animation: flow 2s infinite ease-in-out;
}

@keyframes flow {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

/* CTA Buttons */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  padding: clamp(12px, 3vw, 18px) clamp(25px, 5vw, 40px);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.3);
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 140px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
  background: transparent;
  padding: clamp(12px, 3vw, 18px) clamp(25px, 5vw, 40px);
  border-radius: 50px;
  text-decoration: none;
  color: #0ea5e9;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  border: 2px solid #0ea5e9;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}

.btn-secondary:hover {
  background: #0ea5e9;
  color: white;
  transform: translateY(-3px);
}

/* Technology Section */
.technology {
  padding: 80px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(14, 165, 233, 0.05) 100%
  );
}

.tech-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #ffffff, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.tech-card {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 25px;
  padding: 30px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2);
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #8b5cf6);
}

.tech-card h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #0ea5e9;
}

.tech-card p {
  color: #94a3b8;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 25px;
}

.tech-features {
  list-style: none;
}

.tech-features li {
  color: #e2e8f0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.tech-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: bold;
}

/* Performance Section */
.performance {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(14, 165, 233, 0.1)
  );
}

.perf-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.comparison-table {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 25px;
  padding: 30px 20px;
  margin-top: 50px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  overflow-x: auto;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  min-width: 600px;
}

.table-header {
  font-weight: 700;
  color: #0ea5e9;
  padding: 15px 10px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.3);
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.table-cell {
  padding: 15px 10px;
  color: #e2e8f0;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.loragon-cell {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  border-radius: 15px;
  font-weight: 600;
  color: #0ea5e9;
}

/* Developer Section */
.developer {
  padding: 80px 20px;
}

.dev-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.code-snippet {
  background: #1e293b;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #334155;
  font-family: "Courier New", monospace;
  overflow-x: auto;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.code-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #334155;
}

.code-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}
.dot.yellow {
  background: #eab308;
}
.dot.green {
  background: #22c55e;
}

.code-title {
  margin-left: 10px;
  color: #94a3b8;
  font-size: 0.8rem;
}

.code-line {
  color: #e2e8f0;
  margin-bottom: 4px;
  line-height: 1.4;
}

.keyword {
  color: #8b5cf6;
}
.string {
  color: #06b6d4;
}
.comment {
  color: #64748b;
}
.function {
  color: #0ea5e9;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 20px;
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.05) 0%,
    rgba(14, 165, 233, 0.05) 100%
  );
}

.use-cases-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.use-case-card {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 25px;
  padding: 30px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  text-align: left;
}

.use-case-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2);
}

.use-case-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.use-case-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #0ea5e9;
}

.use-case-card p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.use-case-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  list-style: none;
}

.use-case-features li {
  color: #e2e8f0;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  padding: 6px 10px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 15px;
  text-align: center;
}

/* Network Stats Dashboard */
.network-stats {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.8),
    rgba(30, 41, 59, 0.8)
  );
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.stats-dashboard {
  margin-top: 50px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.stat-widget {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.widget-header h3 {
  color: #94a3b8;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  margin-left: 10px;
}

.status-indicator.live {
  background: #22c55e;
}
.status-indicator.active {
  background: #0ea5e9;
}
.status-indicator.growth {
  background: #eab308;
}
.status-indicator.perfect {
  background: #8b5cf6;
}

.widget-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.widget-value span:first-child {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0ea5e9;
}

.widget-value .unit {
  color: #64748b;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.validator-distribution {
  margin-top: 12px;
}

.distribution-bar {
  display: flex;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.distribution-labels {
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  color: #64748b;
}

.tvl-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.breakdown-label {
  color: #94a3b8;
}

.breakdown-value {
  color: #0ea5e9;
  font-weight: 600;
}

.uptime-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uptime-stat {
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.stat-label {
  color: #94a3b8;
}

.stat-value {
  color: #22c55e;
  font-weight: 600;
}

.transaction-explorer {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
}

.transaction-explorer h3 {
  color: #0ea5e9;
  margin-bottom: 15px;
  text-align: left;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.explorer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.transaction-stream {
  height: 200px;
  overflow-y: auto;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 15px;
  padding: 15px;
  font-family: "Courier New", monospace;
}

.tx-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  animation: slideIn 0.3s ease;
}

.tx-hash {
  color: #0ea5e9;
}
.tx-amount {
  color: #22c55e;
}
.tx-time {
  color: #64748b;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.explorer-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Roadmap Section */
.roadmap {
  padding: 80px 20px;
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
}

.roadmap-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.roadmap-timeline {
  margin: 50px 0;
  position: relative;
  padding: 0 20px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0ea5e9, #06b6d4, #8b5cf6);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  max-width: 45%;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 25px;
  width: 16px;
  height: 16px;
  background: #0ea5e9;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid #0a0e27;
  z-index: 2;
}

.timeline-item.completed .timeline-marker {
  background: #22c55e;
}

.timeline-item.active .timeline-marker {
  background: #eab308;
  animation: pulse 2s infinite;
}

.timeline-item.future .timeline-marker {
  background: #64748b;
}

.timeline-content h3 {
  color: #0ea5e9;
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 8px;
}

.timeline-date {
  color: #64748b;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
}

.timeline-content p {
  color: #94a3b8;
  margin: 12px 0;
  line-height: 1.6;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.timeline-content ul {
  list-style: none;
  color: #e2e8f0;
}

.timeline-content ul li {
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.timeline-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0ea5e9;
}

.research-initiatives {
  margin-top: 60px;
  text-align: center;
}

.research-initiatives h3 {
  color: #0ea5e9;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 30px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.research-card {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
  text-align: left;
}

.research-card h4 {
  color: #0ea5e9;
  margin-bottom: 12px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

.research-card p {
  color: #94a3b8;
  line-height: 1.5;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* CTA Hub Section */
.cta-hub {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(14, 165, 233, 0.1)
  );
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.cta-card {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 25px;
  padding: 30px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2);
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.cta-card h3 {
  color: #0ea5e9;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 12px;
}

.cta-card p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cta-features span {
  background: rgba(14, 165, 233, 0.2);
  color: #0ea5e9;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  font-weight: 600;
}

.technical-resources {
  margin-top: 60px;
}

.technical-resources h3 {
  color: #0ea5e9;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 30px;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(20px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-link:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.4);
}

.resource-icon {
  font-size: 1.8rem;
  min-width: 40px;
  text-align: center;
}

.resource-info h4 {
  color: #0ea5e9;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 4px;
}

.resource-info p {
  color: #94a3b8;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1.4;
}

/* Technical Credibility */
.credibility {
  padding: 50px 20px;
  background: rgba(14, 165, 233, 0.05);
  border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.credibility-container {
  max-width: 1400px;
  margin: 0 auto;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.credibility-stat {
  text-align: center;
  padding: 20px;
}

.credibility-stat h3 {
  color: #0ea5e9;
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 8px;
}

.credibility-stat p {
  color: #94a3b8;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0a0e27, #1e293b);
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  color: #0ea5e9;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.footer-section ul li a:hover {
  color: #0ea5e9;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  color: #64748b;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0e27;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(14, 165, 233, 0.3);
  border-top: 3px solid #0ea5e9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }

  .hero-container {
    gap: 40px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 968px) {
  nav {
    padding: 12px 20px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .nav-links {
    display: none;
  }

  .cta-nav {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero {
    padding: 100px 20px 40px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-visual {
    height: 300px;
    order: -1;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
  }

  .stat {
    padding: 15px 10px;
  }

  .cta-group {
    justify-content: center;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-card {
    padding: 25px;
  }

  .dev-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison-table {
    padding: 20px 15px;
    overflow-x: auto;
  }

  .table-grid {
    min-width: 500px;
    gap: 15px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explorer-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tx-item {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.7rem;
  }

  .roadmap-timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 40px;
  }

  .timeline-marker {
    left: 20px !important;
    transform: translateX(0);
  }

  .timeline-content {
    max-width: 100%;
    margin: 0 !important;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .cta-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .resource-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .resource-link {
    padding: 15px;
  }

  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 15px 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 25px 0;
  }

  .stat {
    padding: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 10px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .tech-card,
  .use-case-card,
  .cta-card {
    padding: 20px;
  }

  .code-snippet {
    padding: 15px;
    font-size: 0.7rem;
  }

  .comparison-table {
    padding: 15px 10px;
  }

  .table-grid {
    min-width: 400px;
    gap: 10px;
  }

  .table-header,
  .table-cell {
    padding: 10px 5px;
    font-size: 0.7rem;
  }

  .stat-widget {
    padding: 20px;
  }

  .widget-value span:first-child {
    font-size: 1.8rem;
  }

  .transaction-stream {
    height: 150px;
    padding: 10px;
  }

  .tx-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
    font-size: 0.65rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-item {
    padding-left: 35px;
    margin-bottom: 30px;
  }

  .timeline-marker {
    left: 15px !important;
    width: 12px;
    height: 12px;
    top: 20px;
  }

  .research-card,
  .resource-link {
    padding: 15px;
  }

  .resource-link {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .credibility-stat {
    padding: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .tech-card,
  .use-case-card,
  .stat-widget,
  .cta-card {
    border-width: 2px;
  }

  .btn-primary,
  .btn-secondary {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particle,
  .node,
  .connection {
    animation: none;
  }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #0f172a 100%);
  }
}

/* Print styles */
@media print {
  .bg-animation,
  .particle,
  nav,
  .loading {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .tech-card h3,
  .cta-card h3 {
    color: black;
  }
}
