/* JumpStart Honors Precalc — landing styles */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle math-grid background for hero */
.grid-bg {
  background-image:
    linear-gradient(rgba(124, 147, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 147, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

/* Feature cards on landing */
.feature-card {
  background: linear-gradient(180deg, rgba(26, 32, 51, 0.6) 0%, rgba(15, 20, 34, 0.6) 100%);
  border: 1px solid rgba(42, 49, 72, 0.6);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.feature-card:hover {
  border-color: rgba(91, 115, 255, 0.4);
  transform: translateY(-2px);
}

/* Curriculum cards */
.curriculum-card {
  display: block;
  background: linear-gradient(180deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 34, 0.5) 100%);
  border: 1px solid rgba(42, 49, 72, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.curriculum-card:hover {
  border-color: rgba(91, 115, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 115, 255, 0.08);
}
.curriculum-card-locked {
  opacity: 0.78;
  cursor: default;
}
.curriculum-card-locked:hover {
  border-color: rgba(42, 49, 72, 0.5);
  transform: none;
  box-shadow: none;
}

/* FAQ */
.faq-item {
  background: rgba(15, 20, 34, 0.6);
  border: 1px solid rgba(42, 49, 72, 0.6);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #7c93ff;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* MailerLite font override — match site's Inter stack */
#mlb2-40739030.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-40739030.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-40739030.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input,
#mlb2-40739030.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button,
#mlb2-40739030.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4,
#mlb2-40739030.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: #2a3148; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #3d4566; }
