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

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
}

/* CRITICAL: Snap scroll restoration */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: #ccc;
  text-decoration: none;
}

b {
  color: #e7e247;
}

/* Background Canvas */
#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.25;
}

/* Navigation */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}


.nav-logo img {
  width: 64px;
  height: 64px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563eb;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e7e247;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Share button */
.share-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  backdrop-filter: blur(10px);
  opacity: 0.8;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.share-icon {
  font-size: 1rem;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(37, 99, 235, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #e7e247);
  width: 0%;
  transition: width 0.3s ease;
}

/* Main Content - CRITICAL: Section snap alignment */
main {
  margin-top: 70px;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
}

.section-snap {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Tooltip */
.tooltip-trigger {
  cursor: pointer;
}

.tooltip-icon {
  width: 2rem;
  height: 2rem;
  margin-left: 0.4rem;
  color: #e7e247;
  cursor: pointer;
  animation: neon-pulse 5s infinite;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.tooltip-trigger:hover .tooltip-icon {
  transform: scale(1.2);
}

.tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 200;
    font-size: 1rem;
    white-space: normal;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 80%;
}

.tooltip-trigger:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.neon .tooltip {
  background: rgba(20, 20, 40, 0.9);
  box-shadow: 0 0 20px #e7e24720;
  border: 1px solid #2563eb20;
}

.neon-glow {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px #2563eb;
  animation: neon-pulse 5s ease-in-out infinite;
}

@keyframes neon-pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #2563eb, #e7e247);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.hero-stat {
  text-decoration: underline !important;
  text-decoration-color: #059669 !important;
  text-decoration-thickness: 3px !important;
  text-decoration-skip-ink: none !important;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  max-width: 800px;
  margin: 2rem auto;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  opacity: 0.8;
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #e7e247);
}

/* Chart Containers */
.chart-container,
.matrix-container {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

#growth-chart,
#maturity-chart,
#sector-chart,
#impact-matrix-chart {
  width: 100%;
  text-align: center;
}

/* Growth Insights */
.growth-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.insight-item {
  background: rgba(231, 226, 71, 0.05);
  border: 1px solid rgba(231, 226, 71, 0.2);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.insight-item h4 {
  color: #e7e247;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Maturity Visual */
.maturity-visual {
  margin: 3rem 0;
}

.maturity-stats {
  display: flex;
  justify-content: space-around;
  margin: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.maturity-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
}

.maturity-item:first-child .maturity-percent {
  font-size: 2rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.maturity-item:nth-child(2) .maturity-percent {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.maturity-item:last-child .maturity-percent {
  font-size: 2rem;
  font-weight: 700;
  color: #e7e247;
  margin-bottom: 0.5rem;
}


.maturity-label {
  color: #cccccc;
  font-weight: 500;
}

/* Sector Legend */
.sector-legend,
.matrix-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

/* Timeline Controls */
.timeline-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.timeline-btn {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.timeline-btn.active,
.timeline-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* CRITICAL: Timeline content alignment with equal sizing */
.timeline-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.timeline-stats-container,
.timeline-challenges-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.timeline-stats-container {
  border: 1px solid rgba(231, 226, 71, 0.2);
  background: rgba(231, 226, 71, 0.05);
}

.timeline-stats-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.timeline-stat {
  padding: 1rem;
}

.timeline-number {
  font-size: 3rem;
  font-weight: 800;
  color: #e7e247;
}

.timeline-label {
  display: block;
  color: #cccccc;
  font-weight: 500;
  margin-top: 0.5rem;
}

.timeline-challenges-container h4 {
  color: #e7e247;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.timeline-challenges-container ul {
  list-style: none;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.timeline-challenges-container li {
  color: #cccccc;
  margin-bottom: 0.8rem;
  padding: 1rem;
  position: relative;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  min-width: 200px;
}

/* Where Companies Stall */
.stall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stall-item {
  background: rgba(220, 38, 38, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid #dc2626;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.stall-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stall-header h4 {
  color: #ffffff;
  font-size: 1.3rem;
}

.stall-percentage {
  background: linear-gradient(135deg, #dc2626, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
}

.stall-content p {
  color: #cccccc;
  line-height: 1.6;
}

/* Barriers Grid (Why They Stall) */
.barriers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.barrier-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid #2563eb;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.barrier-item[data-impact="high"] {
  border-left-color: #dc2626;
}

.barrier-item[data-impact="medium"] {
  border-left-color: #e7e247;
}

.barrier-item[data-impact="low"] {
  border-left-color: #10b981;
}

.barrier-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.barrier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.barrier-header h4 {
  color: #ffffff;
  font-size: 1.3rem;
}

.barrier-percentage {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.barrier-content p {
  color: #cccccc;
  line-height: 1.6;
}

/* Enabler Filters */
.enabler-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* CRITICAL: Success Enablers - fade instead of hide */
.enablers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.enabler-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 1;
  transform: scale(1);
}

.enabler-card.faded {
  opacity: 0.4 !important;
  transform: scale(0.95) !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.enabler-card:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  opacity: 1;
}

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

.enabler-header h4 {
  color: #ffffff;
  font-size: 1.2rem;
  text-align: left;
}

.enabler-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enabler-badge.high {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.enabler-badge.foundation {
  background: rgba(37, 99, 235, 0.2);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.enabler-badge.medium {
  background: rgba(231, 226, 71, 0.2);
  color: #e7e247;
  border: 1px solid rgba(231, 226, 71, 0.3);
}

.enabler-metric {
  font-size: 2rem;
  font-weight: 800;
  color: #e7e247;
  margin-bottom: 1rem;
}

.enabler-card p {
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.enabler-source {
  font-size: 0.8rem;
  color: #cccccc;
  font-style: italic;
}

/* Impact Matrix */
.matrix-container {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

/* Enhanced Conclusion Section */
.conclusion-section {
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
  text-align: center;
}

.conclusion-subtitle {
  font-size: 1rem;
  color: #e7e247;
  margin-bottom: 3rem;
  font-weight: 500;
}

.conclusion-counter {
  margin: 1.5rem 0;
}

.counter-number {
  font-size: 8rem;
  font-weight: 900;
  color: #e7e247;
  text-shadow: 0 0 30px rgba(231, 226, 71, 0.5);
  animation: counterPulse 2s ease-in-out infinite alternate;
}

@keyframes counterPulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.counter-label {
  font-size: 1.2rem;
  color: #cccccc;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.key-statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1rem;
}

.stat-description {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.9rem;
  color: #cccccc;
  font-style: italic;
}

/* QR Code */
.qr-code {
  margin-top: 2rem;
  text-align: center;
}

.qr-code img {
  width: 250px;
  height: 250px;

}

.qr-code-caption {
  font-size: 1.2rem;
  color: #cccccc;
}

/* Sources Section */
.sources-section {
  background: rgba(16, 185, 129, 0.05);
}

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

.source-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.source-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.source-item h4 {
  color: #10b981;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.source-item p {
  color: #cccccc;
  line-height: 1;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 100px;
  right: 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-message {
  font-weight: 500;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(20px);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #cccccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body h3 {
  color: #2563eb;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-stat {
  text-align: center;
}

.modal-stat-label {
  display: block;
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.modal-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e7e247;
}

.modal-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-top: 1rem;
  
  }

  .timeline-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .key-statistics {
    grid-template-columns: 1fr;
  }

  .counter-number {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  html {
    scroll-snap-type: none;
  }

  .container {
    padding: 0 1rem;
    margin-top: 1rem;
  }

  #growth-chart,
  #maturity-chart,
  #sector-chart,
  #impact-matrix-chart {
    height: 100%;
  }

  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .barriers-grid,
  .stall-grid {
    grid-template-columns: 1fr;
  }

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

  .growth-insights {
    grid-template-columns: 1fr;
  }

  .maturity-stats {
    flex-direction: column;
  }

  .timeline-stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .modal-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .counter-number {
    font-size: 4rem;
  }

  .share-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .enabler-filters {
    flex-direction: column;
    align-items: center;
  }

  .timeline-controls {
    flex-direction: column;
    align-items: center;
  }

  .counter-number {
    font-size: 3rem;
  }

  .key-statistics {
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }
}