/* Reset & base setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fc;
  color: #1c1e21;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.hero {
  background: linear-gradient(to right, #111827, #1f2937);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}
.subtitle {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  opacity: 0.85;
}
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

/* Sections */
.card {
  background: white;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease both;
}
.card h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.focus-box {
  padding: 1.2rem;
  background-color: #e0e7ff;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.focus-box:hover {
  transform: translateY(-5px);
  background-color: #c7d2fe;
}

/* Press list */
.press-links li {
  margin: 0.6rem 0;
}
.press-links a {
  text-decoration: none;
  color: #1e40af;
  font-weight: 600;
  transition: color 0.3s;
}
.press-links a:hover {
  color: #3b82f6;
}

/* Footer */
footer {
  background-color: #111827;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animation triggers */
.fade-in { animation: fadeIn 0.8s ease-in-out both; }
.slide-in-left { animation: slideInLeft 0.8s ease-in-out both; }
.slide-in-right { animation: slideInRight 0.8s ease-in-out both; }
.zoom-in { animation: zoomIn 0.8s ease-in-out both; }
.fade-in-up { animation: fadeInUp 0.8s ease-in-out both; }
