body::after {
  content: "";
  position: fixed;
  width: 1100px; height: 1100px;
  left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(184,84,40,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.eyebrow {
  margin-bottom: 36px;
  animation: rise 700ms cubic-bezier(0.2,0,0,1) 100ms forwards;
}

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 42px; padding: 0 18px;
  background: var(--fg-1);
  color: #0B1422;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 200ms cubic-bezier(0.2,0,0,1), background 200ms;
}
.cta:hover { background: #fff; transform: translateY(-1px); }
.cta:active { transform: translateY(0); }
.cta .arrow {
  width: 16px; height: 16px;
  transition: transform 200ms cubic-bezier(0.2,0,0,1);
}
.cta:hover .arrow { transform: translate(2px, -2px); }

.hero {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 0 96px;
}
.hero-inner {
  max-width: 1080px;
  width: 100%;
}

h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0;
  color: var(--fg-1);
}
h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
}
h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 800ms cubic-bezier(0.2,0,0,1) forwards;
}
h1 .line:nth-child(1) { animation-delay: 180ms; }
h1 .line:nth-child(2) { animation-delay: 280ms; }
h1 .line:nth-child(3) { animation-delay: 380ms; }

.sub {
  margin: 40px auto 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  color: var(--fg-2);
  max-width: 60ch;
  opacity: 0;
  animation: rise 700ms cubic-bezier(0.2,0,0,1) 520ms forwards;
}
@media (max-width: 720px) {
  .sub { max-width: 32ch; }
}

.hero-ctas {
  margin-top: 48px;
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: rise 700ms cubic-bezier(0.2,0,0,1) 620ms forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 200ms, transform 200ms;
}
.btn-primary:hover { background: #C9612F; transform: translateY(-1px); }
.btn-primary .arrow { width: 18px; height: 18px; transition: transform 200ms; }
.btn-primary:hover .arrow { transform: translate(2px, -2px); }
