body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #10213f;
  background: #ffffff;
}

a {
  color: inherit;
}

.topbar {
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #07152d 0%, #173563 100%);
  color: #ffffff;
  padding: 80px 6vw;
}

.eyebrow {
  color: #e11d48;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  margin: 16px 0 24px;
}

.lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
}

.button.primary {
  background: #e11d48;
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: #10213f;
}

.section {
  padding: 70px 6vw;
}

.muted {
  background: #f4f7fb;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  margin-top: 0;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #ffffff;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  padding: 9px 12px;
  background: #ffffff;
  font-weight: 800;
  font-size: 13px;
}

.footer {
  background: #07152d;
  color: rgba(255, 255, 255, 0.76);
  padding: 42px 6vw;
}

.footer strong {
  color: #ffffff;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }
}
