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

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}

main {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.content {
  max-width: 600px;
  width: 100%;
  padding-top: 40vh;
  padding-bottom: 20vh;
}

/* CTA pill button at top */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 2rem;
}

.cta-pill:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cta-pill svg {
  flex-shrink: 0;
}

/* Intro paragraph */
.intro {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 1.6rem;
}

.intro strong {
  font-weight: 600;
}


/* Body paragraphs */
p {
  margin-bottom: 1.2rem;
  color: #333;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #ccc;
  transition: text-decoration-color 0.2s ease;
}

a:hover {
  text-decoration-color: #1a1a1a;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Wins list */
.wins {
  list-style: none;
  margin-bottom: 1.2rem;
}

.wins li {
  color: #333;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.wins li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #999;
}

/* Footer social icons */
footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  gap: 20px;
}

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

footer a:hover {
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  .content {
    padding-top: 25vh;
    padding-bottom: 15vh;
  }

}
