* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: #000;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  padding: 24px;
}

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

.brand {
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.brand a {
  color: inherit;
  text-decoration: none;
}

.links a {
  margin-left: 24px;
  color: rgba(245, 245, 245, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.links a:hover {
  color: #fff;
}

.hero {
  text-align: center;
  padding: 120px 24px 80px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(18px, 2.5vw, 28px);
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

footer {
  padding: 32px 24px;
  text-align: center;
  color: rgba(245, 245, 245, 0.5);
  font-size: 13px;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
  }

  .links {
    margin-top: 12px;
  }

  .links a {
    margin: 0 12px;
  }
}
