* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --surface: #1a1a1a;
  --text: #ffffff;
  --text-muted: #9a9a9a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.site-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--surface);
  padding: 1rem;
  align-items: center;
}

.site-header span {
  font-size: 2rem;
  margin: 0;
}

.site-header a {
  display: inline-block;
  border: 1px solid var(--text);
  font-size: 1rem;
  margin: 0;
  text-decoration: none;
  color: var(--text);
  background-color: transparent;
  border-radius: 10px;
  padding: 0.5rem 1rem;
}

.site-header a:hover {
  background-color: var(--text);
  color: var(--bg);
}

.hero-content h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-content > p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.cta img {
  max-width: 200px;
  height: auto;
}

.cta p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero {
  padding: 2rem 1rem;
}

.hero-image img {
  max-width: 280px;
  margin-left: auto;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
}

.proof {
  background-color: var(--surface);
  padding: 2rem 1rem;
}

.proof img {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  max-width: 280px;
}

.proof figcaption {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

.proof h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.proof-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: row;
  list-style-position: inside;
  margin-top: 1rem;
  gap: 0.5rem;
}

.how {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.how h2 {
  text-align: center;
}

.steps li {
  font-size: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--text);
  background-color: var(--surface);
  border-radius: 8px;
  max-width: 200px;
}

.founder-story {
  padding: 2rem 1rem;
  max-width: 60ch;
  margin: 0 auto;
}

.founder-story-p {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
  color: var(--text-muted);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.socials img {
  width: 32px;
  height: 32px;
}

.cta-2 img {
  max-width: 200px;
  margin: 0 auto;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  border-top: 1px solid #2a2a2a;
  margin-top: 2rem;
}

.site-footer a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

@media (min-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-image img {
    max-height: 500px;
    width: auto;
  }

  .proof {
    max-width: 1200px;
    margin: 0 auto;
  }

  .proof-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  .proof img {
    max-height: 400px;
    width: auto;
  }

  .steps {
    justify-content: center;
    gap: 1rem;
  } 
}
