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

html {
  font-size: 18px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #1F2140;
  color: #F0E6D3;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.nav {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.5rem;
}
.nav__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #F0E6D3;
  background-image: none;
  letter-spacing: -0.02em;
}
.nav__logo:hover {
  color: #FD802E;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8CA3B0;
}
.nav__links a:hover {
  color: #FD802E;
}
@media (max-width: 480px) {
  .nav__links {
    gap: 1rem;
  }
  .nav__links a {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.5rem;
  }
}

@keyframes meshDrift {
  0% {
    filter: blur(60px) hue-rotate(0deg);
  }
  100% {
    filter: blur(80px) hue-rotate(15deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8rem 1.5rem 6rem;
}
@media (max-width: 480px) {
  .hero {
    padding: 5rem 1.5rem 4rem;
  }
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, #1F2140);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(253, 128, 46, 0.18) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 85% 60%, rgba(124, 131, 255, 0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 50% 90%, rgba(224, 78, 196, 0.1) 0%, transparent 70%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

h1 {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-size: 5.5rem;
  font-weight: 400;
  color: #FD802E;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 4rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 3rem;
  }
}

.tagline {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #8CA3B0;
  margin-top: 0.5rem;
}

.currently {
  font-size: 0.95rem;
  color: #8CA3B0;
  margin-top: 0.75rem;
  opacity: 0.8;
}

.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 4rem;
}
@media (max-width: 768px) {
  .content {
    padding: 0 1.5rem 3rem;
  }
}

section {
  margin-bottom: 2.5rem;
}

p {
  margin-bottom: 1rem;
  color: #F0E6D3;
}

a {
  color: #FD802E;
  text-decoration: none;
  background-image: linear-gradient(#FD802E, #FD802E);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
a:hover {
  background-size: 100% 1px;
}

.skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.skills li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(140, 163, 176, 0.35);
  border-radius: 999px;
  color: #8CA3B0;
}

hr {
  border: none;
  border-top: 1px solid rgba(140, 163, 176, 0.2);
  margin: 3rem 0;
}

p.contact {
  font-size: 0.95rem;
  color: #8CA3B0;
}
p.contact a {
  font-weight: 500;
}

.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(140, 163, 176, 0.1);
}
.footer__inner {
  max-width: 700px;
  margin: 0 auto;
}
.footer p {
  font-size: 0.8rem;
  color: #8CA3B0;
  opacity: 0.6;
}

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