@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap');

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

html, body {
  height: 100%;
}

body {
  background-color: #0D0D0D;
  color: #F5F5F5;
  font-family: 'Helvetica Neue', HelveticaNeue, 'Inter', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 24px;
}

main {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Wordmark */
header .wordmark {
  font-family: 'Helvetica Neue', HelveticaNeue, 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #7A8082;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  color: #F5F5F5;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 19px;
  font-weight: 300;
  color: #F5F5F5;
  line-height: 1.5;
}

.role-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
}

.role {
  font-size: 11px;
  font-weight: 500;
  color: #C9B89B;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location {
  font-size: 11px;
  font-weight: 300;
  color: #7A8082;
  letter-spacing: 0.04em;
}

/* Keyword interattive nella tagline */
.kw {
  display: inline;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

/* Links */
.links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.links a {
  font-size: 13px;
  font-weight: 200;
  color: #9AA0A6;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.links a:hover {
  color: #A4D8FF;
  text-decoration: none;
}

/* Breakpoint minimo — preserva margini laterali */
@media (max-width: 520px) {
  body {
    padding: 40px 20px;
    align-items: flex-start;
    padding-top: 64px;
  }
}

/* Footer */
footer .soon {
  font-size: 12px;
  font-weight: 300;
  color: #424547;
  letter-spacing: 0.04em;
}
