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

body {
  font-family: 'Public Sans', sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 2rem;
  border-bottom: 1px solid #161616;
}

.logo {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.logo:hover {
  color: #f0f0f0;
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 2rem;
  flex: 1;
}

/* ── Hero Section ── */

.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.cleanslate-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;

  background: linear-gradient(90deg, #ffffff 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
}

.tagline {
  font-size: 1.2rem;
  color: #777;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Description Section ── */

.description {
  margin-bottom: 3rem;
}

.description p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.description p:last-child {
  color: #888;
  font-size: 1rem;
}

.cta-text {
  margin-top: 2rem !important;
  padding-top: 2rem;
  border-top: 1px solid #161616;
}

/* ── Footer ── */

footer {
  margin-top: auto;
  padding: 2rem;
  border-top: 1px solid #161616;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #f0f0f0;
}

.hope-and-rage {
  background: linear-gradient(90deg, #00dd00 0%, #0055ff 25%, #7c3aed 50%, #ff0000 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 480px) {
  main {
    padding: 3rem 1.25rem;
  }

  .cleanslate-title {
    -webkit-text-stroke: 0.5px #ffffff;
    text-stroke: 0.5px #ffffff;
  }
}
