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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #131213;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  text-decoration: none;
  color: #131213;
  mix-blend-mode: overlay;
}

.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #131213;
  font-size: 1rem;
  font-weight: 600;
  text-transform: lowercase;
  display: flex;
  gap: 0.15rem;
  position: relative;
  transition: opacity 0.3s ease;
}
.nav-link:hover {
  opacity: 0.7;
}

.bracket {
  opacity: 0.4;
  font-weight: 400;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem 3vw 2rem 3vw;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.hero-middle {
  margin: auto;
  max-width: 1050px;
  width: 100%;
}

.text-hero {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: rgba(19, 18, 19, 0.9);
  text-align: center;
  text-transform: capitalize;
}

.text-footnote {
  text-align: left;
  font-size: 1rem;
  font-style: italic;
  margin-top: 1.5rem;
  color: rgba(19, 18, 19, 0.7);
  font-weight: 500;
}

.highlight {
  font-weight: 800;
  color: #eab308; /* vibrant golden yellow for legibility on white */
}

.text-footnote.highlight {
  font-weight: 500; /* unbold */
}

.hero-lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.text-h5 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(19, 18, 19, 0.8);
}

.hero-links-wrap {
  display: flex;
  gap: 2.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-middle { animation-delay: 0.1s; }
.hero-lower { animation-delay: 0.3s; }
