/* Founding CTA Section Styles */
:root {
  --founding-orange: #ff7b00;
  --founding-orange-light: #ffb800;
  --founding-navy: #0a1628;
  --founding-navy-light: #1e3a5f;
  --founding-cyan: #00d4ff;
  --founding-white: #ffffff;
}

#founding-section {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
    sans-serif;
  background: #000;
  min-height: 100vh;
}

/* Founding CTA Section - Cinematic */
.founding-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Video/Cinematic Background */
.founding-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Animated gradient background */
.founding-gradient-mesh {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 123, 0, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 184, 0, 0.08) 0%,
      transparent 40%
    );
  animation: foundingMeshFloat 20s ease-in-out infinite;
}

@keyframes foundingMeshFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(20px, 10px) scale(0.98);
  }
}

/* Cinematic image overlay */
.founding-cinematic-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.7) 0%,
      rgba(10, 22, 40, 0.85) 50%,
      rgba(10, 22, 40, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1569154941061-e231b4725ef1?w=1920");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

/* Light streaks */
.founding-light-streak {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 123, 0, 0.3) 50%,
    transparent 100%
  );
  animation: foundingStreak 8s linear infinite;
}

.founding-light-streak:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.founding-light-streak:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
}
.founding-light-streak:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
}
.founding-light-streak:nth-child(4) {
  left: 70%;
  animation-delay: 6s;
}
.founding-light-streak:nth-child(5) {
  left: 90%;
  animation-delay: 8s;
}

@keyframes foundingStreak {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Main Content */
.founding-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Elegant header */
.founding-header {
  animation: foundingFadeInUp 1s ease-out;
}

@keyframes foundingFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founding-eyebrow {
  font-size: 0.9rem;
  color: var(--founding-orange-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.founding-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.founding-title span {
  background: linear-gradient(
    135deg,
    var(--founding-orange),
    var(--founding-orange-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founding-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Member benefits preview */
.founding-benefits-teaser {
  margin-bottom: 3rem;
  animation: foundingFadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.founding-benefit-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.founding-benefit-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.founding-benefit-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--founding-orange),
    var(--founding-orange-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founding-benefit-icon::after {
  content: "✓";
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  position: absolute;
}

/* CTA Buttons */
.founding-cta-container {
  animation: foundingFadeInUp 1s ease-out 0.5s;
  animation-fill-mode: both;
}

.founding-btn {
  display: inline-block;
  padding: 1.35rem 3rem;
  background: linear-gradient(
    135deg,
    var(--founding-orange),
    var(--founding-orange-light)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 123, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.founding-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.founding-btn:hover::before {
  width: 400px;
  height: 400px;
}

.founding-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 123, 0, 0.4);
}

.founding-btn-text {
  position: relative;
  z-index: 1;
}

/* Trust line */
.founding-trust-line {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .founding-content {
    padding: 0 1.5rem;
  }

  .founding-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .founding-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .founding-benefit-highlights {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .founding-benefits-teaser {
    margin-bottom: 2rem;
  }

  .founding-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
  }

  .founding-light-streak {
    display: none; /* Hide light streaks on mobile for performance */
  }

  .founding-gradient-mesh {
    animation-duration: 30s; /* Slower animation on mobile */
  }
}
