*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
}

.hero {
  background-color: #0B2A4A;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.logo-wrap {
  margin-bottom: 28px;
}

.headline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: #4FB3E8;
  font-weight: 700;
}

.body-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.6;
  color: #d6e4f0;
  margin-bottom: 48px;
  max-width: 680px;
}

.cta-button {
  display: inline-block;
  background-color: #FF8A00;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 138, 0, 0.35);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 138, 0, 0.5);
}

@media (max-width: 640px) {
  .headline {
    font-size: 40px;
  }

  .body-copy {
    font-size: 18px;
  }
}
