@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0D2D5C;
  --blue-deep: #071b38;
  --green: #17A34A;
  --green-bright: #24c45a;
  --ink: #111827;
  --muted: #6B7280;
  --line: #E5E7EB;
  --paper: #F8FAFC;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Exo 2", Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f7fafc;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(23, 163, 74, .10), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(13, 45, 92, .15), transparent 34%),
    linear-gradient(135deg, #fbfdfc 0%, #f3f7fb 55%, #eef5f2 100%);
}

.grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(13,45,92,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,45,92,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: .42;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  right: -90px;
  top: 8%;
  background: linear-gradient(135deg, rgba(23,163,74,.2), rgba(13,45,92,.06));
}

.orb-2 {
  width: 210px;
  height: 210px;
  left: -75px;
  bottom: 7%;
  background: linear-gradient(135deg, rgba(13,45,92,.18), rgba(23,163,74,.05));
  animation-delay: -4s;
}

@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(10px); }
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 42px 20px 24px;
}

.card {
  width: min(960px, 100%);
  text-align: center;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,45,92,.09);
  border-radius: 30px;
  padding: 54px 58px 50px;
  box-shadow:
    0 30px 80px rgba(13,45,92,.10),
    0 2px 8px rgba(13,45,92,.04);
  backdrop-filter: blur(16px);
}

.logo-wrap {
  width: min(470px, 88%);
  margin: 0 auto 24px;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 15px;
  margin: 2px 0 22px;
  border: 1px solid rgba(23,163,74,.22);
  border-radius: 999px;
  background: rgba(23,163,74,.07);
  color: var(--green);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .14em;
}

h1 {
  margin: 0 auto;
  max-width: 780px;
  color: var(--blue);
  font-size: clamp(2.2rem, 5.2vw, 4.35rem);
  line-height: .99;
  letter-spacing: -.035em;
  font-weight: 800;
}

h1 span {
  color: var(--green);
}

.intro {
  max-width: 680px;
  margin: 26px auto 0;
  color: #4b5563;
  font-size: clamp(1rem, 1.55vw, 1.17rem);
  line-height: 1.7;
  font-weight: 400;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 18px;
  color: var(--blue);
  background: rgba(13,45,92,.055);
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 7px rgba(23,163,74,.10);
  animation: pulse 1.9s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(23,163,74,.23); }
  70% { box-shadow: 0 0 0 9px rgba(23,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(23,163,74,0); }
}

.areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.areas span {
  padding: 8px 13px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
  color: #475569;
  font-size: .83rem;
  font-weight: 600;
}

footer {
  min-height: 74px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 24px 24px;
  color: #64748b;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.divider {
  color: var(--green);
}

@media (max-width: 700px) {
  .hero {
    padding-top: 22px;
  }

  .card {
    border-radius: 22px;
    padding: 38px 22px 34px;
  }

  .logo-wrap {
    width: min(360px, 94%);
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(2rem, 10.8vw, 3.15rem);
    line-height: 1.03;
  }

  .intro {
    margin-top: 21px;
    font-size: 1rem;
  }

  .eyebrow {
    font-size: .7rem;
    letter-spacing: .11em;
  }

  .status {
    width: 100%;
    justify-content: center;
    font-size: .88rem;
  }

  footer {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  footer .divider {
    display: none;
  }
}
