/* =========================
   GLOBAL STYLES
   ========================= */

body{
  margin:0;
  font-family:Inter,sans-serif;
  background:
    radial-gradient(circle at top, rgba(30,202,211,0.15), transparent 60%),
    #0B132B;
  color:#fff;
  text-align:center;
}

header{
  padding:30px 20px;
}

.tagline{
  color:#1ECAD3;
}

a{
  color:#1ECAD3;
  text-decoration:none;
}

.features{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.features div,
.price-card{
  background:rgba(255,255,255,.08);
  padding:15px;
  border-radius:10px;
  margin:10px;
}

.logo{
  display:block;
  margin:0 auto 16px auto;
  max-width:150px;
  height:auto;
}

.hero{
  margin-top:20px;
}

main{
  max-width:1100px;
  margin:0 auto;
}

.spacer{
  height:40px;
}

/* =========================
   ABOUT PAGE (OPTION 2)
   ========================= */

body.about-page{
  text-align:left;
}

/* Wrapper */
.about-wrapper{
  max-width:900px;
  margin:40px auto 70px;
  padding:0 20px;
}

/* Statement block */
.about-statement{
  text-align:center;
  margin-bottom:60px;
}

.about-statement h2{
  font-size:1.6rem;
  line-height:1.4;
  margin-bottom:18px;
  color:#ffffff;
}

.about-statement p{
  max-width:720px;
  margin:0 auto;
  font-size:1.05rem;
  line-height:1.8;
  color:#dbeef2;
}

/* Section blocks */
.about-section{
  margin-bottom:50px;
}

.about-section h3{
  font-size:0.9rem;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#1ECAD3;
  margin-bottom:12px;
}

.about-section p{
  max-width:720px;
  font-size:1rem;
  line-height:1.75;
  color:#e6f2f5;
}

/* Values list */
.about-section ul{
  list-style:none;
  padding:0;
  margin:0;
}

.about-section ul li{
  margin-bottom:10px;
  padding-left:18px;
  position:relative;
  color:#e6f2f5;
  line-height:1.6;
}

.about-section ul li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#1ECAD3;
  font-size:1.2rem;
}

/* Footer links */
.about-links{
  text-align:center;
  margin-top:40px;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width:768px){
  .about-statement h2{
    font-size:1.35rem;
  }

  .about-wrapper{
    margin:30px auto 60px;
  }
}
