/* Base styling */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0d20;
  color: #f5f5f7;
  line-height: 1.6;
}

/* Hero section */
.hero {
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 8, 31, 0.6), rgba(7, 14, 35, 0.9));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #e0e0e9;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #6a5acd;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #5540c7;
}

/* Generic section styling */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #d0d0e0;
}

.intro-text {
  font-size: 1rem;
  color: #c5c6da;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.benefit {
  padding: 30px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
}

.benefit i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #b297ff;
}

.benefit h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #ffffff;
}

.benefit p {
  font-size: 0.95rem;
  color: #c0c3dd;
  line-height: 1.4;
}

/* Waitlist section */
.waitlist-section {
  background: #0b0b20;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top bar styling for the coming soon notice */
.top-bar {
  background-color: #21124d;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Assessment call to action */
.assessment-call {
  background: #0b0b20;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Assessment section styling */
.assessment-section {
  background: #0d0d20;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.assessment-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #d0d0e0;
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Input fields for name and email */
.input-field {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  background-color: #1b1f3a;
  color: #e0e0e9;
  font-size: 1rem;
  margin-bottom: 20px;
}
.input-field::placeholder {
  color: #7b7e99;
}

/* Quiz question styling overrides for assessment */
.assessment-section .question {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.assessment-section .question p {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #f1f0fa;
}
.assessment-section .question label {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
  color: #d8d3ec;
}
.assessment-section .question input[type="radio"] {
  margin-right: 0.5rem;
}

/* Submit button for assessment */
.submit-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1e014e;
  background-color: #ffcd5d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}

.submit-btn:hover {
  background-color: #ffa90e;
}

/* Result styling for assessment */
.assessment-section .result {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  color: #fdfcff;
  display: none;
}

.waitlist-text {
  font-size: 1rem;
  color: #c5c6da;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.input {
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  width: 100%;
  max-width: 400px;
  background-color: #1b1f3a;
  color: #e0e0e9;
  font-size: 1rem;
}

.input::placeholder {
  color: #7b7e99;
}

.privacy-text {
  font-size: 0.8rem;
  color: #7b7e99;
  margin-top: 20px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #0a0a1f;
  color: #6d6f8c;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top bar announcing the upcoming launch */
.top-bar {
  background-color: #6a5acd;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Assessment call-to-action section */
.assessment-call-section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.assessment-call-section .assessment-text {
  font-size: 1rem;
  color: #c5c6da;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Assessment section */
.assessment-section {
  background: #0b0b20;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.assessment-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #d0d0e0;
}

.assessment-section .assessment-intro {
  font-size: 1rem;
  color: #c5c6da;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Name and email fields */
.assessment-section .name-email {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.assessment-section .name-email p {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #f1f0fa;
}

.assessment-section .name-email input {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: none;
  background-color: #1b1f3a;
  color: #e0e0e9;
  font-size: 1rem;
}

.assessment-section .name-email input::placeholder {
  color: #7b7e99;
}

/* Question styling within assessment */
.assessment-section .question {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.assessment-section .question p {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #f1f0fa;
}

.assessment-section .question label {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
  color: #d8d3ec;
  font-size: 0.95rem;
}

.assessment-section .question input[type="radio"] {
  margin-right: 0.5rem;
}

/* Submit button styling for assessment */
.assessment-section .submit {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0;
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1e014e;
  background-color: #ffcd5d;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.assessment-section .submit:hover {
  background-color: #ffa90e;
}

/* Result container styling */
.assessment-section .result {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  color: #fdfcff;
}