:root {
  --color-egs-dark: #071915;
  --color-egs-darker: #020706;
  --color-egs-green: #bee9b2;
  --color-egs-green-light: #d1efc9;
  --color-egs-cream: #fefaf1;
  --color-egs-cream-warm: #fef8ec;
  --color-egs-text: #e6e8e7;
  --color-egs-text-muted: #c5cdc9;
  --color-egs-divider: #515e5b;
  --font-sans: "Overused Grotesk", system-ui, -apple-system, sans-serif;
  --max-width: 1440px;
  --transition-smooth: all .4s cubic-bezier(.16,1,.3,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-egs-dark);
  background-color: var(--color-egs-darker);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  width: viewport;
  height: viewport;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition: var(--transition-smooth);
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: var(--color-egs-darker);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blur-ellipse {
  position: absolute;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  transform: rotate(-30deg);
}

.ellipse-1 {
  width: 175px;
  height: 962px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(34, 40, 43, 0.12);
  top: -73px;
  right: 200px;
}

.ellipse-2 {
  width: 226px;
  height: 1119px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(34, 40, 43, 0.08);
  top: -69px;
  right: 50px;
}

.ellipse-3 {
  width: 146px;
  height: 904px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(34, 40, 43, 0.12);
  top: 22px;
  left: 40%;
}

.ellipse-4 {
  width: 181px;
  height: 824px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(34, 40, 43, 0.12);
  top: -74px;
  left: 20%;
}

.hero-bg-container {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg-tint {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.35);
}

.hero-bg-gradient {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(7, 25, 21, 0.3) 0%, rgba(7, 25, 21, 0.6) 50%, rgb(7, 25, 21) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 28px;
  column-gap: 28px;
  text-align: center;
}

@media (max-width: 700px) {
  .hero-content {
  padding: 60px 24px;
  row-gap: 22px;
  column-gap: 22px;
  }
}

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

.logo-img {
  height: 52px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.8);
  }
}

.hero-title {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 500;
  color: var(--color-egs-cream);
  line-height: 1.05;
  letter-spacing: -2.5px;
}