* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: #F8FAFC;
  color: #1D2837;
}

/* NAV */
.navbar {
  background: #ffffff;
  padding: 18px 24px;
  border-bottom: 1px solid #E5E7EB;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

/* LAYOUT */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* HERO */
.question-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.sub-question {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* LIST */
.question-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 40px;
}

.question-list li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6B7280;
}

.question-list span {
  color: #1D2837;
  font-weight: 600;
  margin-right: 8px;
}

/* HIGHLIGHTS */
.highlight {
  color: #1D2837;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(29, 40, 55, 0.1);
  z-index: -1;
}

.highlight-soft {
  color: #1D2837;
  font-weight: 600;
}

/* PLATFORM INTRO */
.platform-intro h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.platform-intro p {
  font-size: 17px;
  color: #6B7280;
  margin-bottom: 10px;
}

.launch {
  margin-top: 10px;
}

/* WAITLIST */
.waitlist {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.waitlist input {
  flex: 1;
  min-width: 240px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  font-size: 15px;
}

.waitlist button {
  padding: 16px 24px;
  border-radius: 12px;
  background: #1D2837;
  color: #ffffff;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

/* META TEXT */
.interest {
  margin-top: 14px;
  font-size: 14px;
  color: #6B7280;
}

.note {
  margin-top: 10px;
  font-size: 13px;
  color: #6B7280;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 16px;
  font-size: 13px;
  color: #6B7280;
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(14px);
  animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
