/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.btn-primary {
  background: transparent;
  color: #000000;
  border-radius: 0px;
  padding: 0px 0px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #6161ff;
  border-radius: 32px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgb(97, 97, 255);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(97, 97, 255, 0.05);
}

.btn-pill {
  background: #6161ff;
  color: #ffffff;
  border-radius: 160px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgb(97, 97, 255);
  cursor: pointer;
  box-shadow: rgba(29, 140, 242, 0.08) 0px 4px 4px 0px inset;
}

.btn-pill:hover {
  background: #5151d5;
  border-color: #5151d5;
}

.btn-ghost {
  background: transparent;
  color: #535768;
  border-radius: 0px;
  padding: 4px 0px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
}

/* Card Component */
.card {
  background: #f0f3ff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: rgba(29, 140, 242, 0.08) 0px 4px 4px 0px inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-white {
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 15px 0px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
}

/* Header / Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.nav-brand img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  padding: 96px 0;
  text-align: center;
  background-color: var(--palette-1);
  border-radius: 0 0 50px 50px;
  margin-bottom: 64px;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Footer */
.footer {
  background: var(--palette-5);
  color: #ffffff;
  padding: 64px 0 32px;
  margin-top: 64px;
}

.footer h3, .footer p, .footer a {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 64px 0;
  }
  
  h1 {
    font-size: 36px;
  }
  
  .nav-links {
    display: none; /* simple mobile menu hidden for now */
  }
}
