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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #0d1a0f;
  color: #d4e8d8;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #4caf72;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #7dd49a;
  text-decoration: underline;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

footer {
  background-color: #132218;
  border-top: 1px solid #1e3a27;
  padding: 1rem 2rem;
  text-align: center;
  color: #7aaa88;
  font-size: 0.875rem;
}
footer a {
  color: #7aaa88;
}
footer a:hover {
  color: #7dd49a;
}

.hero {
  text-align: center;
  max-width: 640px;
  width: 100%;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #4caf72;
  line-height: 1.1;
}

.hero__tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7aaa88;
  margin-top: 0.5rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
}

.hero__divider {
  width: 3rem;
  height: 2px;
  background-color: #2e7d4f;
  margin: 2rem auto;
}

.hero__status {
  font-size: 1.125rem;
  color: #d4e8d8;
  margin-bottom: 1rem;
}

.hero__contact {
  font-size: 1rem;
  color: #7aaa88;
}

/*# sourceMappingURL=main.css.map */