.hero {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  overflow: hidden;
  align-items: center;
  padding: 4rem;
  
}

.hero-eyebrow {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h3 {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--amber); } /* wrap any word in <span> to color it */

.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

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

/* Mobile: stack the topbar links if the screen is small */
@media (max-width: 600px) {
  .topbar-links { gap: 1rem; }
  .topbar-links a:not(.btn) { display: none; } /* hide all but the button link */
}
