.learn-more-container {
  height: auto;
  min-height: 100vh;
  padding: 0 2rem;
}

.hero-section {
  padding: 10rem 2rem 5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-video-carousel {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.video-slide {
  min-width: 80%;
  margin: 0 10%;
  transform: scale(0.8);
  transition: transform 0.5s ease;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-slide.active {
  transform: scale(1);
  z-index: 2;
}

.video-slide video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #000;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #4f6fe0;
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(79, 111, 224, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
  background: rgba(79, 111, 224, 0.6);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@media (max-width: 768px) {
  .video-slide {
    min-width: 90%;
    margin: 0 5%;
  }
  
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  
  .carousel-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* Replaced circle animations with sleeker line effects */
.title-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Remove old pulse circles and replace with modern line accents */
.pulse-circle {
  display: none;
}

.title-container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4f6fe0, transparent);
  animation: slide-right 8s linear infinite;
  z-index: -1;
}

.title-container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -100px;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4f6fe0, transparent);
  animation: slide-left 7s linear infinite;
  z-index: -1;
}

@keyframes slide-right {
  0% { transform: translateX(-100px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100% + 200px)); opacity: 0; }
}

@keyframes slide-left {
  0% { transform: translateX(100px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(-100% - 150px)); opacity: 0; }
}

.main-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #4f6fe0, #fff);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: text-shine 5s linear infinite;
  position: relative;
  z-index: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.main-title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 111, 224, 0.6), transparent);
  transform: translateX(-50%);
}

@keyframes text-shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.accent {
  color: #4f6fe0;
  text-shadow: 0 0 15px rgba(79, 111, 224, 0.5);
}

.hero-description {
  font-size: 1.5rem;
  color: #8892b0;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Image - improved for mobile */
.hero-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-screenshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(79, 111, 224, 0.3);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 50px rgba(79, 111, 224, 0.3);
  pointer-events: none;
}

/* Features Section - Grid Layout */
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.features-heading {
  grid-column: 1 / -1; /* Span all columns */
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
}

.features-heading::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4f6fe0, transparent);
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.feature-card {
  background: linear-gradient(to right, rgba(26, 31, 41, 0.8), rgba(18, 20, 28, 0.8));
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(79, 111, 224, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  min-height: 220px;
}

/* Feature Card Elements - simplified */
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #1a1f29, #222835);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #a1aac5;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Style for feature lists - always visible */
.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #a1aac5;
}

.feature-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: #4f6fe0;
}

@media (max-width: 992px) {
  .main-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }
  
  header {
    flex-direction: column;
    align-items: center;
    position: static;
    padding-top: 2rem;
  }
  
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    width: 95%;
    margin: 0 auto 2rem;
  }
  
  /* Ensure hero image is properly contained on mobile */
  .main-screenshot {
    max-width: 100%;
    border-radius: 8px;
  }
  
  .feature-title {
    font-size: 1.4rem;
  }
  
  .beta-access-section {
    padding: 3rem 2rem;
    margin: 3rem auto;
  }
  
  .beta-access-section h2 {
    font-size: 1.8rem;
  }
  
  .beta-access-button {
    width: auto; /* Let it size to content instead of 100% width */
    padding: 1rem 1.5rem;
  }
  
  .secondary-link {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  
  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-video-carousel::-webkit-scrollbar {
  display: none;
}
.hero-video-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

  /* Change to single column layout on mobile */
  .features-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  /* Adjust any feature card margins/padding for mobile view */
  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Beta Access Section */
.beta-access-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(to right, rgba(26, 31, 41, 0.9), rgba(18, 20, 28, 0.9));
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 111, 224, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.beta-access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 111, 224, 0.8), transparent);
}

.beta-access-inner {
  position: relative;
  z-index: 1;
}

.beta-access-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.beta-access-button {
  background: linear-gradient(90deg, #4f6fe0, #6a5be2);
  border: none;
  padding: 1.2rem 2.5rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(79, 111, 224, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.beta-access-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(79, 111, 224, 0.4);
  background: linear-gradient(90deg, #5c7dff, #7668ff);
}

.beta-access-button:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(79, 111, 224, 0.3);
}

.beta-access-button .arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.beta-access-button:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  /* ...existing code... */
  
  .beta-access-section {
    padding: 3rem 2rem;
    margin: 3rem auto;
  }
  
  .beta-access-section h2 {
    font-size: 1.8rem;
  }
  
  .beta-access-button {
    width: auto; /* Let it size to content instead of 100% width */
    padding: 1rem 1.5rem;
  }
}