/* Reset and base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: #2b2d2c;
  background: #fff;
}

/* Page: centered block */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.content {
  width: 100%;
  max-width: 418px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 92px;
}

/* Header: title + tagline */
.header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.title {
  margin: 0;
  font-family: 'Space Grotesk', 'ABC Favorit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2b2d2c;
}

.tagline {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.tagline em {
  font-style: italic;
  font-weight: 400;
}

/* Illustration: rounded image */
.illustration {
  margin: 0;
  width: 100%;
  aspect-ratio: 1056 / 1036;
  border-radius: 48px;
  overflow: hidden;
  background: #f0f0f0;
}

.illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.illustration .img-placeholder {
  display: none;
  margin: 0;
  padding: 1.5rem 1rem;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  text-align: center;
}

.illustration .img-placeholder.is-visible {
  display: block;
}

.illustration .img-placeholder code {
  background: #e5e5e5;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 13px;
}

/* CTA button */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #2b2d2c;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.cta:hover {
  background: #1a1b1a;
}

.cta:active {
  transform: scale(0.98);
}
