:root {
  --white: #FFFFFF;
  --ink: #3b3b3b;
  --ink-2: #4a5260;
  --image-bg: #fff6cb;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.hero {
  margin: 0 auto;
  padding: 16px;
}

.hero__title {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--ink-2);
  margin: 0 0 20px;
  line-height: 1.5;
}

.hero__tagline {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 24px;
  line-height: 1.5;
}

.hero__image {
  background: var(--image-bg);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.75rem;
  }
  .hero__tagline {
    font-size: 1.125rem;
  }
  .hero__image {
    padding: 16px;
  }
}
