body {
  margin: 0;
  padding: 0;
  background: #FAF7F2;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 480px;
  max-width: none;
  opacity: 0;
  animation: fadeIn 3.5s ease-out 0.4s forwards;
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.07; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    opacity: 0.07;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00205B;
}

.hero-content p {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #33415C;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: #00205B;
  color: #FAF7F2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #001640;
}

.footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: #B9B2A6;
  letter-spacing: 0.3px;
  z-index: 1;
}
