:root {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #fff;
  --button-bg: rgba(255, 255, 255, 0.08);
  --button-border: rgba(255, 255, 255, 0.5);
}

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #121212;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background: url('hero.jpg') center/cover fixed no-repeat;
  position: relative;
  padding: 2rem;
}

.hero__buttons {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.hero__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--button-border);
  background-color: var(--button-bg);
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-width: 220px;
  text-align: center;
}

.hero__button:hover,
.hero__button:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hero__footer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  text-align: right;
}

@media (max-width: 768px) {
  .hero {
    padding: 1.5rem;
  }

  .hero__buttons {
    top: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .hero__button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .hero__button {
    min-width: 180px;
    font-size: 1rem;
    padding: 0.75rem 0.9rem;
  }

  .hero__footer {
    font-size: 0.9rem;
  }
}
