* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0b0b0b;
  color: #f2f2f2;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 900px;
  text-align: center;
  padding: 60px 20px;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  opacity: 0.94;
  margin-bottom: 60px;
}

h1 {
  font-size: 2.1rem;
  letter-spacing: 0.28em;
  font-weight: 400;
  margin-bottom: 28px;
}

.statement {
  max-width: 620px;
  margin: 0 auto 56px auto;
  line-height: 1.8;
  font-size: 1rem;
  color: #cfcfcf;
}

.links {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.links a {
  color: #f2f2f2;
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.links a:hover {
  opacity: 1;
}
