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

body {
  font-family: "Geologica", sans-serif;
  color: #1b2559;
  background: #fcfdff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 40px;
  text-align: center;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

/* Heading */
.heading {
  font-size: 72px;
  font-weight: 200;
  line-height: 120%;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 16px;
  color: #191258;
  text-wrap: balance;
}

.heading em {
  color: #009cff;
  font-style: italic;
}

/* Description */
.description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #6a6592;
  max-width: 540px;
  margin-bottom: 32px;
}

.description strong {
  font-weight: 500;
  color: #191258;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  height: 36px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #ffab0d;
  color: #191258;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: default;
}

.cta-button:focus-visible {
  outline: 2px solid #191258;
  outline-offset: 2px;
}

/* Video section */
.hero-video {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-video video {
  width: calc(100% + 8px);
  margin-left: -4px;
  display: block;
  position: relative;
  top: -4px;
}

/* Responsive */
@media (max-width: 720px) {
  .hero-content {
    padding: 40px 20px 32px;
  }

  .heading {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }

  .logo-icon {
    width: auto;
    height: 96px;
  }
}
