:root {
  --accent: #e8490f;
  --bg: #ffffff;
  --text: #171717;
  --muted: #666666;
  --border: #ececec;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(720px, 92%);
  margin: 0 auto;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero .container img {
  border-radius: 22%;
  display: block;
  margin-inline: auto;
  margin-bottom: 0.85rem;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

.tagline {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 3.7vw, 1.25rem);
}

.button {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.button:hover {
  opacity: 0.9;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.topbar a {
  font-weight: 600;
}

.content {
  padding: 2rem 0 3rem;
}

.content h1 {
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  margin-bottom: 1rem;
}

.content h2 {
  font-size: 1.15rem;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.content p,
.content li {
  color: #2c2c2c;
}

.content ul {
  padding-left: 1.1rem;
}
