* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

.cloud-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(148, 163, 184, 0.45) 0, rgba(148, 163, 184, 0) 36%),
    radial-gradient(circle at 70% 30%, rgba(191, 219, 254, 0.7) 0, rgba(191, 219, 254, 0) 40%),
    radial-gradient(circle at 30% 80%, rgba(209, 213, 219, 0.6) 0, rgba(209, 213, 219, 0) 42%),
    radial-gradient(circle at 90% 70%, rgba(191, 219, 254, 0.8) 0, rgba(191, 219, 254, 0) 40%);
  background-size: 160% 160%;
  animation: clouds-drift 60s linear infinite;
  opacity: 0.6;
}

@keyframes clouds-drift {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
  }
  50% {
    background-position: 10% 20%, 90% 10%, 10% 90%, 90% 90%;
  }
  100% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
  }
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand--footer .brand__mark {
  width: 200px;
  height: 200px;
  border-radius: 0;
}

.nav nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: #4b5563;
}

.nav a:hover {
  color: #1d4ed8;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 72px 32px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__content h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.hero__content .lede {
  max-width: 640px;
  color: #4b5563;
}

.hero__panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.panel-card.secondary {
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.panel-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.panel-card ul {
  padding-left: 18px;
  margin: 0;
  color: #4b5563;
}

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

.badge {
  display: inline-block;
  background: #eef2ff;
  border: 1px solid rgba(79, 70, 229, 0.18);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #312e81;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #1d4ed8;
  margin: 0 0 6px;
}

.actions {
  display: flex;
  gap: 12px;
  margin: 22px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.button.primary {
  background: linear-gradient(135deg, #63b3ff, #5a7bff);
  color: #ffffff;
  border: none;
}

.button.ghost {
  background: #ffffff;
  color: #1f2933;
}

.button:hover {
  transform: translateY(-1px);
  transition: 140ms ease;
}

.stats {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  color: #6b7280;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px;
}

.section.alt {
  background: #f9fafb;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.section__head h2 {
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.section__head p {
  margin: 0 0 18px;
  color: #6b7280;
}

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

.card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.card.tight {
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0 0 12px;
  color: #4b5563;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
}

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

.pill {
  background: #eef2ff;
  border: 1px solid rgba(129, 140, 248, 0.6);
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  color: #312e81;
}

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

.step {
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 16px;
  border-radius: 12px;
}

.step-title {
  color: #1d4ed8;
  font-weight: 600;
  margin: 0 0 6px;
}

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

.cta {
  background: linear-gradient(135deg, #63b3ff, #5a7bff);
  color: #ffffff;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 18px 36px rgba(69, 121, 255, 0.35);
}

.cta h2 {
  margin: 6px 0 8px;
}

.cta p {
  margin: 0;
  color: #e5efff;
  max-width: 620px;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  color: #6b7280;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__meta {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 32px;
  }

  .section {
    padding: 44px 20px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__name {
    max-width: 68vw;
  }
}
