/* Styles adapted from Styles.module.css */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- General Layout --- */
.wrapper {
  max-width: 960px;
  display: flex;
  width: 100%;
  margin: 0 auto 40px auto; /* Center wrapper and add bottom margin */
  padding: 0 20px; /* Consistent padding */
  flex-direction: column; /* Default to column for content flow */
}

/* --- Header specific --- */
.header-wrapper {
  max-width: 960px;
  display: flex;
  width: 100%;
  margin: 0 auto; /* Center header content */
  padding: 20px; /* Padding for header */
  justify-content: space-between; /* Space between logo and potential nav */
  align-items: center;
}

/* --- Hero Section (Homepage) --- */
.hero {
  flex-direction: column;
  align-items: center;
  justify-content: start;
  display: flex;
  min-height: 60vh; /* Reduced height */
  padding-top: 80px; /* Adjusted padding */
  text-align: center;
  margin-bottom: 60px; /* Space after hero */
}

.hero h1 {
  margin-bottom: 15px;
}

.hero p {
  color: #D0D0D0; /* Slightly lighter paragraph color */
  font-size: 20px;
  font-weight: 400;
  margin: 8px 0;
  letter-spacing: 0px;
  max-width: 600px; /* Limit width of hero text */
}

/* --- Waitlist/Action Button --- */
.action-button {
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  text-decoration: none; /* Ensure no underline if used as link */
  display: inline-block; /* Proper button display */
}

.action-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  color: #fff; /* Ensure text color remains */
}

.wrapper.blog { 
  max-width: 690px;
  text-align: justify;
  letter-spacing: -0.5px;
}

.blog h2 {
  padding:0 !important;
  font-size:1.8em !important;
  margin-top:0;
}

.blog .small {
  font-size:0.8em;
  width:50%;
  align-self: center;
  justify-self: center;
}

/* --- FAQ Section --- */
.faq-container {
  /* Uses .wrapper for max-width and padding */
  padding-top: 60px; /* Adjusted padding */
  padding-bottom: 60px;
  width: 100%;
}

.faq-item {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.faq-item h2 { /* Style FAQ questions */
  margin-bottom: 10px;
  font-size: 24px;
  color: #E0E0E0;
}

.faq-item p { /* Style FAQ answers */
   color: #C0C0C0;
   font-size: 17px;
}
a {
   color: #ef4e7b;
}

a:hover {
     border-bottom-color: #ef4e7b;
}

.video {
  display:flex;
  justify-content:center;
  margin-bottom:20px;
}

video {
  width:100%;
}

/* Modal styles - These won't be functional without JS, but define appearance */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 31, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: rgba(25, 25, 45, 0.95); /* More opaque */
  padding: 2.5rem; /* Increased padding */
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(50, 200, 255, 0.2);
  color: #F0F0F0;
  box-shadow: 0 10px 40px rgba(0,0,0, 0.4);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 2.5rem; /* Larger close button */
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  transition: color 0.2s ease;
}
.modal-close:hover {
   color: #fff;
}

.modal-content h2 {
   margin-top: 0;
   margin-bottom: 1.5rem;
   text-align: center;
   font-size: 28px;
}

.email-input {
  width: 100%;
  padding: 1rem; /* Larger padding */
  margin: 1rem 0 1.5rem 0; /* Adjusted margin */
  border: 1px solid rgba(50, 200, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #F0F0F0;
  font-size: 16px; /* Ensure readable font size */
}
.email-input::placeholder {
   color: #aaa;
}

.email-button { /* Style for button inside modal */
  width: 100%;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(50, 200, 255, 0.15);
  border: 1px solid rgba(50, 200, 255, 0.3);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(50, 200, 255, 0.1);
}

.email-button:hover {
  background: rgba(50, 200, 255, 0.25);
  border-color: rgba(50, 200, 255, 0.5);
  box-shadow: 0 0 40px rgba(50, 200, 255, 0.2);
}

.signup-success {
  color: #32c8ff;
  text-align: center;
  padding: 1rem;
  font-size: 17px;
  line-height: 1.5;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Inter:wght@400;500;600&display=swap');

.waitlist-btn {
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.waitlist-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.modal-content {
  position: relative;
  background: rgba(25, 25, 25, 0.9);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F0F0F0;
}

.email-input {
  width: 100%;
  padding: 0.75rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #F0F0F0;
}

.email-button {
  width: 100%;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.email-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.signup-success {
  color: #ffffff;
  text-align: center;
  padding: 1rem;
}

.wrapper {
  max-width: 960px;
  display: flex;
  width: 100%;
  margin-bottom: 40px; /* Added margin at the bottom */
}

.wrapper div {
  padding: 0 40px; /* Increased horizontal padding */
}

.hero {
  flex-direction: column;
  align-items: center;
  justify-content: start;
  display: flex;
  min-height: 80vh;
  padding-top: 120px;
}

.blog h1 { 
  margin-bottom:24px;
  font-size:2em;
}

.hero h2 {
  margin-top: 0px;
  margin-bottom: 10px;
}

.hero img {
  position: absolute;
  z-index: -1;
  right: -550px;
}

.hero div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 300px;
}

.hero p {
  color: #F0F0F0;
  font-size: 20px;
  font-weight: 400;
  margin: 6px;
  letter-spacing: 0px;
}

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary {
  flex-direction: column;
  align-items: start;
}

.summary ul {
  width: 50%;
  padding: 0px;
}

.summary li {
  display: flex;
  align-items: start;
}

.summary .list_icon {
  margin-right: 20px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-post {
  color: #F0F0F0;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  display: inline;
}

.blog-post:hover {
  color: #ef4e7b;
}

.blog-post h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #F0F0F0;
}

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

.modal-content {
  position: relative;
  background: rgba(25, 25, 45, 0.9);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(50, 200, 255, 0.2);
  color: #F0F0F0;
}

.close {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #F0F0F0;
}

.email-input {
  width: 100%;
  padding: 0.75rem;
  margin: 1rem 0;
  border: 1px solid rgba(50, 200, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #F0F0F0;
}

.email-button {
  width: 100%;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(50, 200, 255, 0.15);
  border: 1px solid rgba(50, 200, 255, 0.3);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(50, 200, 255, 0.1);
}

.email-button:hover {
  background: rgba(50, 200, 255, 0.25);
  border-color: rgba(50, 200, 255, 0.5);
  box-shadow: 0 0 40px rgba(50, 200, 255, 0.2);
}

.signup-success {
  color: #32c8ff;
  text-align: center;
  padding: 1rem;
}

/* FAQ styles */
.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-wrapper {
  width: 100%;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

.faq-item h2 {
  margin-bottom: 10px;
}

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

.email-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Add this class for the spinning animation */
.spin {
  animation: spin 1s linear infinite;
}