* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav-logo {
  margin-left: -100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.nav-logo:hover,
.nav-logo:focus,
.nav-logo:active {
  text-decoration: none !important;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo h2 {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
  text-decoration: none;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: #ffffff;
}

/* White navbar state on scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
}

.navbar.scrolled .nav-logo h2 {
  color: #000000 !important;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 500 !important;
}

.navbar.scrolled .nav-logo img {
  filter: none !important;
}

.navbar.scrolled .nav-menu a {
  color: #000000 !important;
}

.navbar.scrolled .nav-menu a:hover {
  color: #333333 !important;
}

.navbar.scrolled .nav-menu a.active {
  color: #000000 !important;
}

.navbar.scrolled .nav-menu a::after {
  background: #000000 !important;
}

/* Hero Section styles moved above */

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  text-align: left;
  z-index: 10;
  padding: 0 4rem;
  max-width: 800px;
  position: absolute;
  top: 35%;
  left: 5%;
  transform: translateY(-50%);
  width: 60%;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.hero-logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #00ffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  margin: 0;
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-mission {
  font-family: 'Roboto', sans-serif;
  font-size: 2.3rem;
  font-weight: 600 !important;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  margin: 0 0 2rem 0;
  text-align: left;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem !important;
  font-weight: 450 !important;
  color: #cccccc;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  text-align: left;
  letter-spacing: 0.5px;
  margin: 0 0 3rem 0;
}

.hero-actions {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: flex-start;
  z-index: 100;
  position: relative;
}

.hero-actions .countdown-badge {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

.hero-actions .hero-rfs-button {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.hero-actions .countdown-badge-red {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

#rfsCloseBadge:not([style*="display: none"]) ~ * .countdown-badge-red,
.hero-actions:has(#rfsCloseBadge:not([style*="display: none"])) .countdown-badge-red {
  grid-column: 1 / -1;
  grid-row: 2;
}

.countdown-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  backdrop-filter: blur(10px);
  min-width: 160px;
  max-width: 160px;
  text-align: center;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 56px;
}

.countdown-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #86efac;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.countdown-timer {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.countdown-badge-red {
  background: rgba(220, 38, 38, 0.15);
  border: 2px solid #dc2626;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  backdrop-filter: blur(10px);
  min-width: 160px;
  text-align: center;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 56px;
}

.countdown-label-red {
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #fca5a5;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.hero-rfs-button {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 1rem 1rem;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 1000;
  position: relative;
  pointer-events: auto;
  outline: none;
  min-width: 160px;
  max-width: 160px;
  text-align: center;
}

.hero-rfs-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  cursor: pointer;
}

.volume-slider {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  pointer-events: none;
  padding: 20px;
  margin: -20px -20px 10px -20px;
}

.video-controls:hover .volume-slider,
.volume-slider:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.volume-slider.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.slider {
  -webkit-appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  transform: rotate(-90deg);
  transform-origin: center;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.video-mute-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-mute-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.mute-icon {
  font-size: 20px;
  filter: brightness(0) invert(1);
}

.overview-tweet {
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-tweet.visible {
  opacity: 1;
}

.twitter-tweet {
  margin: 0 auto !important;
  visibility: hidden;
}

.twitter-tweet iframe {
  visibility: visible !important;
}

/* Content Sections */
.content-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
}

.decrypt {
  opacity: 0;
  animation: fadeInDecrypt 0.8s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeInDecrypt {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#overview {
  height: auto;
  min-height: 100vh;
  padding: 6rem 0;
}

.overview-container {
  width: 100%;
  max-width: 100vw;
  padding: 0 4rem;
  z-index: 3;
  position: relative;
}

.overview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.overview-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.header-line {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 0 auto;
}

.overview-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 4rem;
  align-items: start;
}

.stats-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-block {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-block:hover {
  transform: translateX(10px);
  box-shadow: -10px 0 30px rgba(255, 255, 255, 0.2);
}

.content-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-block {
  background: rgba(255, 255, 255, 0.1);
  border-right: 4px solid #dc2626;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.info-block:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(10px);
}

.block-header {
  font-family: 'Roboto', sans-serif;
  color: #4a90e2;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.info-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.info-block strong {
  color: #ffffff;
  font-weight: 500;
}

.info-block u {
  text-decoration: none;
  color: #cccccc;
  font-weight: 500;
}

/* Strategy Section */
#strategy {
  height: auto;
  min-height: 100vh;
  padding: 6rem 0;
  background-image: url('/assets/images/image2.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.strategy-container {
  width: 100%;
  max-width: 100vw;
  padding: 0 4rem;
  z-index: 3;
  position: relative;
}

.strategy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.strategy-header .header-line {
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.strategy-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.strategy-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  max-width: 800px;
  margin: 2rem auto 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.strategy-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}

.objectives-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.objective-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #cccccc;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.objective-card:hover {
  transform: translateX(-10px);
  box-shadow: 10px 0 30px rgba(255, 255, 255, 0.2);
  height: auto;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.7);
}

.objective-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.objective-title {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.objective-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.objective-card:hover .objective-text {
  opacity: 1;
  max-height: 200px;
  margin-top: 1rem;
}

.foundation-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.foundation-block {
  background: rgba(255, 255, 255, 0.1);
  border-right: 4px solid #dc2626;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.foundation-block.highlight {
  background: rgba(255, 255, 255, 0.15);
  border-right: 4px solid #dc2626;
}

.foundation-block:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-10px);
}

.foundation-header {
  font-family: 'Roboto', sans-serif;
  color: #4a90e2;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.foundation-block.highlight .foundation-header {
  color: #4a90e2;
}

.objective-card p,
.foundation-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.objective-card strong,
.foundation-block strong,
.strategy-subtitle strong {
  color: #ffffff;
  font-weight: 500;
}

.objective-card u,
.foundation-block u,
.strategy-subtitle u {
  text-decoration: none;
  color: #cccccc;
  font-weight: 500;
}

/* Timeline Section */
#timeline {
  height: auto;
  min-height: 100vh;
  padding: 6rem 0;
}

.timeline-container {
  width: 100%;
  max-width: 100vw;
  padding: 0 4rem;
  z-index: 3;
  position: relative;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.timeline-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  max-width: 800px;
  margin: 2rem auto 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.timeline-graph {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 4rem 0;
  min-height: 300px;
}

.timeline-line {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}

.timeline-point {
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.point-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: all 0.3s ease;
  border: 3px solid;
}

.timeline-point.current .point-marker {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
  animation: pulse-timeline 2s infinite;
}

.timeline-point.upcoming .point-marker {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.5);
}

.timeline-point.completed .point-marker {
  background: #00ff00;
  border-color: #00ff00;
  color: #000000;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.status-label.completed {
  background: #00ff00;
  color: #000000;
}

.phase-number {
  font-size: 1.5rem;
}

.point-content {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  max-width: 200px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-point.current .point-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #cccccc;
  transform: translateY(-10px);
}

.status-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.status-label.current {
  background: #ffffff;
  color: #000000;
}

.point-content h4 {
  font-family: 'Roboto', sans-serif;
  color: #4a90e2;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.point-date {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.point-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.timeline-point:hover .point-content {
  transform: translateY(-25px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  border-color: #cccccc;
}

.timeline-point:hover .point-marker {
  transform: scale(1.1) translateY(-35px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.timeline-point.upcoming:hover .point-marker {
  border-color: #cccccc;
  color: #cccccc;
}

@keyframes pulse-timeline {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  }
}

.timeline-subtitle strong {
  color: #ffffff;
  font-weight: 500;
}

.timeline-subtitle u {
  text-decoration: none;
  color: #cccccc;
  font-weight: 500;
}

/* FAQ Section */
#faq {
  height: auto;
  min-height: 100vh;
  padding: 6rem 0;
}

.faq-container {
  width: 100%;
  max-width: 100vw;
  padding: 0 4rem;
  position: relative;
  z-index: 10;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.faq-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.faq-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  max-width: 800px;
  margin: 2rem auto 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.faq-layout {
  display: grid;
  grid-template-columns: 600px 800px;
  gap: 8rem;
  align-items: start;
  margin: 4rem auto;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 10;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
}

.faq-questions::-webkit-scrollbar {
  width: 6px;
}

.faq-questions::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.faq-questions::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.faq-questions::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.faq-category {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 4px solid #dc2626;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  position: relative;
  z-index: 10;
  font-size: 0.95rem;
}

.faq-category:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.faq-category.active {
  background: rgba(0, 0, 0, 0.8);
  border-right: 4px solid #ffffff;
}

.faq-question {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 4px solid #dc2626;
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  margin-left: 2rem;
  width: calc(100% - 2rem);
  position: relative;
  z-index: 10;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.faq-question.active {
  background: rgba(0, 0, 0, 0.8);
  border-right: 4px solid #ffffff;
}

.category-questions {
  display: none;
}

.category-questions.expanded {
  display: block;
}

.faq-answers {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #cccccc;
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: relative;
  min-height: 300px;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.faq-answers::before {
  content: 'Select a question to view the answer';
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.faq-answers.has-active::before {
  opacity: 0;
}

.answer-content {
  opacity: 0;
  position: absolute;
  top: 3rem;
  left: 3rem;
  right: 3rem;
  bottom: 3rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 2;
}

.answer-content.active {
  opacity: 1;
  position: static;
  pointer-events: auto;
  z-index: 2;
}

.answer-content h3 {
  font-family: 'Roboto', sans-serif;
  color: #4a90e2;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.answer-content p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.answer-content strong {
  color: #ffffff;
  font-weight: 500;
}

/* Resources Section */
#resources {
  height: auto;
  min-height: 100vh;
  padding: 6rem 0;
}

.resources-container {
  width: 100%;
  max-width: 100vw;
  padding: 0 4rem;
  z-index: 3;
  position: relative;
}

.resources-header {
  text-align: center;
  margin-bottom: 4rem;
}

.resources-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.resources-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  max-width: 800px;
  margin: 2rem auto 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.resource-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.resource-card:hover::before {
  left: 100%;
}

.resource-card:hover {
  border-color: #cccccc;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.resource-card h3 {
  font-family: 'Roboto', sans-serif;
  color: #4a90e2;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.resource-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-section {
  margin: 4rem auto 0 auto;
  max-width: 500px;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-right: 3px solid #dc2626;
  border-radius: 6px;
  backdrop-filter: blur(5px);
}

.contact-header {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.contact-section p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.contact-label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 120px;
}

.contact-value {
  color: #d0d0d0;
  font-weight: 400;
  font-size: 0.95rem;
}

.contact-value.active {
  color: #ffffff;
}

.resources-subtitle strong {
  color: #ffffff;
  font-weight: 500;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#overview::before {
  background: rgba(10, 10, 46, 0.8);
}

#strategy::before {
  background: rgba(10, 10, 46, 0.8);
}

#timeline::before {
  background: rgba(10, 10, 46, 0.8);
}

#resources::before {
  background: rgba(10, 10, 46, 0.8);
}

#faq::before {
  background: rgba(10, 10, 46, 0.8);
}

.section-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: 2rem;
}

.section-content h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #00ffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}

/* Overview Section Styling */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.overview-card {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.overview-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.overview-card:hover {
  border-color: #00ffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.overview-card h3 {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #00ffff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: scale(1.05);
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #cccccc;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Background Images for Sections */
#overview {
  background-image: url('/assets/images/image1.jpg');
}

#timeline {
  background-image: url('/assets/images/image3.jpg');
}

#resources {
  background-image: url('/assets/images/image4.png');
}

#faq {
  background-image: url('/assets/images/image5.jpg');
}

/* Quote Section */
.quote-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('/assets/images/image6.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.quote-content {
  max-width: 900px;
  margin: 4rem auto;
  text-align: center;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.quote-text {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.quote-attribution {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  font-weight: 400;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.95);
  padding: 3rem 2rem 2rem;
  text-align: center;
  margin-top: -1px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-seal {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

.footer-seal:hover {
  transform: scale(1.05);
}

.footer p {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 0.5rem 0;
    height: 60px;
  }

  .nav-container {
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .nav-logo {
    margin-left: 0;
  }

  .nav-logo h2 {
    font-size: 1rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-menu {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .nav-menu a {
    font-size: 0.8rem;
    padding: 0.3rem;
  }

  .rfp-button {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  /* Hero Section */
  .hero-content {
    padding: 0 1.5rem;
    width: 95%;
    top: 40%;
    left: 2.5%;
  }

  .hero-section {
    min-height: 100vh;
    height: auto;
  }

  .hero-mission {
    font-size: 1.4rem !important;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .countdown-badge {
    padding: 0.8rem 1rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  .countdown-timer {
    font-size: 0.9rem;
  }

  .hero-rfs-button {
    padding: 1rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    min-width: 160px;
    touch-action: manipulation;
  }

  .countdown-badge {
    min-height: 48px;
    padding: 1rem;
  }

  .hero-tweet {
    display: none;
  }

  /* Content Sections */
  .content-section {
    height: auto;
    min-height: auto;
    padding: 4rem 0;
  }

  /* Overview */
  .overview-container {
    padding: 0 1.5rem;
  }

  .overview-header h2 {
    font-size: 2rem;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-block {
    padding: 1.5rem;
    margin: 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .info-block {
    padding: 1.5rem;
  }

  .block-header {
    font-size: 1rem;
  }

  .info-block p {
    font-size: 0.95rem;
  }

  /* Strategy */
  .strategy-container {
    padding: 0 1.5rem;
  }

  .strategy-header h2 {
    font-size: 2rem;
  }

  .strategy-subtitle {
    font-size: 1rem;
  }

  .strategy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .objectives-column {
    order: 2;
  }

  .foundation-column {
    order: 1;
  }

  .objective-card {
    height: auto;
    min-height: 120px;
    padding: 1.5rem;
  }

  .objective-card:hover {
    height: auto;
    min-height: 180px;
  }

  .objective-icon {
    font-size: 2rem;
  }

  .objective-title {
    font-size: 0.95rem;
  }

  .foundation-block {
    padding: 1.5rem;
  }

  .foundation-header {
    font-size: 1rem;
  }

  .foundation-block p {
    font-size: 0.95rem;
  }

  /* Timeline */
  .timeline-container {
    padding: 0 1.5rem;
  }

  .timeline-header h2 {
    font-size: 2rem;
  }

  .timeline-subtitle {
    font-size: 1rem;
  }

  .timeline-graph {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: auto;
  }

  .timeline-line {
    display: none;
  }

  .point-content {
    max-width: 280px;
    padding: 1.2rem;
  }

  .point-content h4 {
    font-size: 1rem;
  }

  .point-date {
    font-size: 0.85rem;
  }

  .point-description {
    font-size: 0.8rem;
  }

  /* Resources */
  .resources-container {
    padding: 0 1.5rem;
  }

  .resources-header h2 {
    font-size: 2rem;
  }

  .resources-subtitle {
    font-size: 1rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .resource-card {
    padding: 2rem 1.5rem;
    min-height: 120px;
    touch-action: manipulation;
  }

  .resource-card h3 {
    font-size: 1.2rem;
  }

  .resource-card p {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 1.5rem;
    margin: 3rem auto 0;
    max-width: 100%;
  }

  .contact-header {
    font-size: 1.1rem;
  }

  .contact-section p {
    font-size: 0.9rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .contact-label {
    font-size: 0.85rem;
    min-width: auto;
  }

  .contact-value {
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-container {
    padding: 0 1.5rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-header {
    padding: 1.2rem 1.5rem;
  }

  .category-header span:first-child {
    font-size: 0.95rem;
  }

  .question-item {
    padding: 1.2rem 1.5rem;
  }

  .question-item span {
    font-size: 0.95rem;
  }

  .faq-answers {
    padding: 2rem;
    min-height: 250px;
  }

  .answer-content {
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
  }

  .answer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .answer-content p {
    font-size: 0.95rem;
  }

  /* Quote Section */
  .quote-section {
    height: auto;
    padding: 4rem 0;
  }

  .quote-content {
    margin: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .quote-text {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .quote-attribution {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo,
  .footer-seal {
    height: 35px;
  }

  .footer p {
    font-size: 0.8rem;
  }
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10000;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: #000000;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile video optimization */
@media (max-width: 768px) {
  .hero-video {
    pointer-events: none;
    -webkit-playsinline: true;
    playsinline: true;
  }

  .overview-tweet.visible {
    opacity: 1;
    max-width: 90vw;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    transition: left 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 9999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 1rem;
    display: block;
    width: 100%;
    text-align: center;
    min-height: 48px;
    touch-action: manipulation;
    color: #ffffff !important;
  }

  .rfp-button {
    min-height: 48px !important;
    padding: 1rem 1.5rem !important;
    touch-action: manipulation;
  }

  .hero-mission {
    font-size: 1.2rem !important;
  }

  /* Prevent video interaction on mobile */
  .hero-video {
    pointer-events: none !important;
    touch-action: none !important;
  }

  .hero-section {
    touch-action: pan-y;
  }

  .overview-header h2,
  .strategy-header h2,
  .timeline-header h2,
  .resources-header h2 {
    font-size: 1.8rem;
  }

  .faq-header h2 {
    font-size: 1.8rem;
  }

  .contact-section {
    margin: 2rem auto 0;
    padding: 1rem;
  }
}

/* Safari/iOS fix for background images */
@supports (-webkit-touch-callout: none) {
  .content-section,
  #overview,
  #timeline,
  #resources,
  #faq {
    background-attachment: scroll !important;
  }
}
