:root {
  --accent-cyan: #00CAED;
  --accent-magenta: #FF00B3;
  --accent-yellow: #FFFF00;
  --accent-green: #54E6B3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: #fff;
  background: #000;
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 8vw 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.hero__logo {
  margin: 0;
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__statement-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__statement {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.4rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 22ch;
  color: #fff;
}

.hero__substatement {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.4;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.7);
}

#rotator-rest {
  transition: opacity 0.25s ease;
}

#rotator-rest.is-fading {
  opacity: 0;
}

.hero__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
}

.hero__contact p {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}

.hero__name {
  font-weight: 800;
  color: #fff;
}

.hero__email {
  color: var(--accent-magenta);
  text-decoration: none;
}

.hero__linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background: var(--accent-cyan);
  color: #000;
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero__linkedin-btn:hover,
.hero__linkedin-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 202, 237, 0.35);
}
