:root{
  --accent-purple:#7b4da3;
  --text-dark:#2b2b2b;
  --card:#ffffffcc;
  --stroke: rgba(0,0,0,.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }

html, body { height:100%; }

body{
  font-family: 'Fredoka', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.35;
  overflow-x: hidden;

  /* Airy gradient similar to your mockups */
  background:
    radial-gradient(900px 520px at 12% 25%, rgba(247,231,119,.95), rgba(247,231,119,0) 65%),
    radial-gradient(900px 520px at 55% 20%, rgba(191,240,160,.85), rgba(191,240,160,0) 62%),
    radial-gradient(900px 520px at 88% 28%, rgba(199,200,255,.92), rgba(199,200,255,0) 62%),
    linear-gradient(90deg, #f7e777 0%, #c7f0a8 50%, #c7c8ff 100%);
}

a{ color:inherit; text-decoration:none; }
.link{ text-decoration: underline; text-underline-offset: 3px; opacity:.85; }
.link:hover{ opacity:1; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 26px 5vw 10px;
  max-width: 1320px;
  margin: 0 auto;
}

.logo{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--stroke);
  padding: 12px 18px;
  transition: transform .15s ease, filter .15s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: var(--accent-purple);
  color: white;
  border-color: transparent;
  padding: 12px 18px;
}

.btn-secondary{
  background: rgba(255,255,255,.6);
}

/* Hero */
.hero{
  display:flex;
  gap: 42px;
  align-items:center;
  justify-content:space-between;
  padding: 20px 5vw 36px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-content{
  flex: 1 1 520px;
  min-width: 320px;
}

.tagline{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  opacity: .75;
}

h1{
  font-size: clamp(56px, 6vw, 92px);
  color: var(--accent-purple);
  line-height: 1.02;
  margin: 10px 0 10px;
}

.description{
  font-size: clamp(18px, 2vw, 22px);
  opacity: .92;
  margin-bottom: 18px;
}

.notify{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 10px 0 18px;
  max-width: 520px;
}

.notify-form{
  display:flex;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.notify-form input{
  flex: 1 1 auto;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  font: inherit;
  outline: none;
}
.notify-form input:focus{
  border-color: rgba(123,77,163,.55);
  box-shadow: 0 0 0 4px rgba(123,77,163,.15);
}

.subtext{
  font-size: 13px;
  opacity: .85;
}

/* Mini features pills (3 small cards) */
.mini-features{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pill{
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.pill span:first-child{
  display:block;
  font-weight: 800;
  color: var(--accent-purple);
}
.pill span:last-child{
  display:block;
  font-weight: 700;
  opacity: .9;
}

/* Hero image */
.hero-image{
  flex: 1 1 520px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.floating-image{
  width: min(640px, 46vw);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,0.14));
  border-radius: 18px;
  /* keep it crisp */
  image-rendering: auto;
}

/* Features section */
.features{
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 5vw 60px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.feature-card{
  background: rgba(255,255,255,.35);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.icon{ font-size: 30px; margin-bottom: 10px; }
.feature-card h3{
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--accent-purple);
}
.feature-card p{ opacity: .9; }

/* Footer */
.footer{
  padding: 26px 5vw 40px;
}
.footer-inner{
  max-width: 1320px;
  margin: 0 auto;
  display:flex;
  justify-content:space-between;
  gap: 16px;
  font-size: 13px;
  opacity: .85;
}

/* Responsive */
@media (max-width: 980px){
  .hero{ flex-direction: column; align-items: stretch; }
  .hero-image{ order: 2; }
  .floating-image{ width: min(820px, 92vw); border-radius: 16px; }
  .footer-inner{ flex-direction: column; }
}