/* ===== Fonts and Reset ===== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Nunito', sans-serif;
    background: #E0F6FF;
    color: #1A2E4A;
}

/* ===== NAV BAR ===== */

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 2px 12px rgba(88,200,245,0.15);
}

.logo{
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    color: #2BA8DC;
    font-weight: 800;
}

.nav-btn{
    background: #58C8F5;
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: background 0.2s;
}

.nav-btn:hover{
    background: #2BA8DC;
}

/* ===== HERO ====== */

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(160deg, #58C8f5 0%, #2ba8dc 60%, #1a6bad 100%);
}

.hero h1{
    font-family: 'Fredoka One', cursive;
    font-size: 56px;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.subtitle{
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-btn{
    background: #ffd700;
    color: #1a2e4a;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 0 #f5a623;
    transition: transform 0.1s, box-shadow 0.1s;
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px
}

.cta-btn:hover{
    transform: translateY(3px);
    box-shadow: 0 3px 0 #f5a623;
}

/* ===== WAITLIST ===== */

.waitlist{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
    background: white;
}

.waitlist h2{
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    color: #1a2e4a;
    margin-bottom: 12px;
}

.waitlist p{
    font-size: 16px;
    color: #5a7a9a;
    margin-bottom: 32px;
    max-width: 460px;
}

.waitlist form{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist input{
    padding: 14px 20px;
    border: 2px solid #d0ecf9;
    border-radius: 999px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    width: 280px;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist input:focus{
    border-color: #58c8f5;
}

.waitlist button{
    background: #2ba8dc;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 0 #1a7bad;
    transition: transform 0.1s;
}

.waitlist button:hover{
    transform: translateY(-2px);
}

/* ===== LUMA ===== */

.luma-hero{
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
    animation: float 3.5s ease-in-out infinite;
    margin-bottom: 16px;
}

@keyframes float{
    0%, 100% { transform: translateY(0px);}
    50%      { transform: translateY(-16px);}
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 40px;
  background: #E0F6FF;
  text-align: center;
}

.features h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  color: #1A2E4A;
  margin-bottom: 8px;
}

.features-sub {
  font-size: 16px;
  color: #5A7A9A;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  width: 260px;
  box-shadow: 0 8px 32px rgba(88,200,245,0.15);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  color: #1A2E4A;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #5A7A9A;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 40px;
  background: white;
  text-align: center;
}

.how-it-works h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  color: #1A2E4A;
  margin-bottom: 8px;
}

.how-sub {
  font-size: 16px;
  color: #5A7A9A;
  margin-bottom: 48px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: #E0F6FF;
  border-radius: 24px;
  padding: 36px 24px;
  width: 240px;
  position: relative;
  transition: transform 0.2s;
}

.step:hover {
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #2BA8DC;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.step-icon {
  font-size: 44px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  color: #1A2E4A;
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: #5A7A9A;
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: #58C8F5;
  font-weight: 900;
}

@media (max-width: 768px) {
  .step-arrow {
    transform: rotate(90deg);
  }
}

/* ===== FOOTER ===== */
footer {
  background: #1A2E4A;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: white;
  font-weight: 800;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #58C8F5;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
