* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.muted-section {
  background:
    radial-gradient(circle at top left, rgba(241, 88, 48, 0.08), transparent 28%),
    linear-gradient(180deg, #f9fafb, #eff3f6);
}

.eyebrow {
  margin: 0 0 22px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.accent-gold {
  color: var(--gold);
}

.accent-orange {
  color: #f8bb7b;
}

.accent-cyan {
  color: var(--cyan);
}

.accent-blue {
  color: var(--blue);
}

.section-heading {
  margin-bottom: 36px;
}

.center-heading {
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-intro,
.intro-copy p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  color: #fff;
  background: var(--brand);
}

.button-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 64px 0;
  }
}
