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

html,
body {
  height: 100%;
}

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.supporting-text {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.socials {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.socials a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  transition: opacity 0.2s ease;
}

.socials a:hover {
  opacity: 1;
  color: #fff;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .socials {
    gap: 16px;
  }
}