:root {
  --black: #06080b;
  --steel: #d7dde2;
  --steel-dim: #8b949c;
  --green: #35e07a;
  --white: #f4f7f9;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,8,11,0.5) 0%,
    rgba(6,8,11,0.72) 48%,
    rgba(6,8,11,0.93) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 9vw, 5rem);
  letter-spacing: 0.03em;
  margin: 0;
  color: var(--steel);
  text-shadow: 0 0 30px rgba(53, 224, 122, 0.2);
}

.wordmark .accent {
  color: var(--green);
}

.headline {
  margin: 0.75rem 0 2.5rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--steel);
  font-weight: 500;
}

.terms {
  max-width: 480px;
}

.terms p {
  margin: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--steel-dim);
  line-height: 1.5;
}

.terms p:first-child {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cta:hover {
  background: var(--white);
}

.cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-line {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--steel-dim);
}

.credit {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  color: var(--steel-dim);
}

.credit a {
  color: var(--steel);
  text-decoration: none;
  font-weight: 600;
}

.credit a:hover,
.credit a:focus-visible {
  color: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 4.5rem; }
  .terms p { font-size: 0.88rem; }
}
