/* =====================
   Global
   ===================== */
body.home {
  font-family: "IBM Plex Sans", sans-serif;
  color: rgba(0,0,0,0.9);
  background: #fff;
  margin: 0;
  line-height: 1.7;
   background-color: #8BDDFD !important;
}

    
    

a {
  color: inherit;
  text-decoration: none;
}


/* =====================
   Hero
   ===================== */
.hero {
  max-width: 900px;
  margin: 80px auto 64px;
  padding: 0 24px;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-text h1 {
  margin: 0;
  font-size: 48px;
}

.tagline {
  margin: 6px 0 0;
  color: rgba(0,0,0,0.6);
}

.hero-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

/* =====================
   Sections
   ===================== */
.block {
  max-width: 900px;
  margin: 64px auto;
  padding: 0 24px;
}

.block h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.logos img {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* =====================
   Navigation grid
   ===================== */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nav-card {
  border: 1px solid rgba(0,0,0,0.12);
  padding: 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.nav-card p {
  color: rgba(0,0,0,0.65);
  margin: 0;
}

.nav-card:hover {
  background: rgba(0,0,0,0.03);
  transform: translateY(-2px);
}

/* =====================
   Quote / feature
   ===================== */
.feature blockquote {
  font-style: italic;
  font-size: 20px;
  color: rgba(0,0,0,0.65);
  border-left: 3px solid rgba(0,0,0,0.15);
  padding-left: 20px;
}

/* =====================
   Footer
   ===================== */
.footer {
  max-width: 900px;
  margin: 80px auto 40px;
  padding: 0 24px;
  color: rgba(0,0,0,0.6);
}

.footer a {
  text-decoration: underline;
}

/* =====================
   Mobile
   ===================== */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 36px;
  }

  .nav-grid {
    grid-template-columns: 1fr;
  }
}
